From 9bf1a5ab3205c40552c031bc845b99c1c52f559c Mon Sep 17 00:00:00 2001 From: jamesamcl Date: Wed, 4 Sep 2024 15:38:56 +0100 Subject: [PATCH 1/5] update upheno purl again --- ebi_ontologies.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ebi_ontologies.json b/ebi_ontologies.json index 8807a2b8b..63b3cc8bf 100644 --- a/ebi_ontologies.json +++ b/ebi_ontologies.json @@ -2,7 +2,7 @@ "ontologies": [ { "id": "upheno", - "ontology_purl": "https://github.com/obophenotype/upheno-dev/releases/download/v2024-09-03/upheno.owl" + "ontology_purl": "https://github.com/obophenotype/upheno-dev/releases/latest/download/upheno.owl" }, { "id": "hra", From b95620e308289db5da6c3263742efcda373bfafd Mon Sep 17 00:00:00 2001 From: Haider Iqbal Date: Thu, 5 Sep 2024 12:15:57 +0100 Subject: [PATCH 2/5] - Update conditional in JsonHelper (#732) --- .../spot/ols/repository/v1/JsonHelper.java | 40 ++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/backend/src/main/java/uk/ac/ebi/spot/ols/repository/v1/JsonHelper.java b/backend/src/main/java/uk/ac/ebi/spot/ols/repository/v1/JsonHelper.java index 44842360c..1a0831572 100644 --- a/backend/src/main/java/uk/ac/ebi/spot/ols/repository/v1/JsonHelper.java +++ b/backend/src/main/java/uk/ac/ebi/spot/ols/repository/v1/JsonHelper.java @@ -6,6 +6,7 @@ import com.google.gson.JsonObject; import java.util.List; +import java.util.Map; import java.util.stream.Collectors; public class JsonHelper { @@ -41,11 +42,48 @@ public static String objectToString(JsonElement value) { return elements.get(0); - } else if(value.isJsonObject()) { + } else if(value.isJsonObject() && value.getAsJsonObject().get("value") != null) { return objectToString(value.getAsJsonObject().get("value")); + + /* This is a special case for the OLS API. If the value is a nested JsonObject like this + an example from OIO ontology: + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://www.obofoundry.org/wiki/index.php/Definitions" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "URL:http://www.obofoundry.org/wiki/index.php/Definitions" + }, + "isObsolete": false + } + + * For this type of JsonObject we need to iterate through the entries and find value key. + * For sake of simplicity I've returned the first value which is found as we don't have any + * mechanism to judge which value to prefer over the other. + */ + + } else if (value.isJsonObject()) { + for (Map.Entry entry : value.getAsJsonObject().entrySet()) { + JsonElement element = entry.getValue(); + if (element.isJsonObject()) { + JsonObject obj = element.getAsJsonObject(); + if (obj.has("value")) { + return obj.get("value").getAsString(); + } + } + } } else { return value.getAsString(); } + return value.getAsString(); } public static List getValues(JsonObject json, String predicate) { From 8078aadf13b6ef178ddfc1ace8e2f65fb18add42 Mon Sep 17 00:00:00 2001 From: Haider Iqbal Date: Thu, 5 Sep 2024 12:16:15 +0100 Subject: [PATCH 3/5] Fix curie issue oio tests api (#736) * - Add logic for curies format in linker * - Add preferredPrefix in rdf2json - Change curie logic linker pass 1 * - Add preferredPrefix in rdf2json - Change curie logic linker pass 1 * - Fix isDefinedBy curie object * - Fix isDefinedBy curie object array * - Fix isDefinedBy value object * - Fix defining entity * - Update testcases * - Update testcases * - Update TestCases --- compare_testcase_output_mac.sh | 2 + dataload/configs/idocovid19.json | 33 + .../linker/src/main/java/LinkerPass1.java | 53 +- .../linker/src/main/java/LinkerPass2.java | 88 +- .../annotators/ShortFormAnnotator.java | 3 + dev-testing/teststack-mac.sh | 69 + .../annotation-properties/gitIssue502.json | 5 + .../gitIssue502/autocomplete.jsonl | 29 + .../gitIssue502/classes.jsonl | 588 +- .../gitIssue502/gitissue502_classes.csv | 498 +- .../gitIssue502/gitissue502_ontologies.csv | 2 +- .../gitIssue502/gitissue502_properties.csv | 310 +- .../gitIssue502/oio_classes.csv | 7 + .../gitIssue502/oio_edges.csv | 9 + .../gitIssue502/oio_individuals.csv | 1 + .../gitIssue502/oio_ontologies.csv | 6 + .../gitIssue502/oio_properties.csv | 24 + .../gitIssue502/ontologies.json | 3470 ++- .../gitIssue502/ontologies.jsonl | 9 +- .../gitIssue502/ontologies_linked.json | 18015 +++++++++++----- .../gitIssue502/owl_classes.csv | 66 +- .../gitIssue502/owl_ontologies.csv | 68 +- .../gitIssue502/owl_properties.csv | 116 +- .../gitIssue502/properties.jsonl | 523 +- .../gitIssue502/rdfs_classes.csv | 14 +- .../gitIssue502/rdfs_ontologies.csv | 2 +- .../gitIssue502/rdfs_properties.csv | 18 +- .../gitIssue502/skos_classes.csv | 8 +- .../gitIssue502/skos_ontologies.csv | 2 +- .../gitIssue502/skos_properties.csv | 60 +- .../minimal-genepio/classes.jsonl | 2 +- .../minimal-genepio/genepio_classes.csv | 2 +- .../minimal-genepio/ontologies_linked.json | 5 - testcases_expected_output/duo/classes.jsonl | 516 +- testcases_expected_output/duo/duo_classes.csv | 516 +- .../duo/duo_individuals.csv | 40 +- .../duo/duo_properties.csv | 192 +- .../duo/individuals.jsonl | 40 +- testcases_expected_output/duo/ontologies.json | 8 +- .../duo/ontologies_linked.json | 2829 +-- .../duo/properties.jsonl | 192 +- .../hierarchical-properties/efo/classes.jsonl | 50 +- .../efo-hierarchical-properties_classes.csv | 50 +- ...efo-hierarchical-properties_properties.csv | 20 +- .../efo/ontologies_linked.json | 433 +- .../efo/properties.jsonl | 20 +- .../partof/classes.jsonl | 8 +- .../partof/ontologies_linked.json | 28 +- .../partof/partof_classes.csv | 8 +- .../partof/partof_properties.csv | 2 +- .../partof/properties.jsonl | 2 +- .../iri-labels/efo-iri-labels/classes.jsonl | 8 +- .../efo-iri-labels/efo-iri-labels_classes.csv | 8 +- .../efo-iri-labels_properties.csv | 4 +- .../efo-iri-labels/ontologies_linked.json | 42 +- .../efo-iri-labels/properties.jsonl | 4 +- .../use-user-defined-pref-label/classes.jsonl | 6 +- .../ontologies_linked.json | 164 +- .../properties.jsonl | 4 +- .../xmpl_classes.csv | 6 +- .../xmpl_properties.csv | 4 +- testcases_expected_output_api/ontologies.json | 50 + ...2Fsimple.owl%2523MyAnnotationProperty.json | 2 +- ...ain-range-restrictions.rdf%2523Person.json | 2 +- ...ain-range-restrictions.rdf%2523Person.json | 2 +- ...ain-range-restrictions.rdf%2523hasAge.json | 2 +- ...ry.org%252Fobo%252FAPOLLO_SV_00000008.json | 2 +- ...ry.org%252Fobo%252FAPOLLO_SV_00000032.json | 2 +- ...ry.org%252Fobo%252FAPOLLO_SV_00000033.json | 2 +- ...ry.org%252Fobo%252FAPOLLO_SV_00000522.json | 2 +- ...ry.org%252Fobo%252FAPOLLO_SV_00000524.json | 2 +- ...ry.org%252Fobo%252FAPOLLO_SV_00000796.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000001.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000002.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000003.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000004.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000006.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000008.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000009.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000011.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000015.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000016.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000017.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000018.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000019.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000020.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000023.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000024.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000026.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000027.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000028.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000029.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000030.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000031.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000034.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000035.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000038.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000040.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000140.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000141.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000142.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000144.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000145.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000146.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000147.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000148.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000182.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000001.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000004.json | 2 +- ...olibrary.org%252Fobo%252FDUO_00000044.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000006.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000007.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000011.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000012.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000015.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000016.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000017.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000018.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000019.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000020.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000021.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000022.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000024.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000025.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000026.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000027.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000028.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000029.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000031.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000032.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000033.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000034.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000035.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000036.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000037.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000038.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000039.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000040.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000042.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000043.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000045.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000046.json | 2 +- ...olibrary.org%252Fobo%252FGAZ_00000448.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000001.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000003.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000005.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000006.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000007.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000009.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000010.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000013.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000015.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000017.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000025.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000027.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000028.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000029.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000030.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000031.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000032.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000033.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000034.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000037.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000038.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000055.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000057.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000064.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000065.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000078.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000079.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000088.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000096.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000098.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000100.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000101.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000102.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000104.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000109.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000129.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000131.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000132.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000140.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000144.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000178.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000179.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000180.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000181.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000183.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000184.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000185.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000186.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000225.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000300.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000301.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000302.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000303.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000304.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000305.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000306.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000307.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000308.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000309.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000310.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000311.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000312.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000313.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000314.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000315.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000316.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000317.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000318.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000319.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000320.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000321.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000322.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000323.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000324.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000325.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000326.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000327.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000328.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000329.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000330.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000400.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000401.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000402.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000403.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000408.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000409.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000414.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000415.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000416.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000422.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000429.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000442.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000443.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000444.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000445.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000572.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000573.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000574.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000575.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000577.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000578.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000579.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000580.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000582.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000584.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000590.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000591.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000592.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000593.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000594.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000595.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000605.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000606.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000607.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000608.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000609.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000610.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000611.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000612.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000613.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000614.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000615.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000616.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000617.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000618.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000619.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000620.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000621.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000622.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000623.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000624.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000625.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000626.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000627.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000628.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000629.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000630.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000631.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000632.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000633.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000634.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000635.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000636.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000637.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000638.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000639.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000640.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000641.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000642.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000643.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000644.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000645.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000646.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000647.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000648.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000650.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000701.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000702.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000703.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000704.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000705.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000706.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000707.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000708.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0020000.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0020001.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0020010.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0020015.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0020016.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0020017.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0020020.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000000.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000001.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000002.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000003.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000004.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000005.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000006.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000007.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000008.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000009.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000010.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000011.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000012.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000013.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000014.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000015.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000016.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000017.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000018.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000019.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000020.json | 2 +- ...library.org%252Fobo%252FMONDO_0000001.json | 2 +- ...bolibrary.org%252Fobo%252FOBI_0000011.json | 2 +- ...bolibrary.org%252Fobo%252FOBI_0000066.json | 2 +- ...bolibrary.org%252Fobo%252FOBI_0000471.json | 2 +- ...bolibrary.org%252Fobo%252FOBI_0200000.json | 2 +- ...bolibrary.org%252Fobo%252FOBI_0500000.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0000051.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0000122.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0000125.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0001018.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0001241.json | 2 +- ...obolibrary.org%252Fobo%252FUO_0000001.json | 2 +- ...obolibrary.org%252Fobo%252FUO_0000002.json | 2 +- ...obolibrary.org%252Fobo%252FUO_0000003.json | 2 +- ...obolibrary.org%252Fobo%252Ftopic_0003.json | 2 +- ...ormats%252FoboInOwl%2523ObsoleteClass.json | 2 +- ...2Fowl%252Fprotege%2523defaultLanguage.json | 2 +- ...ry.org%252Fobo%252FAPOLLO_SV_00000008.json | 2 +- ...ry.org%252Fobo%252FAPOLLO_SV_00000032.json | 2 +- ...ry.org%252Fobo%252FAPOLLO_SV_00000033.json | 2 +- ...ry.org%252Fobo%252FAPOLLO_SV_00000522.json | 2 +- ...ry.org%252Fobo%252FAPOLLO_SV_00000524.json | 2 +- ...ry.org%252Fobo%252FAPOLLO_SV_00000796.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000001.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000002.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000003.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000004.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000006.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000008.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000009.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000011.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000015.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000016.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000017.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000018.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000019.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000020.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000023.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000024.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000026.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000027.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000028.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000029.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000030.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000031.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000034.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000035.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000038.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000040.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000050.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000051.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000054.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000055.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000066.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000067.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000140.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000141.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000142.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000144.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000145.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000146.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000147.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000148.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000179.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000180.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000182.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000001.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000004.json | 2 +- ...olibrary.org%252Fobo%252FDUO_00000044.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000006.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000007.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000010.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000011.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000012.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000015.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000016.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000017.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000018.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000019.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000020.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000021.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000022.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000024.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000025.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000026.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000027.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000028.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000029.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000031.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000032.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000033.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000034.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000035.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000036.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000037.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000038.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000039.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000040.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000041.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000042.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000043.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000045.json | 2 +- ...bolibrary.org%252Fobo%252FDUO_0000046.json | 2 +- ...olibrary.org%252Fobo%252FGAZ_00000448.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000001.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000002.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000003.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000004.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000005.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000006.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000007.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000009.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000010.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000013.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000015.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000017.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000025.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000027.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000028.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000029.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000030.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000031.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000032.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000033.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000034.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000037.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000038.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000039.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000055.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000057.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000064.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000065.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000078.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000079.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000088.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000096.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000098.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000100.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000101.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000102.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000103.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000104.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000109.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000111.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000112.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000113.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000114.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000115.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000116.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000117.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000118.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000119.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000120.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000121.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000122.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000123.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000124.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000125.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000129.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000131.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000132.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000136.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000140.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000142.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000143.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000144.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000178.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000179.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000180.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000181.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000183.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000184.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000185.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000186.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000219.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000221.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000225.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000226.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000227.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000228.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000229.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000231.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000232.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000233.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000234.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000235.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000300.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000301.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000302.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000303.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000304.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000305.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000306.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000307.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000308.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000309.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000310.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000311.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000312.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000313.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000314.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000315.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000316.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000317.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000318.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000319.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000320.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000321.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000322.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000323.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000324.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000325.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000326.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000327.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000328.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000329.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000330.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000400.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000401.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000402.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000403.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000404.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000405.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000406.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000407.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000408.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000409.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000410.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000411.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000412.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000413.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000414.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000415.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000416.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000417.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000418.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000419.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000420.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000421.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000422.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000423.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000424.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000425.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000426.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000427.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000428.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000429.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000442.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000443.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000444.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000445.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000572.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000573.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000574.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000575.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000577.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000578.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000579.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000580.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000581.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000582.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000583.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000584.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000589.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000590.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000591.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000592.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000593.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000594.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000595.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000596.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000597.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000598.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000599.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000600.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000601.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000602.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000603.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000604.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000605.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000606.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000607.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000608.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000609.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000610.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000611.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000612.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000613.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000614.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000615.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000616.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000617.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000618.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000619.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000620.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000621.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000622.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000623.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000624.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000625.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000626.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000627.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000628.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000629.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000630.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000631.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000632.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000633.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000634.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000635.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000636.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000637.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000638.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000639.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000640.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000641.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000642.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000643.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000644.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000645.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000646.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000647.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000648.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000650.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000700.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000701.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000702.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000703.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000704.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000705.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000706.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000707.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000708.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0006011.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0006012.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0010000.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0020000.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0020001.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0020010.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0020015.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0020016.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0020017.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0020020.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0100001.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000000.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000001.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000002.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000003.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000004.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000005.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000006.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000007.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000008.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000009.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000010.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000011.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000012.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000013.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000014.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000015.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000016.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000017.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000018.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000019.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_8000020.json | 2 +- ...library.org%252Fobo%252FMONDO_0000001.json | 2 +- ...bolibrary.org%252Fobo%252FOBI_0000011.json | 2 +- ...bolibrary.org%252Fobo%252FOBI_0000066.json | 2 +- ...bolibrary.org%252Fobo%252FOBI_0000293.json | 2 +- ...bolibrary.org%252Fobo%252FOBI_0000295.json | 2 +- ...bolibrary.org%252Fobo%252FOBI_0000299.json | 2 +- ...bolibrary.org%252Fobo%252FOBI_0000312.json | 2 +- ...bolibrary.org%252Fobo%252FOBI_0000471.json | 2 +- ...bolibrary.org%252Fobo%252FOBI_0200000.json | 2 +- ...bolibrary.org%252Fobo%252FOBI_0500000.json | 2 +- ...bolibrary.org%252Fobo%252FOMO_0001000.json | 2 +- ...bolibrary.org%252Fobo%252FOMO_0001001.json | 2 +- ...bolibrary.org%252Fobo%252FOMO_0002000.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0000051.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0000122.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0000125.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0001018.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0001241.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000052.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000053.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000056.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000057.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000058.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000059.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000079.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000080.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000081.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000085.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000086.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000087.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000091.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000092.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0001000.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0001001.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0001015.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0001025.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0001900.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002000.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002002.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002350.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002351.json | 2 +- ...obolibrary.org%252Fobo%252FUO_0000001.json | 2 +- ...obolibrary.org%252Fobo%252FUO_0000002.json | 2 +- ...obolibrary.org%252Fobo%252FUO_0000003.json | 2 +- ...obolibrary.org%252Fobo%252Ftopic_0003.json | 2 +- ...%252Felements%252F1.1%252Fcontributor.json | 2 +- ...Fdc%252Felements%252F1.1%252Fcoverage.json | 2 +- ...2Fdc%252Felements%252F1.1%252Fcreator.json | 2 +- ...%252Fdc%252Felements%252F1.1%252Fdate.json | 2 +- ...%252Felements%252F1.1%252Fdescription.json | 2 +- ...52Fdc%252Felements%252F1.1%252Fformat.json | 2 +- ...c%252Felements%252F1.1%252Fidentifier.json | 2 +- ...Fdc%252Felements%252F1.1%252Flanguage.json | 2 +- ...52Fdc%252Felements%252F1.1%252Fmember.json | 2 +- ...dc%252Felements%252F1.1%252Fpublisher.json | 2 +- ...Fdc%252Felements%252F1.1%252Frelation.json | 2 +- ...52Fdc%252Felements%252F1.1%252Frights.json | 2 +- ...52Fdc%252Felements%252F1.1%252Fsource.json | 2 +- ...2Fdc%252Felements%252F1.1%252Fsubject.json | 2 +- ...252Fdc%252Felements%252F1.1%252Ftitle.json | 2 +- ...%252Fdc%252Felements%252F1.1%252Ftype.json | 2 +- ...purl.org%252Fdc%252Fterms%252Flicense.json | 2 +- ...ormats%252FoboInOwl%2523ObsoleteClass.json | 2 +- ...ats%252FoboInOwl%2523ObsoleteProperty.json | 2 +- ...2Fformats%252FoboInOwl%2523created_by.json | 2 +- ...ormats%252FoboInOwl%2523creation_date.json | 2 +- ...mats%252FoboInOwl%2523hasBroadSynonym.json | 2 +- ...52Fformats%252FoboInOwl%2523hasDbXref.json | 2 +- ...mats%252FoboInOwl%2523hasExactSynonym.json | 2 +- ...ats%252FoboInOwl%2523hasNarrowSynonym.json | 2 +- ...ts%252FoboInOwl%2523hasRelatedSynonym.json | 2 +- ...y.org%252Fformats%252FoboInOwl%2523id.json | 2 +- ...52Fformats%252FoboInOwl%2523shorthand.json | 2 +- ...000%252F01%252Frdf-schema%2523comment.json | 2 +- ...252F01%252Frdf-schema%2523isDefinedBy.json | 2 +- ...F2000%252F01%252Frdf-schema%2523label.json | 2 +- ...000%252F01%252Frdf-schema%2523seeAlso.json | 2 +- ...2F02%252Fskos%252Fcore%2523exactMatch.json | 2 +- ...lns.com%252Ffoaf%252F0.1%252Fhomepage.json | 2 +- ...2Fxmlns.com%252Ffoaf%252F0.1%252Fmbox.json | 2 +- ...2Fxmlns.com%252Ffoaf%252F0.1%252Fpage.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000467.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000468.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000483.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000916.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000949.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001007.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001009.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001193.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001281.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001637.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001638.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001639.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001981.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001982.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001986.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002049.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002100.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002107.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002368.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002423.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002530.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0004535.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0004647.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0006841.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0013702.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000050.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000051.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000111.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000112.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000115.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000116.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000118.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000232.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0001900.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002174.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0040042.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000467.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000468.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000483.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000916.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000949.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001007.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001009.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001193.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001281.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001637.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001638.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001639.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001981.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001982.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001986.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002049.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002100.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002107.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002368.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002423.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002530.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0004535.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0004647.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0006841.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0013702.json | 2 +- ...ibrary.org%252Fobo%252FUBPROP_0000001.json | 2 +- ...ibrary.org%252Fobo%252FUBPROP_0000002.json | 2 +- ...ibrary.org%252Fobo%252FUBPROP_0000003.json | 2 +- ...ibrary.org%252Fobo%252FUBPROP_0000007.json | 2 +- ...ibrary.org%252Fobo%252FUBPROP_0000008.json | 2 +- ...ibrary.org%252Fobo%252FUBPROP_0000009.json | 2 +- ...ibrary.org%252Fobo%252FUBPROP_0000010.json | 2 +- ...ibrary.org%252Fobo%252FUBPROP_0000012.json | 2 +- ...ibrary.org%252Fobo%252FUBPROP_0000202.json | 2 +- ...252Fwww.ebi.ac.uk%252Fefo%252FEFO_URI.json | 2 +- ...rmats%252FoboInOwl%2523date_retrieved.json | 2 +- ...rmats%252FoboInOwl%2523external_class.json | 2 +- ...ts%252FoboInOwl%2523external_ontology.json | 2 +- ...ats%252FoboInOwl%2523hasAlternativeId.json | 2 +- ...mats%252FoboInOwl%2523hasBroadSynonym.json | 2 +- ...52Fformats%252FoboInOwl%2523hasDbXref.json | 2 +- ...mats%252FoboInOwl%2523hasExactSynonym.json | 2 +- ...mats%252FoboInOwl%2523hasOBONamespace.json | 2 +- ...ts%252FoboInOwl%2523hasRelatedSynonym.json | 2 +- ...rmats%252FoboInOwl%2523hasSynonymType.json | 2 +- ...y.org%252Fformats%252FoboInOwl%2523id.json | 2 +- ...252Fformats%252FoboInOwl%2523inSubset.json | 2 +- ...rg%252Fformats%252FoboInOwl%2523notes.json | 2 +- ...252Fformats%252FoboInOwl%2523ontology.json | 2 +- ...52Fformats%252FoboInOwl%2523shorthand.json | 2 +- ...g%252Fformats%252FoboInOwl%2523source.json | 2 +- ....com%252Ffoaf%252F0.1%252Fdepicted_by.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0006807.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0008150.json | 2 +- ...olibrary.org%252Fobo%252FOGMS_0000063.json | 2 +- ...www.ebi.ac.uk%252Fefo%252FEFO_0000400.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000051.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000054.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0006807.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0008150.json | 2 +- ...olibrary.org%252Fobo%252FOGMS_0000063.json | 2 +- ...www.ebi.ac.uk%252Fefo%252FEFO_0000400.json | 2 +- ...brary.org%252Fobo%252FGENEPIO_0002113.json | 2 +- ...brary.org%252Fobo%252FGENEPIO_0002113.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000002.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000003.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000004.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000015.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000016.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000017.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000019.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000020.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000023.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000034.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000040.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000141.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000000.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000003.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000039.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000211.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000255.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000393.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000404.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000540.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000548.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000586.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0002319.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0002371.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0000003.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0001508.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0001704.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0001705.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0001706.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0001707.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0001838.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0001841.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0002009.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0003008.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0005102.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0005179.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0005183.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0005515.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0006810.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0006811.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007154.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007165.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007267.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007268.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007275.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007276.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007369.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007398.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007399.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007492.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007498.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0008150.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0009566.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0009653.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0009790.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0009791.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0009792.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0009888.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0009914.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0009987.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0010817.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0016301.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0016331.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0019226.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0019953.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0021915.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0022414.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0023052.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0023061.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0030545.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0030546.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0032501.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0032502.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0032504.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0032940.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0034220.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0035148.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0035239.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0035295.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0038023.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0040016.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0042391.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0043009.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0045202.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0046879.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0046903.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048018.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048332.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048513.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048598.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048609.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048646.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048729.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048731.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048856.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0050789.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0050794.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0050877.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0050896.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0051179.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0051234.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0051301.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0051716.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0055085.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0060429.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0060562.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0065007.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0065008.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0072175.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0098772.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0098916.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0099536.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0099537.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0140352.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0140677.json | 2 +- ...obolibrary.org%252Fobo%252FHP_0001513.json | 2 +- ...library.org%252Fobo%252FMONDO_0000001.json | 2 +- ...library.org%252Fobo%252FMONDO_0002146.json | 2 +- ...library.org%252Fobo%252FMONDO_0002254.json | 2 +- ...library.org%252Fobo%252FMONDO_0002259.json | 2 +- ...library.org%252Fobo%252FMONDO_0002263.json | 2 +- ...library.org%252Fobo%252FMONDO_0002320.json | 2 +- ...library.org%252Fobo%252FMONDO_0003847.json | 2 +- ...library.org%252Fobo%252FMONDO_0003916.json | 2 +- ...library.org%252Fobo%252FMONDO_0005039.json | 2 +- ...library.org%252Fobo%252FMONDO_0005071.json | 2 +- ...library.org%252Fobo%252FMONDO_0005137.json | 2 +- ...library.org%252Fobo%252FMONDO_0005151.json | 2 +- ...library.org%252Fobo%252FMONDO_0008300.json | 2 +- ...library.org%252Fobo%252FMONDO_0011122.json | 2 +- ...library.org%252Fobo%252FMONDO_0015127.json | 2 +- ...library.org%252Fobo%252FMONDO_0015160.json | 2 +- ...library.org%252Fobo%252FMONDO_0015330.json | 2 +- ...library.org%252Fobo%252FMONDO_0015514.json | 2 +- ...library.org%252Fobo%252FMONDO_0015770.json | 2 +- ...library.org%252Fobo%252FMONDO_0015860.json | 2 +- ...library.org%252Fobo%252FMONDO_0016072.json | 2 +- ...library.org%252Fobo%252FMONDO_0016565.json | 2 +- ...library.org%252Fobo%252FMONDO_0018555.json | 2 +- ...library.org%252Fobo%252FMONDO_0019040.json | 2 +- ...library.org%252Fobo%252FMONDO_0019042.json | 2 +- ...library.org%252Fobo%252FMONDO_0019182.json | 2 +- ...library.org%252Fobo%252FMONDO_0019755.json | 2 +- ...library.org%252Fobo%252FMONDO_0019824.json | 2 +- ...library.org%252Fobo%252FMONDO_0021125.json | 2 +- ...library.org%252Fobo%252FMONDO_0021126.json | 2 +- ...library.org%252Fobo%252FMONDO_0021127.json | 2 +- ...library.org%252Fobo%252FMONDO_0021135.json | 2 +- ...library.org%252Fobo%252FMONDO_0021136.json | 2 +- ...library.org%252Fobo%252FMONDO_0021139.json | 2 +- ...library.org%252Fobo%252FMONDO_0021140.json | 2 +- ...library.org%252Fobo%252FMONDO_0021147.json | 2 +- ...library.org%252Fobo%252FMONDO_0021149.json | 2 +- ...library.org%252Fobo%252FMONDO_0021152.json | 2 +- ...library.org%252Fobo%252FMONDO_0100038.json | 2 +- ...library.org%252Fobo%252FMONDO_0100500.json | 2 +- ...library.org%252Fobo%252FMONDO_0700092.json | 2 +- ...library.org%252Fobo%252FMONDO_0700096.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_110814.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_110815.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_117570.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_117571.json | 2 +- ...ary.org%252Fobo%252FNCBITaxon_1312402.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_131567.json | 2 +- ...ary.org%252Fobo%252FNCBITaxon_1338369.json | 2 +- ...ary.org%252Fobo%252FNCBITaxon_1437010.json | 2 +- ...ary.org%252Fobo%252FNCBITaxon_1547233.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_207598.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_2759.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_314146.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_314293.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_314295.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_32523.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_32524.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_32525.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_33154.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_33208.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_33213.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_33511.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_376913.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_40674.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_6040.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_6072.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_7711.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_7742.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_7776.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_8287.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_89593.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_9347.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_9443.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_9526.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_9604.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_9605.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_9606.json | 2 +- ...olibrary.org%252Fobo%252FOGMS_0000031.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0000001.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0000051.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0000141.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0001018.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0001241.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0001992.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0001993.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0001995.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0002198.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0010001.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000000.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000061.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000062.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000066.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000068.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000071.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000092.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000104.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000105.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000106.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000107.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000108.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000109.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000110.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000111.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000463.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000465.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000466.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000467.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000468.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000474.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000922.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000949.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000990.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000991.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001016.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001048.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001062.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002050.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002368.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002530.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0003100.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0003133.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0005156.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0005423.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0005564.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0006598.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0006984.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0010000.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0010199.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0015203.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0015204.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0016880.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0034923.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000002.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000003.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000004.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000015.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000016.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000017.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000019.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000020.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000023.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000034.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000040.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000050.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000051.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000062.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000063.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000066.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000067.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000141.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000000.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000003.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000039.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000211.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000255.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000393.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000404.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000540.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000548.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0000586.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0002319.json | 2 +- ...obolibrary.org%252Fobo%252FCL_0002371.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0000003.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0001508.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0001704.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0001705.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0001706.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0001707.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0001838.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0001841.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0002009.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0003008.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0005102.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0005179.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0005183.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0005515.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0006810.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0006811.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007154.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007165.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007267.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007268.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007275.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007276.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007369.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007398.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007399.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007492.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0007498.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0008150.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0009566.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0009653.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0009790.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0009791.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0009792.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0009888.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0009914.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0009987.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0010817.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0016301.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0016331.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0019226.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0019953.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0021915.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0022414.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0023052.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0023061.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0030545.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0030546.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0032501.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0032502.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0032504.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0032940.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0034220.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0035148.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0035239.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0035295.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0038023.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0040016.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0042391.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0043009.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0045202.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0046879.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0046903.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048018.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048332.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048513.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048598.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048609.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048646.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048729.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048731.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0048856.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0050789.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0050794.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0050877.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0050896.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0051179.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0051234.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0051301.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0051716.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0055085.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0060429.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0060562.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0065007.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0065008.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0072175.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0098772.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0098916.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0099536.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0099537.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0140352.json | 2 +- ...obolibrary.org%252Fobo%252FGO_0140677.json | 2 +- ...obolibrary.org%252Fobo%252FHP_0001513.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000115.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000116.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0000233.json | 2 +- ...bolibrary.org%252Fobo%252FIAO_0006012.json | 2 +- ...library.org%252Fobo%252FMONDO_0000001.json | 2 +- ...library.org%252Fobo%252FMONDO_0002146.json | 2 +- ...library.org%252Fobo%252FMONDO_0002254.json | 2 +- ...library.org%252Fobo%252FMONDO_0002259.json | 2 +- ...library.org%252Fobo%252FMONDO_0002263.json | 2 +- ...library.org%252Fobo%252FMONDO_0002320.json | 2 +- ...library.org%252Fobo%252FMONDO_0003847.json | 2 +- ...library.org%252Fobo%252FMONDO_0003916.json | 2 +- ...library.org%252Fobo%252FMONDO_0005039.json | 2 +- ...library.org%252Fobo%252FMONDO_0005071.json | 2 +- ...library.org%252Fobo%252FMONDO_0005137.json | 2 +- ...library.org%252Fobo%252FMONDO_0005151.json | 2 +- ...library.org%252Fobo%252FMONDO_0008300.json | 2 +- ...library.org%252Fobo%252FMONDO_0011122.json | 2 +- ...library.org%252Fobo%252FMONDO_0015127.json | 2 +- ...library.org%252Fobo%252FMONDO_0015160.json | 2 +- ...library.org%252Fobo%252FMONDO_0015330.json | 2 +- ...library.org%252Fobo%252FMONDO_0015514.json | 2 +- ...library.org%252Fobo%252FMONDO_0015770.json | 2 +- ...library.org%252Fobo%252FMONDO_0015860.json | 2 +- ...library.org%252Fobo%252FMONDO_0016072.json | 2 +- ...library.org%252Fobo%252FMONDO_0016565.json | 2 +- ...library.org%252Fobo%252FMONDO_0018555.json | 2 +- ...library.org%252Fobo%252FMONDO_0019040.json | 2 +- ...library.org%252Fobo%252FMONDO_0019042.json | 2 +- ...library.org%252Fobo%252FMONDO_0019182.json | 2 +- ...library.org%252Fobo%252FMONDO_0019755.json | 2 +- ...library.org%252Fobo%252FMONDO_0019824.json | 2 +- ...library.org%252Fobo%252FMONDO_0021125.json | 2 +- ...library.org%252Fobo%252FMONDO_0021126.json | 2 +- ...library.org%252Fobo%252FMONDO_0021127.json | 2 +- ...library.org%252Fobo%252FMONDO_0021135.json | 2 +- ...library.org%252Fobo%252FMONDO_0021136.json | 2 +- ...library.org%252Fobo%252FMONDO_0021139.json | 2 +- ...library.org%252Fobo%252FMONDO_0021140.json | 2 +- ...library.org%252Fobo%252FMONDO_0021147.json | 2 +- ...library.org%252Fobo%252FMONDO_0021149.json | 2 +- ...library.org%252Fobo%252FMONDO_0021152.json | 2 +- ...library.org%252Fobo%252FMONDO_0100038.json | 2 +- ...library.org%252Fobo%252FMONDO_0100500.json | 2 +- ...library.org%252Fobo%252FMONDO_0700092.json | 2 +- ...library.org%252Fobo%252FMONDO_0700096.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_110814.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_110815.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_117570.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_117571.json | 2 +- ...ary.org%252Fobo%252FNCBITaxon_1312402.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_131567.json | 2 +- ...ary.org%252Fobo%252FNCBITaxon_1338369.json | 2 +- ...ary.org%252Fobo%252FNCBITaxon_1437010.json | 2 +- ...ary.org%252Fobo%252FNCBITaxon_1547233.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_207598.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_2759.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_314146.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_314293.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_314295.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_32523.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_32524.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_32525.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_33154.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_33208.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_33213.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_33511.json | 2 +- ...rary.org%252Fobo%252FNCBITaxon_376913.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_40674.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_6040.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_6072.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_7711.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_7742.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_7776.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_8287.json | 2 +- ...brary.org%252Fobo%252FNCBITaxon_89593.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_9347.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_9443.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_9526.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_9604.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_9605.json | 2 +- ...ibrary.org%252Fobo%252FNCBITaxon_9606.json | 2 +- ...olibrary.org%252Fobo%252FOGMS_0000031.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0000001.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0000051.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0000141.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0001018.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0001241.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0001992.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0001993.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0001995.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0002198.json | 2 +- ...olibrary.org%252Fobo%252FPATO_0010001.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000052.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000053.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000056.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000057.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000079.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000080.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000081.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000085.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000086.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000087.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000091.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0000092.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002000.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002002.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002013.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002014.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002015.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002017.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002018.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002022.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002023.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002024.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002025.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002081.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002082.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002086.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002087.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002090.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002131.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002160.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002162.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002175.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002180.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002202.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002203.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002207.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002210.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002211.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002212.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002213.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002215.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002216.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002222.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002223.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002224.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002225.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002229.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002230.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002231.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002232.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002233.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002254.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002255.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002258.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002263.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002264.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002286.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002287.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002304.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002305.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002327.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002331.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002333.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002334.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002335.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002336.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002352.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002384.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002385.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002387.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002388.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002404.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002405.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002407.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002409.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002411.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002412.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002418.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002427.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002428.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002429.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002430.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002431.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002434.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002436.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002447.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002448.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002449.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002450.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002473.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002479.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002487.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002488.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002489.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002490.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002492.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002493.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002494.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002495.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002496.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002497.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002500.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002501.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002506.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002559.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002566.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002578.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002584.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002595.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002596.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002597.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002598.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002608.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002629.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002630.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0003000.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0003001.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0004019.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0004021.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0004023.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0004024.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0004026.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0004029.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0004032.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0004033.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0004034.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0004035.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0004046.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0004047.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0011002.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0012011.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0012012.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0019000.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0019001.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0019002.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000000.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000061.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000062.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000066.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000068.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000071.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000092.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000104.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000105.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000106.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000107.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000108.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000109.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000110.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000111.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000463.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000465.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000466.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000467.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000468.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000474.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000922.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000949.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000990.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000991.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001016.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001048.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0001062.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002050.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002368.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0002530.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0003100.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0003133.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0005156.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0005423.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0005564.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0006598.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0006984.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0010000.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0010199.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0015203.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0015204.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0016880.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0034923.json | 2 +- ...obo%252Fmondo%2523excluded_subClassOf.json | 2 +- ...2Fobo%252Fmondo%2523should_conform_to.json | 2 +- ...%252Fdc%252Felements%252F1.1%252Fdate.json | 2 +- ...l.org%252Fdc%252Fterms%252FconformsTo.json | 2 +- ...purl.org%252Fdc%252Fterms%252Fcreator.json | 2 +- ...mats%252FoboInOwl%2523hasBroadSynonym.json | 2 +- ...52Fformats%252FoboInOwl%2523hasDbXref.json | 2 +- ...mats%252FoboInOwl%2523hasExactSynonym.json | 2 +- ...ats%252FoboInOwl%2523hasNarrowSynonym.json | 2 +- ...ts%252FoboInOwl%2523hasRelatedSynonym.json | 2 +- ...rmats%252FoboInOwl%2523hasSynonymType.json | 2 +- ...y.org%252Fformats%252FoboInOwl%2523id.json | 2 +- ...252Fformats%252FoboInOwl%2523inSubset.json | 2 +- ...52Fformats%252FoboInOwl%2523shorthand.json | 2 +- ...g%252Fformats%252FoboInOwl%2523source.json | 2 +- ...F2000%252F01%252Frdf-schema%2523label.json | 2 +- ...2F02%252Fskos%252Fcore%2523closeMatch.json | 2 +- ...2F02%252Fskos%252Fcore%2523exactMatch.json | 2 +- .../ontologies/gitissue502/properties.json | 52 +- ...obolibrary.org%252Fobo%252FRO_0000053.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0002162.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0004021.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0004024.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0004026.json | 2 +- ...obolibrary.org%252Fobo%252FRO_0004029.json | 2 +- ...mats%252FoboInOwl%2523hasBroadSynonym.json | 4 +- ...52Fformats%252FoboInOwl%2523hasDbXref.json | 4 +- ...mats%252FoboInOwl%2523hasExactSynonym.json | 4 +- ...ats%252FoboInOwl%2523hasNarrowSynonym.json | 4 +- ...ts%252FoboInOwl%2523hasRelatedSynonym.json | 4 +- ...rmats%252FoboInOwl%2523hasSynonymType.json | 4 +- ...252Fformats%252FoboInOwl%2523inSubset.json | 4 +- ...F2000%252F01%252Frdf-schema%2523label.json | 4 +- ...2F02%252Fskos%252Fcore%2523closeMatch.json | 4 +- ...2F02%252Fskos%252Fcore%2523exactMatch.json | 4 +- .../ontologies/gitissue502/terms.json | 64 +- .../descendants.json | 64 +- .../hierarchicalDescendants.json | 64 +- .../children.json | 2 +- .../descendants.json | 60 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 60 +- .../descendants.json | 60 +- .../hierarchicalDescendants.json | 60 +- .../descendants.json | 64 +- .../hierarchicalDescendants.json | 64 +- ...library.org%252Fobo%252FMONDO_0000001.json | 2 +- .../descendants.json | 58 +- .../hierarchicalDescendants.json | 58 +- ...library.org%252Fobo%252FMONDO_0002146.json | 2 +- .../ancestors.json | 8 +- .../children.json | 2 +- .../descendants.json | 6 +- .../hierarchicalAncestors.json | 8 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 6 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- ...library.org%252Fobo%252FMONDO_0002254.json | 2 +- .../ancestors.json | 2 +- .../children.json | 2 +- .../descendants.json | 4 +- .../hierarchicalAncestors.json | 2 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 4 +- ...library.org%252Fobo%252FMONDO_0002259.json | 2 +- .../ancestors.json | 6 +- .../children.json | 2 +- .../descendants.json | 8 +- .../hierarchicalAncestors.json | 6 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 8 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...library.org%252Fobo%252FMONDO_0002263.json | 2 +- .../ancestors.json | 4 +- .../children.json | 2 +- .../descendants.json | 8 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 8 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- ...library.org%252Fobo%252FMONDO_0002320.json | 2 +- .../ancestors.json | 4 +- .../children.json | 2 +- .../descendants.json | 2 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 2 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- ...library.org%252Fobo%252FMONDO_0003847.json | 2 +- .../ancestors.json | 2 +- .../children.json | 6 +- .../descendants.json | 12 +- .../hierarchicalAncestors.json | 2 +- .../hierarchicalChildren.json | 6 +- .../hierarchicalDescendants.json | 12 +- ...library.org%252Fobo%252FMONDO_0003916.json | 2 +- .../ancestors.json | 4 +- .../children.json | 2 +- .../descendants.json | 8 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 8 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- ...library.org%252Fobo%252FMONDO_0005039.json | 2 +- .../ancestors.json | 2 +- .../children.json | 4 +- .../descendants.json | 16 +- .../hierarchicalAncestors.json | 2 +- .../hierarchicalChildren.json | 4 +- .../hierarchicalDescendants.json | 16 +- ...library.org%252Fobo%252FMONDO_0005071.json | 2 +- .../ancestors.json | 2 +- .../children.json | 4 +- .../descendants.json | 6 +- .../hierarchicalAncestors.json | 2 +- .../hierarchicalChildren.json | 4 +- .../hierarchicalDescendants.json | 6 +- ...library.org%252Fobo%252FMONDO_0005137.json | 2 +- .../ancestors.json | 2 +- .../children.json | 2 +- .../descendants.json | 10 +- .../hierarchicalAncestors.json | 2 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 10 +- ...library.org%252Fobo%252FMONDO_0005151.json | 2 +- .../ancestors.json | 2 +- .../children.json | 8 +- .../descendants.json | 20 +- .../hierarchicalAncestors.json | 2 +- .../hierarchicalChildren.json | 8 +- .../hierarchicalDescendants.json | 20 +- ...library.org%252Fobo%252FMONDO_0008300.json | 2 +- .../ancestors.json | 58 +- .../hierarchicalAncestors.json | 58 +- .../hierarchicalParents.json | 10 +- .../parents.json | 10 +- ...library.org%252Fobo%252FMONDO_0011122.json | 2 +- .../ancestors.json | 6 +- .../children.json | 2 +- .../descendants.json | 6 +- .../hierarchicalAncestors.json | 6 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 6 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- ...library.org%252Fobo%252FMONDO_0015127.json | 2 +- .../ancestors.json | 4 +- .../children.json | 2 +- .../descendants.json | 6 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 6 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- ...library.org%252Fobo%252FMONDO_0015160.json | 2 +- .../ancestors.json | 8 +- .../children.json | 2 +- .../descendants.json | 2 +- .../hierarchicalAncestors.json | 8 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 2 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- ...library.org%252Fobo%252FMONDO_0015330.json | 2 +- .../ancestors.json | 6 +- .../children.json | 2 +- .../descendants.json | 4 +- .../hierarchicalAncestors.json | 6 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 4 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- ...library.org%252Fobo%252FMONDO_0015514.json | 2 +- .../ancestors.json | 4 +- .../children.json | 2 +- .../descendants.json | 6 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 6 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- ...library.org%252Fobo%252FMONDO_0015770.json | 2 +- .../ancestors.json | 26 +- .../children.json | 2 +- .../descendants.json | 2 +- .../hierarchicalAncestors.json | 26 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 2 +- .../hierarchicalParents.json | 6 +- .../parents.json | 6 +- ...library.org%252Fobo%252FMONDO_0015860.json | 2 +- .../ancestors.json | 6 +- .../children.json | 2 +- .../descendants.json | 6 +- .../hierarchicalAncestors.json | 6 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 6 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- ...library.org%252Fobo%252FMONDO_0016072.json | 2 +- .../ancestors.json | 10 +- .../children.json | 2 +- .../descendants.json | 4 +- .../hierarchicalAncestors.json | 10 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...library.org%252Fobo%252FMONDO_0016565.json | 2 +- .../ancestors.json | 22 +- .../children.json | 2 +- .../descendants.json | 2 +- .../hierarchicalAncestors.json | 22 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 2 +- .../hierarchicalParents.json | 6 +- .../parents.json | 6 +- ...library.org%252Fobo%252FMONDO_0018555.json | 2 +- .../ancestors.json | 12 +- .../children.json | 2 +- .../descendants.json | 4 +- .../hierarchicalAncestors.json | 12 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...library.org%252Fobo%252FMONDO_0019040.json | 2 +- .../ancestors.json | 2 +- .../children.json | 2 +- .../descendants.json | 2 +- .../hierarchicalAncestors.json | 2 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 2 +- ...library.org%252Fobo%252FMONDO_0019042.json | 2 +- .../ancestors.json | 6 +- .../children.json | 2 +- .../descendants.json | 4 +- .../hierarchicalAncestors.json | 6 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 4 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- ...library.org%252Fobo%252FMONDO_0019182.json | 2 +- .../ancestors.json | 12 +- .../children.json | 2 +- .../descendants.json | 4 +- .../hierarchicalAncestors.json | 12 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 4 +- .../hierarchicalParents.json | 6 +- .../parents.json | 6 +- ...library.org%252Fobo%252FMONDO_0019755.json | 2 +- .../ancestors.json | 4 +- .../children.json | 4 +- .../descendants.json | 10 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalChildren.json | 4 +- .../hierarchicalDescendants.json | 10 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- ...library.org%252Fobo%252FMONDO_0019824.json | 2 +- .../ancestors.json | 8 +- .../children.json | 2 +- .../descendants.json | 4 +- .../hierarchicalAncestors.json | 8 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...library.org%252Fobo%252FMONDO_0021125.json | 2 +- .../descendants.json | 2 +- .../hierarchicalDescendants.json | 2 +- .../ancestors.json | 2 +- .../hierarchicalAncestors.json | 2 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- .../ancestors.json | 2 +- .../hierarchicalAncestors.json | 2 +- .../ancestors.json | 2 +- .../hierarchicalAncestors.json | 2 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- .../ancestors.json | 2 +- .../hierarchicalAncestors.json | 2 +- .../ancestors.json | 2 +- .../hierarchicalAncestors.json | 2 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- .../ancestors.json | 2 +- .../hierarchicalAncestors.json | 2 +- ...library.org%252Fobo%252FMONDO_0021147.json | 2 +- .../ancestors.json | 2 +- .../children.json | 2 +- .../descendants.json | 12 +- .../hierarchicalAncestors.json | 2 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 12 +- .../ancestors.json | 2 +- .../children.json | 2 +- .../descendants.json | 2 +- .../hierarchicalAncestors.json | 2 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 2 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- ...library.org%252Fobo%252FMONDO_0021152.json | 2 +- .../ancestors.json | 2 +- .../hierarchicalAncestors.json | 2 +- .../ancestors.json | 6 +- .../children.json | 2 +- .../descendants.json | 2 +- .../hierarchicalAncestors.json | 6 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 2 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- .../ancestors.json | 8 +- .../children.json | 2 +- .../descendants.json | 2 +- .../hierarchicalAncestors.json | 8 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 2 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...library.org%252Fobo%252FMONDO_0700092.json | 2 +- .../ancestors.json | 4 +- .../descendants.json | 2 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalDescendants.json | 2 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- .../ancestors.json | 2 +- .../children.json | 16 +- .../descendants.json | 58 +- .../hierarchicalAncestors.json | 2 +- .../hierarchicalChildren.json | 16 +- .../hierarchicalDescendants.json | 58 +- .../hierarchicalParents.json | 2 +- .../parents.json | 2 +- .../children.json | 10 +- .../descendants.json | 48 +- .../hierarchicalChildren.json | 10 +- .../hierarchicalDescendants.json | 48 +- .../children.json | 2 +- .../descendants.json | 4 +- .../hierarchicalChildren.json | 2 +- .../hierarchicalDescendants.json | 4 +- ...nonymous-types-with-inverse.owl%2523A.json | 2 +- ...nonymous-types-with-inverse.owl%2523a.json | 2 +- ...-with-inverse.owl%2523inverseRelation.json | 2 +- ...s-types-with-inverse.owl%2523relation.json | 2 +- ...isObsolete.rdf%2523NonDeprecatedClass.json | 2 +- ...ormats%252FoboInOwl%2523ObsoleteClass.json | 2 +- ...isObsolete.rdf%2523NonDeprecatedClass.json | 2 +- ...ete.rdf%2523NonDeprecatedDataProperty.json | 2 +- ...olete.rdf%2523NonDeprecatedIndividual.json | 2 +- ...e.rdf%2523NonDeprecatedObjectProperty.json | 2 +- ...ormats%252FoboInOwl%2523ObsoleteClass.json | 2 +- ...52Ftestcase%252Flabel%2523deLangClass.json | 2 +- ...2Ftestcase%252Flabel%2523enLabelClass.json | 2 +- ...2Ftestcase%252Flabel%2523noLabelClass.json | 2 +- ...52Ftestcase%252Flabel%2523noLangClass.json | 2 +- ...52Ftestcase%252Flabel%2523deLangClass.json | 2 +- ...252Ftestcase%252Flabel%2523deProperty.json | 2 +- ...2Ftestcase%252Flabel%2523enLabelClass.json | 2 +- ...252Ftestcase%252Flabel%2523enProperty.json | 2 +- ...2Ftestcase%252Flabel%2523noLabelClass.json | 2 +- ...estcase%252Flabel%2523noLabelProperty.json | 2 +- ...52Ftestcase%252Flabel%2523noLangClass.json | 2 +- ...4%252Ftestcase%252Flabel%2523property.json | 2 +- ...g%252Fformats%252FoboInOwl%2523DbXref.json | 3 + ...2Fformats%252FoboInOwl%2523Definition.json | 3 + ...ormats%252FoboInOwl%2523ObsoleteClass.json | 3 + ...g%252Fformats%252FoboInOwl%2523Subset.json | 3 + ...%252Fformats%252FoboInOwl%2523Synonym.json | 3 + ...Fformats%252FoboInOwl%2523SynonymType.json | 3 + ...g%252Fformats%252FoboInOwl%2523DbXref.json | 3 + ...2Fformats%252FoboInOwl%2523Definition.json | 3 + ...ormats%252FoboInOwl%2523ObsoleteClass.json | 3 + ...ats%252FoboInOwl%2523ObsoleteProperty.json | 3 + ...g%252Fformats%252FoboInOwl%2523Subset.json | 3 + ...rmats%252FoboInOwl%2523SubsetProperty.json | 3 + ...%252Fformats%252FoboInOwl%2523Synonym.json | 3 + ...Fformats%252FoboInOwl%2523SynonymType.json | 3 + ...%252FoboInOwl%2523SynonymTypeProperty.json | 3 + ...252Fformats%252FoboInOwl%2523consider.json | 3 + ...ats%252FoboInOwl%2523hasAlternativeId.json | 3 + ...mats%252FoboInOwl%2523hasBroadSynonym.json | 3 + ...%252Fformats%252FoboInOwl%2523hasDate.json | 3 + ...52Fformats%252FoboInOwl%2523hasDbXref.json | 3 + ...%252FoboInOwl%2523hasDefaultNamespace.json | 3 + ...ormats%252FoboInOwl%2523hasDefinition.json | 3 + ...mats%252FoboInOwl%2523hasExactSynonym.json | 3 + ...ats%252FoboInOwl%2523hasNarrowSynonym.json | 3 + ...mats%252FoboInOwl%2523hasOBONamespace.json | 3 + ...ts%252FoboInOwl%2523hasRelatedSynonym.json | 3 + ...52Fformats%252FoboInOwl%2523hasSubset.json | 3 + ...2Fformats%252FoboInOwl%2523hasSynonym.json | 3 + ...rmats%252FoboInOwl%2523hasSynonymType.json | 3 + ...g%252Fformats%252FoboInOwl%2523hasURI.json | 3 + ...2Fformats%252FoboInOwl%2523hasVersion.json | 3 + ...252Fformats%252FoboInOwl%2523inSubset.json | 3 + ...252Fformats%252FoboInOwl%2523isCyclic.json | 3 + ...2Fformats%252FoboInOwl%2523replacedBy.json | 3 + ...%252Fformats%252FoboInOwl%2523savedBy.json | 3 + .../ontologies/oio/individuals.json | 1 + .../ontologies/oio/properties.json | 1376 ++ ...ats%252FoboInOwl%2523ObsoleteProperty.json | 55 + ...rmats%252FoboInOwl%2523SubsetProperty.json | 53 + ...%252FoboInOwl%2523SynonymTypeProperty.json | 53 + ...252Fformats%252FoboInOwl%2523consider.json | 72 + ...ats%252FoboInOwl%2523hasAlternativeId.json | 72 + ...mats%252FoboInOwl%2523hasBroadSynonym.json | 81 + ...%252Fformats%252FoboInOwl%2523hasDate.json | 41 + ...52Fformats%252FoboInOwl%2523hasDbXref.json | 41 + ...%252FoboInOwl%2523hasDefaultNamespace.json | 41 + ...ormats%252FoboInOwl%2523hasDefinition.json | 74 + ...mats%252FoboInOwl%2523hasExactSynonym.json | 81 + ...ats%252FoboInOwl%2523hasNarrowSynonym.json | 81 + ...mats%252FoboInOwl%2523hasOBONamespace.json | 72 + ...ts%252FoboInOwl%2523hasRelatedSynonym.json | 81 + ...52Fformats%252FoboInOwl%2523hasSubset.json | 53 + ...2Fformats%252FoboInOwl%2523hasSynonym.json | 80 + ...rmats%252FoboInOwl%2523hasSynonymType.json | 41 + ...g%252Fformats%252FoboInOwl%2523hasURI.json | 21 + ...2Fformats%252FoboInOwl%2523hasVersion.json | 41 + ...252Fformats%252FoboInOwl%2523inSubset.json | 72 + ...252Fformats%252FoboInOwl%2523isCyclic.json | 55 + ...2Fformats%252FoboInOwl%2523replacedBy.json | 72 + ...%252Fformats%252FoboInOwl%2523savedBy.json | 41 + .../ontologies/oio/terms.json | 339 + ...g%252Fformats%252FoboInOwl%2523DbXref.json | 25 + .../ancestors.json | 1 + .../children.json | 1 + .../descendants.json | 1 + .../hierarchicalAncestors.json | 1 + .../hierarchicalChildren.json | 1 + .../hierarchicalDescendants.json | 1 + .../hierarchicalParents.json | 1 + .../parents.json | 1 + ...2Fformats%252FoboInOwl%2523Definition.json | 84 + .../ancestors.json | 1 + .../children.json | 1 + .../descendants.json | 1 + .../hierarchicalAncestors.json | 1 + .../hierarchicalChildren.json | 1 + .../hierarchicalDescendants.json | 1 + .../hierarchicalParents.json | 1 + .../parents.json | 1 + ...ormats%252FoboInOwl%2523ObsoleteClass.json | 57 + .../ancestors.json | 1 + .../children.json | 1 + .../descendants.json | 1 + .../hierarchicalAncestors.json | 1 + .../hierarchicalChildren.json | 1 + .../hierarchicalDescendants.json | 1 + .../hierarchicalParents.json | 1 + .../parents.json | 1 + ...g%252Fformats%252FoboInOwl%2523Subset.json | 87 + .../ancestors.json | 1 + .../children.json | 1 + .../descendants.json | 1 + .../hierarchicalAncestors.json | 1 + .../hierarchicalChildren.json | 1 + .../hierarchicalDescendants.json | 1 + .../hierarchicalParents.json | 1 + .../parents.json | 1 + ...%252Fformats%252FoboInOwl%2523Synonym.json | 59 + .../ancestors.json | 1 + .../children.json | 1 + .../descendants.json | 1 + .../hierarchicalAncestors.json | 1 + .../hierarchicalChildren.json | 1 + .../hierarchicalDescendants.json | 1 + .../hierarchicalParents.json | 1 + .../parents.json | 1 + ...Fformats%252FoboInOwl%2523SynonymType.json | 25 + .../ancestors.json | 1 + .../children.json | 1 + .../descendants.json | 1 + .../hierarchicalAncestors.json | 1 + .../hierarchicalChildren.json | 1 + .../hierarchicalDescendants.json | 1 + .../hierarchicalParents.json | 1 + .../parents.json | 1 + ...F2000%252F01%252Frdf-schema%2523Class.json | 2 +- ...0%252F01%252Frdf-schema%2523Container.json | 2 +- ...chema%2523ContainerMembershipProperty.json | 2 +- ...00%252F01%252Frdf-schema%2523Datatype.json | 2 +- ...000%252F01%252Frdf-schema%2523Literal.json | 2 +- ...00%252F01%252Frdf-schema%2523Resource.json | 2 +- ...F2002%252F07%252Fowl%2523AllDifferent.json | 2 +- ...252F07%252Fowl%2523AllDisjointClasses.json | 2 +- ...F07%252Fowl%2523AllDisjointProperties.json | 2 +- ...52F2002%252F07%252Fowl%2523Annotation.json | 2 +- ...252F07%252Fowl%2523AnnotationProperty.json | 2 +- ...252F07%252Fowl%2523AsymmetricProperty.json | 2 +- ...org%252F2002%252F07%252Fowl%2523Axiom.json | 2 +- ...org%252F2002%252F07%252Fowl%2523Class.json | 2 +- ...252F2002%252F07%252Fowl%2523DataRange.json | 2 +- ...2%252F07%252Fowl%2523DatatypeProperty.json | 2 +- ...02%252F07%252Fowl%2523DeprecatedClass.json | 2 +- ...252F07%252Fowl%2523DeprecatedProperty.json | 2 +- ...252F07%252Fowl%2523FunctionalProperty.json | 2 +- ...252Fowl%2523InverseFunctionalProperty.json | 2 +- ...52F07%252Fowl%2523IrreflexiveProperty.json | 2 +- ...02%252F07%252Fowl%2523NamedIndividual.json | 2 +- ...252Fowl%2523NegativePropertyAssertion.json | 2 +- ...g%252F2002%252F07%252Fowl%2523Nothing.json | 2 +- ...002%252F07%252Fowl%2523ObjectProperty.json | 2 +- ...%252F2002%252F07%252Fowl%2523Ontology.json | 2 +- ...2%252F07%252Fowl%2523OntologyProperty.json | 2 +- ...%252F07%252Fowl%2523ReflexiveProperty.json | 2 +- ...2F2002%252F07%252Fowl%2523Restriction.json | 2 +- ...%252F07%252Fowl%2523SymmetricProperty.json | 2 +- ...org%252F2002%252F07%252Fowl%2523Thing.json | 2 +- ...252F07%252Fowl%2523TransitiveProperty.json | 2 +- ...F2000%252F01%252Frdf-schema%2523Class.json | 2 +- ...0%252F01%252Frdf-schema%2523Container.json | 2 +- ...chema%2523ContainerMembershipProperty.json | 2 +- ...00%252F01%252Frdf-schema%2523Datatype.json | 2 +- ...000%252F01%252Frdf-schema%2523Literal.json | 2 +- ...00%252F01%252Frdf-schema%2523Resource.json | 2 +- ...000%252F01%252Frdf-schema%2523comment.json | 2 +- ...2000%252F01%252Frdf-schema%2523domain.json | 2 +- ...252F01%252Frdf-schema%2523isDefinedBy.json | 2 +- ...F2000%252F01%252Frdf-schema%2523label.json | 2 +- ...2000%252F01%252Frdf-schema%2523member.json | 2 +- ...F2000%252F01%252Frdf-schema%2523range.json | 2 +- ...000%252F01%252Frdf-schema%2523seeAlso.json | 2 +- ...%252F01%252Frdf-schema%2523subClassOf.json | 2 +- ...2F01%252Frdf-schema%2523subPropertyOf.json | 2 +- ...F2002%252F07%252Fowl%2523AllDifferent.json | 2 +- ...252F07%252Fowl%2523AllDisjointClasses.json | 2 +- ...F07%252Fowl%2523AllDisjointProperties.json | 2 +- ...52F2002%252F07%252Fowl%2523Annotation.json | 2 +- ...252F07%252Fowl%2523AnnotationProperty.json | 2 +- ...252F07%252Fowl%2523AsymmetricProperty.json | 2 +- ...org%252F2002%252F07%252Fowl%2523Axiom.json | 2 +- ...org%252F2002%252F07%252Fowl%2523Class.json | 2 +- ...252F2002%252F07%252Fowl%2523DataRange.json | 2 +- ...2%252F07%252Fowl%2523DatatypeProperty.json | 2 +- ...02%252F07%252Fowl%2523DeprecatedClass.json | 2 +- ...252F07%252Fowl%2523DeprecatedProperty.json | 2 +- ...252F07%252Fowl%2523FunctionalProperty.json | 2 +- ...252Fowl%2523InverseFunctionalProperty.json | 2 +- ...52F07%252Fowl%2523IrreflexiveProperty.json | 2 +- ...02%252F07%252Fowl%2523NamedIndividual.json | 2 +- ...252Fowl%2523NegativePropertyAssertion.json | 2 +- ...g%252F2002%252F07%252Fowl%2523Nothing.json | 2 +- ...002%252F07%252Fowl%2523ObjectProperty.json | 2 +- ...%252F2002%252F07%252Fowl%2523Ontology.json | 2 +- ...2%252F07%252Fowl%2523OntologyProperty.json | 2 +- ...%252F07%252Fowl%2523ReflexiveProperty.json | 2 +- ...2F2002%252F07%252Fowl%2523Restriction.json | 2 +- ...%252F07%252Fowl%2523SymmetricProperty.json | 2 +- ...org%252F2002%252F07%252Fowl%2523Thing.json | 2 +- ...252F07%252Fowl%2523TransitiveProperty.json | 2 +- ...2002%252F07%252Fowl%2523allValuesFrom.json | 2 +- ...%252F07%252Fowl%2523annotatedProperty.json | 2 +- ...02%252F07%252Fowl%2523annotatedSource.json | 2 +- ...02%252F07%252Fowl%2523annotatedTarget.json | 2 +- ...%252F07%252Fowl%2523assertionProperty.json | 2 +- ...07%252Fowl%2523backwardCompatibleWith.json | 2 +- ...252F07%252Fowl%2523bottomDataProperty.json | 2 +- ...2F07%252Fowl%2523bottomObjectProperty.json | 2 +- ...2F2002%252F07%252Fowl%2523cardinality.json | 2 +- ...F2002%252F07%252Fowl%2523complementOf.json | 2 +- ...2F07%252Fowl%2523datatypeComplementOf.json | 2 +- ...52F2002%252F07%252Fowl%2523deprecated.json | 2 +- ...2002%252F07%252Fowl%2523differentFrom.json | 2 +- ...02%252F07%252Fowl%2523disjointUnionOf.json | 2 +- ...F2002%252F07%252Fowl%2523disjointWith.json | 2 +- ...02%252F07%252Fowl%2523distinctMembers.json | 2 +- ...02%252F07%252Fowl%2523equivalentClass.json | 2 +- ...252F07%252Fowl%2523equivalentProperty.json | 2 +- ...rg%252F2002%252F07%252Fowl%2523hasKey.json | 2 +- ...g%252F2002%252F07%252Fowl%2523hasSelf.json | 2 +- ...%252F2002%252F07%252Fowl%2523hasValue.json | 2 +- ...2%252F07%252Fowl%2523incompatibleWith.json | 2 +- ...002%252F07%252Fowl%2523intersectionOf.json | 2 +- ...252F2002%252F07%252Fowl%2523inverseOf.json | 2 +- ...002%252F07%252Fowl%2523maxCardinality.json | 2 +- ...7%252Fowl%2523maxQualifiedCardinality.json | 2 +- ...g%252F2002%252F07%252Fowl%2523members.json | 2 +- ...002%252F07%252Fowl%2523minCardinality.json | 2 +- ...7%252Fowl%2523minQualifiedCardinality.json | 2 +- ...g%252F2002%252F07%252Fowl%2523onClass.json | 2 +- ...2F2002%252F07%252Fowl%2523onDataRange.json | 2 +- ...52F2002%252F07%252Fowl%2523onDatatype.json | 2 +- ...F2002%252F07%252Fowl%2523onProperties.json | 2 +- ...52F2002%252F07%252Fowl%2523onProperty.json | 2 +- ...org%252F2002%252F07%252Fowl%2523oneOf.json | 2 +- ...F2002%252F07%252Fowl%2523priorVersion.json | 2 +- ...252F07%252Fowl%2523propertyChainAxiom.json | 2 +- ...2F07%252Fowl%2523propertyDisjointWith.json | 2 +- ...2F07%252Fowl%2523qualifiedCardinality.json | 2 +- ...rg%252F2002%252F07%252Fowl%2523sameAs.json | 2 +- ...002%252F07%252Fowl%2523someValuesFrom.json | 2 +- ...2%252F07%252Fowl%2523sourceIndividual.json | 2 +- ...2%252F07%252Fowl%2523targetIndividual.json | 2 +- ...2F2002%252F07%252Fowl%2523targetValue.json | 2 +- ...02%252F07%252Fowl%2523topDataProperty.json | 2 +- ...%252F07%252Fowl%2523topObjectProperty.json | 2 +- ...g%252F2002%252F07%252Fowl%2523unionOf.json | 2 +- ...2F2002%252F07%252Fowl%2523versionInfo.json | 2 +- ...2%252F07%252Fowl%2523withRestrictions.json | 2 +- .../ontologies/owl/properties.json | 232 +- ...000%252F01%252Frdf-schema%2523comment.json | 4 +- ...2000%252F01%252Frdf-schema%2523domain.json | 4 +- ...252F01%252Frdf-schema%2523isDefinedBy.json | 4 +- ...F2000%252F01%252Frdf-schema%2523label.json | 4 +- ...2000%252F01%252Frdf-schema%2523member.json | 4 +- ...F2000%252F01%252Frdf-schema%2523range.json | 4 +- ...000%252F01%252Frdf-schema%2523seeAlso.json | 4 +- ...%252F01%252Frdf-schema%2523subClassOf.json | 4 +- ...2F01%252Frdf-schema%2523subPropertyOf.json | 4 +- ...2002%252F07%252Fowl%2523allValuesFrom.json | 4 +- ...%252F07%252Fowl%2523annotatedProperty.json | 4 +- ...02%252F07%252Fowl%2523annotatedSource.json | 4 +- ...02%252F07%252Fowl%2523annotatedTarget.json | 4 +- ...%252F07%252Fowl%2523assertionProperty.json | 4 +- ...07%252Fowl%2523backwardCompatibleWith.json | 4 +- ...252F07%252Fowl%2523bottomDataProperty.json | 4 +- ...2F07%252Fowl%2523bottomObjectProperty.json | 4 +- ...2F2002%252F07%252Fowl%2523cardinality.json | 4 +- ...F2002%252F07%252Fowl%2523complementOf.json | 4 +- ...2F07%252Fowl%2523datatypeComplementOf.json | 4 +- ...52F2002%252F07%252Fowl%2523deprecated.json | 4 +- ...2002%252F07%252Fowl%2523differentFrom.json | 4 +- ...02%252F07%252Fowl%2523disjointUnionOf.json | 4 +- ...F2002%252F07%252Fowl%2523disjointWith.json | 4 +- ...02%252F07%252Fowl%2523distinctMembers.json | 4 +- ...02%252F07%252Fowl%2523equivalentClass.json | 4 +- ...252F07%252Fowl%2523equivalentProperty.json | 4 +- ...rg%252F2002%252F07%252Fowl%2523hasKey.json | 4 +- ...g%252F2002%252F07%252Fowl%2523hasSelf.json | 4 +- ...%252F2002%252F07%252Fowl%2523hasValue.json | 4 +- ...2%252F07%252Fowl%2523incompatibleWith.json | 4 +- ...002%252F07%252Fowl%2523intersectionOf.json | 4 +- ...252F2002%252F07%252Fowl%2523inverseOf.json | 4 +- ...002%252F07%252Fowl%2523maxCardinality.json | 4 +- ...7%252Fowl%2523maxQualifiedCardinality.json | 4 +- ...g%252F2002%252F07%252Fowl%2523members.json | 4 +- ...002%252F07%252Fowl%2523minCardinality.json | 4 +- ...7%252Fowl%2523minQualifiedCardinality.json | 4 +- ...g%252F2002%252F07%252Fowl%2523onClass.json | 4 +- ...2F2002%252F07%252Fowl%2523onDataRange.json | 4 +- ...52F2002%252F07%252Fowl%2523onDatatype.json | 4 +- ...F2002%252F07%252Fowl%2523onProperties.json | 4 +- ...52F2002%252F07%252Fowl%2523onProperty.json | 4 +- ...org%252F2002%252F07%252Fowl%2523oneOf.json | 4 +- ...F2002%252F07%252Fowl%2523priorVersion.json | 4 +- ...252F07%252Fowl%2523propertyChainAxiom.json | 4 +- ...2F07%252Fowl%2523propertyDisjointWith.json | 4 +- ...2F07%252Fowl%2523qualifiedCardinality.json | 4 +- ...rg%252F2002%252F07%252Fowl%2523sameAs.json | 4 +- ...002%252F07%252Fowl%2523someValuesFrom.json | 4 +- ...2%252F07%252Fowl%2523sourceIndividual.json | 4 +- ...2%252F07%252Fowl%2523targetIndividual.json | 4 +- ...2F2002%252F07%252Fowl%2523targetValue.json | 4 +- ...02%252F07%252Fowl%2523topDataProperty.json | 4 +- ...%252F07%252Fowl%2523topObjectProperty.json | 4 +- ...g%252F2002%252F07%252Fowl%2523unionOf.json | 4 +- ...2F2002%252F07%252Fowl%2523versionInfo.json | 4 +- ...2%252F07%252Fowl%2523withRestrictions.json | 4 +- .../ontologies/owl/terms.json | 128 +- ...F2000%252F01%252Frdf-schema%2523Class.json | 4 +- .../ancestors.json | 4 +- .../children.json | 12 +- .../descendants.json | 20 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalChildren.json | 12 +- .../hierarchicalDescendants.json | 20 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...0%252F01%252Frdf-schema%2523Container.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...chema%2523ContainerMembershipProperty.json | 4 +- ...00%252F01%252Frdf-schema%2523Datatype.json | 4 +- .../ancestors.json | 8 +- .../children.json | 4 +- .../descendants.json | 4 +- .../hierarchicalAncestors.json | 8 +- .../hierarchicalChildren.json | 4 +- .../hierarchicalDescendants.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...000%252F01%252Frdf-schema%2523Literal.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...00%252F01%252Frdf-schema%2523Resource.json | 4 +- .../children.json | 40 +- .../descendants.json | 60 +- .../hierarchicalChildren.json | 40 +- .../hierarchicalDescendants.json | 60 +- ...F2002%252F07%252Fowl%2523AllDifferent.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...252F07%252Fowl%2523AllDisjointClasses.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...F07%252Fowl%2523AllDisjointProperties.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...52F2002%252F07%252Fowl%2523Annotation.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...252F07%252Fowl%2523AnnotationProperty.json | 4 +- ...252F07%252Fowl%2523AsymmetricProperty.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...org%252F2002%252F07%252Fowl%2523Axiom.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...org%252F2002%252F07%252Fowl%2523Class.json | 4 +- .../ancestors.json | 8 +- .../children.json | 4 +- .../descendants.json | 4 +- .../hierarchicalAncestors.json | 8 +- .../hierarchicalChildren.json | 4 +- .../hierarchicalDescendants.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...252F2002%252F07%252Fowl%2523DataRange.json | 4 +- .../ancestors.json | 12 +- .../hierarchicalAncestors.json | 12 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...2%252F07%252Fowl%2523DatatypeProperty.json | 4 +- ...02%252F07%252Fowl%2523DeprecatedClass.json | 4 +- .../ancestors.json | 8 +- .../hierarchicalAncestors.json | 8 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...252F07%252Fowl%2523DeprecatedProperty.json | 4 +- ...252F07%252Fowl%2523FunctionalProperty.json | 4 +- ...252Fowl%2523InverseFunctionalProperty.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...52F07%252Fowl%2523IrreflexiveProperty.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...02%252F07%252Fowl%2523NamedIndividual.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...252Fowl%2523NegativePropertyAssertion.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...g%252F2002%252F07%252Fowl%2523Nothing.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...002%252F07%252Fowl%2523ObjectProperty.json | 4 +- .../children.json | 24 +- .../descendants.json | 24 +- .../hierarchicalChildren.json | 24 +- .../hierarchicalDescendants.json | 24 +- ...%252F2002%252F07%252Fowl%2523Ontology.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...2%252F07%252Fowl%2523OntologyProperty.json | 4 +- ...%252F07%252Fowl%2523ReflexiveProperty.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...2F2002%252F07%252Fowl%2523Restriction.json | 4 +- .../ancestors.json | 12 +- .../hierarchicalAncestors.json | 12 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...%252F07%252Fowl%2523SymmetricProperty.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...org%252F2002%252F07%252Fowl%2523Thing.json | 4 +- .../children.json | 8 +- .../descendants.json | 8 +- .../hierarchicalChildren.json | 8 +- .../hierarchicalDescendants.json | 8 +- ...252F07%252Fowl%2523TransitiveProperty.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...primer%252FallDisjointClasses%2523Man.json | 2 +- ...mer%252FallDisjointClasses%2523Person.json | 2 +- ...imer%252FallDisjointClasses%2523Woman.json | 2 +- ...primer%252FallDisjointClasses%2523Man.json | 2 +- ...mer%252FallDisjointClasses%2523Person.json | 2 +- ...imer%252FallDisjointClasses%2523Woman.json | 2 +- ...lDisjointDataProperties.owl%2523Dummy.json | 2 +- ...lDisjointDataProperties.owl%2523Dummy.json | 2 +- ...lDisjointDataProperties.owl%2523propA.json | 2 +- ...lDisjointDataProperties.owl%2523propB.json | 2 +- ...lDisjointDataProperties.owl%2523propC.json | 2 +- ...isjointObjectProperties.owl%2523propA.json | 2 +- ...isjointObjectProperties.owl%2523propB.json | 2 +- ...isjointObjectProperties.owl%2523propC.json | 2 +- ...-inverse-object-property.rdf%2523Dead.json | 2 +- ...nverse-object-property.rdf%2523Orphan.json | 2 +- ...-inverse-object-property.rdf%2523Dead.json | 2 +- ...nverse-object-property.rdf%2523Orphan.json | 2 +- ...erse-object-property.rdf%2523hasChild.json | 2 +- ...tric-object-property.rdf%2523hasChild.json | 2 +- ...example.com%252Fowl2primer%2523Person.json | 2 +- ...2Fexample.com%252Fowl2primer%2523Mary.json | 2 +- ...example.com%252Fowl2primer%2523Person.json | 2 +- ...datatype-restriction.rdf%2523Teenager.json | 2 +- ...datatype-restriction.rdf%2523Teenager.json | 2 +- ...n-datatype-restriction.rdf%2523hasAge.json | 2 +- ...s%252Fowl2primer%252Fclass%2523Person.json | 2 +- ...s%252Fowl2primer%252Fclass%2523Person.json | 2 +- ...sertions-with-negation.rdf%2523Parent.json | 2 +- ...sertions-with-negation.rdf%2523Person.json | 2 +- ...assertions-with-negation.rdf%2523Jack.json | 2 +- ...sertions-with-negation.rdf%2523Parent.json | 2 +- ...sertions-with-negation.rdf%2523Person.json | 2 +- ...52Fdata-property-assertion%2523Person.json | 2 +- ...%252Fdata-property-assertion%2523John.json | 2 +- ...52Fdata-property-assertion%2523Person.json | 2 +- ...52Fdata-property-assertion%2523hasAge.json | 2 +- ...dataProperty-functional.owl%2523Dummy.json | 2 +- ...dataProperty-functional.owl%2523Dummy.json | 2 +- ...y-functional.owl%2523numberOfChildren.json | 2 +- ...52Fdatatype-enumeration.owl%2523Dummy.json | 2 +- ...52Fdatatype-enumeration.owl%2523Dummy.json | 2 +- ...type-enumeration.owl%2523ageOfToddler.json | 2 +- ...52Fdatatype-enumeration.owl%2523Dummy.json | 2 +- ...52Fdatatype-enumeration.owl%2523Dummy.json | 2 +- ...type-enumeration.owl%2523ageOfToddler.json | 2 +- ...%252Fdatatype-exclusion.owl%2523Dummy.json | 2 +- ...%252Fdatatype-exclusion.owl%2523Dummy.json | 2 +- ...datatype-exclusion.owl%2523ageOfAdult.json | 2 +- ...%252Fdatatype-exclusion.owl%2523Dummy.json | 2 +- ...%252Fdatatype-exclusion.owl%2523Dummy.json | 2 +- ...datatype-exclusion.owl%2523ageOfAdult.json | 2 +- ...mer%252Fdatatype-minmax.owl%2523Dummy.json | 2 +- ...mer%252Fdatatype-minmax.owl%2523Dummy.json | 2 +- ...er%252Fdatatype-minmax.owl%2523hasAge.json | 2 +- ...mer%252Fdatatype-minmax.owl%2523Dummy.json | 2 +- ...mer%252Fdatatype-minmax.owl%2523Dummy.json | 2 +- ...er%252Fdatatype-minmax.owl%2523hasAge.json | 2 +- ...er%252Fdifferent-individuals%2523Bill.json | 2 +- ...er%252Fdifferent-individuals%2523John.json | 2 +- ...imer%252Fdisjoint-classes.rdf%2523Man.json | 2 +- ...er%252Fdisjoint-classes.rdf%2523Woman.json | 2 +- ...imer%252Fdisjoint-classes.rdf%2523Man.json | 2 +- ...er%252Fdisjoint-classes.rdf%2523Woman.json | 2 +- ...primer%252FdisjointUnionOf%2523Father.json | 2 +- ...primer%252FdisjointUnionOf%2523Mother.json | 2 +- ...primer%252FdisjointUnionOf%2523Parent.json | 2 +- ...primer%252FdisjointUnionOf%2523Father.json | 2 +- ...primer%252FdisjointUnionOf%2523Mother.json | 2 +- ...primer%252FdisjointUnionOf%2523Parent.json | 2 +- ...-individuals.rdf%2523MyBirthdayGuests.json | 2 +- ...umeration-of-individuals.rdf%2523Bill.json | 2 +- ...umeration-of-individuals.rdf%2523John.json | 2 +- ...umeration-of-individuals.rdf%2523Mary.json | 2 +- ...-individuals.rdf%2523MyBirthdayGuests.json | 2 +- ...onOf-complementOf%2523ChildlessPerson.json | 2 +- ...ntersectionOf-complementOf%2523Parent.json | 2 +- ...ntersectionOf-complementOf%2523Person.json | 2 +- ...onOf-complementOf%2523ChildlessPerson.json | 2 +- ...ntersectionOf-complementOf%2523Parent.json | 2 +- ...ntersectionOf-complementOf%2523Person.json | 2 +- ...ivalent-intersectionOf.owl%2523Mother.json | 2 +- ...ivalent-intersectionOf.owl%2523Parent.json | 2 +- ...uivalent-intersectionOf.owl%2523Woman.json | 2 +- ...ivalent-intersectionOf.owl%2523Mother.json | 2 +- ...ivalent-intersectionOf.owl%2523Parent.json | 2 +- ...uivalent-intersectionOf.owl%2523Woman.json | 2 +- ...ion-allValuesFrom.owl%2523HappyPerson.json | 2 +- ...triction-allValuesFrom.owl%2523Person.json | 2 +- ...ion-allValuesFrom.owl%2523HappyPerson.json | 2 +- ...triction-allValuesFrom.owl%2523Person.json | 2 +- ...iction-allValuesFrom.owl%2523hasChild.json | 2 +- ...riction-someValuesFrom.owl%2523Parent.json | 2 +- ...riction-someValuesFrom.owl%2523Person.json | 2 +- ...riction-someValuesFrom.owl%2523Parent.json | 2 +- ...riction-someValuesFrom.owl%2523Person.json | 2 +- ...ction-someValuesFrom.owl%2523hasChild.json | 2 +- ...s-collection.owl%2523MyBirthdayGuests.json | 2 +- ...uivalentClass-collection.owl%2523Bill.json | 2 +- ...uivalentClass-collection.owl%2523John.json | 2 +- ...uivalentClass-collection.owl%2523Mary.json | 2 +- ...s-collection.owl%2523MyBirthdayGuests.json | 2 +- ...2primer%252FequivalentClass%2523Human.json | 2 +- ...primer%252FequivalentClass%2523Person.json | 2 +- ...2primer%252FequivalentClass%2523Human.json | 2 +- ...primer%252FequivalentClass%2523Person.json | 2 +- ...252FequivalentObjectProperty%2523John.json | 2 +- ...252FequivalentObjectProperty%2523Mary.json | 2 +- ...lentObjectProperty%2523hasLifePartner.json | 2 +- ...quivalentObjectProperty%2523hasSpouse.json | 2 +- ...ata-property.rdf%2523numberOfChildren.json | 2 +- ...al-object-property.rdf%2523hasHusband.json | 2 +- ...l2primer%252FnamedIndividual%2523Mary.json | 2 +- ...2primer%252FintersectionOf%2523Mother.json | 2 +- ...2primer%252FintersectionOf%2523Parent.json | 2 +- ...l2primer%252FintersectionOf%2523Woman.json | 2 +- ...2primer%252FintersectionOf%2523Mother.json | 2 +- ...2primer%252FintersectionOf%2523Parent.json | 2 +- ...l2primer%252FintersectionOf%2523Woman.json | 2 +- ...al-object-property.rdf%2523hasHusband.json | 2 +- ...erse-object-property.rdf%2523hasChild.json | 2 +- ...rse-object-property.rdf%2523hasParent.json | 2 +- ...xive-object-property.rdf%2523parentOf.json | 2 +- ...raint-on-data-property.owl%2523Person.json | 2 +- ...-constraint-on-data-property%2523Anne.json | 2 +- ...onstraint-on-data-property%2523hasSSN.json | 2 +- ...traint-on-data-property.owl%2523Annie.json | 2 +- ...raint-on-data-property.owl%2523Person.json | 2 +- ...-data-property-assertion.rdf%2523Jack.json | 2 +- ...ata-property-assertion.rdf%2523hasAge.json | 2 +- ...ive-object-property-assertion%2523Man.json | 2 +- ...-object-property-assertion%2523Person.json | 2 +- ...e-object-property-assertion%2523Woman.json | 2 +- ...ve-object-property-assertion%2523Bill.json | 2 +- ...ive-object-property-assertion%2523Man.json | 2 +- ...ve-object-property-assertion%2523Mary.json | 2 +- ...-object-property-assertion%2523Person.json | 2 +- ...e-object-property-assertion%2523Woman.json | 2 +- ...object-property-assertion%2523hasWife.json | 2 +- ...252Fobject-property-assertion%2523Man.json | 2 +- ...Fobject-property-assertion%2523Person.json | 2 +- ...2Fobject-property-assertion%2523Woman.json | 2 +- ...52Fobject-property-assertion%2523John.json | 2 +- ...252Fobject-property-assertion%2523Man.json | 2 +- ...52Fobject-property-assertion%2523Mary.json | 2 +- ...Fobject-property-assertion%2523Person.json | 2 +- ...2Fobject-property-assertion%2523Woman.json | 2 +- ...object-property-assertion%2523hasWife.json | 2 +- ...erty-domain-range-restriction%2523Man.json | 2 +- ...y-domain-range-restriction%2523Person.json | 2 +- ...ty-domain-range-restriction%2523Woman.json | 2 +- ...erty-domain-range-restriction%2523Man.json | 2 +- ...y-domain-range-restriction%2523Person.json | 2 +- ...ty-domain-range-restriction%2523Woman.json | 2 +- ...-domain-range-restriction%2523hasWife.json | 2 +- ...tProperty-asymmetric.owl%2523hasChild.json | 2 +- ...ctProperty-disjoint.owl%2523hasParent.json | 2 +- ...ctProperty-disjoint.owl%2523hasSpouse.json | 2 +- ...roperty-functional.owl%2523hasHusband.json | 2 +- ...objectProperty-hasKey.owl%2523Address.json | 2 +- ...bjectProperty-hasKey.owl%2523Business.json | 2 +- ...objectProperty-hasKey.owl%2523Address.json | 2 +- ...bjectProperty-hasKey.owl%2523Business.json | 2 +- ...r%252FobjectProperty-hasKey.owl%2523a.json | 2 +- ...%252FobjectProperty-hasKey.owl%2523b1.json | 2 +- ...%252FobjectProperty-hasKey.owl%2523b2.json | 2 +- ...operty-hasKey.owl%2523businessAddress.json | 2 +- ...FobjectProperty-hasKey.owl%2523hasSSN.json | 2 +- ...erse-withoutAssignedName.owl%2523Dead.json | 2 +- ...se-withoutAssignedName.owl%2523Orphan.json | 2 +- ...erse-withoutAssignedName.owl%2523Dead.json | 2 +- ...se-withoutAssignedName.owl%2523Orphan.json | 2 +- ...-withoutAssignedName.owl%2523hasChild.json | 2 +- ...jectProperty-inverse.owl%2523hasChild.json | 2 +- ...ectProperty-inverse.owl%2523hasParent.json | 2 +- ...-inverseFunctional.owl%2523hasHusband.json | 2 +- ...roperty-irreflexive.owl%2523hasParent.json | 2 +- ...roperty-reflexive.owl%2523hasRelative.json | 2 +- ...property-chain.owl%2523hasGrandParent.json | 2 +- ...%252Fproperty-chain.owl%2523hasParent.json | 2 +- ...estriction-cardinality.owl%2523Parent.json | 2 +- ...yRestriction-cardinality.owl%2523John.json | 2 +- ...estriction-cardinality.owl%2523Parent.json | 2 +- ...triction-cardinality.owl%2523hasChild.json | 2 +- ...axQualifiedCardinality.owl%2523Parent.json | 2 +- ...-maxQualifiedCardinality.owl%2523John.json | 2 +- ...axQualifiedCardinality.owl%2523Parent.json | 2 +- ...QualifiedCardinality.owl%2523hasChild.json | 2 +- ...inQualifiedCardinality.owl%2523Parent.json | 2 +- ...-minQualifiedCardinality.owl%2523John.json | 2 +- ...inQualifiedCardinality.owl%2523Parent.json | 2 +- ...QualifiedCardinality.owl%2523hasChild.json | 2 +- ...n-qualifiedCardinality.owl%2523Parent.json | 2 +- ...ion-qualifiedCardinality.owl%2523John.json | 2 +- ...n-qualifiedCardinality.owl%2523Parent.json | 2 +- ...qualifiedCardinality.owl%2523hasChild.json | 2 +- ...lity-exact-restriction.rdf%2523Parent.json | 2 +- ...lity-exact-restriction.rdf%2523Parent.json | 2 +- ...ty-exact-restriction.rdf%2523hasChild.json | 2 +- ...nality-exact-restriction.rdf%2523john.json | 2 +- ...nality-max-restriction.rdf%2523Parent.json | 2 +- ...nality-max-restriction.rdf%2523Parent.json | 2 +- ...lity-max-restriction.rdf%2523hasChild.json | 2 +- ...dinality-max-restriction.rdf%2523john.json | 2 +- ...nality-min-restriction.rdf%2523Parent.json | 2 +- ...nality-min-restriction.rdf%2523Parent.json | 2 +- ...lity-min-restriction.rdf%2523hasChild.json | 2 +- ...dinality-min-restriction.rdf%2523john.json | 2 +- ...e-object-property.rdf%2523hasRelative.json | 2 +- ...2primer%252Fsame-individual%2523James.json | 2 +- ...wl2primer%252Fsame-individual%2523Jim.json | 2 +- ...f-restriction.owl%2523NarcisticPerson.json | 2 +- ...f-restriction.owl%2523NarcisticPerson.json | 2 +- ...er%252Fself-restriction.owl%2523loves.json | 2 +- ...rimer%252Fsub-object-property%2523Man.json | 2 +- ...er%252Fsub-object-property%2523Person.json | 2 +- ...mer%252Fsub-object-property%2523Woman.json | 2 +- ...rimer%252Fsub-object-property%2523Man.json | 2 +- ...er%252Fsub-object-property%2523Person.json | 2 +- ...mer%252Fsub-object-property%2523Woman.json | 2 +- ...252Fsub-object-property%2523hasSpouse.json | 2 +- ...r%252Fsub-object-property%2523hasWife.json | 2 +- ...lassOf-intersectionOf%2523Grandfather.json | 2 +- ...252FsubClassOf-intersectionOf%2523Man.json | 2 +- ...FsubClassOf-intersectionOf%2523Parent.json | 2 +- ...lassOf-intersectionOf%2523Grandfather.json | 2 +- ...252FsubClassOf-intersectionOf%2523Man.json | 2 +- ...FsubClassOf-intersectionOf%2523Parent.json | 2 +- ...Fowl2primer%252FsubClassOf%2523Mother.json | 2 +- ...Fowl2primer%252FsubClassOf%2523Person.json | 2 +- ...2Fowl2primer%252FsubClassOf%2523Woman.json | 2 +- ...Fowl2primer%252FsubClassOf%2523Mother.json | 2 +- ...Fowl2primer%252FsubClassOf%2523Person.json | 2 +- ...2Fowl2primer%252FsubClassOf%2523Woman.json | 2 +- ...ric-object-property.rdf%2523hasSpouse.json | 2 +- ...e-object-property.rdf%2523hasAncestor.json | 2 +- ...252Fowl2primer%252FunionOf%2523Father.json | 2 +- ...252Fowl2primer%252FunionOf%2523Mother.json | 2 +- ...252Fowl2primer%252FunionOf%2523Parent.json | 2 +- ...252Fowl2primer%252FunionOf%2523Father.json | 2 +- ...252Fowl2primer%252FunionOf%2523Mother.json | 2 +- ...252Fowl2primer%252FunionOf%2523Parent.json | 2 +- ...lity-exact-restriction.rdf%2523Parent.json | 2 +- ...lity-exact-restriction.rdf%2523Parent.json | 2 +- ...ty-exact-restriction.rdf%2523hasChild.json | 2 +- ...nality-exact-restriction.rdf%2523john.json | 2 +- ...fined-data-type.rdf%2523hasToddlerAge.json | 2 +- ...fined-data-type.rdf%2523hasToddlerAge.json | 2 +- ...n-on-individual.rdf%2523JohnsChildren.json | 2 +- ...estriction-on-individual.rdf%2523John.json | 2 +- ...n-on-individual.rdf%2523JohnsChildren.json | 2 +- ...ction-on-individual.rdf%2523hasParent.json | 2 +- ...obolibrary.org%252Fobo%252FMS_1000353.json | 2 +- ...obolibrary.org%252Fobo%252FMS_1003056.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000916.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0003684.json | 2 +- ...bolibrary.org%252Fobo%252FBFO_0000050.json | 2 +- ...obolibrary.org%252Fobo%252FMS_1000353.json | 2 +- ...obolibrary.org%252Fobo%252FMS_1003056.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0000916.json | 2 +- ...ibrary.org%252Fobo%252FUBERON_0003684.json | 2 +- ...ibrary.org%252Fobo%252Fms%2523part_of.json | 2 +- ...252Fclass-individual.owl%2523Quantity.json | 2 +- ...dual.owl%2523ThermodynamicTemperature.json | 2 +- ...252Fclass-individual.owl%2523Quantity.json | 2 +- ...dual.owl%2523ThermodynamicTemperature.json | 2 +- ...ss-individual.owl%2523commonlyHasUnit.json | 2 +- ...2Fclass-individual.owl%2523terakelvin.json | 2 +- ...micTemperatureOfTheTriplePointOfWater.json | 2 +- ...F2000%252F01%252Frdf-schema%2523Class.json | 2 +- ...0%252F01%252Frdf-schema%2523Container.json | 2 +- ...chema%2523ContainerMembershipProperty.json | 2 +- ...00%252F01%252Frdf-schema%2523Datatype.json | 2 +- ...000%252F01%252Frdf-schema%2523Literal.json | 2 +- ...00%252F01%252Frdf-schema%2523Resource.json | 2 +- ...F2000%252F01%252Frdf-schema%2523Class.json | 2 +- ...0%252F01%252Frdf-schema%2523Container.json | 2 +- ...chema%2523ContainerMembershipProperty.json | 2 +- ...00%252F01%252Frdf-schema%2523Datatype.json | 2 +- ...000%252F01%252Frdf-schema%2523Literal.json | 2 +- ...00%252F01%252Frdf-schema%2523Resource.json | 2 +- ...000%252F01%252Frdf-schema%2523comment.json | 2 +- ...2000%252F01%252Frdf-schema%2523domain.json | 2 +- ...252F01%252Frdf-schema%2523isDefinedBy.json | 2 +- ...F2000%252F01%252Frdf-schema%2523label.json | 2 +- ...2000%252F01%252Frdf-schema%2523member.json | 2 +- ...F2000%252F01%252Frdf-schema%2523range.json | 2 +- ...000%252F01%252Frdf-schema%2523seeAlso.json | 2 +- ...%252F01%252Frdf-schema%2523subClassOf.json | 2 +- ...2F01%252Frdf-schema%2523subPropertyOf.json | 2 +- .../ontologies/rdfs/properties.json | 36 +- ...000%252F01%252Frdf-schema%2523comment.json | 4 +- ...2000%252F01%252Frdf-schema%2523domain.json | 4 +- ...252F01%252Frdf-schema%2523isDefinedBy.json | 4 +- ...F2000%252F01%252Frdf-schema%2523label.json | 4 +- ...2000%252F01%252Frdf-schema%2523member.json | 4 +- ...F2000%252F01%252Frdf-schema%2523range.json | 4 +- ...000%252F01%252Frdf-schema%2523seeAlso.json | 4 +- ...%252F01%252Frdf-schema%2523subClassOf.json | 4 +- ...2F01%252Frdf-schema%2523subPropertyOf.json | 4 +- .../ontologies/rdfs/terms.json | 24 +- ...F2000%252F01%252Frdf-schema%2523Class.json | 4 +- .../ancestors.json | 4 +- .../children.json | 4 +- .../descendants.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalChildren.json | 4 +- .../hierarchicalDescendants.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...0%252F01%252Frdf-schema%2523Container.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...chema%2523ContainerMembershipProperty.json | 4 +- ...00%252F01%252Frdf-schema%2523Datatype.json | 4 +- .../ancestors.json | 8 +- .../hierarchicalAncestors.json | 8 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...000%252F01%252Frdf-schema%2523Literal.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...00%252F01%252Frdf-schema%2523Resource.json | 4 +- .../children.json | 12 +- .../descendants.json | 16 +- .../hierarchicalChildren.json | 12 +- .../hierarchicalDescendants.json | 16 +- ...xample.com%252Freified-bnode%2523cell.json | 2 +- ...e.com%252Freified-bnode%2523cell_part.json | 2 +- ...xample.com%252Freified-bnode%2523cell.json | 2 +- ...e.com%252Freified-bnode%2523cell_part.json | 2 +- ...ple.com%252Freified-bnode%2523part_of.json | 2 +- ...es%252Frelated%252FhasValue.owl%2523A.json | 2 +- ...es%252Frelated%252FhasValue.owl%2523A.json | 2 +- ...s%252Frelated%252FhasValue.owl%2523b1.json | 2 +- ...es%252Frelated%252FhasValue.owl%2523r.json | 2 +- ...cases%252Frelated%252FoneOf.owl%2523A.json | 2 +- ...cases%252Frelated%252FoneOf.owl%2523A.json | 2 +- ...ases%252Frelated%252FoneOf.owl%2523b1.json | 2 +- ...ases%252Frelated%252FoneOf.owl%2523b2.json | 2 +- ...ases%252Frelated%252FoneOf.owl%2523b3.json | 2 +- ...-fillerAnonymousConjunction.owl%2523A.json | 2 +- ...-fillerAnonymousConjunction.owl%2523B.json | 2 +- ...-fillerAnonymousConjunction.owl%2523C.json | 2 +- ...-fillerAnonymousConjunction.owl%2523A.json | 2 +- ...-fillerAnonymousConjunction.owl%2523B.json | 2 +- ...-fillerAnonymousConjunction.owl%2523C.json | 2 +- ...-fillerAnonymousConjunction.owl%2523r.json | 2 +- ...esOf-fillerAnonymousDisjunction%2523A.json | 2 +- ...esOf-fillerAnonymousDisjunction%2523B.json | 2 +- ...esOf-fillerAnonymousDisjunction%2523C.json | 2 +- ...esOf-fillerAnonymousDisjunction%2523A.json | 2 +- ...esOf-fillerAnonymousDisjunction%2523B.json | 2 +- ...esOf-fillerAnonymousDisjunction%2523C.json | 2 +- ...esOf-fillerAnonymousDisjunction%2523p.json | 2 +- ...rNestedAnonymousConjunction.owl%2523A.json | 2 +- ...rNestedAnonymousConjunction.owl%2523B.json | 2 +- ...rNestedAnonymousConjunction.owl%2523C.json | 2 +- ...rNestedAnonymousConjunction.owl%2523D.json | 2 +- ...rNestedAnonymousConjunction.owl%2523A.json | 2 +- ...rNestedAnonymousConjunction.owl%2523B.json | 2 +- ...rNestedAnonymousConjunction.owl%2523C.json | 2 +- ...rNestedAnonymousConjunction.owl%2523D.json | 2 +- ...rNestedAnonymousConjunction.owl%2523p.json | 2 +- ...rNestedAnonymousConjunction.owl%2523r.json | 2 +- ...-hierarchical-relatedToSelf.owl%2523A.json | 2 +- ...-hierarchical-relatedToSelf.owl%2523A.json | 2 +- ...-hierarchical-relatedToSelf.owl%2523r.json | 2 +- ...2FsomeValuesOf-hierarchical.owl%2523A.json | 2 +- ...2FsomeValuesOf-hierarchical.owl%2523B.json | 2 +- ...2FsomeValuesOf-hierarchical.owl%2523A.json | 2 +- ...2FsomeValuesOf-hierarchical.owl%2523B.json | 2 +- ...2FsomeValuesOf-hierarchical.owl%2523r.json | 2 +- ...ated%252FsomeValuesOf-oneOf.owl%2523A.json | 2 +- ...ated%252FsomeValuesOf-oneOf.owl%2523A.json | 2 +- ...ted%252FsomeValuesOf-oneOf.owl%2523b1.json | 2 +- ...ted%252FsomeValuesOf-oneOf.owl%2523b2.json | 2 +- ...ted%252FsomeValuesOf-oneOf.owl%2523b3.json | 2 +- ...ated%252FsomeValuesOf-oneOf.owl%2523r.json | 2 +- ...52Frelated%252FsomeValuesOf.owl%2523A.json | 2 +- ...52Frelated%252FsomeValuesOf.owl%2523B.json | 2 +- ...52Frelated%252FsomeValuesOf.owl%2523A.json | 2 +- ...52Frelated%252FsomeValuesOf.owl%2523B.json | 2 +- ...52Frelated%252FsomeValuesOf.owl%2523r.json | 2 +- ...2F02%252Fskos%252Fcore%2523Collection.json | 2 +- ...%252F02%252Fskos%252Fcore%2523Concept.json | 2 +- ...2%252Fskos%252Fcore%2523ConceptScheme.json | 2 +- ...2Fskos%252Fcore%2523OrderedCollection.json | 2 +- ...2F02%252Fskos%252Fcore%2523Collection.json | 2 +- ...%252F02%252Fskos%252Fcore%2523Concept.json | 2 +- ...2%252Fskos%252Fcore%2523ConceptScheme.json | 2 +- ...2Fskos%252Fcore%2523OrderedCollection.json | 2 +- ...252F02%252Fskos%252Fcore%2523altLabel.json | 2 +- ...2F02%252Fskos%252Fcore%2523broadMatch.json | 2 +- ...%252F02%252Fskos%252Fcore%2523broader.json | 2 +- ...2Fskos%252Fcore%2523broaderTransitive.json | 2 +- ...2F02%252Fskos%252Fcore%2523changeNote.json | 2 +- ...2F02%252Fskos%252Fcore%2523closeMatch.json | 2 +- ...2F02%252Fskos%252Fcore%2523definition.json | 2 +- ...2%252Fskos%252Fcore%2523editorialNote.json | 2 +- ...2F02%252Fskos%252Fcore%2523exactMatch.json | 2 +- ...%252F02%252Fskos%252Fcore%2523example.json | 2 +- ...2%252Fskos%252Fcore%2523hasTopConcept.json | 2 +- ...F02%252Fskos%252Fcore%2523hiddenLabel.json | 2 +- ...F02%252Fskos%252Fcore%2523historyNote.json | 2 +- ...252F02%252Fskos%252Fcore%2523inScheme.json | 2 +- ...252Fskos%252Fcore%2523mappingRelation.json | 2 +- ...4%252F02%252Fskos%252Fcore%2523member.json | 2 +- ...2F02%252Fskos%252Fcore%2523memberList.json | 2 +- ...F02%252Fskos%252Fcore%2523narrowMatch.json | 2 +- ...252F02%252Fskos%252Fcore%2523narrower.json | 2 +- ...Fskos%252Fcore%2523narrowerTransitive.json | 2 +- ...252F02%252Fskos%252Fcore%2523notation.json | 2 +- ...004%252F02%252Fskos%252Fcore%2523note.json | 2 +- ...52F02%252Fskos%252Fcore%2523prefLabel.json | 2 +- ...%252F02%252Fskos%252Fcore%2523related.json | 2 +- ...02%252Fskos%252Fcore%2523relatedMatch.json | 2 +- ...52F02%252Fskos%252Fcore%2523scopeNote.json | 2 +- ...52Fskos%252Fcore%2523semanticRelation.json | 2 +- ...02%252Fskos%252Fcore%2523topConceptOf.json | 2 +- .../ontologies/skos/properties.json | 112 +- ...252F02%252Fskos%252Fcore%2523altLabel.json | 4 +- ...2F02%252Fskos%252Fcore%2523broadMatch.json | 4 +- ...%252F02%252Fskos%252Fcore%2523broader.json | 4 +- ...2Fskos%252Fcore%2523broaderTransitive.json | 4 +- ...2F02%252Fskos%252Fcore%2523changeNote.json | 4 +- ...2F02%252Fskos%252Fcore%2523closeMatch.json | 4 +- ...2F02%252Fskos%252Fcore%2523definition.json | 4 +- ...2%252Fskos%252Fcore%2523editorialNote.json | 4 +- ...2F02%252Fskos%252Fcore%2523exactMatch.json | 4 +- ...%252F02%252Fskos%252Fcore%2523example.json | 4 +- ...2%252Fskos%252Fcore%2523hasTopConcept.json | 4 +- ...F02%252Fskos%252Fcore%2523hiddenLabel.json | 4 +- ...F02%252Fskos%252Fcore%2523historyNote.json | 4 +- ...252F02%252Fskos%252Fcore%2523inScheme.json | 4 +- ...252Fskos%252Fcore%2523mappingRelation.json | 4 +- ...4%252F02%252Fskos%252Fcore%2523member.json | 4 +- ...2F02%252Fskos%252Fcore%2523memberList.json | 4 +- ...F02%252Fskos%252Fcore%2523narrowMatch.json | 4 +- ...252F02%252Fskos%252Fcore%2523narrower.json | 4 +- ...Fskos%252Fcore%2523narrowerTransitive.json | 4 +- ...252F02%252Fskos%252Fcore%2523notation.json | 4 +- ...004%252F02%252Fskos%252Fcore%2523note.json | 4 +- ...52F02%252Fskos%252Fcore%2523prefLabel.json | 4 +- ...%252F02%252Fskos%252Fcore%2523related.json | 4 +- ...02%252Fskos%252Fcore%2523relatedMatch.json | 4 +- ...52F02%252Fskos%252Fcore%2523scopeNote.json | 4 +- ...52Fskos%252Fcore%2523semanticRelation.json | 4 +- ...02%252Fskos%252Fcore%2523topConceptOf.json | 4 +- .../ontologies/skos/terms.json | 16 +- ...2F02%252Fskos%252Fcore%2523Collection.json | 4 +- .../children.json | 4 +- .../descendants.json | 4 +- .../hierarchicalChildren.json | 4 +- .../hierarchicalDescendants.json | 4 +- ...%252F02%252Fskos%252Fcore%2523Concept.json | 4 +- ...2%252Fskos%252Fcore%2523ConceptScheme.json | 4 +- ...2Fskos%252Fcore%2523OrderedCollection.json | 4 +- .../ancestors.json | 4 +- .../hierarchicalAncestors.json | 4 +- .../hierarchicalParents.json | 4 +- .../parents.json | 4 +- ...252Fexmpl.org%252Fxmpl%252FXMPL000001.json | 2 +- ...252Fexmpl.org%252Fxmpl%252FXMPL000002.json | 2 +- ...252Fexmpl.org%252Fxmpl%252FXMPL000003.json | 2 +- ...exmpl.org%252Fxmpl%252FPreferred_name.json | 2 +- ...2F%252Fexmpl.org%252Fxmpl%252FSynonym.json | 2 +- ...252Fexmpl.org%252Fxmpl%252FXMPL000001.json | 2 +- ...252Fexmpl.org%252Fxmpl%252FXMPL000002.json | 2 +- ...252Fexmpl.org%252Fxmpl%252FXMPL000003.json | 2 +- .../v2/ontologies.json | 100 +- .../v2/ontologies/duo/classes.json | 1214 -- .../v2/ontologies/duo/entities.json | 1766 -- .../v2/ontologies/duo/individuals.json | 90 - .../v2/ontologies/duo/properties.json | 462 - .../efo-hierarchical-properties/classes.json | 125 - .../efo-hierarchical-properties/entities.json | 197 +- .../properties.json | 72 +- .../v2/ontologies/efo-iri-labels/classes.json | 26 +- .../ontologies/efo-iri-labels/entities.json | 42 +- .../ontologies/efo-iri-labels/properties.json | 16 +- .../v2/ontologies/genepio/classes.json | 5 - .../v2/ontologies/genepio/entities.json | 5 - .../v2/ontologies/gitissue502/classes.json | 3024 +-- .../v2/ontologies/gitissue502/entities.json | 5004 ++--- .../v2/ontologies/gitissue502/properties.json | 1584 +- .../v2/ontologies/oio/classes.json | 741 + .../v2/ontologies/oio/entities.json | 3736 ++++ .../v2/ontologies/oio/individuals.json | 1 + .../v2/ontologies/oio/properties.json | 2997 +++ .../v2/ontologies/owl/classes.json | 470 +- .../v2/ontologies/owl/entities.json | 1338 +- .../v2/ontologies/owl/properties.json | 868 +- .../v2/ontologies/partof/classes.json | 20 - .../v2/ontologies/partof/entities.json | 28 +- .../v2/ontologies/partof/properties.json | 8 +- .../v2/ontologies/rdfs/classes.json | 88 +- .../v2/ontologies/rdfs/entities.json | 228 +- .../v2/ontologies/rdfs/properties.json | 140 +- .../v2/ontologies/skos/classes.json | 58 +- .../v2/ontologies/skos/entities.json | 532 +- .../v2/ontologies/skos/properties.json | 474 +- .../v2/ontologies/xmpl/classes.json | 51 - .../v2/ontologies/xmpl/entities.json | 87 +- .../v2/ontologies/xmpl/properties.json | 36 +- 2853 files changed, 39305 insertions(+), 27785 deletions(-) create mode 100755 compare_testcase_output_mac.sh create mode 100644 dataload/configs/idocovid19.json create mode 100755 dev-testing/teststack-mac.sh create mode 100644 testcases_expected_output/annotation-properties/gitIssue502/oio_classes.csv create mode 100644 testcases_expected_output/annotation-properties/gitIssue502/oio_edges.csv create mode 100644 testcases_expected_output/annotation-properties/gitIssue502/oio_individuals.csv create mode 100644 testcases_expected_output/annotation-properties/gitIssue502/oio_ontologies.csv create mode 100644 testcases_expected_output/annotation-properties/gitIssue502/oio_properties.csv create mode 100644 testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref.json create mode 100644 testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition.json create mode 100644 testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json create mode 100644 testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset.json create mode 100644 testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym.json create mode 100644 testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SubsetProperty.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymTypeProperty.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523consider.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDate.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefaultNamespace.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefinition.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSubset.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonym.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasURI.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasVersion.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523isCyclic.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523replacedBy.json create mode 100644 testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523savedBy.json create mode 100644 testcases_expected_output_api/ontologies/oio/individuals.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SubsetProperty.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymTypeProperty.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523consider.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDate.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefaultNamespace.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefinition.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSubset.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonym.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasURI.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasVersion.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523isCyclic.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523replacedBy.json create mode 100644 testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523savedBy.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/ancestors.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/children.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/descendants.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/hierarchicalAncestors.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/hierarchicalChildren.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/hierarchicalDescendants.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/hierarchicalParents.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/parents.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/ancestors.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/children.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/descendants.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/hierarchicalAncestors.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/hierarchicalChildren.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/hierarchicalDescendants.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/hierarchicalParents.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/parents.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/ancestors.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/children.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/descendants.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/hierarchicalAncestors.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/hierarchicalChildren.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/hierarchicalDescendants.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/hierarchicalParents.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/parents.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/ancestors.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/children.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/descendants.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/hierarchicalAncestors.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/hierarchicalChildren.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/hierarchicalDescendants.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/hierarchicalParents.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/parents.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/ancestors.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/children.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/descendants.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/hierarchicalAncestors.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/hierarchicalChildren.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/hierarchicalDescendants.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/hierarchicalParents.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/parents.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/ancestors.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/children.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/descendants.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/hierarchicalAncestors.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/hierarchicalChildren.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/hierarchicalDescendants.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/hierarchicalParents.json create mode 100644 testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/parents.json create mode 100644 testcases_expected_output_api/v2/ontologies/oio/classes.json create mode 100644 testcases_expected_output_api/v2/ontologies/oio/entities.json create mode 100644 testcases_expected_output_api/v2/ontologies/oio/individuals.json create mode 100644 testcases_expected_output_api/v2/ontologies/oio/properties.json diff --git a/compare_testcase_output_mac.sh b/compare_testcase_output_mac.sh new file mode 100755 index 000000000..d682cccc1 --- /dev/null +++ b/compare_testcase_output_mac.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +diff -r -q -a -B -w --strip-trailing-cr --exclude=.gitkeep testcases_output/testcases testcases_expected_output/ > testcases_compare_result.log \ No newline at end of file diff --git a/dataload/configs/idocovid19.json b/dataload/configs/idocovid19.json new file mode 100644 index 000000000..7ec436dff --- /dev/null +++ b/dataload/configs/idocovid19.json @@ -0,0 +1,33 @@ +{ + "ontologies": [ + { + "id": "idocovid19", + "preferredPrefix": "IDO-COVID-19", + "title": "The COVID-19 Infectious Disease Ontology", + "uri": "https://raw.githubusercontent.com/infectious-disease-ontology-extensions/ido-covid-19/master/ontology/ido%20covid-19", + "description": "The COVID-19 Infectious Disease Ontology (IDO-COVID-19) is an extension of the Infectious Disease Ontology (IDO) and the Virus Infectious Disease Ontology (VIDO). IDO-COVID-19 follows OBO Foundry guidelines, employs the Basic Formal Ontology as its starting point, and covers epidemiology, classification, pathogenesis, and treatment of terms used to represent infection by the SARS-CoV-2 virus strain, and the associated COVID-19 disease.", + "homepage": "https://github.com/infectious-disease-ontology-extensions/ido-covid-19", + "mailing_list": "johnbeverley2021@u.northwestern.edu", + "definition_property": [ + "http://purl.obolibrary.org/obo/IAO_0000115" + ], + "synonym_property": [ + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym" + ], + "hierarchical_property": [ + "http://purl.obolibrary.org/obo/BFO_0000050" + ], + "base_uri": [ + "http://purl.obolibrary.org/obo/IDO-COVID-19" + ], + "oboSlims": false, + "reasoner": "OWL2", + "ontology_purl": "https://gist.githubusercontent.com/haideriqbal/9b5245af626bd7687831c19c2c8076e8/raw/2c75495f31df0a379062bf12d3fab323eedbb7a9/idocovid19.owl" + }, + { + "id": "oio", + "ontology_purl": "https://gist.githubusercontent.com/haideriqbal/4a2b1a9aa81d9fa26cae81e0b0b7730b/raw/527665128b9be9d7d6133f9a796379600151c737/oboInOwl.owl", + "base_uri": ["http://www.geneontology.org/formats/oboInOwl#"] + } + ] +} \ No newline at end of file diff --git a/dataload/linker/src/main/java/LinkerPass1.java b/dataload/linker/src/main/java/LinkerPass1.java index 08b44b67b..19642b542 100644 --- a/dataload/linker/src/main/java/LinkerPass1.java +++ b/dataload/linker/src/main/java/LinkerPass1.java @@ -1,11 +1,6 @@ import com.google.common.collect.LinkedHashMultimap; import com.google.common.collect.Multimap; -import com.google.common.collect.SetMultimap; -import com.google.common.io.CountingInputStream; -import com.google.gson.Gson; -import com.google.gson.JsonArray; -import com.google.gson.JsonElement; -import com.google.gson.JsonParser; +import com.google.gson.*; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonToken; @@ -168,15 +163,31 @@ public static LinkerPass1Result run(String inputJsonFilename) throws IOException for(var entry : result.iriToDefinitions.entrySet()) { EntityDefinitionSet definitions = entry.getValue(); - // definingOntologyIris -> definingOntologyIds for(String ontologyIri : definitions.definingOntologyIris) { - for(String ontologyId : result.ontologyIriToOntologyIds.get(ontologyIri)) { - definitions.definingOntologyIds.add(ontologyId); + if (result.ontologyIriToOntologyIds.containsKey(ontologyIri)) { + for(String ontologyId : result.ontologyIriToOntologyIds.get(ontologyIri)) { + definitions.definingOntologyIds.add(ontologyId); + } } } for(EntityDefinition def : definitions.definitions) { + if(def.curie != null && entry.getValue().definingOntologyIds.iterator().hasNext()) { + JsonObject curieObject = def.curie.getAsJsonObject(); + if(curieObject.has("value")) { + String curieValue = curieObject.get("value").getAsString(); + if(!curieValue.contains(":")) { + var definingOntologyId = entry.getValue().definingOntologyIds.iterator().next(); + EntityDefinition definingEntity = entry.getValue().ontologyIdToDefinitions.get(definingOntologyId); + if (definingEntity != null && definingEntity.curie != null) { + curieValue = definingEntity.curie.getAsJsonObject().get("value").getAsString(); + curieObject.addProperty("value", curieValue); + result.iriToDefinitions.put(entry.getKey(), definitions); + } + } + } + } if(definitions.definingOntologyIds.contains(def.ontologyId)) { def.isDefiningOntology = true; } @@ -235,14 +246,30 @@ public static void parseEntity(JsonReader jsonReader, String entityType, String curie = jsonParser.parse(jsonReader); } else if(key.equals("type")) { types = gson.fromJson(jsonReader, Set.class); - } else if(key.equals("http://www.w3.org/2000/01/rdf-schema#definedBy")) { + } else if(key.equals("http://www.w3.org/2000/01/rdf-schema#isDefinedBy")) { JsonElement jsonDefinedBy = jsonParser.parse(jsonReader); if(jsonDefinedBy.isJsonArray()) { JsonArray arr = jsonDefinedBy.getAsJsonArray(); - for(JsonElement el : arr) { - definedBy.add( el.getAsString() ); + for(JsonElement isDefinedBy : arr) { + if (isDefinedBy.isJsonObject()) { + JsonObject obj = isDefinedBy.getAsJsonObject(); + var value = obj.get("value"); + if (value.isJsonObject()) { + definedBy.add(value.getAsJsonObject().get("value").getAsString()); + } else + definedBy.add(value.getAsString()); + } else + definedBy.add( isDefinedBy.getAsString() ); } - } else { + } else if (jsonDefinedBy.isJsonObject()) { + JsonObject obj = jsonDefinedBy.getAsJsonObject(); + var value = obj.get("value"); + if (value.isJsonObject()) { + definedBy.add(value.getAsJsonObject().get("value").getAsString()); + } else + definedBy.add(value.getAsString()); + } + else { definedBy.add(jsonDefinedBy.getAsString()); } } else { diff --git a/dataload/linker/src/main/java/LinkerPass2.java b/dataload/linker/src/main/java/LinkerPass2.java index 8a3ffdb83..6c511429f 100644 --- a/dataload/linker/src/main/java/LinkerPass2.java +++ b/dataload/linker/src/main/java/LinkerPass2.java @@ -1,4 +1,6 @@ +import com.google.gson.JsonArray; import com.google.gson.JsonElement; +import com.google.gson.JsonObject; import com.google.gson.JsonParser; import com.google.gson.stream.JsonReader; import com.google.gson.stream.JsonToken; @@ -151,6 +153,10 @@ private static void writeEntityArray(JsonReader jsonReader, JsonWriter jsonWrite if(name.equals("iri")) { entityIri = jsonReader.nextString(); jsonWriter.value(entityIri); + } else if (name.equalsIgnoreCase("curie")) { + processCurieObject(jsonReader, jsonWriter, pass1Result, entityIri); + } else if (name.equalsIgnoreCase("shortForm")) { + processShortFormObject(jsonReader, jsonWriter, pass1Result, entityIri); } else { CopyJsonGatheringStrings.copyJsonGatheringStrings(jsonReader, jsonWriter, stringsInEntity); } @@ -320,7 +326,7 @@ private static void writeLinkedEntitiesFromGatheredStrings(JsonWriter jsonWriter private static void writeIriMapping(JsonWriter jsonWriter, EntityDefinitionSet definitions, String ontologyId) throws IOException { if(definitions.definingDefinitions.size() > 0) { - + // There are ontologies which canonically define this term jsonWriter.name("definedBy"); @@ -436,4 +442,84 @@ private static class CurieMapResult { public String source; } + private static void processShortFormObject(JsonReader jsonReader, JsonWriter jsonWriter, LinkerPass1.LinkerPass1Result pass1Result, String entityIri) throws IOException { + jsonReader.beginObject(); + JsonObject shortFormObject = new JsonObject(); + + while (jsonReader.peek() != JsonToken.END_OBJECT) { + String shortFormFieldName = jsonReader.nextName(); + if (shortFormFieldName.equals("type")) { + JsonArray typeArray = new JsonArray(); + jsonReader.beginArray(); + while (jsonReader.peek() != JsonToken.END_ARRAY) { + typeArray.add(jsonReader.nextString()); + } + jsonReader.endArray(); + shortFormObject.add("type", typeArray); + } else if (shortFormFieldName.equals("value")) { + String shortFormValue = jsonReader.nextString(); + // Modify the value attribute + shortFormValue = getProcessedCurieValue(pass1Result, entityIri).replace(":", "_"); + shortFormObject.addProperty("value", shortFormValue); + } + } + jsonReader.endObject(); + + // Write the modified short form object + jsonWriter.beginObject(); + jsonWriter.name("type"); + jsonWriter.beginArray(); + for (JsonElement typeElement : shortFormObject.getAsJsonArray("type")) { + jsonWriter.value(typeElement.getAsString()); + } + jsonWriter.endArray(); + jsonWriter.name("value").value(shortFormObject.get("value").getAsString()); + jsonWriter.endObject(); + } + + private static void processCurieObject(JsonReader jsonReader, JsonWriter jsonWriter, LinkerPass1.LinkerPass1Result pass1Result, String entityIri) throws IOException { + jsonReader.beginObject(); + JsonObject curieObject = new JsonObject(); + + while (jsonReader.peek() != JsonToken.END_OBJECT) { + String curieFieldName = jsonReader.nextName(); + if (curieFieldName.equals("type")) { + JsonArray typeArray = new JsonArray(); + jsonReader.beginArray(); + while (jsonReader.peek() != JsonToken.END_ARRAY) { + typeArray.add(jsonReader.nextString()); + } + jsonReader.endArray(); + curieObject.add("type", typeArray); + } else if (curieFieldName.equals("value")) { + String curieValue = jsonReader.nextString(); + // Modify the value attribute + curieValue = getProcessedCurieValue(pass1Result, entityIri); + curieObject.addProperty("value", curieValue); + } + } + jsonReader.endObject(); + + // Write the modified curie object + jsonWriter.beginObject(); + jsonWriter.name("type"); + jsonWriter.beginArray(); + for (JsonElement typeElement : curieObject.getAsJsonArray("type")) { + jsonWriter.value(typeElement.getAsString()); + } + jsonWriter.endArray(); + jsonWriter.name("value").value(curieObject.get("value").getAsString()); + jsonWriter.endObject(); + } + + private static String getProcessedCurieValue(LinkerPass1.LinkerPass1Result pass1Result, String entityIri) { + var def = pass1Result.iriToDefinitions.get(entityIri); + if (def.definitions.iterator().hasNext()) { + JsonObject defCurieObject = def.definitions.iterator().next().curie.getAsJsonObject(); + if (defCurieObject.has("value")) { + return defCurieObject.get("value").getAsString(); + } + } + return ""; + } } diff --git a/dataload/rdf2json/src/main/java/uk/ac/ebi/rdf2json/annotators/ShortFormAnnotator.java b/dataload/rdf2json/src/main/java/uk/ac/ebi/rdf2json/annotators/ShortFormAnnotator.java index 73f3b28e4..1b2d5b1b0 100644 --- a/dataload/rdf2json/src/main/java/uk/ac/ebi/rdf2json/annotators/ShortFormAnnotator.java +++ b/dataload/rdf2json/src/main/java/uk/ac/ebi/rdf2json/annotators/ShortFormAnnotator.java @@ -31,6 +31,9 @@ public static void annotateShortForms(OntologyGraph graph) { if(c.uri == null) continue; + if (preferredPrefix == null || preferredPrefix.isEmpty()) { + preferredPrefix = graph.config.get("id").toString().toUpperCase(); + } String shortForm = extractShortForm(graph, ontologyBaseUris, preferredPrefix, c.uri); String curie = shortForm.replaceFirst("_", ":"); diff --git a/dev-testing/teststack-mac.sh b/dev-testing/teststack-mac.sh new file mode 100755 index 000000000..82da27983 --- /dev/null +++ b/dev-testing/teststack-mac.sh @@ -0,0 +1,69 @@ +#!/usr/bin/env bash + +if [ $# == 0 ]; then + echo "Usage: $0 " + echo "If is a file it will read and load this single configuration." + echo "If as a directory, it will read and load all json configuration in the directory and + subdirectories." + exit 1 +fi + +config_url=$1 +out_dir=$2 + +# Create or clean output directory +if [ -d "$out_dir" ]; then + echo "$out_dir already exists and will now be cleaned." + rm -Rf $out_dir/* +else + echo "$out_dir does not exist and will now be created." + mkdir "$out_dir" +fi + +function process_config { + echo "process_config param1="$1 + echo "process_config param2="$2 + + local config_url=$1 + local out_dir=$2 + + + if [ -d "$config_url" ]; then + echo "$config_url is a directory. Processing config files in $config_url" + local basename=$(basename $config_url) + echo "basename for config_url="$basename + local out_dir_basename=$out_dir/$basename + mkdir $out_dir_basename + for filename in $config_url/*.json; do + echo "filename="$filename + process_config $filename $out_dir_basename + done + for dir in $config_url/*/; do + process_config $dir $out_dir_basename + done + elif [ -f "$config_url" ]; then + echo "$config_url is a file. Processing single config file." + local basename=$(basename $config_url .json) + + local relative_out_dir=$out_dir/$basename + mkdir $relative_out_dir + + local absolute_out_dir=$(realpath -q $relative_out_dir) + echo "absolute_out_dir="$absolute_out_dir + + $OLS4_HOME/dataload/create_datafiles.sh $config_url $absolute_out_dir --noDates + + $OLS4_HOME/dev-testing/load_test_into_solr.sh $absolute_out_dir + else + echo "$config_url does not exist." + fi +} + +$OLS4_HOME/dev-testing/clean-neo4j.sh +$OLS4_HOME/dev-testing/clean-solr.sh +$OLS4_HOME/dev-testing/start-solr.sh + +process_config $config_url $out_dir + +$OLS4_HOME/dev-testing/load_test_into_neo4j.sh $out_dir +$OLS4_HOME/dev-testing/start-neo4j.sh diff --git a/testcases/annotation-properties/gitIssue502.json b/testcases/annotation-properties/gitIssue502.json index 235fa925a..523d14164 100644 --- a/testcases/annotation-properties/gitIssue502.json +++ b/testcases/annotation-properties/gitIssue502.json @@ -19,6 +19,11 @@ "id": "gitIssue502", "preferredPrefix": "gitIssue502", "ontology_purl": "./testcases/annotation-properties/gitIssue502.owl" + }, + { + "id": "oio", + "ontology_purl": "https://gist.githubusercontent.com/haideriqbal/4a2b1a9aa81d9fa26cae81e0b0b7730b/raw/527665128b9be9d7d6133f9a796379600151c737/oboInOwl.owl", + "base_uri": ["http://www.geneontology.org/formats/oboInOwl#"] } ] } diff --git a/testcases_expected_output/annotation-properties/gitIssue502/autocomplete.jsonl b/testcases_expected_output/annotation-properties/gitIssue502/autocomplete.jsonl index 95cb325b6..15711eae8 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/autocomplete.jsonl +++ b/testcases_expected_output/annotation-properties/gitIssue502/autocomplete.jsonl @@ -715,3 +715,32 @@ {"ontologyId":"gitissue502","id":"gitissue502+property+http://www.w3.org/2000/01/rdf-schema#label","label":"label"} {"ontologyId":"gitissue502","id":"gitissue502+property+http://www.w3.org/2004/02/skos/core#closeMatch","label":"closeMatch"} {"ontologyId":"gitissue502","id":"gitissue502+property+http://www.w3.org/2004/02/skos/core#exactMatch","label":"exactMatch"} +{"ontologyId":"oio","id":"oio+class+http://www.geneontology.org/formats/oboInOwl#DbXref","label":"database_cross_reference"} +{"ontologyId":"oio","id":"oio+class+http://www.geneontology.org/formats/oboInOwl#Definition","label":"definition"} +{"ontologyId":"oio","id":"oio+class+http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","label":"obsolete_class"} +{"ontologyId":"oio","id":"oio+class+http://www.geneontology.org/formats/oboInOwl#Subset","label":"subset"} +{"ontologyId":"oio","id":"oio+class+http://www.geneontology.org/formats/oboInOwl#Synonym","label":"synonym"} +{"ontologyId":"oio","id":"oio+class+http://www.geneontology.org/formats/oboInOwl#SynonymType","label":"synonym_type"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","label":"obsolete_property"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#SubsetProperty","label":"subset_property"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty","label":"synonym_type_property"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#consider","label":"consider"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasAlternativeId","label":"has_alternative_id"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","label":"has_broad_synonym"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasDate","label":"has_date"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasDbXref","label":"has_dbxref"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasDefaultNamespace","label":"has_default_namespace"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasDefinition","label":"has_definition"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","label":"has_exact_synonym"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","label":"has_narrow_synonym"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasOBONamespace","label":"has_obo_namespace"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","label":"has_related_synonym"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasSubset","label":"has_subset"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasSynonym","label":"has_synonym"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasSynonymType","label":"has_synonym_type"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasURI","label":"has_URI"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasVersion","label":"has_version"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#inSubset","label":"in_subset"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#isCyclic","label":"is_cyclic"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#replacedBy","label":"replaced_by"} +{"ontologyId":"oio","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#savedBy","label":"saved_by"} diff --git a/testcases_expected_output/annotation-properties/gitIssue502/classes.jsonl b/testcases_expected_output/annotation-properties/gitIssue502/classes.jsonl index 87c5d5fc1..28698be1c 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/classes.jsonl +++ b/testcases_expected_output/annotation-properties/gitIssue502/classes.jsonl @@ -1,291 +1,297 @@ -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of classes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of classes.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"Class","definedBy":["rdfs"],"definition":"The class of classes.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of classes.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Class","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Class","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#Class","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Class","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"Class","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Container\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Container\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of RDF containers.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of RDF containers.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Container\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Container\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Container\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"Container","definedBy":["rdfs"],"definition":"The class of RDF containers.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of RDF containers.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Container","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Container","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#Container","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Container","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"Container","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"ContainerMembershipProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of container membership properties, rdf:_1, rdf:_2, ...,\\n all of which are sub-properties of \\u0027member\\u0027.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of container membership properties, rdf:_1, rdf:_2, ...,\\n all of which are sub-properties of \\u0027member\\u0027.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"ContainerMembershipProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"ContainerMembershipProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"ContainerMembershipProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"ContainerMembershipProperty","definedBy":["rdfs"],"definition":"The class of container membership properties, rdf:_1, rdf:_2, ...,\n all of which are sub-properties of \u0027member\u0027.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of container membership properties, rdf:_1, rdf:_2, ...,\n all of which are sub-properties of \u0027member\u0027.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"ContainerMembershipProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"rdfs+class+http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"ContainerMembershipProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"ContainerMembershipProperty","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of RDF datatypes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of RDF datatypes.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"Datatype","definedBy":["rdfs"],"definition":"The class of RDF datatypes.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"directParent":"http://www.w3.org/2000/01/rdf-schema#Class","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Class","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of RDF datatypes.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Datatype","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Class","id":"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Datatype","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#Datatype","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Datatype","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"Datatype","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of literal values, eg. textual strings and integers.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of literal values, eg. textual strings and integers.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"Literal","definedBy":["rdfs"],"definition":"The class of literal values, eg. textual strings and integers.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of literal values, eg. textual strings and integers.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Literal","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Literal","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#Literal","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Literal","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"Literal","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class resource, everything.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class resource, everything.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"Resource","definedBy":["rdfs"],"definition":"The class resource, everything.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class resource, everything.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Resource","id":"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Resource","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#Resource","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Resource","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"Resource","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of classes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of classes.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"Class","definedBy":["rdfs"],"definition":"The class of classes.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of classes.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Class","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2000/01/rdf-schema#Class","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#Class","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Class","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"Class","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Container\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Container\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of RDF containers.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of RDF containers.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Container\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Container\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Container\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"Container","definedBy":["rdfs"],"definition":"The class of RDF containers.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of RDF containers.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Container","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2000/01/rdf-schema#Container","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#Container","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Container","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"Container","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"ContainerMembershipProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of container membership properties, rdf:_1, rdf:_2, ...,\\n all of which are sub-properties of \\u0027member\\u0027.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of container membership properties, rdf:_1, rdf:_2, ...,\\n all of which are sub-properties of \\u0027member\\u0027.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"ContainerMembershipProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"ContainerMembershipProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"ContainerMembershipProperty\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"ContainerMembershipProperty","definedBy":["rdfs"],"definition":"The class of container membership properties, rdf:_1, rdf:_2, ...,\n all of which are sub-properties of \u0027member\u0027.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of container membership properties, rdf:_1, rdf:_2, ...,\n all of which are sub-properties of \u0027member\u0027.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"ContainerMembershipProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+class+http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ContainerMembershipProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"ContainerMembershipProperty","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of RDF datatypes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of RDF datatypes.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"Datatype","definedBy":["rdfs"],"definition":"The class of RDF datatypes.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"directParent":"http://www.w3.org/2000/01/rdf-schema#Class","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Class","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of RDF datatypes.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Datatype","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+class+http://www.w3.org/2000/01/rdf-schema#Datatype","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#Datatype","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Datatype","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"Datatype","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of literal values, eg. textual strings and integers.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of literal values, eg. textual strings and integers.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"Literal","definedBy":["rdfs"],"definition":"The class of literal values, eg. textual strings and integers.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of literal values, eg. textual strings and integers.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Literal","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2000/01/rdf-schema#Literal","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#Literal","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Literal","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"Literal","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class resource, everything.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class resource, everything.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"numDescendants\":15.0,\"numHierarchicalDescendants\":15.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"Resource","definedBy":["rdfs"],"definition":"The class resource, everything.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class resource, everything.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Resource","id":"owl+class+http://www.w3.org/2000/01/rdf-schema#Resource","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#Resource","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Resource","numDescendants":"15.0","numHierarchicalDescendants":"15.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"Resource","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#AllDifferent\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"AllDifferent\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of collections of pairwise different individuals.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of collections of pairwise different individuals.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"AllDifferent\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"AllDifferent\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"AllDifferent\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"AllDifferent","definedBy":["owl"],"definition":"The class of collections of pairwise different individuals.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of collections of pairwise different individuals.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"AllDifferent","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2002/07/owl#AllDifferent","imported":"false","iri":"http://www.w3.org/2002/07/owl#AllDifferent","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"AllDifferent","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"AllDifferent","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#AllDisjointClasses\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"AllDisjointClasses\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of collections of pairwise disjoint classes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of collections of pairwise disjoint classes.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"AllDisjointClasses\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"AllDisjointClasses\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"AllDisjointClasses\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"AllDisjointClasses","definedBy":["owl"],"definition":"The class of collections of pairwise disjoint classes.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of collections of pairwise disjoint classes.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"AllDisjointClasses","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2002/07/owl#AllDisjointClasses","imported":"false","iri":"http://www.w3.org/2002/07/owl#AllDisjointClasses","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"AllDisjointClasses","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"AllDisjointClasses","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#AllDisjointProperties\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"AllDisjointProperties\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of collections of pairwise disjoint properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of collections of pairwise disjoint properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"AllDisjointProperties\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"AllDisjointProperties\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"AllDisjointProperties\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"AllDisjointProperties","definedBy":["owl"],"definition":"The class of collections of pairwise disjoint properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of collections of pairwise disjoint properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"AllDisjointProperties","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2002/07/owl#AllDisjointProperties","imported":"false","iri":"http://www.w3.org/2002/07/owl#AllDisjointProperties","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"AllDisjointProperties","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"AllDisjointProperties","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#Annotation\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Annotation\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Annotation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Annotation\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Annotation\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"Annotation","definedBy":["owl"],"definition":"The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"Annotation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2002/07/owl#Annotation","imported":"false","iri":"http://www.w3.org/2002/07/owl#Annotation","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Annotation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"Annotation","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"AnnotationProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of annotation properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of annotation properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"AnnotationProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"AnnotationProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"AnnotationProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"AnnotationProperty","definedBy":["owl"],"definition":"The class of annotation properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of annotation properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+class+http://www.w3.org/2002/07/owl#AnnotationProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#AnnotationProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"AnnotationProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"AnnotationProperty","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#AsymmetricProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"AsymmetricProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of asymmetric properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"directParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of asymmetric properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"AsymmetricProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"AsymmetricProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"AsymmetricProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"AsymmetricProperty","definedBy":["owl"],"definition":"The class of asymmetric properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","directParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of asymmetric properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"AsymmetricProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#ObjectProperty","id":"owl+class+http://www.w3.org/2002/07/owl#AsymmetricProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#AsymmetricProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"AsymmetricProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"AsymmetricProperty","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#Axiom\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Axiom\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Axiom\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Axiom\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Axiom\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"Axiom","definedBy":["owl"],"definition":"The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"Axiom","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2002/07/owl#Axiom","imported":"false","iri":"http://www.w3.org/2002/07/owl#Axiom","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Axiom","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"Axiom","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#Class\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of OWL classes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of OWL classes.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"Class","definedBy":["owl"],"definition":"The class of OWL classes.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"directParent":"http://www.w3.org/2000/01/rdf-schema#Class","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Class","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of OWL classes.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"Class","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+class+http://www.w3.org/2002/07/owl#Class","imported":"false","iri":"http://www.w3.org/2002/07/owl#Class","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Class","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"Class","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#DataRange\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DataRange\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"DataRange\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"DataRange\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DataRange\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Datatype\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"DataRange","definedBy":["owl"],"definition":"The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2000/01/rdf-schema#Datatype","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"directParent":"http://www.w3.org/2000/01/rdf-schema#Datatype","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://www.w3.org/2000/01/rdf-schema#Datatype","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Datatype","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"DataRange","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Datatype","id":"owl+class+http://www.w3.org/2002/07/owl#DataRange","imported":"false","iri":"http://www.w3.org/2002/07/owl#DataRange","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"DataRange","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"DataRange","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#DatatypeProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DatatypeProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of data properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of data properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"DatatypeProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"DatatypeProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DatatypeProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"DatatypeProperty","definedBy":["owl"],"definition":"The class of data properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of data properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"DatatypeProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+class+http://www.w3.org/2002/07/owl#DatatypeProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#DatatypeProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"DatatypeProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"DatatypeProperty","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#DeprecatedClass\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DeprecatedClass\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of deprecated classes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of deprecated classes.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"DeprecatedClass\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"DeprecatedClass\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DeprecatedClass\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"DeprecatedClass","definedBy":["owl"],"definition":"The class of deprecated classes.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"directParent":"http://www.w3.org/2000/01/rdf-schema#Class","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Class","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of deprecated classes.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"DeprecatedClass","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+class+http://www.w3.org/2002/07/owl#DeprecatedClass","imported":"false","iri":"http://www.w3.org/2002/07/owl#DeprecatedClass","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"DeprecatedClass","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"DeprecatedClass","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#DeprecatedProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DeprecatedProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of deprecated properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of deprecated properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"DeprecatedProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"DeprecatedProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DeprecatedProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"DeprecatedProperty","definedBy":["owl"],"definition":"The class of deprecated properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of deprecated properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"DeprecatedProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+class+http://www.w3.org/2002/07/owl#DeprecatedProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#DeprecatedProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"DeprecatedProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"DeprecatedProperty","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#FunctionalProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"FunctionalProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of functional properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of functional properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"FunctionalProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"FunctionalProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"FunctionalProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"FunctionalProperty","definedBy":["owl"],"definition":"The class of functional properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of functional properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"FunctionalProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+class+http://www.w3.org/2002/07/owl#FunctionalProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#FunctionalProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"FunctionalProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"FunctionalProperty","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#InverseFunctionalProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"InverseFunctionalProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of inverse-functional properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"directParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of inverse-functional properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"InverseFunctionalProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"InverseFunctionalProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"InverseFunctionalProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"InverseFunctionalProperty","definedBy":["owl"],"definition":"The class of inverse-functional properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","directParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of inverse-functional properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"InverseFunctionalProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#ObjectProperty","id":"owl+class+http://www.w3.org/2002/07/owl#InverseFunctionalProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#InverseFunctionalProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"InverseFunctionalProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"InverseFunctionalProperty","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#IrreflexiveProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IrreflexiveProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of irreflexive properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"directParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of irreflexive properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"IrreflexiveProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IrreflexiveProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IrreflexiveProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"IrreflexiveProperty","definedBy":["owl"],"definition":"The class of irreflexive properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","directParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of irreflexive properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"IrreflexiveProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#ObjectProperty","id":"owl+class+http://www.w3.org/2002/07/owl#IrreflexiveProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#IrreflexiveProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"IrreflexiveProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"IrreflexiveProperty","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NamedIndividual\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of named individuals.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2002/07/owl#Thing\",\"directParent\":\"http://www.w3.org/2002/07/owl#Thing\",\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":\"http://www.w3.org/2002/07/owl#Thing\",\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#Thing\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of named individuals.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"NamedIndividual\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"NamedIndividual\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NamedIndividual\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"NamedIndividual","definedBy":["owl"],"definition":"The class of named individuals.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2002/07/owl#Thing","directParent":"http://www.w3.org/2002/07/owl#Thing","hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":"http://www.w3.org/2002/07/owl#Thing","hierarchicalParent":"http://www.w3.org/2002/07/owl#Thing","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of named individuals.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"NamedIndividual","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#Thing","id":"owl+class+http://www.w3.org/2002/07/owl#NamedIndividual","imported":"false","iri":"http://www.w3.org/2002/07/owl#NamedIndividual","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"NamedIndividual","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"NamedIndividual","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#NegativePropertyAssertion\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NegativePropertyAssertion\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of negative property assertions.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of negative property assertions.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"NegativePropertyAssertion\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"NegativePropertyAssertion\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NegativePropertyAssertion\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"NegativePropertyAssertion","definedBy":["owl"],"definition":"The class of negative property assertions.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of negative property assertions.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"NegativePropertyAssertion","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2002/07/owl#NegativePropertyAssertion","imported":"false","iri":"http://www.w3.org/2002/07/owl#NegativePropertyAssertion","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"NegativePropertyAssertion","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"NegativePropertyAssertion","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#Nothing\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Nothing\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"This is the empty class.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2002/07/owl#Thing\",\"directParent\":\"http://www.w3.org/2002/07/owl#Thing\",\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":\"http://www.w3.org/2002/07/owl#Thing\",\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#Thing\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"This is the empty class.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Nothing\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Nothing\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Nothing\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"Nothing","definedBy":["owl"],"definition":"This is the empty class.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2002/07/owl#Thing","directParent":"http://www.w3.org/2002/07/owl#Thing","hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":"http://www.w3.org/2002/07/owl#Thing","hierarchicalParent":"http://www.w3.org/2002/07/owl#Thing","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"This is the empty class.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"Nothing","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#Thing","id":"owl+class+http://www.w3.org/2002/07/owl#Nothing","imported":"false","iri":"http://www.w3.org/2002/07/owl#Nothing","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Nothing","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"Nothing","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"ObjectProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of object properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of object properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"ObjectProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"ObjectProperty\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"ObjectProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"ObjectProperty","definedBy":["owl"],"definition":"The class of object properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of object properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+class+http://www.w3.org/2002/07/owl#ObjectProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#ObjectProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"ObjectProperty","numDescendants":"6.0","numHierarchicalDescendants":"6.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"ObjectProperty","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#Ontology\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Ontology\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of ontologies.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of ontologies.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Ontology\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Ontology\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Ontology\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"Ontology","definedBy":["owl"],"definition":"The class of ontologies.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of ontologies.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"Ontology","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2002/07/owl#Ontology","imported":"false","iri":"http://www.w3.org/2002/07/owl#Ontology","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Ontology","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"Ontology","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#OntologyProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OntologyProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of ontology properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of ontology properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"OntologyProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"OntologyProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OntologyProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OntologyProperty","definedBy":["owl"],"definition":"The class of ontology properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of ontology properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"OntologyProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+class+http://www.w3.org/2002/07/owl#OntologyProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#OntologyProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"OntologyProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OntologyProperty","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#ReflexiveProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"ReflexiveProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of reflexive properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"directParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of reflexive properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"ReflexiveProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"ReflexiveProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"ReflexiveProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"ReflexiveProperty","definedBy":["owl"],"definition":"The class of reflexive properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","directParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of reflexive properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"ReflexiveProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#ObjectProperty","id":"owl+class+http://www.w3.org/2002/07/owl#ReflexiveProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#ReflexiveProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"ReflexiveProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"ReflexiveProperty","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#Restriction\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Restriction\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of property restrictions.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"directParent\":\"http://www.w3.org/2002/07/owl#Class\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#Class\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of property restrictions.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Restriction\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Restriction\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Restriction\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"Restriction","definedBy":["owl"],"definition":"The class of property restrictions.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2002/07/owl#Class","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"directParent":"http://www.w3.org/2002/07/owl#Class","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://www.w3.org/2002/07/owl#Class","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"hierarchicalParent":"http://www.w3.org/2002/07/owl#Class","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of property restrictions.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"Restriction","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#Class","id":"owl+class+http://www.w3.org/2002/07/owl#Restriction","imported":"false","iri":"http://www.w3.org/2002/07/owl#Restriction","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Restriction","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"Restriction","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#SymmetricProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SymmetricProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of symmetric properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"directParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of symmetric properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"SymmetricProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"SymmetricProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SymmetricProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"SymmetricProperty","definedBy":["owl"],"definition":"The class of symmetric properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","directParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of symmetric properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"SymmetricProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#ObjectProperty","id":"owl+class+http://www.w3.org/2002/07/owl#SymmetricProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#SymmetricProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"SymmetricProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"SymmetricProperty","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#Thing\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Thing\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of OWL individuals.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of OWL individuals.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Thing\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Thing\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Thing\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"Thing","definedBy":["owl"],"definition":"The class of OWL individuals.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of OWL individuals.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"Thing","id":"owl+class+http://www.w3.org/2002/07/owl#Thing","imported":"false","iri":"http://www.w3.org/2002/07/owl#Thing","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Thing","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"Thing","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#TransitiveProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"TransitiveProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of transitive properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"directParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of transitive properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"TransitiveProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"TransitiveProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"TransitiveProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"TransitiveProperty","definedBy":["owl"],"definition":"The class of transitive properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","directParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of transitive properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"TransitiveProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#ObjectProperty","id":"owl+class+http://www.w3.org/2002/07/owl#TransitiveProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#TransitiveProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"TransitiveProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"TransitiveProperty","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#Collection\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Collection\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Collection\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://www.w3.org/2004/02/skos/core#Concept\",\"http://www.w3.org/2004/02/skos/core#ConceptScheme\"],\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A meaningful collection of concepts.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Labelled collections can be used where you would like a set of concepts to be displayed under a \\u0027node label\\u0027 in the hierarchy.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Collection\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A meaningful collection of concepts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Labelled collections can be used where you would like a set of concepts to be displayed under a \\u0027node label\\u0027 in the hierarchy.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Collection\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#Concept\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Concept\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#ConceptScheme\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept Scheme\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ConceptScheme\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"Collection","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"Collection","http__//www.w3.org/2002/07/owl#disjointWith":["http://www.w3.org/2004/02/skos/core#Concept","http://www.w3.org/2004/02/skos/core#ConceptScheme"],"http__//www.w3.org/2004/02/skos/core#definition":"A meaningful collection of concepts.","http__//www.w3.org/2004/02/skos/core#scopeNote":"Labelled collections can be used where you would like a set of concepts to be displayed under a \u0027node label\u0027 in the hierarchy.","id":"skos+class+http://www.w3.org/2004/02/skos/core#Collection","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#Collection","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Collection","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A meaningful collection of concepts.","Labelled collections can be used where you would like a set of concepts to be displayed under a \u0027node label\u0027 in the hierarchy.","false"],"shortForm":"Collection","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#Concept\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"Concept\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An idea or notion; a unit of thought.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An idea or notion; a unit of thought.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"Concept\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"Concept","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"Concept","http__//www.w3.org/2004/02/skos/core#definition":"An idea or notion; a unit of thought.","id":"skos+class+http://www.w3.org/2004/02/skos/core#Concept","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#Concept","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Concept","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["An idea or notion; a unit of thought.","false"],"shortForm":"Concept","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#ConceptScheme\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"ConceptScheme\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept Scheme\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://www.w3.org/2004/02/skos/core#Concept\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A set of concepts, optionally including statements about semantic relationships between those concepts.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#example\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Thesauri, classification schemes, subject heading lists, taxonomies, \\u0027folksonomies\\u0027, and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A concept scheme may be defined to include concepts from different sources.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept Scheme\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A set of concepts, optionally including statements about semantic relationships between those concepts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Thesauri, classification schemes, subject heading lists, taxonomies, \\u0027folksonomies\\u0027, and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A concept scheme may be defined to include concepts from different sources.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"ConceptScheme\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#Concept\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Concept\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#example\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"example\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"ConceptScheme","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"Concept Scheme","http__//www.w3.org/2002/07/owl#disjointWith":"http://www.w3.org/2004/02/skos/core#Concept","http__//www.w3.org/2004/02/skos/core#definition":"A set of concepts, optionally including statements about semantic relationships between those concepts.","http__//www.w3.org/2004/02/skos/core#example":"Thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies.","http__//www.w3.org/2004/02/skos/core#scopeNote":"A concept scheme may be defined to include concepts from different sources.","id":"skos+class+http://www.w3.org/2004/02/skos/core#ConceptScheme","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#ConceptScheme","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Concept Scheme","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A set of concepts, optionally including statements about semantic relationships between those concepts.","Thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies.","A concept scheme may be defined to include concepts from different sources.","false"],"shortForm":"ConceptScheme","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#OrderedCollection\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OrderedCollection\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#Collection\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#Collection\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2004/02/skos/core#Collection\",\"hierarchicalParent\":\"http://www.w3.org/2004/02/skos/core#Collection\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ordered Collection\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2004/02/skos/core#Collection\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ordered collection of concepts, where both the grouping and the ordering are meaningful.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a \\u0027node label\\u0027.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ordered Collection\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ordered collection of concepts, where both the grouping and the ordering are meaningful.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a \\u0027node label\\u0027.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OrderedCollection\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#Collection\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Collection\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Collection\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"OrderedCollection","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#Collection","directParent":"http://www.w3.org/2004/02/skos/core#Collection","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2004/02/skos/core#Collection","hierarchicalParent":"http://www.w3.org/2004/02/skos/core#Collection","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"Ordered Collection","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2004/02/skos/core#Collection","http__//www.w3.org/2004/02/skos/core#definition":"An ordered collection of concepts, where both the grouping and the ordering are meaningful.","http__//www.w3.org/2004/02/skos/core#scopeNote":"Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a \u0027node label\u0027.","id":"skos+class+http://www.w3.org/2004/02/skos/core#OrderedCollection","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#OrderedCollection","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Ordered Collection","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["An ordered collection of concepts, where both the grouping and the ordering are meaningful.","Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a \u0027node label\u0027.","false"],"shortForm":"OrderedCollection","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"isObsolete\":false},\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"numDescendants\":105.0,\"numHierarchicalDescendants\":105.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"BFO:0000002\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000002\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000002","definition":"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"continuant","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/BFO_0000003"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000002","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000002","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"continuant","numDescendants":"105.0","numHierarchicalDescendants":"105.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240","false"],"shortForm":"BFO_0000002","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that has temporal parts and that happens, unfolds or develops through time.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that has temporal parts and that happens, unfolds or develops through time.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"isObsolete\":false},\"http://www.w3.org/2002/07/owl#disjointWith\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"numDescendants\":14.0,\"numHierarchicalDescendants\":14.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that has temporal parts and that happens, unfolds or develops through time.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000003\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000003\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000003\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000003","definition":"An entity that has temporal parts and that happens, unfolds or develops through time.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An entity that has temporal parts and that happens, unfolds or develops through time.","http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region","BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"occurrent","id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000003","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000003","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"occurrent","numDescendants":"14.0","numHierarchicalDescendants":"14.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["An entity that has temporal parts and that happens, unfolds or develops through time.","BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region","BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.","false"],"shortForm":"BFO_0000003","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"numDescendants\":45.0,\"numHierarchicalDescendants\":45.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000004\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"BFO:0000004\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000004\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000004","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000002","directParent":"http://purl.obolibrary.org/obo/BFO_0000002","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/BFO_0000002","hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000002","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"independent continuant","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/BFO_0000002"],"http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000020","id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000004","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000004","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"independent continuant","numDescendants":"45.0","numHierarchicalDescendants":"45.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"BFO_0000004","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000015\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000015\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000015\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000015","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000003","directParent":"http://purl.obolibrary.org/obo/BFO_0000003","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/BFO_0000003","hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000003","id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000015","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000015","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"process","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)","false"],"shortForm":"BFO_0000015","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"numDescendants\":35.0,\"numHierarchicalDescendants\":35.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000016\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000016\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000016\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000023\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000016","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000017","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000017","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"disposition","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000017","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000023","id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000016","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000016","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disposition","numDescendants":"35.0","numHierarchicalDescendants":"35.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.","false"],"shortForm":"BFO_0000016","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"numDescendants\":37.0,\"numHierarchicalDescendants\":37.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000017\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"BFO:0000017\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000017\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000017","definition":"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000020","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000020","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"realizable entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/BFO_0000020"],"http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000019","id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000017","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000017","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"realizable entity","numDescendants":"37.0","numHierarchicalDescendants":"37.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","false"],"shortForm":"BFO_0000017","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000019\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"BFO:0000019\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000019\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000019","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000020","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000020","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/BFO_0000020"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000019","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000019","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"quality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"BFO_0000019","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"numDescendants\":58.0,\"numHierarchicalDescendants\":58.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000020\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"BFO:0000020\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000020\"},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000020","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000002","directParent":"http://purl.obolibrary.org/obo/BFO_0000002","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/BFO_0000002","hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000002","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"specifically dependent continuant","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/BFO_0000002"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000020","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000020","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"specifically dependent continuant","numDescendants":"58.0","numHierarchicalDescendants":"58.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"BFO_0000020","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000023\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \\u003dDef. there is some c, c instance_of professor role \\u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \\u003dDef. there is some c, c instance_of professor role \\u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000023\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"BFO:0000023\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000023\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000023","definition":"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000017","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000017","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \u003dDef. there is some c, c instance_of professor role \u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"role","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000017","id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000023","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000023","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"role","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \u003dDef. there is some c, c instance_of professor role \u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.","false"],"shortForm":"BFO_0000023","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000034\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000034\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000034\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000034\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000034\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000034\"},\"BFO:function\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_function\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:function\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000034","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000016","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000016","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"function","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000016","id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000034","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000034","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"function","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.","false"],"shortForm":"BFO_0000034","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here.\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"numDescendants\":39.0,\"numHierarchicalDescendants\":39.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000040\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"BFO:0000040\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000040\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000040","definition":"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000004","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000004","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60","BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.","BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"material entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/BFO_0000141"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000040","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000040","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"material entity","numDescendants":"39.0","numHierarchicalDescendants":"39.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60","BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.","BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here.","false"],"shortForm":"BFO_0000040","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2002/07/owl#disjointWith\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000141\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"BFO:0000141\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000141\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000141","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000004","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000004","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"immaterial entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000004","id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000141","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000141","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"immaterial entity","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10","false"],"shortForm":"BFO_0000141","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"numDescendants\":11.0,\"numHierarchicalDescendants\":11.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"CL:0000000\":{\"url\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"CL:0000000\"},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000000","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000061","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000061","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000061"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000000","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cell","numDescendants":"11.0","numHierarchicalDescendants":"11.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0010000","relatedTo":"http://purl.obolibrary.org/obo/NCBITaxon_131567","searchableAnnotationValues":"false","shortForm":"CL_0000000","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":10.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000003\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"CL:0000003\":{\"url\":\"http://purl.obolibrary.org/obo/CL_0000003\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"CL:0000003\"}}}","appearsIn":["gitissue502"],"curie":"CL:0000003","directAncestor":["http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"native cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/CL_0000000","id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000003","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000003","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"native cell","numDescendants":"10.0","numHierarchicalDescendants":"10.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"CL_0000003","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000039\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000039\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000003\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"germ line cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/CL_0000003\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0022414\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/CL_0002371\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"germ line cell\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/GO_0022414\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0022414\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000039\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"CL:0000039\":{\"url\":\"http://purl.obolibrary.org/obo/CL_0000039\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"CL:0000039\"},\"http://purl.obolibrary.org/obo/GO_0022414\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0022414\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0002371\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"somatic cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0002371\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000039","directAncestor":["http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000003","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"germ line cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/CL_0000003"],"http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/CL_0002371","id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000039","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000039","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"germ line cell","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0022414","searchableAnnotationValues":"false","shortForm":"CL_0000039","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000211\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000211\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000003\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"electrically active cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/CL_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"electrically active cell\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000211\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"CL:0000211\":{\"url\":\"http://purl.obolibrary.org/obo/CL_0000211\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"CL:0000211\"},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000211","directAncestor":["http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000003","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"electrically active cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/CL_0000003","id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000211","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000211","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"electrically active cell","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"CL_0000211","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000255\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000255\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000003\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"eukaryotic cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/CL_0000003\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"eukaryotic cell\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000255\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"CL:0000255\":{\"url\":\"http://purl.obolibrary.org/obo/CL_0000255\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"CL:0000255\"},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000255","directAncestor":["http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000003","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"eukaryotic cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/CL_0000003"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000255","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000255","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"eukaryotic cell","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/NCBITaxon_2759","searchableAnnotationValues":"false","shortForm":"CL_0000255","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000393\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000393\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000211\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000211\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000211\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000211\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"electrically responsive cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/CL_0000211\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"electrically responsive cell\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000393\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"CL:0000393\":{\"url\":\"http://purl.obolibrary.org/obo/CL_0000393\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"CL:0000393\"},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"electrically active cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000211\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000393","directAncestor":["http://purl.obolibrary.org/obo/CL_0000211","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000211","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000211","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000211","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"electrically responsive cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/CL_0000211","id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000393","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000393","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"electrically responsive cell","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"CL_0000393","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000404\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000404\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000211\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000211\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000211\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000211\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"electrically signaling cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/CL_0000211\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"electrically signaling cell\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000404\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"electrically active cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000211\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"CL:0000404\":{\"url\":\"http://purl.obolibrary.org/obo/CL_0000404\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"CL:0000404\"},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000404","directAncestor":["http://purl.obolibrary.org/obo/CL_0000211","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000211","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000211","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000211","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"electrically signaling cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/CL_0000211","id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000404","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000404","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"electrically signaling cell","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"CL_0000404","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000540\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000540\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000393\",\"http://purl.obolibrary.org/obo/CL_0000211\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/CL_0000404\",\"http://purl.obolibrary.org/obo/CL_0002319\",\"http://purl.obolibrary.org/obo/CL_0002371\",\"http://purl.obolibrary.org/obo/CL_0000548\",\"http://purl.obolibrary.org/obo/CL_0000255\"],\"directParent\":[\"http://purl.obolibrary.org/obo/CL_0000393\",\"http://purl.obolibrary.org/obo/CL_0000404\",\"http://purl.obolibrary.org/obo/CL_0002319\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000393\",\"http://purl.obolibrary.org/obo/CL_0000211\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/CL_0000404\",\"http://purl.obolibrary.org/obo/CL_0002319\",\"http://purl.obolibrary.org/obo/CL_0002371\",\"http://purl.obolibrary.org/obo/CL_0000548\",\"http://purl.obolibrary.org/obo/CL_0000255\",\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/CL_0000393\",\"http://purl.obolibrary.org/obo/CL_0000404\",\"http://purl.obolibrary.org/obo/CL_0002319\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":\"http://purl.obolibrary.org/obo/NCBITaxon_9606\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"neuron\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/CL_0000393\",\"http://purl.obolibrary.org/obo/CL_0000404\",\"http://purl.obolibrary.org/obo/CL_0002319\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019226\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"neuron\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000540\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/GO_0019226\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019226\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000540\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/CL_0000404\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"electrically signaling cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000404\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0002319\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neural cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0002319\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"electrically active cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000211\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000255\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"eukaryotic cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000255\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0019226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transmission of nerve impulse\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0019226\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"CL:0000540\":{\"url\":\"http://purl.obolibrary.org/obo/CL_0000540\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"CL:0000540\"},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000548\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"animal cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000548\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9606\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Homo sapiens\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9606\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0002371\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"somatic cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0002371\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000393\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"electrically responsive cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000393\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000540","directAncestor":["http://purl.obolibrary.org/obo/CL_0000393","http://purl.obolibrary.org/obo/CL_0000211","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/CL_0000404","http://purl.obolibrary.org/obo/CL_0002319","http://purl.obolibrary.org/obo/CL_0002371","http://purl.obolibrary.org/obo/CL_0000548","http://purl.obolibrary.org/obo/CL_0000255"],"directParent":["http://purl.obolibrary.org/obo/CL_0000393","http://purl.obolibrary.org/obo/CL_0000404","http://purl.obolibrary.org/obo/CL_0002319"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000393","http://purl.obolibrary.org/obo/CL_0000211","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/CL_0000404","http://purl.obolibrary.org/obo/CL_0002319","http://purl.obolibrary.org/obo/CL_0002371","http://purl.obolibrary.org/obo/CL_0000548","http://purl.obolibrary.org/obo/CL_0000255","http://purl.obolibrary.org/obo/UBERON_0001016","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000"],"hierarchicalParent":["http://purl.obolibrary.org/obo/CL_0000393","http://purl.obolibrary.org/obo/CL_0000404","http://purl.obolibrary.org/obo/CL_0002319"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":"http://purl.obolibrary.org/obo/NCBITaxon_9606","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"neuron","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/CL_0000393","http://purl.obolibrary.org/obo/CL_0000404","http://purl.obolibrary.org/obo/CL_0002319"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000540","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000540","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"neuron","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0001016","relatedTo":"http://purl.obolibrary.org/obo/GO_0019226","searchableAnnotationValues":"false","shortForm":"CL_0000540","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000548\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000548\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A native cell that is part of some Metazoa.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000255\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000255\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000255\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000255\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A native cell that is part of some Metazoa.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"animal cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/CL_0000255\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"animal cell\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A native cell that is part of some Metazoa.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000548\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"CL:0000548\":{\"url\":\"http://purl.obolibrary.org/obo/CL_0000548\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"CL:0000548\"},\"http://purl.obolibrary.org/obo/CL_0000255\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"eukaryotic cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000255\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000548","definition":"A native cell that is part of some Metazoa.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/CL_0000255","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000255","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000255","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000255","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A native cell that is part of some Metazoa.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"animal cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/CL_0000255"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000548","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000548","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"animal cell","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/NCBITaxon_33208","searchableAnnotationValues":["A native cell that is part of some Metazoa.","false"],"shortForm":"CL_0000548","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000586\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000586\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000039\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000039\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000039\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000039\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"germ cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/CL_0000039\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009566\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"germ cell\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000586\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009566\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009566\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000586\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"CL:0000586\":{\"url\":\"http://purl.obolibrary.org/obo/CL_0000586\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"CL:0000586\"},\"http://purl.obolibrary.org/obo/CL_0000039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"germ line cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000039\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009566\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fertilization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009566\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002216\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002216\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000991\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000991\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000586","directAncestor":["http://purl.obolibrary.org/obo/CL_0000039","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000039","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000039","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000039","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"germ cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/CL_0000039"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000586","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000586","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"germ cell","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000991","relatedTo":"http://purl.obolibrary.org/obo/GO_0009566","searchableAnnotationValues":"false","shortForm":"CL_0000586","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0002319\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0002319\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0002371\",\"http://purl.obolibrary.org/obo/CL_0000548\",\"http://purl.obolibrary.org/obo/CL_0000255\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0002371\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0002371\",\"http://purl.obolibrary.org/obo/CL_0000548\",\"http://purl.obolibrary.org/obo/CL_0000255\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/CL_0002371\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"neural cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/CL_0002371\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"neural cell\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0002319\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0002319\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"CL:0002319\":{\"url\":\"http://purl.obolibrary.org/obo/CL_0002319\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"CL:0002319\"},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000255\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"eukaryotic cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000255\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002473\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000548\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"animal cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000548\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0002371\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"somatic cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0002371\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0002319","directAncestor":["http://purl.obolibrary.org/obo/CL_0002371","http://purl.obolibrary.org/obo/CL_0000548","http://purl.obolibrary.org/obo/CL_0000255","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0002371","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0002371","http://purl.obolibrary.org/obo/CL_0000548","http://purl.obolibrary.org/obo/CL_0000255","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0001016","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000"],"hierarchicalParent":["http://purl.obolibrary.org/obo/CL_0002371","http://purl.obolibrary.org/obo/UBERON_0001016"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"neural cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/CL_0002371"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0002319","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0002319","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"neural cell","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0001016","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0001016","searchableAnnotationValues":"false","shortForm":"CL_0002319","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0002371\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0002371\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000548\",\"http://purl.obolibrary.org/obo/CL_0000255\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000548\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000548\",\"http://purl.obolibrary.org/obo/CL_0000255\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000548\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"somatic cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/CL_0000548\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"somatic cell\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0002371\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/CL_0000548\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"animal cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000548\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"CL:0002371\":{\"url\":\"http://purl.obolibrary.org/obo/CL_0002371\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"CL:0002371\"},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000255\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"eukaryotic cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000255\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0002371","directAncestor":["http://purl.obolibrary.org/obo/CL_0000548","http://purl.obolibrary.org/obo/CL_0000255","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000548","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000548","http://purl.obolibrary.org/obo/CL_0000255","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000548","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"somatic cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/CL_0000548","id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0002371","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0002371","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"somatic cell","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"CL_0002371","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0022414\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0003133\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0000003\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0003133\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0003133\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0022414\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0022414\"},\"type\":[\"class\",\"entity\"]},\"GO:0000003\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0000003\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0000003\"},\"http://purl.obolibrary.org/obo/RO_0002216\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002216\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0000003","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"reproduction","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0008150","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0000003","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0000003","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"reproduction","numDescendants":"2.0","numHierarchicalDescendants":"6.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0003133"],"searchableAnnotationValues":"false","shortForm":"GO_0000003","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0001508\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001508\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0042391\",\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0042391\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0042391\",\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0042391\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"action potential\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0042391\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"action potential\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0019226\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001508\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0001508\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0065008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065008\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0001508\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0001508\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0001508\"},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0019226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transmission of nerve impulse\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0019226\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0042391\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of membrane potential\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0042391\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0001508","directAncestor":["http://purl.obolibrary.org/obo/GO_0042391","http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0042391","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0042391","http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0042391","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"action potential","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0042391","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001508","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0001508","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"action potential","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0019226","searchableAnnotationValues":"false","shortForm":"GO_0001508","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0001704\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001704\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048646\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0007369\",\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0048646\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"formation of primary germ layer\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0048646\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"formation of primary germ layer\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0001704\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0001704\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0001704\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0001704\"},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0001704","directAncestor":["http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048646","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0007369","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0007369"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"formation of primary germ layer","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0048646"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001704","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0001704","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"formation of primary germ layer","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0007369","searchableAnnotationValues":"false","shortForm":"GO_0001704","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0001705\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001705\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0001704\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0001704\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0001704\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0007369\",\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0007398\",\"http://purl.obolibrary.org/obo/GO_0009888\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0001704\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007398\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"ectoderm formation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0001704\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007398\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"ectoderm formation\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001705\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007398\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007398\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0001705\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007398\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ectoderm development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007398\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0001705\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0001705\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0001705\"},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001704\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"formation of primary germ layer\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001704\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0001705","directAncestor":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0001704","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0007369","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0007398","http://purl.obolibrary.org/obo/GO_0009888"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0007398"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"ectoderm formation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0001704"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001705","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0001705","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ectoderm formation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0007369","relatedTo":"http://purl.obolibrary.org/obo/GO_0007398","searchableAnnotationValues":"false","shortForm":"GO_0001705","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0001706\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001706\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0001704\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0001704\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0001704\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0007369\",\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0007492\",\"http://purl.obolibrary.org/obo/GO_0009888\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0001704\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007492\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"endoderm formation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0001704\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007492\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"endoderm formation\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001706\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007492\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007492\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0001706\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0001706\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0001706\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0001706\"},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007492\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endoderm development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007492\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001704\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"formation of primary germ layer\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001704\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0001706","directAncestor":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0001704","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0007369","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0007492","http://purl.obolibrary.org/obo/GO_0009888"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0007492"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"endoderm formation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0001704"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001706","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0001706","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"endoderm formation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0007369","relatedTo":"http://purl.obolibrary.org/obo/GO_0007492","searchableAnnotationValues":"false","shortForm":"GO_0001706","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0001707\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001707\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0001704\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0001704\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0001704\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0007369\",\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0048332\",\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0007498\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0001704\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0048332\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"mesoderm formation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0001704\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048332\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm formation\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001707\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048332\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048332\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0001707\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0001707\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0001707\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0001707\"},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001704\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"formation of primary germ layer\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001704\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007498\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007498\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048332\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048332\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0001707","directAncestor":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0001704","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0007369","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0048332","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0007498"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0048332"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"mesoderm formation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0001704"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001707","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0001707","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"mesoderm formation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0007369","relatedTo":"http://purl.obolibrary.org/obo/GO_0048332","searchableAnnotationValues":"false","shortForm":"GO_0001707","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0001838\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001838\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0072175\",\"http://purl.obolibrary.org/obo/GO_0035148\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0072175\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0072175\",\"http://purl.obolibrary.org/obo/GO_0035148\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0035239\",\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0060562\",\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0060429\",\"http://purl.obolibrary.org/obo/GO_0016331\",\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009790\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0072175\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0016331\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"embryonic epithelial tube formation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0072175\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0016331\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic epithelial tube formation\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0016331\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0016331\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0001838\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0072175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0072175\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035148\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035148\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"GO:0001838\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0001838\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0001838\"},\"http://purl.obolibrary.org/obo/GO_0060429\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060429\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0002009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of an epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0002009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0060562\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060562\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035239\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035239\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0016331\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of embryonic epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0016331\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0001838","directAncestor":["http://purl.obolibrary.org/obo/GO_0072175","http://purl.obolibrary.org/obo/GO_0035148","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0072175","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0072175","http://purl.obolibrary.org/obo/GO_0035148","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0035239","http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0060562","http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0060429","http://purl.obolibrary.org/obo/GO_0016331","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009790"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0072175","http://purl.obolibrary.org/obo/GO_0016331"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"embryonic epithelial tube formation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0072175"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001838","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0001838","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"embryonic epithelial tube formation","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0016331","searchableAnnotationValues":"false","shortForm":"GO_0001838","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0001841\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001841\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0001838\",\"http://purl.obolibrary.org/obo/GO_0072175\",\"http://purl.obolibrary.org/obo/GO_0035148\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0001838\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0001838\",\"http://purl.obolibrary.org/obo/GO_0072175\",\"http://purl.obolibrary.org/obo/GO_0035148\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0035239\",\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0060562\",\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0060429\",\"http://purl.obolibrary.org/obo/GO_0016331\",\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0021915\",\"http://purl.obolibrary.org/obo/GO_0007399\",\"http://purl.obolibrary.org/obo/GO_0048731\",\"http://purl.obolibrary.org/obo/GO_0043009\",\"http://purl.obolibrary.org/obo/GO_0009792\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0001838\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0021915\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"neural tube formation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0001838\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0021915\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"neural tube formation\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000110\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001841\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0021915\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0021915\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0001841\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0072175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0072175\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007399\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007399\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035148\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035148\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0060429\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060429\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009792\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development ending in birth or egg hatching\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009792\"},\"type\":[\"class\",\"entity\"]},\"GO:0001841\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0001841\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0001841\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001838\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic epithelial tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001838\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0002009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of an epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0002009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048731\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"system development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048731\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0060562\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060562\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0043009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"chordate embryonic development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0043009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035239\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035239\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0016331\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of embryonic epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0016331\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000110\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neurula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000110\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0021915\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neural tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0021915\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0001841","directAncestor":["http://purl.obolibrary.org/obo/GO_0001838","http://purl.obolibrary.org/obo/GO_0072175","http://purl.obolibrary.org/obo/GO_0035148","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0001838","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0001838","http://purl.obolibrary.org/obo/GO_0072175","http://purl.obolibrary.org/obo/GO_0035148","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0035239","http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0060562","http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0060429","http://purl.obolibrary.org/obo/GO_0016331","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0021915","http://purl.obolibrary.org/obo/GO_0007399","http://purl.obolibrary.org/obo/GO_0048731","http://purl.obolibrary.org/obo/GO_0043009","http://purl.obolibrary.org/obo/GO_0009792"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0001838","http://purl.obolibrary.org/obo/GO_0021915"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"neural tube formation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0001838"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001841","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0001841","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"neural tube formation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000110","relatedTo":"http://purl.obolibrary.org/obo/GO_0021915","searchableAnnotationValues":"false","shortForm":"GO_0001841","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0002009\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0002009\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048729\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0060429\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0048729\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0060429\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of an epithelium\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0048729\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0060429\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of an epithelium\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0060429\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0060429\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0002009\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"GO:0002009\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0002009\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0002009\"},\"http://purl.obolibrary.org/obo/GO_0060429\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060429\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0002009","directAncestor":["http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048729","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0060429"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0060429"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"morphogenesis of an epithelium","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0048729"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0002009","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0002009","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"morphogenesis of an epithelium","numDescendants":"2.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0060429","searchableAnnotationValues":"false","shortForm":"GO_0002009","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0003008\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0003008\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0032501\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0032501\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"system process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0032501\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"system process\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0003008\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"GO:0003008\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0003008\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0003008\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0003008","directAncestor":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0032501","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0032501","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"system process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0032501","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0003008","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0003008","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"system process","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0003008","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0005102\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005102\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor binding\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor binding\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0005102\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0005515\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"protein binding\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005515\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0005102\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0005102\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0005102\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0005102","directAncestor":"http://purl.obolibrary.org/obo/GO_0005515","directParent":"http://purl.obolibrary.org/obo/GO_0005515","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0005515","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0005515","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"signaling receptor binding","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0005515","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0005102","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0005102","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"signaling receptor binding","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0005102","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0005179\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005179\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048018\",\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0005515\",\"http://purl.obolibrary.org/obo/GO_0030546\",\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0098772\",\"http://purl.obolibrary.org/obo/GO_0140677\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048018\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048018\",\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0005515\",\"http://purl.obolibrary.org/obo/GO_0030546\",\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0098772\",\"http://purl.obolibrary.org/obo/GO_0140677\",\"http://purl.obolibrary.org/obo/GO_0007165\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0050794\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0051716\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0048018\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hormone activity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0048018\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hormone activity\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0005179\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051716\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051716\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0098772\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098772\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050794\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050794\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0005102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor binding\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007165\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signal transduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007165\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0005515\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"protein binding\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005515\"},\"type\":[\"class\",\"entity\"]},\"GO:0005179\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0005179\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0005179\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050896\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050896\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0030545\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030545\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0030546\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor activator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030546\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"receptor ligand activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0140677\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function activator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140677\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0005179","directAncestor":["http://purl.obolibrary.org/obo/GO_0048018","http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0005515","http://purl.obolibrary.org/obo/GO_0030546","http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","http://purl.obolibrary.org/obo/GO_0140677"],"directParent":"http://purl.obolibrary.org/obo/GO_0048018","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048018","http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0005515","http://purl.obolibrary.org/obo/GO_0030546","http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","http://purl.obolibrary.org/obo/GO_0140677","http://purl.obolibrary.org/obo/GO_0007165","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0050794","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0051716","http://purl.obolibrary.org/obo/GO_0050896"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0048018","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hormone activity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0048018","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0005179","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0005179","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hormone activity","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0005179","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0005183\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005183\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0005179\",\"http://purl.obolibrary.org/obo/GO_0048018\",\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0005515\",\"http://purl.obolibrary.org/obo/GO_0030546\",\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0098772\",\"http://purl.obolibrary.org/obo/GO_0140677\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0005179\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0005179\",\"http://purl.obolibrary.org/obo/GO_0048018\",\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0005515\",\"http://purl.obolibrary.org/obo/GO_0030546\",\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0098772\",\"http://purl.obolibrary.org/obo/GO_0140677\",\"http://purl.obolibrary.org/obo/GO_0007165\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0050794\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0051716\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0005179\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gonadotropin hormone-releasing hormone activity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0005179\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gonadotropin hormone-releasing hormone activity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0005183\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0005183\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0005179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hormone activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051716\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051716\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0098772\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098772\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050794\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050794\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0005102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor binding\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004021\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease caused by disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease has basis in disruption of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004021\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007165\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signal transduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007165\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0018555\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0018555\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0005515\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"protein binding\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005515\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050896\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050896\"},\"type\":[\"class\",\"entity\"]},\"GO:0005183\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0005183\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0005183\"},\"http://purl.obolibrary.org/obo/GO_0030545\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030545\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0030546\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor activator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030546\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"receptor ligand activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0140677\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function activator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140677\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0005183","directAncestor":["http://purl.obolibrary.org/obo/GO_0005179","http://purl.obolibrary.org/obo/GO_0048018","http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0005515","http://purl.obolibrary.org/obo/GO_0030546","http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","http://purl.obolibrary.org/obo/GO_0140677"],"directParent":"http://purl.obolibrary.org/obo/GO_0005179","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0005179","http://purl.obolibrary.org/obo/GO_0048018","http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0005515","http://purl.obolibrary.org/obo/GO_0030546","http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","http://purl.obolibrary.org/obo/GO_0140677","http://purl.obolibrary.org/obo/GO_0007165","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0050794","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0051716","http://purl.obolibrary.org/obo/GO_0050896"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0005179","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gonadotropin hormone-releasing hormone activity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0005179","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0005183","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0005183","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gonadotropin hormone-releasing hormone activity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/MONDO_0018555","searchableAnnotationValues":"false","shortForm":"GO_0005183","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005515\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"protein binding\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"protein binding\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0005515\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0098772\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098772\"},\"type\":[\"class\",\"entity\"]},\"GO:0005515\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0005515\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0005515\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0005515","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"protein binding","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0005515","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0005515","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"protein binding","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0098772","searchableAnnotationValues":"false","shortForm":"GO_0005515","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0006810\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0051234\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0051234\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0051234\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"numDescendants\":9.0,\"numHierarchicalDescendants\":9.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0006810\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0006810\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0006810\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0006810\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0006810","directAncestor":["http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0051234","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0051234","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"transport","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0051234","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0006810","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0006810","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"transport","numDescendants":"9.0","numHierarchicalDescendants":"9.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0006810","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0006811\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006811\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0006810\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0006810\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"monoatomic ion transport\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0006810\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"monoatomic ion transport\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0006811\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"GO:0006811\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0006811\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0006811\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0006811","directAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0006810","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0006810","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"monoatomic ion transport","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0006810","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0006811","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0006811","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"monoatomic ion transport","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0006811","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":12.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0019226\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007154\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007165\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signal transduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007165\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0019226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transmission of nerve impulse\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0019226\"},\"type\":[\"class\",\"entity\"]},\"GO:0007154\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0007154\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0007154\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007154","directAncestor":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009987","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0009987","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cell communication","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0009987","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007154","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007154","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cell communication","numDescendants":"5.0","numHierarchicalDescendants":"12.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/GO_0007165","http://purl.obolibrary.org/obo/GO_0019226"],"searchableAnnotationValues":"false","shortForm":"GO_0007154","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007165\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0050794\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0050794\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0050794\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0051716\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0050794\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0023052\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0051716\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"signal transduction\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0050794\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0023052\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0051716\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"signal transduction\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048018\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0023052\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0023052\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0051716\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0051716\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007165\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051716\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051716\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050794\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050794\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050896\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050896\"},\"type\":[\"class\",\"entity\"]},\"GO:0007165\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0007165\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0007165\"},\"http://purl.obolibrary.org/obo/GO_0048018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"receptor ligand activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007165","directAncestor":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0050794","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"directParent":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0050794"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0050794","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0051716","http://purl.obolibrary.org/obo/GO_0050896"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0050794","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0051716"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"signal transduction","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0050794"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007165","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007165","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"signal transduction","numDescendants":"0.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0048018","relatedTo":["http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0051716"],"searchableAnnotationValues":"false","shortForm":"GO_0007165","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007267\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007267\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cell-cell signaling\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cell-cell signaling\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0023061\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007267\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007267\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0007267\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0007267\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0007267\"},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signal release\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007267","directAncestor":["http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"directParent":["http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cell-cell signaling","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007267","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007267","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cell-cell signaling","numDescendants":"4.0","numHierarchicalDescendants":"6.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0023061","searchableAnnotationValues":"false","shortForm":"GO_0007267","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007268\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007268\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0098916\",\"http://purl.obolibrary.org/obo/GO_0099537\",\"http://purl.obolibrary.org/obo/GO_0099536\",\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0098916\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0098916\",\"http://purl.obolibrary.org/obo/GO_0099537\",\"http://purl.obolibrary.org/obo/GO_0099536\",\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0098916\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"chemical synaptic transmission\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0098916\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"chemical synaptic transmission\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0019226\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007268\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007268\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0099537\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trans-synaptic signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0099537\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0099536\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"synaptic signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0099536\"},\"type\":[\"class\",\"entity\"]},\"GO:0007268\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0007268\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0007268\"},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0019226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transmission of nerve impulse\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0019226\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007267\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell-cell signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007267\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0098916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anterograde trans-synaptic signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098916\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007268","directAncestor":["http://purl.obolibrary.org/obo/GO_0098916","http://purl.obolibrary.org/obo/GO_0099537","http://purl.obolibrary.org/obo/GO_0099536","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"directParent":"http://purl.obolibrary.org/obo/GO_0098916","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0098916","http://purl.obolibrary.org/obo/GO_0099537","http://purl.obolibrary.org/obo/GO_0099536","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0098916","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"chemical synaptic transmission","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0098916","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007268","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007268","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"chemical synaptic transmission","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0019226","searchableAnnotationValues":"false","shortForm":"GO_0007268","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0048856\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0048856\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0048856\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":22.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009791\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0035295\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048731\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007275\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009791\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009791\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"type\":[\"class\",\"entity\"]},\"GO:0007275\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0007275\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0007275\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048731\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"system development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048731\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007275","directAncestor":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"directParent":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0048856"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0048856"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multicellular organism development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0048856"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007275","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007275","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multicellular organism development","numDescendants":"3.0","numHierarchicalDescendants":"22.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/GO_0009791","http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0048731"],"searchableAnnotationValues":"false","shortForm":"GO_0007275","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007276\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007276\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048609\",\"http://purl.obolibrary.org/obo/GO_0022414\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048609\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048609\",\"http://purl.obolibrary.org/obo/GO_0022414\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0032504\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0019953\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0048609\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gamete generation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0048609\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gamete generation\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007276\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007276\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032504\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032504\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"GO:0007276\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0007276\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0007276\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048609\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal reproductive process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048609\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0019953\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"sexual reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0019953\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0022414\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0022414\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000067\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contains process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000067\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000991\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000991\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007276","directAncestor":["http://purl.obolibrary.org/obo/GO_0048609","http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048609","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048609","http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0032504","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0019953"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0048609","http://purl.obolibrary.org/obo/GO_0019953"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gamete generation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0048609"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007276","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007276","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gamete generation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000991","relatedTo":"http://purl.obolibrary.org/obo/GO_0019953","searchableAnnotationValues":"false","shortForm":"GO_0007276","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007369\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gastrulation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0048598\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001705\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001706\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001707\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrulation\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001704\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001705\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001705\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001706\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001706\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001707\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001707\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007369\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001705\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ectoderm formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001705\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001706\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endoderm formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001706\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001707\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001707\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001704\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"formation of primary germ layer\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001704\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"GO:0007369\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0007369\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0007369\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007369","directAncestor":["http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048598","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0048598","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gastrulation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0048598"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007369","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007369","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gastrulation","numDescendants":"0.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/UBERON_0000109"],"relatedTo":["http://purl.obolibrary.org/obo/GO_0001705","http://purl.obolibrary.org/obo/GO_0001706","http://purl.obolibrary.org/obo/GO_0001707"],"searchableAnnotationValues":"false","shortForm":"GO_0007369","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007398\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007398\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"ectoderm development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"ectoderm development\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001705\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007398\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007398\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001705\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ectoderm formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001705\"},\"type\":[\"class\",\"entity\"]},\"GO:0007398\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0007398\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0007398\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007398","directAncestor":["http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009888","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0009888","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"ectoderm development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0009888","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007398","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007398","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ectoderm development","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0001705","searchableAnnotationValues":"false","shortForm":"GO_0007398","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007399\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007399\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048731\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048731\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048731\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0048731\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"nervous system development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0048731\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system development\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0021915\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007399\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007399\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"GO:0007399\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0007399\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0007399\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048731\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"system development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048731\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0021915\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neural tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0021915\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007399","directAncestor":["http://purl.obolibrary.org/obo/GO_0048731","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048731","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048731","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0048731","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"nervous system development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0048731","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007399","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007399","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"nervous system development","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0021915","searchableAnnotationValues":"false","shortForm":"GO_0007399","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007492\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007492\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"endoderm development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"endoderm development\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001706\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007492\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007492\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"GO:0007492\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0007492\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0007492\"},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001706\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endoderm formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001706\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007492","directAncestor":["http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009888","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0009888","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"endoderm development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0009888","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007492","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007492","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"endoderm development","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0001706","searchableAnnotationValues":"false","shortForm":"GO_0007492","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007498\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007498\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"mesoderm development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm development\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048332\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007498\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007498\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"GO:0007498\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0007498\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0007498\"},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048332\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048332\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007498","directAncestor":["http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009888","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0009888","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"mesoderm development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0009888","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007498","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007498","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"mesoderm development","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0048332","searchableAnnotationValues":"false","shortForm":"GO_0007498","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"numDescendants\":78.0,\"numHierarchicalDescendants\":81.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"value\":\"http://purl.obolibrary.org/obo/GO_0050789\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0008150\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000062\"},\"type\":[\"class\",\"entity\"]},\"GO:0008150\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0008150\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0008150\"},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0008150","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"biological_process","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0008150","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0008150","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"biological_process","numDescendants":"78.0","numHierarchicalDescendants":"81.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/UBERON_0000062"],"searchableAnnotationValues":"false","shortForm":"GO_0008150","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0009566\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009566\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0022414\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0022414\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0022414\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0019953\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0022414\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"fertilization\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0022414\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"fertilization\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000586\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009566\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0009566\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"GO:0009566\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0009566\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0009566\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000586\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"germ cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000586\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0019953\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"sexual reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0019953\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0022414\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0022414\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002216\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002216\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0009566","directAncestor":["http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0022414","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0019953"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0019953"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"fertilization","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0022414"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009566","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0009566","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"fertilization","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/CL_0000586","relatedTo":"http://purl.obolibrary.org/obo/GO_0019953","searchableAnnotationValues":"false","shortForm":"GO_0009566","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0032502\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0032502\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":17.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048646\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0009653\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"GO:0009653\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0009653\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0009653\"},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0009653","directAncestor":["http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0032502","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0048856"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anatomical structure morphogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0032502"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009653","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0009653","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anatomical structure morphogenesis","numDescendants":"8.0","numHierarchicalDescendants":"17.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0048646","relatedTo":"http://purl.obolibrary.org/obo/GO_0048856","searchableAnnotationValues":"false","shortForm":"GO_0009653","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":13.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0040016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0009790\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"GO:0009790\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0009790\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0009790\"},\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0040016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic cleavage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0040016\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0009790","directAncestor":["http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"directParent":"http://purl.obolibrary.org/obo/GO_0007275","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0007275","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"embryo development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0007275","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009790","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0009790","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"embryo development","numDescendants":"2.0","numHierarchicalDescendants":"13.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/GO_0040016","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/UBERON_0000068"],"searchableAnnotationValues":"false","shortForm":"GO_0009790","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0009791\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009791\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0032501\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0032501\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0032501\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic development\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009791\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0009791\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"GO:0009791\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0009791\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0009791\"},\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000092\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0009791","directAncestor":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0032501","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0007275"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"post-embryonic development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0032501"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009791","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0009791","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"post-embryonic development","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000092","relatedTo":"http://purl.obolibrary.org/obo/GO_0007275","searchableAnnotationValues":"false","shortForm":"GO_0009791","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0009792\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009792\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"embryo development ending in birth or egg hatching\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development ending in birth or egg hatching\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0009792\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"GO:0009792\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0009792\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0009792\"},\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0009792","directAncestor":["http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"directParent":"http://purl.obolibrary.org/obo/GO_0009790","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0009790","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"embryo development ending in birth or egg hatching","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0009790","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009792","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0009792","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"embryo development ending in birth or egg hatching","numDescendants":"1.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0009792","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":16.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048729\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0009888\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"GO:0009888\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0009888\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0009888\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0009888","directAncestor":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048856","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0048856","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"tissue development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0048856","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009888","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0009888","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"tissue development","numDescendants":"5.0","numHierarchicalDescendants":"16.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0048729","searchableAnnotationValues":"false","shortForm":"GO_0009888","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0009914\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009914\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0010817\",\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0010817\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0010817\",\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0010817\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hormone transport\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0010817\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hormone transport\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0009914\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065008\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0010817\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of hormone levels\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0010817\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"GO:0009914\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0009914\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0009914\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0009914","directAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0010817","http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007"],"directParent":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0010817"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0010817","http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0010817"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hormone transport","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0010817"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009914","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0009914","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hormone transport","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0009914","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"numDescendants\":16.0,\"numHierarchicalDescendants\":20.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"value\":\"http://purl.obolibrary.org/obo/GO_0050794\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0009987\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050794\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050794\"},\"type\":[\"class\",\"entity\"]},\"GO:0009987\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0009987\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0009987\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0009987","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cellular process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0008150","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009987","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0009987","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cellular process","numDescendants":"16.0","numHierarchicalDescendants":"20.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0050794","searchableAnnotationValues":"false","shortForm":"GO_0009987","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0010817\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0010817\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0065008\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0065008\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"regulation of hormone levels\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0065008\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of hormone levels\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0010817\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"GO:0010817\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0010817\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0010817\"},\"http://purl.obolibrary.org/obo/GO_0065008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065008\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0010817","directAncestor":["http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0065008","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0065008","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"regulation of hormone levels","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0065008","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0010817","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0010817","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulation of hormone levels","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0010817","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0016301\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0016301\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"kinase activity\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"kinase activity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0016301\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"GO:0016301\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0016301\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0016301\"}}}","appearsIn":["gitissue502"],"curie":"GO:0016301","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"kinase activity","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0016301","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0016301","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"kinase activity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0016301","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0016331\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0016331\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048598\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048598\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0060429\",\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048598\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of embryonic epithelium\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048598\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of embryonic epithelium\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001838\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0016331\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0016331\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0016331\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0016331\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0016331\"},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0060429\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060429\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001838\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic epithelial tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001838\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0002009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of an epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0002009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0016331","directAncestor":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048598"],"directParent":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048598"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0060429","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048598"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"morphogenesis of embryonic epithelium","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048598"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0016331","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0016331","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"morphogenesis of embryonic epithelium","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0001838","searchableAnnotationValues":"false","shortForm":"GO_0016331","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0019226\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0019226\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0050877\",\"http://purl.obolibrary.org/obo/GO_0003008\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0050877\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0050877\",\"http://purl.obolibrary.org/obo/GO_0003008\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0050877\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"transmission of nerve impulse\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0050877\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001508\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007268\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"transmission of nerve impulse\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000540\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019226\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001508\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001508\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007268\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007268\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0019226\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0003008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"system process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0003008\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050877\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050877\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001508\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"action potential\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001508\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000540\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neuron\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000540\"},\"type\":[\"class\",\"entity\"]},\"GO:0019226\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0019226\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0019226\"},\"http://purl.obolibrary.org/obo/GO_0007268\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"chemical synaptic transmission\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007268\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0019226","directAncestor":["http://purl.obolibrary.org/obo/GO_0050877","http://purl.obolibrary.org/obo/GO_0003008","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0050877","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0050877","http://purl.obolibrary.org/obo/GO_0003008","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0050877","http://purl.obolibrary.org/obo/GO_0007154"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"transmission of nerve impulse","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0050877"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0019226","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0019226","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"transmission of nerve impulse","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/CL_0000540","relatedTo":["http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0001508","http://purl.obolibrary.org/obo/GO_0007268"],"searchableAnnotationValues":"false","shortForm":"GO_0019226","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0019953\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"sexual reproduction\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"sexual reproduction\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007276\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009566\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0019953\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007276\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gamete generation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007276\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0019953\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0019953\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0019953\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009566\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fertilization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009566\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0019953","directAncestor":["http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0000003","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"sexual reproduction","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0000003","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0019953","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0019953","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"sexual reproduction","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/GO_0007276","http://purl.obolibrary.org/obo/GO_0009566"],"searchableAnnotationValues":"false","shortForm":"GO_0019953","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0021915\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0021915\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0060429\",\"http://purl.obolibrary.org/obo/GO_0009888\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0060429\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0060429\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0007399\",\"http://purl.obolibrary.org/obo/GO_0048731\",\"http://purl.obolibrary.org/obo/GO_0043009\",\"http://purl.obolibrary.org/obo/GO_0009792\",\"http://purl.obolibrary.org/obo/GO_0009790\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0060429\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007399\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0043009\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"neural tube development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0060429\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007399\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0043009\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"neural tube development\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001841\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0021915\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007399\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007399\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0043009\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0043009\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0021915\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"GO:0021915\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0021915\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0021915\"},\"http://purl.obolibrary.org/obo/GO_0007399\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007399\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0060429\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060429\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009792\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development ending in birth or egg hatching\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009792\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001841\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neural tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001841\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048731\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"system development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048731\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0043009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"chordate embryonic development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0043009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0021915","directAncestor":["http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0060429","http://purl.obolibrary.org/obo/GO_0009888"],"directParent":["http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0060429"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0060429","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0007399","http://purl.obolibrary.org/obo/GO_0048731","http://purl.obolibrary.org/obo/GO_0043009","http://purl.obolibrary.org/obo/GO_0009792","http://purl.obolibrary.org/obo/GO_0009790"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0060429","http://purl.obolibrary.org/obo/GO_0007399","http://purl.obolibrary.org/obo/GO_0043009"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"neural tube development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0060429"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0021915","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0021915","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"neural tube development","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0001841","relatedTo":["http://purl.obolibrary.org/obo/GO_0007399","http://purl.obolibrary.org/obo/GO_0043009"],"searchableAnnotationValues":"false","shortForm":"GO_0021915","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0022414\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0022414\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0000003\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0008150\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"reproductive process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0008150\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive process\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000039\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0022414\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0022414\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"germ line cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000039\"},\"type\":[\"class\",\"entity\"]},\"GO:0022414\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0022414\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0022414\"},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0022414","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0000003"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0000003"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"reproductive process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0008150"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0022414","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0022414","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"reproductive process","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/CL_0000039","relatedTo":"http://purl.obolibrary.org/obo/GO_0000003","searchableAnnotationValues":"false","shortForm":"GO_0022414","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0023052\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0050789\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0050789\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0050789\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":11.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0023052\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0023052\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007165\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signal transduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007165\"},\"type\":[\"class\",\"entity\"]},\"GO:0023052\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0023052\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0023052\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0023052","directAncestor":["http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0050789","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0050789","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"signaling","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0050789","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0023052","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0023052","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"signaling","numDescendants":"5.0","numHierarchicalDescendants":"11.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0007165","searchableAnnotationValues":"false","shortForm":"GO_0023052","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0023061\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023061\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032940\",\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0140352\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0032940\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032940\",\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0140352\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0032940\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007267\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"signal release\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0032940\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007267\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"signal release\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007267\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007267\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0023061\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"GO:0023061\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0023061\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0023061\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032940\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"secretion by cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032940\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0046903\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"secretion\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0046903\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007267\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell-cell signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007267\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0140352\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"export from cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140352\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0023061","directAncestor":["http://purl.obolibrary.org/obo/GO_0032940","http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0140352","http://purl.obolibrary.org/obo/GO_0009987"],"directParent":"http://purl.obolibrary.org/obo/GO_0032940","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0032940","http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0140352","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0032940","http://purl.obolibrary.org/obo/GO_0007267"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"signal release","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0032940"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0023061","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0023061","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"signal release","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0007267","searchableAnnotationValues":"false","shortForm":"GO_0023061","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0030545\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030545\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor regulator activity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor regulator activity\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0030545\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0030545\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0030545\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0030545\"},\"http://purl.obolibrary.org/obo/GO_0098772\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098772\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0030545","directAncestor":"http://purl.obolibrary.org/obo/GO_0098772","directParent":"http://purl.obolibrary.org/obo/GO_0098772","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0098772","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0098772","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"signaling receptor regulator activity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0098772","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0030545","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0030545","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"signaling receptor regulator activity","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0030545","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0030546\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030546\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0098772\",\"http://purl.obolibrary.org/obo/GO_0140677\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0140677\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0098772\",\"http://purl.obolibrary.org/obo/GO_0140677\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0140677\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor activator activity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0140677\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor activator activity\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0030546\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"GO:0030546\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0030546\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0030546\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0098772\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098772\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0030545\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030545\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0140677\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function activator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140677\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0030546","directAncestor":["http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","http://purl.obolibrary.org/obo/GO_0140677"],"directParent":["http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0140677"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","http://purl.obolibrary.org/obo/GO_0140677"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0140677"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"signaling receptor activator activity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0140677"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0030546","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0030546","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"signaling receptor activator activity","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0030546","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0032501\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"numDescendants\":9.0,\"numHierarchicalDescendants\":29.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0032501\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0032501\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0032501\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0032501\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0032501","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multicellular organismal process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0008150","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0032501","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0032501","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multicellular organismal process","numDescendants":"9.0","numHierarchicalDescendants":"29.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0032501","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"numDescendants\":33.0,\"numHierarchicalDescendants\":35.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0004024\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004024\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0032502\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004024\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease causes disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease disrupts\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004024\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developing anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"GO:0032502\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0032502\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0032502\"},\"http://purl.obolibrary.org/obo/MONDO_0021147\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0032502","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"developmental process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0008150","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0032502","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0032502","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"developmental process","numDescendants":"33.0","numHierarchicalDescendants":"35.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/UBERON_0005423"],"searchableAnnotationValues":"false","shortForm":"GO_0032502","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0032504\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032504\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism reproduction\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism reproduction\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048609\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032504\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0032504\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"GO:0032504\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0032504\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0032504\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048609\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal reproductive process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048609\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0032504","directAncestor":["http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0032501"],"directParent":["http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0032501"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multicellular organism reproduction","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0032501"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0032504","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0032504","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multicellular organism reproduction","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0048609","searchableAnnotationValues":"false","shortForm":"GO_0032504","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0032940\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032940\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0140352\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0140352\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0140352\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0140352\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"secretion by cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0140352\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"secretion by cell\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0032940\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0046903\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"secretion\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0046903\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0032940\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0032940\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0032940\"},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0140352\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"export from cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140352\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0032940","directAncestor":["http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0140352","http://purl.obolibrary.org/obo/GO_0009987"],"directParent":["http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0140352"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0140352","http://purl.obolibrary.org/obo/GO_0009987"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0140352"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"secretion by cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0140352"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0032940","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0032940","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"secretion by cell","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0032940","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0034220\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0034220\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006811\",\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0055085\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0006811\",\"http://purl.obolibrary.org/obo/GO_0055085\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006811\",\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0055085\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0006811\",\"http://purl.obolibrary.org/obo/GO_0055085\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"monoatomic ion transmembrane transport\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0006811\",\"http://purl.obolibrary.org/obo/GO_0055085\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"monoatomic ion transmembrane transport\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0042391\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0034220\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0034220\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"GO:0034220\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0034220\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0034220\"},\"http://purl.obolibrary.org/obo/GO_0055085\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transmembrane transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0055085\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0042391\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of membrane potential\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0042391\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0006811\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"monoatomic ion transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006811\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0034220","directAncestor":["http://purl.obolibrary.org/obo/GO_0006811","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0055085","http://purl.obolibrary.org/obo/GO_0009987"],"directParent":["http://purl.obolibrary.org/obo/GO_0006811","http://purl.obolibrary.org/obo/GO_0055085"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0006811","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0055085","http://purl.obolibrary.org/obo/GO_0009987"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0006811","http://purl.obolibrary.org/obo/GO_0055085"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"monoatomic ion transmembrane transport","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0006811","http://purl.obolibrary.org/obo/GO_0055085"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0034220","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0034220","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"monoatomic ion transmembrane transport","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0042391","searchableAnnotationValues":"false","shortForm":"GO_0034220","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0035148\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035148\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048646\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0035239\",\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0048646\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0035239\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"tube formation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0048646\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0035239\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"tube formation\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0035239\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0035239\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0035148\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"GO:0035148\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0035148\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0035148\"},\"http://purl.obolibrary.org/obo/GO_0035295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035239\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035239\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0035148","directAncestor":["http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048646","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0035239","http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0035239"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"tube formation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0048646"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0035148","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0035148","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"tube formation","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0035239","searchableAnnotationValues":"false","shortForm":"GO_0035148","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0035239\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035239\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0009653\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0035295\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"tube morphogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0009653\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0035295\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"tube morphogenesis\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0035148\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0035239\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0035295\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0035295\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0035239\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035148\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035148\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0035239\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0035239\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0035239\"},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0035239","directAncestor":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009653","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0035295"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"tube morphogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0009653"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0035239","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0035239","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"tube morphogenesis","numDescendants":"1.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0035148","relatedTo":"http://purl.obolibrary.org/obo/GO_0035295","searchableAnnotationValues":"false","shortForm":"GO_0035239","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0035295\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0048856\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0048856\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0035239\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0035295\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0035295\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"GO:0035295\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0035295\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0035295\"},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035239\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035239\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0035295","directAncestor":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048856","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0007275"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"tube development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0048856"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0035295","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0035295","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"tube development","numDescendants":"1.0","numHierarchicalDescendants":"7.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0035239","relatedTo":"http://purl.obolibrary.org/obo/GO_0007275","searchableAnnotationValues":"false","shortForm":"GO_0035295","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0038023\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0038023\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor activity\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor activity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002213\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048018\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0038023\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0038023\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"GO:0038023\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0038023\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0038023\"},\"http://purl.obolibrary.org/obo/GO_0048018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"receptor ligand activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0038023","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"signaling receptor activity","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0038023","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0038023","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"signaling receptor activity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0048018","searchableAnnotationValues":"false","shortForm":"GO_0038023","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0040016\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0040016\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0051301\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0051301\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0051301\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0051301\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"embryonic cleavage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0051301\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic cleavage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0040016\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0040016\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"GO:0040016\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0040016\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0040016\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051301\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell division\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051301\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cleavage stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000107\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0040016","directAncestor":["http://purl.obolibrary.org/obo/GO_0051301","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0051301","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0051301","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0051301","http://purl.obolibrary.org/obo/GO_0009790"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"embryonic cleavage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0051301"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0040016","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0040016","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"embryonic cleavage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000107","relatedTo":"http://purl.obolibrary.org/obo/GO_0009790","searchableAnnotationValues":"false","shortForm":"GO_0040016","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0042391\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0042391\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0065008\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0065008\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"regulation of membrane potential\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0065008\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0034220\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of membrane potential\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0034220\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0034220\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0042391\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0065008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065008\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0034220\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"monoatomic ion transmembrane transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0034220\"},\"type\":[\"class\",\"entity\"]},\"GO:0042391\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0042391\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0042391\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0042391","directAncestor":["http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0065008","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0065008","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"regulation of membrane potential","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0065008"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0042391","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0042391","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulation of membrane potential","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0034220","searchableAnnotationValues":"false","shortForm":"GO_0042391","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0043009\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0043009\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009792\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009792\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009792\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0009792\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"chordate embryonic development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0009792\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"chordate embryonic development\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0021915\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0043009\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0043009\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"GO:0043009\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0043009\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0043009\"},\"http://purl.obolibrary.org/obo/GO_0009792\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development ending in birth or egg hatching\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009792\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0021915\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neural tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0021915\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0043009","directAncestor":["http://purl.obolibrary.org/obo/GO_0009792","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"directParent":"http://purl.obolibrary.org/obo/GO_0009792","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009792","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0009792","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"chordate embryonic development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0009792","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0043009","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0043009","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"chordate embryonic development","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0021915","searchableAnnotationValues":"false","shortForm":"GO_0043009","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0045202\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0045202\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"synapse\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"synapse\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"value\":\"http://purl.obolibrary.org/obo/GO_0099536\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0045202\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0045202\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"GO:0045202\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0045202\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0045202\"},\"http://purl.obolibrary.org/obo/GO_0099536\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"synaptic signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0099536\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000066\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0045202","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"synapse","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0045202","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0045202","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"synapse","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0099536","searchableAnnotationValues":"false","shortForm":"GO_0045202","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0046879\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0046879\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009914\",\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0010817\",\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0023061\",\"http://purl.obolibrary.org/obo/GO_0032940\",\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0140352\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0009914\",\"http://purl.obolibrary.org/obo/GO_0023061\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009914\",\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0010817\",\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0023061\",\"http://purl.obolibrary.org/obo/GO_0032940\",\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0140352\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0009914\",\"http://purl.obolibrary.org/obo/GO_0023061\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hormone secretion\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0009914\",\"http://purl.obolibrary.org/obo/GO_0023061\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hormone secretion\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0046879\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0046879\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065008\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0010817\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of hormone levels\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0010817\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032940\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"secretion by cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032940\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signal release\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023061\"},\"type\":[\"class\",\"entity\"]},\"GO:0046879\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0046879\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0046879\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0046903\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"secretion\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0046903\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009914\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hormone transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009914\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007267\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell-cell signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007267\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0140352\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"export from cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140352\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0046879","directAncestor":["http://purl.obolibrary.org/obo/GO_0009914","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0010817","http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0023061","http://purl.obolibrary.org/obo/GO_0032940","http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0140352","http://purl.obolibrary.org/obo/GO_0009987"],"directParent":["http://purl.obolibrary.org/obo/GO_0009914","http://purl.obolibrary.org/obo/GO_0023061"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009914","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0010817","http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0023061","http://purl.obolibrary.org/obo/GO_0032940","http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0140352","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0009914","http://purl.obolibrary.org/obo/GO_0023061"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hormone secretion","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0009914","http://purl.obolibrary.org/obo/GO_0023061"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0046879","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0046879","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hormone secretion","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0002368","searchableAnnotationValues":"false","shortForm":"GO_0046879","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0046903\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0046903\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0006810\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0006810\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"secretion\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0006810\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"secretion\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0046903\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0046903\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0046903\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0046903\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0046903\"},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0046903","directAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0006810","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0006810","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"secretion","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0006810","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0046903","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0046903","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"secretion","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0002530","searchableAnnotationValues":"false","shortForm":"GO_0046903","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048018\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048018\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0005515\",\"http://purl.obolibrary.org/obo/GO_0030546\",\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0098772\",\"http://purl.obolibrary.org/obo/GO_0140677\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0030546\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0005515\",\"http://purl.obolibrary.org/obo/GO_0030546\",\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0098772\",\"http://purl.obolibrary.org/obo/GO_0140677\",\"http://purl.obolibrary.org/obo/GO_0007165\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0050794\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0051716\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0030546\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"receptor ligand activity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0030546\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0038023\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"receptor ligand activity\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002213\",\"value\":\"http://purl.obolibrary.org/obo/GO_0038023\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0038023\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048018\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051716\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051716\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0098772\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098772\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050794\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050794\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0005102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor binding\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007165\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signal transduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007165\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0005515\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"protein binding\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005515\"},\"type\":[\"class\",\"entity\"]},\"GO:0048018\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0048018\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0048018\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050896\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050896\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0030545\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030545\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0030546\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor activator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030546\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0140677\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function activator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140677\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0038023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0038023\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048018","directAncestor":["http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0005515","http://purl.obolibrary.org/obo/GO_0030546","http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","http://purl.obolibrary.org/obo/GO_0140677"],"directParent":["http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0030546"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0005515","http://purl.obolibrary.org/obo/GO_0030546","http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","http://purl.obolibrary.org/obo/GO_0140677","http://purl.obolibrary.org/obo/GO_0007165","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0050794","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0051716","http://purl.obolibrary.org/obo/GO_0050896"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0030546","http://purl.obolibrary.org/obo/GO_0007165"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"receptor ligand activity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0030546"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048018","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048018","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"receptor ligand activity","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":["http://purl.obolibrary.org/obo/GO_0007165","http://purl.obolibrary.org/obo/GO_0038023"],"searchableAnnotationValues":"false","shortForm":"GO_0048018","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048332\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048332\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048729\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0007498\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0048729\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007498\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"mesoderm morphogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0048729\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007498\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm morphogenesis\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001707\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048332\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007498\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007498\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048332\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"GO:0048332\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0048332\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0048332\"},\"http://purl.obolibrary.org/obo/GO_0001707\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001707\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007498\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007498\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048332","directAncestor":["http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048729","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0007498"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0007498"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"mesoderm morphogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0048729"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048332","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048332","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"mesoderm morphogenesis","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0001707","relatedTo":"http://purl.obolibrary.org/obo/GO_0007498","searchableAnnotationValues":"false","shortForm":"GO_0048332","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048513\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048513\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"animal organ development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"animal organ development\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048513\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048513\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"GO:0048513\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0048513\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0048513\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organogenesis stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000111\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048513","directAncestor":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048856","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0048856","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"animal organ development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0048856","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048513","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048513","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"animal organ development","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000111","searchableAnnotationValues":"false","shortForm":"GO_0048513","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0009653\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0009653\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048598\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004021\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease caused by disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease has basis in disruption of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004021\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019755\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"GO:0048598\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0048598\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0048598\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048598","directAncestor":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009653","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0009790"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"embryonic morphogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0009653"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048598","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048598","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"embryonic morphogenesis","numDescendants":"2.0","numHierarchicalDescendants":"8.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/MONDO_0019755","relatedTo":"http://purl.obolibrary.org/obo/GO_0009790","searchableAnnotationValues":"false","shortForm":"GO_0048598","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048609\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048609\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0022414\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0022414\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0022414\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0032504\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0022414\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0032504\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal reproductive process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0022414\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032504\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal reproductive process\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0032504\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032504\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048609\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"GO:0048609\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0048609\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0048609\"},\"http://purl.obolibrary.org/obo/GO_0032504\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032504\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0022414\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0022414\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048609","directAncestor":["http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0022414","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0032504","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0032504"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multicellular organismal reproductive process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0022414"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048609","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048609","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multicellular organismal reproductive process","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0032504","searchableAnnotationValues":"false","shortForm":"GO_0048609","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048646\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0032502\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0032502\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048646\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"GO:0048646\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0048646\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0048646\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048646","directAncestor":["http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0032502","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0009653"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anatomical structure formation involved in morphogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0032502"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048646","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048646","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anatomical structure formation involved in morphogenesis","numDescendants":"8.0","numHierarchicalDescendants":"8.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0009653","searchableAnnotationValues":"false","shortForm":"GO_0048646","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048729\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0009888\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0009653\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0009653\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048729\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"GO:0048729\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0048729\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0048729\"},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048729","directAncestor":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009653","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0009888"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0009888"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"tissue morphogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0009653"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048729","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048729","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"tissue morphogenesis","numDescendants":"4.0","numHierarchicalDescendants":"8.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0009888","searchableAnnotationValues":"false","shortForm":"GO_0048729","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048731\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048731\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0048856\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"system development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0048856\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"system development\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048731\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"GO:0048731\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0048731\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0048731\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048731","directAncestor":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048856","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0007275"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"system development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0048856"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048731","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048731","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"system development","numDescendants":"1.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0007275","searchableAnnotationValues":"false","shortForm":"GO_0048731","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"numDescendants\":14.0,\"numHierarchicalDescendants\":34.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048856\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"GO:0048856\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0048856\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0048856\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048856","directAncestor":["http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0032502","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0032502","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anatomical structure development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0032502","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048856","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048856","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anatomical structure development","numDescendants":"14.0","numHierarchicalDescendants":"34.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0009653","searchableAnnotationValues":"false","shortForm":"GO_0048856","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0050789\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0065007\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0065007\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0065007\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":13.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"value\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0050789\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"GO:0050789\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0050789\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0050789\"}}}","appearsIn":["gitissue502"],"curie":"GO:0050789","directAncestor":["http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0065007","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0065007","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"regulation of biological process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0065007"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0050789","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0050789","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulation of biological process","numDescendants":"8.0","numHierarchicalDescendants":"13.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0008150","searchableAnnotationValues":"false","shortForm":"GO_0050789","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0050794\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050794\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0050789\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0050789\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"regulation of cellular process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0050789\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of cellular process\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0050794\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"GO:0050794\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0050794\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0050794\"},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0050794","directAncestor":["http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0050789","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0050789","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"regulation of cellular process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0050789"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0050794","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0050794","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulation of cellular process","numDescendants":"1.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0009987","searchableAnnotationValues":"false","shortForm":"GO_0050794","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0050877\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050877\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0003008\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0003008\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0003008\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0003008\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"nervous system process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0003008\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system process\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0050877\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0050877\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0050877\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0050877\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0050877\"},\"http://purl.obolibrary.org/obo/GO_0003008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"system process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0003008\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0050877","directAncestor":["http://purl.obolibrary.org/obo/GO_0003008","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0003008","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0003008","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0003008","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"nervous system process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0003008","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0050877","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0050877","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"nervous system process","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0001016","searchableAnnotationValues":"false","shortForm":"GO_0050877","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0050896\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050896\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"response to stimulus\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"response to stimulus\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0050896\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0050896\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0050896\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0050896\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0050896","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"response to stimulus","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0008150","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0050896","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0050896","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"response to stimulus","numDescendants":"1.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0050896","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0051179\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"numDescendants\":11.0,\"numHierarchicalDescendants\":11.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0051179\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0051179\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0051179\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0051179\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0051179","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"localization","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0008150","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0051179","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0051179","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"localization","numDescendants":"11.0","numHierarchicalDescendants":"11.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0051179","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0051234\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0051179\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0051179\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0051179\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":10.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0051234\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0051234\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0051234\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0051234\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0051234","directAncestor":["http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0051179","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0051179","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"establishment of localization","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0051179","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0051234","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0051234","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"establishment of localization","numDescendants":"10.0","numHierarchicalDescendants":"10.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0051234","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0051301\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051301\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cell division\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cell division\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0051301\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"GO:0051301\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0051301\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0051301\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0051301","directAncestor":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009987","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0009987","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cell division","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0009987","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0051301","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0051301","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cell division","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0051301","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0051716\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051716\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cellular response to stimulus\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular response to stimulus\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0051716\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0051716\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007165\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signal transduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007165\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050896\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050896\"},\"type\":[\"class\",\"entity\"]},\"GO:0051716\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0051716\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0051716\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0051716","directAncestor":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0050896"],"directParent":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0050896"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0050896"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0050896"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cellular response to stimulus","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0050896"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0051716","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0051716","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cellular response to stimulus","numDescendants":"0.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0007165","searchableAnnotationValues":"false","shortForm":"GO_0051716","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0055085\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0055085\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"transmembrane transport\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"transmembrane transport\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0055085\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0055085\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0055085\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0055085\"},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0055085","directAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009987"],"directParent":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0009987"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009987"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0009987"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"transmembrane transport","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0009987"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0055085","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0055085","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"transmembrane transport","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0055085","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0060429\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060429\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0002009\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0060429\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0060429\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"GO:0060429\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0060429\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0060429\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0002009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of an epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0002009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0060429","directAncestor":["http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009888","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0009888","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"epithelium development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0009888","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0060429","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0060429","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"epithelium development","numDescendants":"1.0","numHierarchicalDescendants":"7.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0002009","searchableAnnotationValues":"false","shortForm":"GO_0060429","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0060562\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060562\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0035239\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0035239\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0060429\",\"http://purl.obolibrary.org/obo/GO_0035239\",\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0035239\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube morphogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0035239\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube morphogenesis\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0072175\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0060562\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0060562\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"GO:0060562\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0060562\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0060562\"},\"http://purl.obolibrary.org/obo/GO_0072175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0072175\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0060429\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060429\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0002009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of an epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0002009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035239\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035239\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0060562","directAncestor":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0035239"],"directParent":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0035239"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0060429","http://purl.obolibrary.org/obo/GO_0035239","http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0035239"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"epithelial tube morphogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0035239"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0060562","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0060562","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"epithelial tube morphogenesis","numDescendants":"0.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0072175","searchableAnnotationValues":"false","shortForm":"GO_0060562","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0065007\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"numDescendants\":15.0,\"numHierarchicalDescendants\":19.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0065007\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0065007\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0065007\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0065007\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0065007","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"biological regulation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0008150","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0065007","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0065007","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"biological regulation","numDescendants":"15.0","numHierarchicalDescendants":"19.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0065007","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0065008\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065008\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0065007\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0065007\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological quality\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0065007\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological quality\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0065008\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0065008\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0065008\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0065008\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0065008","directAncestor":["http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0065007","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0065007","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"regulation of biological quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0065007","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0065008","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0065008","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulation of biological quality","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0065008","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0072175\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0072175\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0035148\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0035148\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0035148\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0035239\",\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0060562\",\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0060429\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0035148\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0060562\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube formation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0035148\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0060562\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube formation\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0060562\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0060562\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0072175\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035148\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035148\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"GO:0072175\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0072175\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0072175\"},\"http://purl.obolibrary.org/obo/GO_0060429\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060429\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0002009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of an epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0002009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0060562\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060562\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035239\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035239\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0072175","directAncestor":["http://purl.obolibrary.org/obo/GO_0035148","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0035148","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0035148","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0035239","http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0060562","http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0060429"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0035148","http://purl.obolibrary.org/obo/GO_0060562"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"epithelial tube formation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0035148"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0072175","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0072175","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"epithelial tube formation","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0060562","searchableAnnotationValues":"false","shortForm":"GO_0072175","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098772\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0098772\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0005515\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"protein binding\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005515\"},\"type\":[\"class\",\"entity\"]},\"GO:0098772\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0098772\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0098772\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0098772","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"molecular function regulator activity","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0098772","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0098772","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"molecular function regulator activity","numDescendants":"6.0","numHierarchicalDescendants":"6.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0005515","searchableAnnotationValues":"false","shortForm":"GO_0098772","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0098916\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098916\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0099537\",\"http://purl.obolibrary.org/obo/GO_0099536\",\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0099537\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0099537\",\"http://purl.obolibrary.org/obo/GO_0099536\",\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0099537\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anterograde trans-synaptic signaling\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0099537\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anterograde trans-synaptic signaling\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0098916\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0099537\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trans-synaptic signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0099537\"},\"type\":[\"class\",\"entity\"]},\"GO:0098916\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0098916\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0098916\"},\"http://purl.obolibrary.org/obo/GO_0099536\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"synaptic signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0099536\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007267\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell-cell signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007267\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0098916","directAncestor":["http://purl.obolibrary.org/obo/GO_0099537","http://purl.obolibrary.org/obo/GO_0099536","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"directParent":"http://purl.obolibrary.org/obo/GO_0099537","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0099537","http://purl.obolibrary.org/obo/GO_0099536","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0099537","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anterograde trans-synaptic signaling","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0099537","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0098916","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0098916","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anterograde trans-synaptic signaling","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0098916","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0099536\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0099536\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0007267\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0007267\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"synaptic signaling\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0007267\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0045202\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"synaptic signaling\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"value\":\"http://purl.obolibrary.org/obo/GO_0045202\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0045202\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0099536\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0045202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"synapse\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0045202\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007267\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell-cell signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007267\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"GO:0099536\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0099536\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0099536\"},\"http://purl.obolibrary.org/obo/BFO_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000066\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0099536","directAncestor":["http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"directParent":"http://purl.obolibrary.org/obo/GO_0007267","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0007267","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"synaptic signaling","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0007267"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0099536","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0099536","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"synaptic signaling","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0045202","searchableAnnotationValues":"false","shortForm":"GO_0099536","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0099537\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0099537\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0099536\",\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0099536\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0099536\",\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0099536\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"trans-synaptic signaling\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0099536\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"trans-synaptic signaling\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0099537\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0099536\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"synaptic signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0099536\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007267\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell-cell signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007267\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"GO:0099537\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0099537\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0099537\"},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0099537","directAncestor":["http://purl.obolibrary.org/obo/GO_0099536","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"directParent":"http://purl.obolibrary.org/obo/GO_0099536","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0099536","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0099536","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"trans-synaptic signaling","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0099536","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0099537","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0099537","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"trans-synaptic signaling","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0099537","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0140352\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140352\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"export from cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"export from cell\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0140352\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0140352\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0140352\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0140352\"},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0140352","directAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009987"],"directParent":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0009987"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009987"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0009987"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"export from cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0009987"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0140352","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0140352","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"export from cell","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0140352","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0140677\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140677\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"molecular function activator activity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function activator activity\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0140677\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GO:0140677\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0140677\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0140677\"},\"http://purl.obolibrary.org/obo/GO_0098772\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098772\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0140677","directAncestor":"http://purl.obolibrary.org/obo/GO_0098772","directParent":"http://purl.obolibrary.org/obo/GO_0098772","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0098772","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0098772","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"molecular function activator activity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0098772","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0140677","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0140677","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"molecular function activator activity","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0140677","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/HP_0001513\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"HP:0001513\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Accumulation of substantial excess body fat.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Accumulation of substantial excess body fat.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Obesity\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Obesity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004029\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004029\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/HP_0001513\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Accumulation of substantial excess body fat.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"HP_0001513\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0004029\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has feature\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004029\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"HP:0001513\":{\"url\":\"http://purl.obolibrary.org/obo/HP_0001513\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"HP:0001513\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0011122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"obesity disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0011122\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"HP:0001513","definition":"Accumulation of substantial excess body fat.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//purl.obolibrary.org/obo/IAO_0000115":"Accumulation of substantial excess body fat.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Obesity","id":"gitissue502+class+http://purl.obolibrary.org/obo/HP_0001513","imported":"false","iri":"http://purl.obolibrary.org/obo/HP_0001513","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Obesity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/MONDO_0011122","searchableAnnotationValues":["Accumulation of substantial excess body fat.","false"],"shortForm":"HP_0001513","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:4\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:799.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D004194\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:377788\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:64572001\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0012634\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"condition\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease or disorder, non-neoplastic\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"diseases\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"diseases and disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"literal\"],\"value\":\"medical condition\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"other disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D004194\",\"http://identifiers.org/snomedct/64572001\",\"http://linkedlifedata.com/resource/umls/id/C0012634\",\"http://purl.obolibrary.org/obo/DOID_4\",\"http://purl.obolibrary.org/obo/NCIT_C2991\",\"http://www.orpha.net/ORDO/Orphanet_377788\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"numDescendants\":32.0,\"numHierarchicalDescendants\":32.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:4\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:799.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D004194\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:377788\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:64572001\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0012634\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"condition\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease or disorder, non-neoplastic\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"diseases\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"diseases and disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"literal\"],\"value\":\"medical condition\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"other disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0000001\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"condition\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease or disorder, non-neoplastic\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"diseases\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"diseases and disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"literal\"],\"value\":\"medical condition\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"other disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_4\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_4\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:4\"},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"SCTID:64572001\":{\"url\":\"http://snomed.info/id/64572001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:64572001\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"DOID:4\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_4\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:4\"},\"http://purl.obolibrary.org/obo/NCIT_C2991\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C2991\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C2991\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"EFO:0000408\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0000408\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0000408\"},\"Orphanet:377788\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d377788\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:377788\"},\"NCIT:C2991\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C2991\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C2991\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"OGMS:0000031\":{\"url\":\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OGMS:0000031\"},\"UMLS:C0012634\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0012634\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0012634\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0000001\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0000001\"},\"http://www.orpha.net/ORDO/Orphanet_377788\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_377788\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:377788\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"MESH:D004194\":{\"url\":\"http://id.nlm.nih.gov/mesh/D004194\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D004194\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0000001","definition":"A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000016","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000016","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:4","EFO:0000408","ICD9:799.9","MESH:D004194","NCIT:C2991","OGMS:0000031","Orphanet:377788","SCTID:64572001","UMLS:C0012634"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["condition","disease","disease or disorder","disease or disorder, non-neoplastic","diseases","diseases and disorders","disorder","disorders","medical condition","other disease"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0000001","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"disease","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000016","http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D004194","http://identifiers.org/snomedct/64572001","http://linkedlifedata.com/resource/umls/id/C0012634","http://purl.obolibrary.org/obo/DOID_4","http://purl.obolibrary.org/obo/NCIT_C2991","http://www.orpha.net/ORDO/Orphanet_377788"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0000001","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0000001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disease","numDescendants":"32.0","numHierarchicalDescendants":"32.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.","DOID:4","EFO:0000408","ICD9:799.9","MESH:D004194","NCIT:C2991","OGMS:0000031","Orphanet:377788","SCTID:64572001","UMLS:C0012634","condition","disease","disease or disorder","disease or disorder, non-neoplastic","diseases","diseases and disorders","disorder","disorders","medical condition","other disease","MONDO:0000001","false"],"shortForm":"MONDO_0000001","synonym":["condition","disease","disease or disorder","disease or disorder, non-neoplastic","diseases","diseases and disorders","disorder","disorders","medical condition","other disease"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002146\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:P378\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0005151\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MESH:D007006\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C9227/inferred\"}]}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0005151\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MESH:D007006\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C9227/inferred\"}]}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:P378\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:253.4\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D007006\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:48130008\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0020619\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadotropin deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002146\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hypogonadism\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MESH:D007006\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C9227/inferred\"}]}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D007006\",\"http://identifiers.org/snomedct/48130008\",\"http://linkedlifedata.com/resource/umls/id/C0020619\",\"http://purl.obolibrary.org/obo/DOID_1924\",\"http://purl.obolibrary.org/obo/NCIT_C9227\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hypogonadism\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:P378\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:253.4\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D007006\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:48130008\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0020619\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadotropin deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0002146\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0002146\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadotropin deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/MONDO_0002259\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002259\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C9227\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C9227\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C9227\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_1924\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_1924\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:1924\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"MESH:D007006\":{\"url\":\"http://id.nlm.nih.gov/mesh/D007006\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D007006\"},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"UMLS:C0020619\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0020619\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0020619\"},\"NCIT:C9227\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C9227\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C9227\"},\"DOID:1924\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_1924\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:1924\"},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0002146\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0002146\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"SCTID:48130008\":{\"url\":\"http://snomed.info/id/48130008\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:48130008\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0002146","definition":"A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0005151"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0002259","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0005151"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0002259","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:1924","ICD9:253.4","MESH:D007006","NCIT:C9227","SCTID:48130008","UMLS:C0020619"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["gonadotropin deficiency","hypogonadotropism"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0002146","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hypogonadism","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0002259","http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D007006","http://identifiers.org/snomedct/48130008","http://linkedlifedata.com/resource/umls/id/C0020619","http://purl.obolibrary.org/obo/DOID_1924","http://purl.obolibrary.org/obo/NCIT_C9227"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002146","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0002146","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hypogonadism","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.","DOID:1924","ICD9:253.4","MESH:D007006","NCIT:C9227","SCTID:48130008","UMLS:C0020619","gonadotropin deficiency","hypogonadotropism","MONDO:0002146","false"],"shortForm":"MONDO_0002146","synonym":["gonadotropin deficiency","hypogonadotropism"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0002254\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002254\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"}}]},\"http://purl.org/dc/terms/conformsTo\":\"http://purl.obolibrary.org/obo/mondo/patterns/syndromic.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:225\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:225\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:225\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000086\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0039082\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:225\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"cluster, symptom\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"clusters, symptom\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"symptom cluster\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"symptom clusters\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"},{\"type\":[\"literal\"],\"value\":\"OGMS:0000086\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome associated with disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromes\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002254\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#harrisons_view\",\"http://purl.obolibrary.org/obo/mondo#rare_grouping\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"syndromic disease\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021127\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021127\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D013577\",\"http://linkedlifedata.com/resource/umls/id/C0039082\",\"http://purl.obolibrary.org/obo/DOID_225\",\"http://purl.obolibrary.org/obo/NCIT_C28193\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"syndromic disease\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021127\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021127\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:225\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:225\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:225\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000086\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0039082\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:225\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"cluster, symptom\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"clusters, symptom\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"symptom cluster\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"symptom clusters\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"},{\"type\":[\"literal\"],\"value\":\"OGMS:0000086\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome associated with disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromes\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0002254\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0002254\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"cluster, symptom\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"clusters, symptom\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"symptom cluster\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"symptom clusters\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"},{\"type\":[\"literal\"],\"value\":\"OGMS:0000086\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome associated with disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromes\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"NCIT:C28193\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C28193\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C28193\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_225\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_225\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:225\"},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"DOID:225\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_225\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:225\"},\"http://purl.obolibrary.org/obo/MONDO_0021127\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has a syndromic presentation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021127\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C28193\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C28193\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C28193\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"UMLS:C0039082\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0039082\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0039082\"},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"MONDO:0002254\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0002254\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0002254\"},\"OGMS:0000086\":{\"url\":\"http://purl.obolibrary.org/obo/OGMS_0000086\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OGMS:0000086\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"MESH:D013577\":{\"url\":\"http://id.nlm.nih.gov/mesh/D013577\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D013577\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0002254","definition":"A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0700096","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0700096","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.","http__//purl.org/dc/terms/conformsTo":"http://purl.obolibrary.org/obo/mondo/patterns/syndromic.yaml","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:225","MESH:D013577","NCIT:C28193","OGMS:0000086","UMLS:C0039082"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["cluster, symptom","clusters, symptom","symptom cluster","symptom clusters","syndrome","syndrome associated with disease or disorder","syndromes","syndromic disease","syndromic disease or disorder"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0002254","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#harrisons_view","http://purl.obolibrary.org/obo/mondo#rare_grouping"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"syndromic disease","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0700096"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D013577","http://linkedlifedata.com/resource/umls/id/C0039082","http://purl.obolibrary.org/obo/DOID_225","http://purl.obolibrary.org/obo/NCIT_C28193"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002254","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0002254","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"syndromic disease","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/MONDO_0021127","searchableAnnotationValues":["A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.","DOID:225","MESH:D013577","NCIT:C28193","OGMS:0000086","UMLS:C0039082","cluster, symptom","clusters, symptom","symptom cluster","symptom clusters","syndrome","syndrome associated with disease or disorder","syndromes","syndromic disease","syndromic disease or disorder","MONDO:0002254","false"],"shortForm":"MONDO_0002254","synonym":["cluster, symptom","clusters, symptom","symptom cluster","symptom clusters","syndrome","syndrome associated with disease or disorder","syndromes","syndromic disease","syndromic disease or disorder"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002259\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A non-neoplastic or neoplastic disorder that affects the testis or the ovary.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:P378\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0005151\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0005039\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MESH:D006058\"}]}]}],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0005151\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0005039\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MESH:D006058\"}]}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A non-neoplastic or neoplastic disorder that affects the testis or the ovary.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:P378\"}}]},\"http://purl.org/dc/terms/conformsTo\":[\"http://purl.obolibrary.org/obo/mondo/patterns/location.yaml\",\"http://purl.obolibrary.org/obo/mondo/patterns/location_top.yaml\"],\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D006058\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0018050\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of gonad\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of gonad\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of gonad\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of gonads\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonad disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonad disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadal disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002259\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0005039\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MESH:D006058\"}]}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0000001\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D006058\",\"http://linkedlifedata.com/resource/umls/id/C0018050\",\"http://purl.obolibrary.org/obo/DOID_2277\",\"http://purl.obolibrary.org/obo/NCIT_C26786\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A non-neoplastic or neoplastic disorder that affects the testis or the ovary.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:P378\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D006058\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0018050\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of gonad\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of gonad\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of gonad\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of gonads\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonad disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonad disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadal disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0002259\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0002259\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of gonad\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of gonad\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of gonad\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of gonads\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonad disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonad disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadal disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"DOID:2277\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_2277\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:2277\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_2277\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_2277\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:2277\"},\"http://purl.obolibrary.org/obo/NCIT_C26786\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C26786\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C26786\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0002259\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0002259\"},\"NCIT:C26786\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C26786\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C26786\"},\"MESH:D006058\":{\"url\":\"http://id.nlm.nih.gov/mesh/D006058\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D006058\"},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"UMLS:C0018050\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0018050\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0018050\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000991\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000991\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0002259","definition":"A non-neoplastic or neoplastic disorder that affects the testis or the ovary.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0005151"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0005151"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0005151"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0005151"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A non-neoplastic or neoplastic disorder that affects the testis or the ovary.","http__//purl.org/dc/terms/conformsTo":["http://purl.obolibrary.org/obo/mondo/patterns/location.yaml","http://purl.obolibrary.org/obo/mondo/patterns/location_top.yaml"],"http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:2277","MESH:D006058","NCIT:C26786","UMLS:C0018050"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["disease of gonad","disease or disorder of gonad","disorder of gonad","disorder of gonads","gonad disease","gonad disease or disorder","gonadal disorder","gonadal disorders"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0002259","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gonadal disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0005151"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D006058","http://linkedlifedata.com/resource/umls/id/C0018050","http://purl.obolibrary.org/obo/DOID_2277","http://purl.obolibrary.org/obo/NCIT_C26786"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002259","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0002259","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gonadal disorder","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000991","searchableAnnotationValues":["A non-neoplastic or neoplastic disorder that affects the testis or the ovary.","DOID:2277","MESH:D006058","NCIT:C26786","UMLS:C0018050","disease of gonad","disease or disorder of gonad","disorder of gonad","disorder of gonads","gonad disease","gonad disease or disorder","gonadal disorder","gonadal disorders","MONDO:0002259","false"],"shortForm":"MONDO_0002259","synonym":["disease of gonad","disease or disorder of gonad","disorder of gonad","disorder of gonads","gonad disease","gonad disease or disorder","gonadal disorder","gonadal disorders"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002263\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the female reproductive system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:229\"},{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}]}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:229\"},{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}]}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the female reproductive system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},\"http://purl.org/dc/terms/conformsTo\":[\"http://purl.obolibrary.org/obo/mondo/patterns/location.yaml\",\"http://purl.obolibrary.org/obo/mondo/patterns/location_top.yaml\"],\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:229\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:629.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:229\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D005831\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:229\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:310789003\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:229\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of female reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of female reproductive system\"},{\"type\":[\"literal\"],\"value\":\"disorder of female genital system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of female reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:229\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":[{\"type\":[\"literal\"],\"value\":\"disease of female genital system\"},{\"type\":[\"literal\"],\"value\":\"disorder of female genital tract\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gynaecological disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/OMO_0003005\"}]},{\"type\":[\"literal\"],\"value\":\"gynecological disease\"}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002263\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:229\"},{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}]}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000474\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0000001\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000474\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D005831\",\"http://identifiers.org/snomedct/310789003\",\"http://purl.obolibrary.org/obo/DOID_229\",\"http://purl.obolibrary.org/obo/NCIT_C27020\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000474\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000474\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the female reproductive system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:229\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:629.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:229\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D005831\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:229\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:310789003\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:229\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of female reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of female reproductive system\"},{\"type\":[\"literal\"],\"value\":\"disorder of female genital system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of female reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:229\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}}]},{\"type\":[\"literal\"],\"value\":\"disease of female genital system\"},{\"type\":[\"literal\"],\"value\":\"disorder of female genital tract\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gynaecological disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/OMO_0003005\"}]},{\"type\":[\"literal\"],\"value\":\"gynecological disease\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0002263\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0002263\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of female reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of female reproductive system\"},{\"type\":[\"literal\"],\"value\":\"disorder of female genital system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of female reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:229\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}}]},{\"type\":[\"literal\"],\"value\":\"disease of female genital system\"},{\"type\":[\"literal\"],\"value\":\"disorder of female genital tract\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gynaecological disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/OMO_0003005\"}]},{\"type\":[\"literal\"],\"value\":\"gynecological disease\"}],\"synonymProperty\":[{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\"}],\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/DOID_229\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_229\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:229\"},\"MESH:D005831\":{\"url\":\"http://id.nlm.nih.gov/mesh/D005831\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D005831\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"SCTID:310789003\":{\"url\":\"http://snomed.info/id/310789003\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:310789003\"},\"DOID:229\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_229\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:229\"},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0002-6601-2165\":{\"url\":\"https://orcid.org/0000-0002-6601-2165\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-6601-2165\"},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"NCIT:C27020\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C27020\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C27020\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0002263\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0002263\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/OMO_0003005\":{\"url\":\"http://purl.obolibrary.org/obo/OMO_0003005\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"omo:0003005\"},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasSynonymType\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasSynonymType\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C27020\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C27020\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C27020\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000474\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000474\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0002263","definition":"A disease involving the female reproductive system.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0005039","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0005039","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disease involving the female reproductive system.","http__//purl.org/dc/terms/conformsTo":["http://purl.obolibrary.org/obo/mondo/patterns/location.yaml","http://purl.obolibrary.org/obo/mondo/patterns/location_top.yaml"],"http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:229","ICD9:629.9","MESH:D005831","NCIT:C27020","SCTID:310789003"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["disease of female reproductive system","disease or disorder of female reproductive system","disorder of female genital system","disorder of female reproductive system","female reproductive disease","female reproductive system disease","female reproductive system disease or disorder","female reproductive system disorder"],"http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":["disease of female genital system","disorder of female genital tract","gynaecological disease","gynecological disease"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0002263","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"female reproductive system disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0005039"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D005831","http://identifiers.org/snomedct/310789003","http://purl.obolibrary.org/obo/DOID_229","http://purl.obolibrary.org/obo/NCIT_C27020"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002263","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0002263","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"female reproductive system disorder","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000474","searchableAnnotationValues":["A disease involving the female reproductive system.","DOID:229","ICD9:629.9","MESH:D005831","NCIT:C27020","SCTID:310789003","disease of female reproductive system","disease or disorder of female reproductive system","disorder of female genital system","disorder of female reproductive system","female reproductive disease","female reproductive system disease","female reproductive system disease or disorder","female reproductive system disorder","disease of female genital system","disorder of female genital tract","gynaecological disease","gynecological disease","MONDO:0002263","false"],"shortForm":"MONDO_0002263","synonym":["disease of female reproductive system","disease or disorder of female reproductive system","disorder of female genital system","disorder of female reproductive system","female reproductive disease","female reproductive system disease","female reproductive system disease or disorder","female reproductive system disorder","disease of female genital system","disorder of female genital tract","gynaecological disease","gynecological disease"],"synonymProperty":["http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"],"type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0002320\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002320\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An abnormality of the nervous system that is present at birth or detected in the neonatal period.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An abnormality of the nervous system that is present at birth or detected in the neonatal period.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0000839\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:2490\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:2490\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:742\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:2490\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital abnormality of the nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital nervous system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital neurologic anomaly\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:2490\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002320\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"congenital nervous system disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0005071\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://purl.obolibrary.org/obo/DOID_2490\",\"http://purl.obolibrary.org/obo/NCIT_C97172\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital nervous system disorder\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An abnormality of the nervous system that is present at birth or detected in the neonatal period.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:2490\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:742\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:2490\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital abnormality of the nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital nervous system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital neurologic anomaly\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:2490\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0002320\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0002320\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital abnormality of the nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital nervous system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital neurologic anomaly\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:2490\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_2490\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_2490\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:2490\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"NCIT:C97172\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C97172\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C97172\"},\"MONDO:0002320\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0002320\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0002320\"},\"ICD9:742\":{\"url\":\"http://www.icd9data.com/getICD9Code.ashx?icd9\\u003d742\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ICD9:742\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000839\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0000839\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"mondo:0000839\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"DOID:2490\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_2490\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:2490\"},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"excluded_subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"excluded:subClassOf\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021140\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021140\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C97172\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C97172\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C97172\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0002320","definition":"An abnormality of the nervous system that is present at birth or detected in the neonatal period.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0005071","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0005071","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An abnormality of the nervous system that is present at birth or detected in the neonatal period.","http__//purl.obolibrary.org/obo/mondo#excluded_subClassOf":"http://purl.obolibrary.org/obo/MONDO_0000839","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:2490","ICD9:742","NCIT:C97172"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["congenital abnormality of the nervous system","congenital nervous system disorder","congenital neurologic anomaly"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0002320","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"congenital nervous system disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0005071"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://purl.obolibrary.org/obo/DOID_2490","http://purl.obolibrary.org/obo/NCIT_C97172"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002320","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0002320","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"congenital nervous system disorder","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/MONDO_0021140","searchableAnnotationValues":["An abnormality of the nervous system that is present at birth or detected in the neonatal period.","DOID:2490","ICD9:742","NCIT:C97172","congenital abnormality of the nervous system","congenital nervous system disorder","congenital neurologic anomaly","MONDO:0002320","false"],"shortForm":"MONDO_0002320","synonym":["congenital abnormality of the nervous system","congenital nervous system disorder","congenital neurologic anomaly"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"definition\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease that is caused by genetic modifications where those modifications are inherited from a parent\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"literal\"],\"value\":\"Usage note: this is intended only for diseases with an inherited genetic etiology. Somatic genetic mutations are excluded. Some ontologies use the term \\u0027genetic disease\\u0027 in the sense of inherited disorders only, we are here careful to distinguish.\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease that is caused by genetic modifications where those modifications are inherited from a parent\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"http://purl.org/dc/terms/conformsTo\":\"http://purl.obolibrary.org/obo/mondo/patterns/hereditary.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic condition\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"literal\"],\"value\":\"genetic disease\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:630\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0000508\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:799.89\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D030342\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:630\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000508\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:630\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000508\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:32895009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:630\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0019247\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:630\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000508\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary diseases\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"inherited disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"inherited genetic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/1758\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"molecular disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Mendelian disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0050177\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":[{\"type\":[\"literal\"],\"value\":\"familial disorder\"},{\"type\":[\"literal\"],\"value\":\"inborn disorder\"}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#harrisons_view\",\"http://purl.obolibrary.org/obo/mondo#rare_grouping\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Usage note: this is intended only for diseases with an inherited genetic etiology. Somatic genetic mutations are excluded. Some ontologies use the term \\u0027genetic disease\\u0027 in the sense of inherited disorders only, we are here careful to distinguish.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D030342\",\"http://identifiers.org/snomedct/32895009\",\"http://linkedlifedata.com/resource/umls/id/C0019247\",\"http://purl.obolibrary.org/obo/DOID_630\",\"http://purl.obolibrary.org/obo/NCIT_C3101\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"numDescendants\":7.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease that is caused by genetic modifications where those modifications are inherited from a parent\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic condition\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"literal\"],\"value\":\"genetic disease\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:630\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0000508\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:799.89\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D030342\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:630\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000508\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:630\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000508\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:32895009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:630\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0019247\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:630\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000508\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary diseases\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"inherited disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"inherited genetic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/1758\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"molecular disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Mendelian disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0050177\"}}]},{\"type\":[\"literal\"],\"value\":\"familial disorder\"},{\"type\":[\"literal\"],\"value\":\"inborn disorder\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0003847\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic condition\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"literal\"],\"value\":\"genetic disease\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary diseases\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"inherited disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"inherited genetic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/1758\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"molecular disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Mendelian disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0050177\"}}]},{\"type\":[\"literal\"],\"value\":\"familial disorder\"},{\"type\":[\"literal\"],\"value\":\"inborn disorder\"}],\"synonymProperty\":[{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\"}],\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"SCTID:32895009\":{\"url\":\"http://snomed.info/id/32895009\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:32895009\"},\"DOID:630\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_630\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:630\"},\"http://purl.obolibrary.org/obo/DOID_630\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_630\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:630\"},\"DOID:0050177\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_0050177\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:0050177\"},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasNarrowSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasNarrowSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C3101\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C3101\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C3101\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"NCIT:C3101\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C3101\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C3101\"},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0003847\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0003847\"},\"UMLS:C0019247\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0019247\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0019247\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasBroadSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasBroadSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021152\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021152\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"MESH:D030342\":{\"url\":\"http://id.nlm.nih.gov/mesh/D030342\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D030342\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"EFO:0000508\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0000508\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0000508\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0003847","definition":["A disease that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.","Usage note: this is intended only for diseases with an inherited genetic etiology. Somatic genetic mutations are excluded. Some ontologies use the term \u0027genetic disease\u0027 in the sense of inherited disorders only, we are here careful to distinguish."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0700096","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0700096","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disease that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.","http__//purl.org/dc/terms/conformsTo":"http://purl.obolibrary.org/obo/mondo/patterns/hereditary.yaml","http__//www.geneontology.org/formats/oboInOwl#hasBroadSynonym":["genetic condition","genetic disease","genetic disorder"],"http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:630","EFO:0000508","ICD9:799.89","MESH:D030342","NCIT:C3101","SCTID:32895009","UMLS:C0019247"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["hereditary disease","hereditary disease or disorder","hereditary diseases","inherited disease","inherited genetic disease","molecular disease"],"http__//www.geneontology.org/formats/oboInOwl#hasNarrowSynonym":"Mendelian disease","http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":["familial disorder","inborn disorder"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0003847","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#harrisons_view","http://purl.obolibrary.org/obo/mondo#rare_grouping"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Usage note: this is intended only for diseases with an inherited genetic etiology. Somatic genetic mutations are excluded. Some ontologies use the term \u0027genetic disease\u0027 in the sense of inherited disorders only, we are here careful to distinguish.","http__//www.w3.org/2000/01/rdf-schema#label":"hereditary disease","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0700096"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D030342","http://identifiers.org/snomedct/32895009","http://linkedlifedata.com/resource/umls/id/C0019247","http://purl.obolibrary.org/obo/DOID_630","http://purl.obolibrary.org/obo/NCIT_C3101"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0003847","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0003847","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hereditary disease","numDescendants":"7.0","numHierarchicalDescendants":"7.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/MONDO_0021152","searchableAnnotationValues":["A disease that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.","genetic condition","genetic disease","genetic disorder","DOID:630","EFO:0000508","ICD9:799.89","MESH:D030342","NCIT:C3101","SCTID:32895009","UMLS:C0019247","hereditary disease","hereditary disease or disorder","hereditary diseases","inherited disease","inherited genetic disease","molecular disease","Mendelian disease","familial disorder","inborn disorder","MONDO:0003847","false"],"shortForm":"MONDO_0003847","synonym":["genetic condition","genetic disease","genetic disorder","hereditary disease","hereditary disease or disorder","hereditary diseases","inherited disease","inherited genetic disease","molecular disease","Mendelian disease","familial disorder","inborn disorder"],"synonymProperty":["http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"],"type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003916\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D044343\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MESH:D044343\"}]}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MESH:D044343\"}]}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D044343\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:654\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:278.8\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D044343\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:302872003\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C1257763\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003916\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"overnutrition\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MESH:D044343\"}]}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D044343\",\"http://identifiers.org/snomedct/302872003\",\"http://linkedlifedata.com/resource/umls/id/C1257763\",\"http://purl.obolibrary.org/obo/DOID_654\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"overnutrition\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D044343\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:654\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:278.8\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D044343\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:302872003\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C1257763\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0003916\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0003916\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"DOID:654\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_654\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:654\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005137\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005137\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MESH:D044343\":{\"url\":\"http://id.nlm.nih.gov/mesh/D044343\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D044343\"},\"UMLS:C1257763\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C1257763\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C1257763\"},\"SCTID:302872003\":{\"url\":\"http://snomed.info/id/302872003\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:302872003\"},\"MONDO:0003916\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0003916\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_654\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_654\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:654\"}}}","appearsIn":["gitissue502"],"curie":"MONDO:0003916","definition":"An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0005137","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0005137","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0005137","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0005137","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:654","ICD9:278.8","MESH:D044343","SCTID:302872003","UMLS:C1257763"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0003916","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"overnutrition","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0005137","http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D044343","http://identifiers.org/snomedct/302872003","http://linkedlifedata.com/resource/umls/id/C1257763","http://purl.obolibrary.org/obo/DOID_654"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0003916","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0003916","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"overnutrition","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.","DOID:654","ICD9:278.8","MESH:D044343","SCTID:302872003","UMLS:C1257763","MONDO:0003916","false"],"shortForm":"MONDO_0003916","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the reproductive system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the reproductive system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},\"http://purl.org/dc/terms/conformsTo\":\"http://purl.obolibrary.org/obo/mondo/patterns/location.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:15\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0000512\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0000512\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:362968007\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0000512\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0178829\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Wikipedia:Reproductive_system_disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"EFO:0000512\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of reproductive system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genital disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genital system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:15\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:15\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":\"http://purl.obolibrary.org/obo/mondo#rare_grouping\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/snomedct/362968007\",\"http://linkedlifedata.com/resource/umls/id/C0178829\",\"http://purl.obolibrary.org/obo/DOID_15\",\"http://purl.obolibrary.org/obo/NCIT_C4875\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the reproductive system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:15\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0000512\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0000512\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:362968007\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0000512\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0178829\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Wikipedia:Reproductive_system_disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"EFO:0000512\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of reproductive system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genital disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genital system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:15\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:15\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0005039\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of reproductive system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genital disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genital system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:15\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:15\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"NCIT:C4875\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C4875\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C4875\"},\"UMLS:C0178829\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0178829\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0178829\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"DOID:15\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_15\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:15\"},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"MONDO:0005039\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0005039\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"EFO:0000512\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0000512\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0000512\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Wikipedia:Reproductive_system_disease\":{\"url\":\"http://en.wikipedia.org/wiki/Reproductive_system_disease\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"Wikipedia:Reproductive_system_disease\"},\"http://purl.obolibrary.org/obo/NCIT_C4875\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C4875\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C4875\"},\"https://orcid.org/0000-0002-6601-2165\":{\"url\":\"https://orcid.org/0000-0002-6601-2165\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-6601-2165\"},\"SCTID:362968007\":{\"url\":\"http://snomed.info/id/362968007\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:362968007\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_15\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_15\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:15\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0005039","definition":"A disease involving the reproductive system.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disease involving the reproductive system.","http__//purl.org/dc/terms/conformsTo":"http://purl.obolibrary.org/obo/mondo/patterns/location.yaml","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:15","EFO:0000512","NCIT:C4875","SCTID:362968007","UMLS:C0178829","Wikipedia:Reproductive_system_disease"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["disease of reproductive system","disease or disorder of reproductive system","disorder of reproductive system","genital disorders","genital system disease","reproductive disease","reproductive system disease","reproductive system disease or disorder","reproductive system disorder"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0005039","http__//www.geneontology.org/formats/oboInOwl#inSubset":"http://purl.obolibrary.org/obo/mondo#rare_grouping","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"reproductive system disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/snomedct/362968007","http://linkedlifedata.com/resource/umls/id/C0178829","http://purl.obolibrary.org/obo/DOID_15","http://purl.obolibrary.org/obo/NCIT_C4875"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0005039","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0005039","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"reproductive system disorder","numDescendants":"8.0","numHierarchicalDescendants":"8.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000990","searchableAnnotationValues":["A disease involving the reproductive system.","DOID:15","EFO:0000512","NCIT:C4875","SCTID:362968007","UMLS:C0178829","Wikipedia:Reproductive_system_disease","disease of reproductive system","disease or disorder of reproductive system","disorder of reproductive system","genital disorders","genital system disease","reproductive disease","reproductive system disease","reproductive system disease or disorder","reproductive system disorder","MONDO:0005039","false"],"shortForm":"MONDO_0005039","synonym":["disease of reproductive system","disease or disorder of reproductive system","disorder of reproductive system","genital disorders","genital system disease","reproductive disease","reproductive system disease","reproductive system disease or disorder","reproductive system disorder"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},\"definition\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}}]},{\"type\":[\"literal\"],\"value\":\"\\u0027psychiatric disorder\\u0027 is not classified as a \\u0027nervous system disorder\\u0027 in Mondo (though it is often as such): the hallmarks of psychiatric disorders are based in behavior and emotional state, and the relation with nervous system malfunction or damage is not always clearly determined.\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}}]},\"http://purl.org/dc/terms/conformsTo\":\"http://purl.obolibrary.org/obo/mondo/patterns/location.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0000618\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0000618\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:G00-G99\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/4536\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:349.89\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:349.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D009422\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:118940003\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0027765\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Wikipedia:Nervous_system_disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"EFO:0000618\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of nervous system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurologic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurologic disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"ISBN-13:978-1-259-64403-0\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurological disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurological disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":\"http://purl.obolibrary.org/obo/mondo#rare_grouping\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"\\u0027psychiatric disorder\\u0027 is not classified as a \\u0027nervous system disorder\\u0027 in Mondo (though it is often as such): the hallmarks of psychiatric disorders are based in behavior and emotional state, and the relation with nervous system malfunction or damage is not always clearly determined.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D009422\",\"http://identifiers.org/snomedct/118940003\",\"http://linkedlifedata.com/resource/umls/id/C0027765\",\"http://purl.bioontology.org/ontology/ICD10CM/G00-G99\",\"http://purl.obolibrary.org/obo/DOID_863\",\"http://purl.obolibrary.org/obo/NCIT_C26835\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0000618\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0000618\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:G00-G99\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/4536\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:349.89\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:349.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D009422\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:118940003\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0027765\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Wikipedia:Nervous_system_disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"EFO:0000618\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of nervous system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurologic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurologic disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"ISBN-13:978-1-259-64403-0\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurological disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurological disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0005071\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of nervous system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurologic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurologic disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"ISBN-13:978-1-259-64403-0\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurological disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurological disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_863\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_863\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:863\"},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"DOID:863\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_863\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:863\"},\"NCIT:C26835\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C26835\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C26835\"},\"UMLS:C0027765\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0027765\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0027765\"},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C26835\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C26835\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C26835\"},\"EFO:0000618\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0000618\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0000618\"},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"MESH:D009422\":{\"url\":\"http://id.nlm.nih.gov/mesh/D009422\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D009422\"},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"https://orcid.org/0000-0002-4142-7153\":{\"url\":\"https://orcid.org/0000-0002-4142-7153\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-4142-7153\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0005071\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0005071\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"SCTID:118940003\":{\"url\":\"http://snomed.info/id/118940003\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:118940003\"},\"Wikipedia:Nervous_system_disease\":{\"url\":\"http://en.wikipedia.org/wiki/Nervous_system_disease\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"Wikipedia:Nervous_system_disease\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0001-5208-3432\":{\"url\":\"https://orcid.org/0000-0001-5208-3432\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0001-5208-3432\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0005071","definition":["A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.","\u0027psychiatric disorder\u0027 is not classified as a \u0027nervous system disorder\u0027 in Mondo (though it is often as such): the hallmarks of psychiatric disorders are based in behavior and emotional state, and the relation with nervous system malfunction or damage is not always clearly determined."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.","http__//purl.org/dc/terms/conformsTo":"http://purl.obolibrary.org/obo/mondo/patterns/location.yaml","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:863","EFO:0000618","ICD10CM:G00-G99","ICD9:349.89","ICD9:349.9","MESH:D009422","NCIT:C26835","SCTID:118940003","UMLS:C0027765","Wikipedia:Nervous_system_disease"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["disease of nervous system","disease or disorder of nervous system","disorder of nervous system","nervous system disease","nervous system disease or disorder","nervous system disorder","neurologic disease","neurologic disorder","neurological disease","neurological disorder"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0005071","http__//www.geneontology.org/formats/oboInOwl#inSubset":"http://purl.obolibrary.org/obo/mondo#rare_grouping","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"\u0027psychiatric disorder\u0027 is not classified as a \u0027nervous system disorder\u0027 in Mondo (though it is often as such): the hallmarks of psychiatric disorders are based in behavior and emotional state, and the relation with nervous system malfunction or damage is not always clearly determined.","http__//www.w3.org/2000/01/rdf-schema#label":"nervous system disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D009422","http://identifiers.org/snomedct/118940003","http://linkedlifedata.com/resource/umls/id/C0027765","http://purl.bioontology.org/ontology/ICD10CM/G00-G99","http://purl.obolibrary.org/obo/DOID_863","http://purl.obolibrary.org/obo/NCIT_C26835"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0005071","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0005071","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"nervous system disorder","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0001016","searchableAnnotationValues":["A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.","DOID:863","EFO:0000618","ICD10CM:G00-G99","ICD9:349.89","ICD9:349.9","MESH:D009422","NCIT:C26835","SCTID:118940003","UMLS:C0027765","Wikipedia:Nervous_system_disease","disease of nervous system","disease or disorder of nervous system","disorder of nervous system","nervous system disease","nervous system disease or disorder","nervous system disorder","neurologic disease","neurologic disorder","neurological disease","neurological disorder","MONDO:0005071","false"],"shortForm":"MONDO_0005071","synonym":["disease of nervous system","disease or disorder of nervous system","disorder of nervous system","nervous system disease","nervous system disease or disorder","nervous system disorder","neurologic disease","neurologic disorder","neurological disease","neurological disorder"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005137\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Any condition related to a disturbance between proper intake and utilization of nourishment.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Any condition related to a disturbance between proper intake and utilization of nourishment.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}}]},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005066\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0006504\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:374\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:374\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:783.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D009748\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:exact-label-match\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:2492009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C3714509\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}]}]},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nutrition disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:374\"}}]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005137\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#harrisons_view\",\"http://purl.obolibrary.org/obo/mondo#rare_grouping\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"}}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D009748\",\"http://identifiers.org/snomedct/2492009\",\"http://linkedlifedata.com/resource/umls/id/C3714509\",\"http://purl.obolibrary.org/obo/DOID_374\",\"http://purl.obolibrary.org/obo/NCIT_C26836\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Any condition related to a disturbance between proper intake and utilization of nourishment.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:374\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:783.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D009748\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:exact-label-match\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:2492009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C3714509\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nutrition disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:374\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0005137\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0005137\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nutrition disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:374\"}}]}],\"synonymProperty\":[{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\"}],\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"EFO:0001069\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0001069\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0001069\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C26836\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C26836\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C26836\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0006504\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0006504\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"mondo:0006504\"},\"NCIT:C26836\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C26836\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C26836\"},\"MESH:D009748\":{\"url\":\"http://id.nlm.nih.gov/mesh/D009748\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D009748\"},\"SCTID:2492009\":{\"url\":\"http://snomed.info/id/2492009\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:2492009\"},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005066\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0005066\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"mondo:0005066\"},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"excluded_subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"excluded:subClassOf\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0001-5208-3432\":{\"url\":\"https://orcid.org/0000-0001-5208-3432\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0001-5208-3432\"},\"MONDO:0005137\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0005137\"},\"http://purl.obolibrary.org/obo/DOID_374\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_374\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:374\"},\"UMLS:C3714509\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C3714509\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C3714509\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"DOID:374\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_374\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:374\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0005137","definition":"Any condition related to a disturbance between proper intake and utilization of nourishment.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0700096","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0700096","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"Any condition related to a disturbance between proper intake and utilization of nourishment.","http__//purl.obolibrary.org/obo/mondo#excluded_subClassOf":["http://purl.obolibrary.org/obo/MONDO_0005066","http://purl.obolibrary.org/obo/MONDO_0006504"],"http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:374","EFO:0001069","ICD9:783.9","MESH:D009748","NCIT:C26836","SCTID:2492009","UMLS:C3714509"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":"nutritional disorder","http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":"nutrition disease","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0005137","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#harrisons_view","http://purl.obolibrary.org/obo/mondo#rare_grouping"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"nutritional disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0700096","http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D009748","http://identifiers.org/snomedct/2492009","http://linkedlifedata.com/resource/umls/id/C3714509","http://purl.obolibrary.org/obo/DOID_374","http://purl.obolibrary.org/obo/NCIT_C26836"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0005137","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0005137","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"nutritional disorder","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Any condition related to a disturbance between proper intake and utilization of nourishment.","DOID:374","EFO:0001069","ICD9:783.9","MESH:D009748","NCIT:C26836","SCTID:2492009","UMLS:C3714509","nutritional disorder","nutrition disease","MONDO:0005137","false"],"shortForm":"MONDO_0005137","synonym":["nutritional disorder","nutrition disease"],"synonymProperty":["http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"],"type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the endocrine system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the endocrine system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021199\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"MONDO:Entailed\"},{\"type\":[\"literal\"],\"value\":\"MONDO:metaclass\"}]}]},\"http://purl.org/dc/terms/conformsTo\":\"http://purl.obolibrary.org/obo/mondo/patterns/location.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:28\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:259.8\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:259.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D004700\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:362969004\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0014130\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of endocrine system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of endocrine system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of endocrine system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrinopathy\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"thyroid or other glandular disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#harrisons_view\",\"http://purl.obolibrary.org/obo/mondo#rare_grouping\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D004700\",\"http://identifiers.org/snomedct/362969004\",\"http://linkedlifedata.com/resource/umls/id/C0014130\",\"http://purl.obolibrary.org/obo/DOID_28\",\"http://purl.obolibrary.org/obo/NCIT_C3009\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":10.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the endocrine system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:28\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:259.8\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:259.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D004700\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:362969004\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0014130\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of endocrine system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of endocrine system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of endocrine system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrinopathy\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"thyroid or other glandular disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0005151\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of endocrine system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of endocrine system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of endocrine system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrinopathy\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"thyroid or other glandular disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCIT_C3009\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C3009\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C3009\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0005151\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0005151\"},\"DOID:28\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_28\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:28\"},\"NCIT:C3009\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C3009\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C3009\"},\"http://purl.obolibrary.org/obo/MONDO_0021199\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021199\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"mondo:0021199\"},\"UMLS:C0014130\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0014130\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0014130\"},\"https://orcid.org/0000-0002-6601-2165\":{\"url\":\"https://orcid.org/0000-0002-6601-2165\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-6601-2165\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"MESH:D004700\":{\"url\":\"http://id.nlm.nih.gov/mesh/D004700\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D004700\"},\"http://purl.obolibrary.org/obo/DOID_28\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_28\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:28\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"EFO:0001379\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0001379\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0001379\"},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"excluded_subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"excluded:subClassOf\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"SCTID:362969004\":{\"url\":\"http://snomed.info/id/362969004\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:362969004\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0005151","definition":"A disease involving the endocrine system.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disease involving the endocrine system.","http__//purl.obolibrary.org/obo/mondo#excluded_subClassOf":"http://purl.obolibrary.org/obo/MONDO_0021199","http__//purl.org/dc/terms/conformsTo":"http://purl.obolibrary.org/obo/mondo/patterns/location.yaml","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:28","EFO:0001379","ICD9:259.8","ICD9:259.9","MESH:D004700","NCIT:C3009","SCTID:362969004","UMLS:C0014130"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["disease of endocrine system","disease or disorder of endocrine system","disorder of endocrine system","endocrine disease","endocrine disorder","endocrine system disease","endocrine system disease or disorder","endocrine system disorder","endocrinopathy","thyroid or other glandular disorders"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0005151","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#harrisons_view","http://purl.obolibrary.org/obo/mondo#rare_grouping"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"endocrine system disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D004700","http://identifiers.org/snomedct/362969004","http://linkedlifedata.com/resource/umls/id/C0014130","http://purl.obolibrary.org/obo/DOID_28","http://purl.obolibrary.org/obo/NCIT_C3009"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0005151","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0005151","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"endocrine system disorder","numDescendants":"10.0","numHierarchicalDescendants":"10.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000949","searchableAnnotationValues":["A disease involving the endocrine system.","DOID:28","EFO:0001379","ICD9:259.8","ICD9:259.9","MESH:D004700","NCIT:C3009","SCTID:362969004","UMLS:C0014130","disease of endocrine system","disease or disorder of endocrine system","disorder of endocrine system","endocrine disease","endocrine disorder","endocrine system disease","endocrine system disease or disorder","endocrine system disorder","endocrinopathy","thyroid or other glandular disorders","MONDO:0005151","false"],"shortForm":"MONDO_0005151","synonym":["disease of endocrine system","disease or disorder of endocrine system","disorder of endocrine system","endocrine disease","endocrine disorder","endocrine system disease","endocrine system disease or disorder","endocrine system disorder","endocrinopathy","thyroid or other glandular disorders"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0008300\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0008300\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002320\",\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0015160\",\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0015770\",\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0015860\",\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"http://purl.obolibrary.org/obo/MONDO_0015514\",\"http://purl.obolibrary.org/obo/MONDO_0016565\",\"http://purl.obolibrary.org/obo/MONDO_0002254\",\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"http://purl.obolibrary.org/obo/MONDO_0019040\",\"http://purl.obolibrary.org/obo/MONDO_0100038\",\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"http://purl.obolibrary.org/obo/MONDO_0100500\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0002320\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015160\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015770\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015890-obsoleted\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0016565\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019040\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MESH:D011218\"}]}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0100038\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6733-369X\"}}]},\"http://purl.obolibrary.org/obo/MONDO_0100500\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002320\",\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0015160\",\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0015770\",\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0015860\",\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"http://purl.obolibrary.org/obo/MONDO_0015514\",\"http://purl.obolibrary.org/obo/MONDO_0016565\",\"http://purl.obolibrary.org/obo/MONDO_0002254\",\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"http://purl.obolibrary.org/obo/MONDO_0019040\",\"http://purl.obolibrary.org/obo/MONDO_0100038\",\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"http://purl.obolibrary.org/obo/MONDO_0100500\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0002320\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015160\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015770\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015890-obsoleted\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0016565\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019040\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MESH:D011218\"}]}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0100038\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6733-369X\"}}]},\"http://purl.obolibrary.org/obo/MONDO_0100500\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"GARD:5575\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:759.81\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D011218\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739/e\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MedDRA:10036476\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739/e\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C75463\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739/e\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:89392001\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0032897\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:ncbi_mim2gene_medline\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C75463\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739/e\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:11983\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Labhart-Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi-Labhart syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C75463\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Willi-Prader syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"PWS\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}],\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#ABBREVIATION\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome chromosome region\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi-like syndrome associated with chromosome 6\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"GARD:0005575\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"GARD:0005575\"},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#DEPRECATED\"}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0008300\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#gard_rare\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"GARD:0005575\"}}]},\"http://purl.obolibrary.org/obo/mondo#nord_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_disease\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://rarediseases.info.nih.gov/diseases/5575/prader-willi-syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"GARD:0005575\"}}]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0002320\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015160\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015770\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015890-obsoleted\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0016565\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019040\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MESH:D011218\"}]}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0100038\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6733-369X\"}}]},\"http://purl.obolibrary.org/obo/MONDO_0100500\"],\"http://www.w3.org/2004/02/skos/core#closeMatch\":\"http://identifiers.org/meddra/10036476\",\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D011218\",\"http://identifiers.org/snomedct/89392001\",\"http://linkedlifedata.com/resource/umls/id/C0032897\",\"http://purl.obolibrary.org/obo/DOID_11983\",\"http://purl.obolibrary.org/obo/NCIT_C75463\",\"http://www.orpha.net/ORDO/Orphanet_739\",\"https://omim.org/entry/176270\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"GARD:5575\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:759.81\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D011218\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739/e\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MedDRA:10036476\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739/e\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C75463\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739/e\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:89392001\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0032897\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:ncbi_mim2gene_medline\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C75463\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739/e\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:11983\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Labhart-Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi-Labhart syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C75463\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Willi-Prader syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"PWS\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}],\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#ABBREVIATION\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome chromosome region\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi-like syndrome associated with chromosome 6\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"GARD:0005575\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"GARD:0005575\"},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#DEPRECATED\"}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0008300\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0008300\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:11983\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Labhart-Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi-Labhart syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C75463\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Willi-Prader syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"PWS\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}],\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#ABBREVIATION\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome chromosome region\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi-like syndrome associated with chromosome 6\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"GARD:0005575\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"GARD:0005575\"},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#DEPRECATED\"}]}],\"synonymProperty\":[{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\"}],\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"MONDO:0008300\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0008300\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0008300\"},\"MedDRA:10036476\":{\"url\":\"http://bioportal.bioontology.org/ontologies/MEDDRA?p\\u003dclasses\\u0026conceptid\\u003d10036476\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MedDRA:10036476\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015770\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital hypogonadotropic hypogonadism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015770\"},\"type\":[\"class\",\"entity\"]},\"SCTID:89392001\":{\"url\":\"http://snomed.info/id/89392001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:89392001\"},\"GARD:0005575\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/0005575/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:0005575\"},\"http://purl.obolibrary.org/obo/MONDO_0019040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019042\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies/dysmorphic syndrome\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019042\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neurodevelopmental disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700092\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#closeMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has close match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"closeMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015127\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"pituitary deficiency\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015127\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0100500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mendelian neurodevelopmental disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0100500\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015514\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary endocrine growth disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015514\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0016565\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"syndromic genetic obesity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0016565\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0003916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"overnutrition\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002320\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital nervous system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002320\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019824\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"non-acquired pituitary hormone deficiency\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019824\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"OMIM:176270\":{\"url\":\"https://omim.org/entry/176270\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"OMIM:176270\"},\"http://purl.obolibrary.org/obo/MONDO_0015860\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015860\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_11983\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_11983\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:11983\"},\"http://purl.obolibrary.org/obo/MONDO_0002259\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002259\"},\"type\":[\"class\",\"entity\"]},\"DOID:11983\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_11983\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:11983\"},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasSynonymType\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasSynonymType\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002254\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"syndromic disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002254\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Orphanet:739\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d739\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:739\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GARD:5575\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/5575/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:5575\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015330\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"overgrowth/obesity syndrome\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015330\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C75463\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C75463\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C75463\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015160\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hypogonadism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005137\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005137\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002263\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0011122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"obesity disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0011122\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0018555\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0018555\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"entity\"]},\"MESH:D011218\":{\"url\":\"http://id.nlm.nih.gov/mesh/D011218\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D011218\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0015890\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015890\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015890\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019755\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"type\":[\"class\",\"entity\"]},\"NCIT:C75463\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C75463\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C75463\"},\"UMLS:C0032897\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0032897\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0032897\"},\"http://purl.obolibrary.org/obo/MONDO_0016072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle of genetic origin\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0016072\"},\"type\":[\"class\",\"entity\"]},\"https://orcid.org/0000-0002-6733-369X\":{\"url\":\"https://orcid.org/0000-0002-6733-369X\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-6733-369X\"},\"http://purl.obolibrary.org/obo/MONDO_0019182\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited obesity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019182\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021147\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0100038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"complex neurodevelopmental disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0100038\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},\"type\":[\"class\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_739\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_739\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:739\"},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0008300","definition":"Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0002320","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0015160","http://purl.obolibrary.org/obo/MONDO_0019042","http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0015770","http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0015860","http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0018555","http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0019824","http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0015514","http://purl.obolibrary.org/obo/MONDO_0016565","http://purl.obolibrary.org/obo/MONDO_0002254","http://purl.obolibrary.org/obo/MONDO_0015330","http://purl.obolibrary.org/obo/MONDO_0019182","http://purl.obolibrary.org/obo/MONDO_0011122","http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137","http://purl.obolibrary.org/obo/MONDO_0019040","http://purl.obolibrary.org/obo/MONDO_0100038","http://purl.obolibrary.org/obo/MONDO_0700092","http://purl.obolibrary.org/obo/MONDO_0100500"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0002320","http://purl.obolibrary.org/obo/MONDO_0015160","http://purl.obolibrary.org/obo/MONDO_0015770","http://purl.obolibrary.org/obo/MONDO_0016565","http://purl.obolibrary.org/obo/MONDO_0019040","http://purl.obolibrary.org/obo/MONDO_0100038","http://purl.obolibrary.org/obo/MONDO_0100500"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0002320","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0015160","http://purl.obolibrary.org/obo/MONDO_0019042","http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0015770","http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0015860","http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0018555","http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0019824","http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0015514","http://purl.obolibrary.org/obo/MONDO_0016565","http://purl.obolibrary.org/obo/MONDO_0002254","http://purl.obolibrary.org/obo/MONDO_0015330","http://purl.obolibrary.org/obo/MONDO_0019182","http://purl.obolibrary.org/obo/MONDO_0011122","http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137","http://purl.obolibrary.org/obo/MONDO_0019040","http://purl.obolibrary.org/obo/MONDO_0100038","http://purl.obolibrary.org/obo/MONDO_0700092","http://purl.obolibrary.org/obo/MONDO_0100500"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0002320","http://purl.obolibrary.org/obo/MONDO_0015160","http://purl.obolibrary.org/obo/MONDO_0015770","http://purl.obolibrary.org/obo/MONDO_0016565","http://purl.obolibrary.org/obo/MONDO_0019040","http://purl.obolibrary.org/obo/MONDO_0100038","http://purl.obolibrary.org/obo/MONDO_0100500"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:11983","GARD:5575","ICD9:759.81","MESH:D011218","MedDRA:10036476","NCIT:C75463","OMIM:176270","Orphanet:739","SCTID:89392001","UMLS:C0032897"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["Prader Willi syndrome","Prader-Labhart-Willi syndrome","Prader-Willi syndrome","Prader-Willi-Labhart syndrome","Willi-Prader syndrome"],"http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":["PWS","Prader-Willi syndrome chromosome region","Prader-Willi-like syndrome associated with chromosome 6","obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet","obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0008300","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#nord_rare","http://purl.obolibrary.org/obo/mondo#ordo_disease","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Prader-Willi syndrome","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"https://rarediseases.info.nih.gov/diseases/5575/prader-willi-syndrome","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0002320","http://purl.obolibrary.org/obo/MONDO_0015160","http://purl.obolibrary.org/obo/MONDO_0015770","http://purl.obolibrary.org/obo/MONDO_0016565","http://purl.obolibrary.org/obo/MONDO_0019040","http://purl.obolibrary.org/obo/MONDO_0100038","http://purl.obolibrary.org/obo/MONDO_0100500"],"http__//www.w3.org/2004/02/skos/core#closeMatch":"http://identifiers.org/meddra/10036476","http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D011218","http://identifiers.org/snomedct/89392001","http://linkedlifedata.com/resource/umls/id/C0032897","http://purl.obolibrary.org/obo/DOID_11983","http://purl.obolibrary.org/obo/NCIT_C75463","http://www.orpha.net/ORDO/Orphanet_739","https://omim.org/entry/176270"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0008300","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0008300","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Prader-Willi syndrome","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.","DOID:11983","GARD:5575","ICD9:759.81","MESH:D011218","MedDRA:10036476","NCIT:C75463","OMIM:176270","Orphanet:739","SCTID:89392001","UMLS:C0032897","Prader Willi syndrome","Prader-Labhart-Willi syndrome","Prader-Willi syndrome","Prader-Willi-Labhart syndrome","Willi-Prader syndrome","PWS","Prader-Willi syndrome chromosome region","Prader-Willi-like syndrome associated with chromosome 6","obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet","obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet","MONDO:0008300","false"],"shortForm":"MONDO_0008300","synonym":["Prader Willi syndrome","Prader-Labhart-Willi syndrome","Prader-Willi syndrome","Prader-Willi-Labhart syndrome","Willi-Prader syndrome","PWS","Prader-Willi syndrome chromosome region","Prader-Willi-like syndrome associated with chromosome 6","obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet","obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet"],"synonymProperty":["http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"],"type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0011122\"},\"definition\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder involving an excessive amount of body fat.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"https://www.ama-assn.org/sites/default/files/media-browser/public/about-ama/councils/Council%20Reports/council-on-science-public-health/a13csaph3.pdf\"},{\"type\":[\"literal\"],\"value\":\"https://www.mayoclinic.org/diseases-conditions/obesity/symptoms-causes/syc-20375742\"}]}]},{\"type\":[\"literal\"],\"value\":\"Obesity is a complex disease that may involve multiple environmental and genetic causes. See the subclass monogenic disease for genetic subtypes\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:9970\"}}]},\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:9970\"}}]},\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder involving an excessive amount of body fat.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"https://www.ama-assn.org/sites/default/files/media-browser/public/about-ama/councils/Council%20Reports/council-on-science-public-health/a13csaph3.pdf\"},{\"type\":[\"literal\"],\"value\":\"https://www.mayoclinic.org/diseases-conditions/obesity/symptoms-causes/syc-20375742\"}]}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"HP:0001513\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:otherHierarchy\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:278.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:278.00\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3283\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:otherHierarchy\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NIFSTD:nlx_dys_20090302\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:521399\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentObsolete\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:414916001\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0028754\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:ncbi_mim2gene_medline\"},{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:ambiguous\"},{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"}]}]},{\"type\":[\"literal\"],\"value\":\"obesity disease\"}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0011122\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Obesity is a complex disease that may involve multiple environmental and genetic causes. See the subclass monogenic disease for genetic subtypes\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obesity disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:9970\"}}]},\"http://purl.obolibrary.org/obo/OGMS_0000031\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004029\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/HP_0001513\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0000001\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004029\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/HP_0001513\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/snomedct/414916001\",\"http://linkedlifedata.com/resource/umls/id/C0028754\",\"http://purl.obolibrary.org/obo/DOID_9970\",\"http://purl.obolibrary.org/obo/NCIT_C3283\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obesity disorder\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004029\",\"value\":\"http://purl.obolibrary.org/obo/HP_0001513\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004029\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/HP_0001513\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder involving an excessive amount of body fat.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"https://www.ama-assn.org/sites/default/files/media-browser/public/about-ama/councils/Council%20Reports/council-on-science-public-health/a13csaph3.pdf\"},{\"type\":[\"literal\"],\"value\":\"https://www.mayoclinic.org/diseases-conditions/obesity/symptoms-causes/syc-20375742\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"HP:0001513\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:otherHierarchy\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:278.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:278.00\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3283\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:otherHierarchy\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NIFSTD:nlx_dys_20090302\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:521399\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentObsolete\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:414916001\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0028754\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:ncbi_mim2gene_medline\"},{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:ambiguous\"},{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"}]}]},{\"type\":[\"literal\"],\"value\":\"obesity disease\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0011122\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0011122\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:ambiguous\"},{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"}]}]},{\"type\":[\"literal\"],\"value\":\"obesity disease\"}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"EFO:0001073\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0001073\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0001073\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0003916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"overnutrition\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003916\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0011122\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0011122\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"UMLS:C0028754\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0028754\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0028754\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C3283\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C3283\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C3283\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004029\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has feature\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004029\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"OMIM:601665\":{\"url\":\"https://omim.org/entry/601665\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"OMIM:601665\"},\"http://purl.obolibrary.org/obo/MONDO_0005137\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005137\"},\"type\":[\"class\",\"entity\"]},\"DOID:9970\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_9970\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:9970\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"SCTID:414916001\":{\"url\":\"http://snomed.info/id/414916001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:414916001\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Orphanet:521399\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d521399\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:521399\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"NCIT:C3283\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C3283\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C3283\"},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"HP:0001513\":{\"url\":\"http://purl.obolibrary.org/obo/HP_0001513\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"HP:0001513\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_9970\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_9970\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:9970\"},\"http://purl.obolibrary.org/obo/HP_0001513\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Obesity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"HP:0001513\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0011122","definition":["A disorder involving an excessive amount of body fat.","Obesity is a complex disease that may involve multiple environmental and genetic causes. See the subclass monogenic disease for genetic subtypes"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/OGMS_0000031"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disorder involving an excessive amount of body fat.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:9970","EFO:0001073","HP:0001513","ICD9:278.0","ICD9:278.00","NCIT:C3283","NIFSTD:nlx_dys_20090302","Orphanet:521399","SCTID:414916001","UMLS:C0028754"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["obesity","obesity disease"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0011122","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Obesity is a complex disease that may involve multiple environmental and genetic causes. See the subclass monogenic disease for genetic subtypes","http__//www.w3.org/2000/01/rdf-schema#label":"obesity disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/OGMS_0000031"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/snomedct/414916001","http://linkedlifedata.com/resource/umls/id/C0028754","http://purl.obolibrary.org/obo/DOID_9970","http://purl.obolibrary.org/obo/NCIT_C3283"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0011122","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0011122","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"obesity disorder","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/HP_0001513","searchableAnnotationValues":["A disorder involving an excessive amount of body fat.","DOID:9970","EFO:0001073","HP:0001513","ICD9:278.0","ICD9:278.00","NCIT:C3283","NIFSTD:nlx_dys_20090302","Orphanet:521399","SCTID:414916001","UMLS:C0028754","obesity","obesity disease","MONDO:0011122","false"],"shortForm":"MONDO_0011122","synonym":["obesity","obesity disease"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015127\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Editor note: in ORDO, Orphanet:101957 is classified as genetic, yet has acquired subtypes\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015889-obsoleted\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015889-obsoleted\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015968\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:101957\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:19801\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:E23.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:101957\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:101957/e\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:101957/specific\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:101957\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0020635\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:101957\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015127\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:101957\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Editor note: in ORDO, Orphanet:101957 is classified as genetic, yet has acquired subtypes\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"pituitary deficiency\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015889-obsoleted\"}}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":\"http://www.orpha.net/ORDO/Orphanet_101957\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"pituitary deficiency\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"GARD:19801\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:E23.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:101957\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:101957/e\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:101957/specific\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:101957\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0020635\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:101957\"}]}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0015127\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0015127\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"UMLS:C0020635\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0020635\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0020635\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_101957\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_101957\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:101957\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015968\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015968\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"mondo:0015968\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Orphanet:101957\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d101957\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:101957\"},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"excluded_subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"excluded:subClassOf\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0015127\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015127\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"GARD:19801\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/19801/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:19801\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0015889\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015889\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015889\"}}}","appearsIn":["gitissue502"],"curie":"MONDO:0015127","definition":"Editor note: in ORDO, Orphanet:101957 is classified as genetic, yet has acquired subtypes","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0005151","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0005151","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/mondo#excluded_subClassOf":"http://purl.obolibrary.org/obo/MONDO_0015968","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:19801","ICD10CM:E23.0","Orphanet:101957","UMLS:C0020635"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0015127","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Editor note: in ORDO, Orphanet:101957 is classified as genetic, yet has acquired subtypes","http__//www.w3.org/2000/01/rdf-schema#label":"pituitary deficiency","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0005151","http__//www.w3.org/2004/02/skos/core#exactMatch":"http://www.orpha.net/ORDO/Orphanet_101957","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015127","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0015127","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"pituitary deficiency","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["GARD:19801","ICD10CM:E23.0","Orphanet:101957","UMLS:C0020635","MONDO:0015127","false"],"shortForm":"MONDO_0015127","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0015160\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015160\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4069\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentObsolete\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MCA/variable MR\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015160\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4069\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentObsolete\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MCA/variable MR\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0015160\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0015160\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MCA/variable MR\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019042\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies/dysmorphic syndrome\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019042\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019755\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"type\":[\"class\",\"entity\"]},\"Orphanet:102284\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d102284\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:102284\"},\"MONDO:0015160\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015160\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015160\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021147\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0015160","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0019042","http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0019042","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0019042","http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0019042","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/4069","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"Orphanet:102284","http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["MCA/variable MR","multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0015160","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0019042","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015160","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0015160","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["https://github.com/monarch-initiative/mondo/issues/4069","Orphanet:102284","MCA/variable MR","multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome","MONDO:0015160","false"],"shortForm":"MONDO_0015160","synonym":["MCA/variable MR","multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015330\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletion effort for ORDO terms.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:139024\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:139024\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5114\"},\"http://purl.obolibrary.org/obo/IAO_0006012\":{\"type\":[\"literal\"],\"value\":\"2023-10-01\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:19903\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:139024\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN199360\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015330\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",\"http://purl.obolibrary.org/obo/mondo#obsoletion_candidate\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:139024\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletion effort for ORDO terms.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"overgrowth/obesity syndrome\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:139024\"}}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://linkedlifedata.com/resource/umls/id/CN199360\",\"http://www.orpha.net/ORDO/Orphanet_139024\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"overgrowth/obesity syndrome\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5114\"},{\"type\":[\"literal\"],\"value\":\"2023-10-01\"},{\"type\":[\"literal\"],\"value\":\"GARD:19903\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:139024\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN199360\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0015330\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0015330\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0006012\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0006012\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0006012\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"GARD:19903\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/19903/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:19903\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0015330\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015330\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"Orphanet:139024\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d139024\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:139024\"},\"http://purl.obolibrary.org/obo/MONDO_0019755\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"type\":[\"class\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_139024\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_139024\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:139024\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021147\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0015330","definition":"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletion effort for ORDO terms.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0019755","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0019755","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/5114","http__//purl.obolibrary.org/obo/IAO_0006012":"2023-10-01","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:19903","Orphanet:139024","UMLS:CN199360"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0015330","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#obsoletion_candidate","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletion effort for ORDO terms.","http__//www.w3.org/2000/01/rdf-schema#label":"overgrowth/obesity syndrome","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0019755","http__//www.w3.org/2004/02/skos/core#exactMatch":["http://linkedlifedata.com/resource/umls/id/CN199360","http://www.orpha.net/ORDO/Orphanet_139024"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015330","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0015330","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"overgrowth/obesity syndrome","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["https://github.com/monarch-initiative/mondo/issues/5114","2023-10-01","GARD:19903","Orphanet:139024","UMLS:CN199360","MONDO:0015330","false"],"shortForm":"MONDO_0015330","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0015514\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015514\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:20012\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D006130\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN237424\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic endocrine growth disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"growth disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015514\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hereditary endocrine growth disease\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"}}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},{\"type\":[\"reification\"],\"value\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015513\"}}]}],\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D006130\",\"http://linkedlifedata.com/resource/umls/id/CN237424\",\"http://www.orpha.net/ORDO/Orphanet_156643\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary endocrine growth disease\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"GARD:20012\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D006130\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN237424\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic endocrine growth disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"growth disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0015514\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0015514\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic endocrine growth disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"growth disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"rare\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021136\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0015514\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015514\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015514\"},\"MONDO:0015513\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015513\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015513\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"GARD:20012\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/20012/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:20012\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_156643\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_156643\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:156643\"},\"Orphanet:156643\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d156643\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:156643\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"MESH:D006130\":{\"url\":\"http://id.nlm.nih.gov/mesh/D006130\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D006130\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0015514","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0005151","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0005151","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:20012","MESH:D006130","Orphanet:156643","UMLS:CN237424"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["genetic endocrine growth disease","growth disorder"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0015514","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hereditary endocrine growth disease","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0005151"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D006130","http://linkedlifedata.com/resource/umls/id/CN237424","http://www.orpha.net/ORDO/Orphanet_156643"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015514","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0015514","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hereditary endocrine growth disease","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/MONDO_0021136","searchableAnnotationValues":["GARD:20012","MESH:D006130","Orphanet:156643","UMLS:CN237424","genetic endocrine growth disease","growth disorder","MONDO:0015514","false"],"shortForm":"MONDO_0015514","synonym":["genetic endocrine growth disease","growth disorder"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0015770\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015770\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0015860\",\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"http://purl.obolibrary.org/obo/MONDO_0015514\"],\"directParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}]}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"NCIT:C120162\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}}]}],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0015860\",\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"http://purl.obolibrary.org/obo/MONDO_0015514\"],\"hierarchicalParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}]}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"NCIT:C120162\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:20135\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:E23.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590/attributed\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590/ntbt\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C120162\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:722944006\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C3899503\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C120162\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015770\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"congenital hypogonadotropic hypogonadism\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}]}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"NCIT:C120162\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}}]}],\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/snomedct/722944006\",\"http://linkedlifedata.com/resource/umls/id/C3899503\",\"http://purl.obolibrary.org/obo/NCIT_C120162\",\"http://www.orpha.net/ORDO/Orphanet_174590\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital hypogonadotropic hypogonadism\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}}]},{\"type\":[\"literal\"],\"value\":\"GARD:20135\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:E23.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590/attributed\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590/ntbt\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C120162\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:722944006\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C3899503\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C120162\"}]}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0015770\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0015770\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/MONDO_0002259\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002259\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Orphanet:174590\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d174590\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:174590\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hypogonadism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002263\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015127\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"pituitary deficiency\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015127\"},\"type\":[\"class\",\"entity\"]},\"GARD:20135\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/20135/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:20135\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0018555\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0018555\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0015770\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015770\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015770\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"UMLS:C3899503\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C3899503\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C3899503\"},\"http://purl.obolibrary.org/obo/MONDO_0015514\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary endocrine growth disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015514\"},\"type\":[\"class\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_174590\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_174590\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:174590\"},\"NCIT:C120162\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C120162\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C120162\"},\"SCTID:722944006\":{\"url\":\"http://snomed.info/id/722944006\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:722944006\"},\"http://purl.obolibrary.org/obo/MONDO_0016072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle of genetic origin\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0016072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C120162\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C120162\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C120162\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019824\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"non-acquired pituitary hormone deficiency\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019824\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015860\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015860\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0015770","definition":"Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0015860","http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0018555","http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0019824","http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0015514"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0018555","http://purl.obolibrary.org/obo/MONDO_0019824"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0015860","http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0018555","http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0019824","http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0015514"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0018555","http://purl.obolibrary.org/obo/MONDO_0019824"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:20135","ICD10CM:E23.0","NCIT:C120162","Orphanet:174590","SCTID:722944006","UMLS:C3899503"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0015770","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"congenital hypogonadotropic hypogonadism","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0018555","http://purl.obolibrary.org/obo/MONDO_0019824"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/snomedct/722944006","http://linkedlifedata.com/resource/umls/id/C3899503","http://purl.obolibrary.org/obo/NCIT_C120162","http://www.orpha.net/ORDO/Orphanet_174590"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015770","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0015770","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"congenital hypogonadotropic hypogonadism","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).","GARD:20135","ICD10CM:E23.0","NCIT:C120162","Orphanet:174590","SCTID:722944006","UMLS:C3899503","MONDO:0015770","false"],"shortForm":"MONDO_0015770","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0015860\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015860\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019937-obsoleted\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019937-obsoleted\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5114\"},\"http://purl.obolibrary.org/obo/IAO_0006012\":{\"type\":[\"literal\"],\"value\":\"2023-09-01\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:20200\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:180208\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015860\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",\"http://purl.obolibrary.org/obo/mondo#obsoletion_candidate\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:180208\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019937-obsoleted\"}}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":\"http://www.orpha.net/ORDO/Orphanet_180208\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5114\"},{\"type\":[\"literal\"],\"value\":\"2023-09-01\"},{\"type\":[\"literal\"],\"value\":\"GARD:20200\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:180208\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0015860\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0015860\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"GARD:20200\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/20200/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:20200\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0006012\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0006012\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0006012\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Orphanet:180208\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d180208\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:180208\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0015860\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015860\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015860\"},\"http://purl.obolibrary.org/obo/MONDO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002263\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"MONDO:0019937\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0019937\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0019937\"},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_180208\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_180208\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:180208\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0015860","definition":"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0002263","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0002263","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/5114","http__//purl.obolibrary.org/obo/IAO_0006012":"2023-09-01","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:20200","Orphanet:180208"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0015860","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#obsoletion_candidate","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","http__//www.w3.org/2000/01/rdf-schema#label":"anomaly of puberty or/and menstrual cycle","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0002263","http__//www.w3.org/2004/02/skos/core#exactMatch":"http://www.orpha.net/ORDO/Orphanet_180208","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015860","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0015860","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anomaly of puberty or/and menstrual cycle","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["https://github.com/monarch-initiative/mondo/issues/5114","2023-09-01","GARD:20200","Orphanet:180208","MONDO:0015860","false"],"shortForm":"MONDO_0015860","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0016072\"},\"definition\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"}}]},{\"type\":[\"literal\"],\"value\":\"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0015860\",\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0015860\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0015860\",\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0015860\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"}}]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5114\"},\"http://purl.obolibrary.org/obo/IAO_0006012\":{\"type\":[\"literal\"],\"value\":\"2023-09-01\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:20341\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:202940\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic anomaly of puberty or/and menstrual cycle\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"}}]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0016072\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",\"http://purl.obolibrary.org/obo/mondo#obsoletion_candidate\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:202940\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle of genetic origin\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0015860\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},{\"type\":[\"reification\"],\"value\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015980\"}}]}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0015860\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":\"http://www.orpha.net/ORDO/Orphanet_202940\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle of genetic origin\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"}}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5114\"},{\"type\":[\"literal\"],\"value\":\"2023-09-01\"},{\"type\":[\"literal\"],\"value\":\"GARD:20341\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:202940\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic anomaly of puberty or/and menstrual cycle\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0016072\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0016072\"},\"synonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic anomaly of puberty or/and menstrual cycle\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"}}]},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"rare\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021136\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0006012\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0006012\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0006012\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0015980\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015980\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015980\"},\"http://purl.obolibrary.org/obo/MONDO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002263\"},\"type\":[\"class\",\"entity\"]},\"Orphanet:202940\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d202940\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:202940\"},\"MONDO:0016072\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0016072\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021152\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021152\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"GARD:20341\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/20341/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:20341\"},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_202940\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_202940\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:202940\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015860\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015860\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0016072","definition":["An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\u0027s genome.","Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0015860","http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0015860"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0015860","http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0015860"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\u0027s genome.","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/5114","http__//purl.obolibrary.org/obo/IAO_0006012":"2023-09-01","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:20341","Orphanet:202940"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":"genetic anomaly of puberty or/and menstrual cycle","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0016072","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#obsoletion_candidate","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","http__//www.w3.org/2000/01/rdf-schema#label":"anomaly of puberty or/and menstrual cycle of genetic origin","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0015860"],"http__//www.w3.org/2004/02/skos/core#exactMatch":"http://www.orpha.net/ORDO/Orphanet_202940","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0016072","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0016072","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anomaly of puberty or/and menstrual cycle of genetic origin","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/MONDO_0021136","searchableAnnotationValues":["An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\u0027s genome.","https://github.com/monarch-initiative/mondo/issues/5114","2023-09-01","GARD:20341","Orphanet:202940","genetic anomaly of puberty or/and menstrual cycle","MONDO:0016072","false"],"shortForm":"MONDO_0016072","synonym":"genetic anomaly of puberty or/and menstrual cycle","synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0016565\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0016565\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002254\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"http://purl.obolibrary.org/obo/MONDO_0005137\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0002254\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Entailed\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"}]}]}],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002254\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"http://purl.obolibrary.org/obo/MONDO_0005137\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0002254\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Entailed\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"}]}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5114\"},\"http://purl.obolibrary.org/obo/IAO_0006012\":{\"type\":[\"literal\"],\"value\":\"2023-09-01\"},\"http://purl.org/dc/terms/conformsTo\":\"http://purl.obolibrary.org/obo/mondo/patterns/syndromic.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:20650\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN226963\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome associated with obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0016565\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",\"http://purl.obolibrary.org/obo/mondo#obsoletion_candidate\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"syndromic genetic obesity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0002254\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Entailed\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"}]}]}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0019182\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021127\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://linkedlifedata.com/resource/umls/id/CN226963\",\"http://www.orpha.net/ORDO/Orphanet_240371\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"syndromic genetic obesity\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5114\"},{\"type\":[\"literal\"],\"value\":\"2023-09-01\"},{\"type\":[\"literal\"],\"value\":\"GARD:20650\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN226963\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome associated with obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0016565\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0016565\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome associated with obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"MONDO:0016565\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0016565\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0016565\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021127\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has a syndromic presentation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021127\"},\"type\":[\"class\",\"entity\"]},\"GARD:20650\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/20650/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:20650\"},\"http://www.orpha.net/ORDO/Orphanet_240371\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_240371\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:240371\"},\"Orphanet:240371\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d240371\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:240371\"},\"http://purl.obolibrary.org/obo/MONDO_0003916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"overnutrition\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002254\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"syndromic disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002254\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0006012\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0006012\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0006012\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015330\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"overgrowth/obesity syndrome\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015330\"},\"type\":[\"class\",\"entity\"]},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005137\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005137\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0011122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"obesity disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0011122\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019755\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019182\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited obesity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019182\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021147\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0016565","definition":"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0002254","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0015330","http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0019182","http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0011122","http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0002254","http://purl.obolibrary.org/obo/MONDO_0015330","http://purl.obolibrary.org/obo/MONDO_0019182"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0002254","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0015330","http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0019182","http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0011122","http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0002254","http://purl.obolibrary.org/obo/MONDO_0015330","http://purl.obolibrary.org/obo/MONDO_0019182"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/5114","http__//purl.obolibrary.org/obo/IAO_0006012":"2023-09-01","http__//purl.org/dc/terms/conformsTo":"http://purl.obolibrary.org/obo/mondo/patterns/syndromic.yaml","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:20650","Orphanet:240371","UMLS:CN226963"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["syndrome associated with obesity (disease)","syndromic obesity (disease)"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0016565","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#obsoletion_candidate","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","http__//www.w3.org/2000/01/rdf-schema#label":"syndromic genetic obesity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0002254","http://purl.obolibrary.org/obo/MONDO_0015330","http://purl.obolibrary.org/obo/MONDO_0019182"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://linkedlifedata.com/resource/umls/id/CN226963","http://www.orpha.net/ORDO/Orphanet_240371"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0016565","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0016565","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"syndromic genetic obesity","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["https://github.com/monarch-initiative/mondo/issues/5114","2023-09-01","GARD:20650","Orphanet:240371","UMLS:CN226963","syndrome associated with obesity (disease)","syndromic obesity (disease)","MONDO:0016565","false"],"shortForm":"MONDO_0016565","synonym":["syndrome associated with obesity (disease)","syndromic obesity (disease)"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0018555\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0003847\"],\"directParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}]}]},\"http://purl.obolibrary.org/obo/MONDO_0003847\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0003847\"],\"hierarchicalParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}]}]},\"http://purl.obolibrary.org/obo/MONDO_0003847\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},\"http://purl.obolibrary.org/obo/mondo#should_conform_to\":\"http://purl.obolibrary.org/obo/mondo/patterns/OMIM_phenotypic_series.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:7455\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentObsolete\"}}]},{\"type\":[\"literal\"],\"value\":\"GARD:16533\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"HP:0000044\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:otherHierarchy\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:E23.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:432/inclusion\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:432/ntbt\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:253.4\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OMIMPS:147950\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:33927004\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN235466\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Normosmic idiopathic hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"central hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadotropic deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"literal\"],\"value\":\"hypogonadism, hypogonadotropic\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism with or without anosmia\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIMPS:147950\"}}]},{\"type\":[\"literal\"],\"value\":\"low gonadotropins (secondary hypogonadism)\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nIHH\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"normosmic congenital hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"secondary hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital idiopathic hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"isolated congenital gonadotropin deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:0004228\"}}]},{\"type\":[\"literal\"],\"value\":\"isolated hypogonadotropic hypogonadism\"}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0018555\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#gard_rare\",\"http://purl.obolibrary.org/obo/mondo#nord_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_disease\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}]}]},\"http://purl.obolibrary.org/obo/MONDO_0003847\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0005183\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0002146\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0005183\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/snomedct/33927004\",\"http://linkedlifedata.com/resource/umls/id/CN235466\",\"http://purl.obolibrary.org/obo/DOID_0090070\",\"http://purl.obolibrary.org/obo/NCIT_C113347\",\"http://www.orpha.net/ORDO/Orphanet_432\",\"https://omim.org/phenotypicSeries/PS147950\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"value\":\"http://purl.obolibrary.org/obo/GO_0005183\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0005183\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:7455\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentObsolete\"}}]},{\"type\":[\"literal\"],\"value\":\"GARD:16533\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"HP:0000044\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:otherHierarchy\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:E23.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:432/inclusion\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:432/ntbt\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:253.4\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OMIMPS:147950\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:33927004\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN235466\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Normosmic idiopathic hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"central hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadotropic deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"literal\"],\"value\":\"hypogonadism, hypogonadotropic\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism with or without anosmia\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIMPS:147950\"}}]},{\"type\":[\"literal\"],\"value\":\"low gonadotropins (secondary hypogonadism)\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nIHH\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"normosmic congenital hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"secondary hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital idiopathic hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"isolated congenital gonadotropin deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:0004228\"}}]},{\"type\":[\"literal\"],\"value\":\"isolated hypogonadotropic hypogonadism\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0018555\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0018555\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Normosmic idiopathic hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"central hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadotropic deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"literal\"],\"value\":\"hypogonadism, hypogonadotropic\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism with or without anosmia\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIMPS:147950\"}}]},{\"type\":[\"literal\"],\"value\":\"low gonadotropins (secondary hypogonadism)\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nIHH\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"normosmic congenital hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"secondary hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital idiopathic hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"isolated congenital gonadotropin deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:0004228\"}}]},{\"type\":[\"literal\"],\"value\":\"isolated hypogonadotropic hypogonadism\"}],\"synonymProperty\":[{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\"}],\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"SCTID:33927004\":{\"url\":\"http://snomed.info/id/33927004\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:33927004\"},\"NCIT:C113347\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C113347\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C113347\"},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0005183\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonadotropin hormone-releasing hormone activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005183\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0004228\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0004228\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0004228\"},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasNarrowSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasNarrowSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Orphanet:432\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d432\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:432\"},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0018555\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0018555\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"GARD:16533\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/16533/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:16533\"},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002259\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002259\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_0090070\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_0090070\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:0090070\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_432\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_432\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:432\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hypogonadism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004021\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease caused by disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease has basis in disruption of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004021\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/mondo#should_conform_to\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"should_conform_to\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"should:conform_to\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"DOID:0090070\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_0090070\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:0090070\"},\"http://purl.obolibrary.org/obo/NCIT_C113347\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C113347\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C113347\"},\"HP:0000044\":{\"url\":\"http://purl.obolibrary.org/obo/HP_0000044\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"HP:0000044\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"DOID:7455\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_7455\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:7455\"},\"OMIMPS:147950\":{\"url\":\"https://omim.org/MIM:PS147950\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OMIMPS:147950\"},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0018555","definition":"Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0003847"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0003847"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0003847"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0003847"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.","http__//purl.obolibrary.org/obo/mondo#should_conform_to":"http://purl.obolibrary.org/obo/mondo/patterns/OMIM_phenotypic_series.yaml","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:0090070","DOID:7455","GARD:16533","HP:0000044","ICD10CM:E23.0","ICD9:253.4","NCIT:C113347","OMIMPS:147950","Orphanet:432","SCTID:33927004","UMLS:CN235466"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["Normosmic idiopathic hypogonadotropic hypogonadism","central hypogonadism","gonadotropic deficiency","hypogonadism, hypogonadotropic","hypogonadotropic hypogonadism","hypogonadotropic hypogonadism with or without anosmia","low gonadotropins (secondary hypogonadism)","nIHH","normosmic congenital hypogonadotropic hypogonadism","secondary hypogonadism"],"http__//www.geneontology.org/formats/oboInOwl#hasNarrowSynonym":["congenital idiopathic hypogonadotropic hypogonadism","isolated congenital gonadotropin deficiency"],"http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":["hypogonadotropism","isolated hypogonadotropic hypogonadism"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0018555","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#nord_rare","http://purl.obolibrary.org/obo/mondo#ordo_disease","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hypogonadotropic hypogonadism","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0003847"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/snomedct/33927004","http://linkedlifedata.com/resource/umls/id/CN235466","http://purl.obolibrary.org/obo/DOID_0090070","http://purl.obolibrary.org/obo/NCIT_C113347","http://www.orpha.net/ORDO/Orphanet_432","https://omim.org/phenotypicSeries/PS147950"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0018555","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0018555","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hypogonadotropic hypogonadism","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0005183","searchableAnnotationValues":["Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.","DOID:0090070","DOID:7455","GARD:16533","HP:0000044","ICD10CM:E23.0","ICD9:253.4","NCIT:C113347","OMIMPS:147950","Orphanet:432","SCTID:33927004","UMLS:CN235466","Normosmic idiopathic hypogonadotropic hypogonadism","central hypogonadism","gonadotropic deficiency","hypogonadism, hypogonadotropic","hypogonadotropic hypogonadism","hypogonadotropic hypogonadism with or without anosmia","low gonadotropins (secondary hypogonadism)","nIHH","normosmic congenital hypogonadotropic hypogonadism","secondary hypogonadism","congenital idiopathic hypogonadotropic hypogonadism","isolated congenital gonadotropin deficiency","hypogonadotropism","isolated hypogonadotropic hypogonadism","MONDO:0018555","false"],"shortForm":"MONDO_0018555","synonym":["Normosmic idiopathic hypogonadotropic hypogonadism","central hypogonadism","gonadotropic deficiency","hypogonadism, hypogonadotropic","hypogonadotropic hypogonadism","hypogonadotropic hypogonadism with or without anosmia","low gonadotropins (secondary hypogonadism)","nIHH","normosmic congenital hypogonadotropic hypogonadism","secondary hypogonadism","congenital idiopathic hypogonadotropic hypogonadism","isolated congenital gonadotropin deficiency","hypogonadotropism","isolated hypogonadotropic hypogonadism"],"synonymProperty":["http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"],"type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0019040\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019040\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-0736-9199\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}]}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-0736-9199\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}]}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0080014\"},{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C34470\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:68335\"}]}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68335\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:0080014\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"GARD:18874\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:Q90-Q99\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/4536\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:758.89\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C34470\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68335\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:409709004\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000838\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders, chromosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders, chromosome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"autosomal chromosome disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"autosomal chromosome disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome abnormality disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome abnormality disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorder, autosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorders, autosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosome abnormality\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019040\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68335\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\",\"http://purl.obolibrary.org/obo/mondo#rare_grouping\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-0736-9199\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}]}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},{\"type\":[\"reification\"],\"value\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021198\"}}]}],\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D025063\",\"http://identifiers.org/snomedct/409709004\",\"http://purl.bioontology.org/ontology/ICD10CM/Q90-Q99\",\"http://purl.obolibrary.org/obo/DOID_0080014\",\"http://purl.obolibrary.org/obo/NCIT_C34470\",\"http://www.orpha.net/ORDO/Orphanet_68335\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorder\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:0080014\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"GARD:18874\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:Q90-Q99\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/4536\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:758.89\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C34470\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68335\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:409709004\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000838\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders, chromosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders, chromosome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"autosomal chromosome disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"autosomal chromosome disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome abnormality disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome abnormality disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorder, autosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorders, autosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosome abnormality\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0019040\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0019040\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000838\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders, chromosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders, chromosome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"autosomal chromosome disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"autosomal chromosome disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome abnormality disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome abnormality disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorder, autosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorders, autosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosome abnormality\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]}],\"synonymProperty\":[{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\"}],\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/MONDO_0021136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"rare\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021136\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0021198\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021198\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021198\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0002-0736-9199\":{\"url\":\"https://orcid.org/0000-0002-0736-9199\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-0736-9199\"},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"Orphanet:68335\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d68335\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:68335\"},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MESH:D025063\":{\"url\":\"http://id.nlm.nih.gov/mesh/D025063\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D025063\"},\"http://purl.obolibrary.org/obo/DOID_0080014\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_0080014\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:0080014\"},\"NCIT:C34470\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C34470\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C34470\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"https://orcid.org/0000-0002-1780-5230\":{\"url\":\"https://orcid.org/0000-0002-1780-5230\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-1780-5230\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C34470\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C34470\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C34470\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"SCTID:409709004\":{\"url\":\"http://snomed.info/id/409709004\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:409709004\"},\"https://orcid.org/0000-0002-4142-7153\":{\"url\":\"https://orcid.org/0000-0002-4142-7153\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-4142-7153\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0000838\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0000838\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0000838\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019755\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"excluded_subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"excluded:subClassOf\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"DOID:0080014\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_0080014\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:0080014\"},\"GARD:18874\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/18874/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:18874\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0019040\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0019040\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0019040\"},\"https://orcid.org/0000-0001-5208-3432\":{\"url\":\"https://orcid.org/0000-0001-5208-3432\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0001-5208-3432\"},\"http://www.orpha.net/ORDO/Orphanet_68335\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_68335\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:68335\"},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0019040","definition":"Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0700096","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0700096","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)","http__//purl.obolibrary.org/obo/mondo#excluded_subClassOf":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0019755"],"http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:0080014","GARD:18874","ICD10CM:Q90-Q99","ICD9:758.89","MESH:D025063","NCIT:C34470","Orphanet:68335","SCTID:409709004"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["chromosomal disease","chromosomal disorder","chromosomal disorders","chromosome disorder","disorder, chromosomal","disorder, chromosome","disorders, chromosomal","disorders, chromosome"],"http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":["autosomal chromosome disorder","autosomal chromosome disorders","chromosome abnormality disorder","chromosome abnormality disorders","chromosome disorder, autosomal","chromosome disorders, autosomal","disorder, chromosome abnormality"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0019040","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare","http://purl.obolibrary.org/obo/mondo#rare_grouping"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"chromosomal disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0700096"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D025063","http://identifiers.org/snomedct/409709004","http://purl.bioontology.org/ontology/ICD10CM/Q90-Q99","http://purl.obolibrary.org/obo/DOID_0080014","http://purl.obolibrary.org/obo/NCIT_C34470","http://www.orpha.net/ORDO/Orphanet_68335"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019040","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0019040","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"chromosomal disorder","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/MONDO_0021136","searchableAnnotationValues":["Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)","DOID:0080014","GARD:18874","ICD10CM:Q90-Q99","ICD9:758.89","MESH:D025063","NCIT:C34470","Orphanet:68335","SCTID:409709004","chromosomal disease","chromosomal disorder","chromosomal disorders","chromosome disorder","disorder, chromosomal","disorder, chromosome","disorders, chromosomal","disorders, chromosome","autosomal chromosome disorder","autosomal chromosome disorders","chromosome abnormality disorder","chromosome abnormality disorders","chromosome disorder, autosomal","chromosome disorders, autosomal","disorder, chromosome abnormality","MONDO:0019040","false"],"shortForm":"MONDO_0019040","synonym":["chromosomal disease","chromosomal disorder","chromosomal disorders","chromosome disorder","disorder, chromosomal","disorder, chromosome","disorders, chromosomal","disorders, chromosome","autosomal chromosome disorder","autosomal chromosome disorders","chromosome abnormality disorder","chromosome abnormality disorders","chromosome disorder, autosomal","chromosome disorders, autosomal","disorder, chromosome abnormality"],"synonymProperty":["http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"],"type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019042\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68341\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68341\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4069\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:18876\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68341\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MCAHS\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#ABBREVIATION\"}]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019042\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68341\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies/dysmorphic syndrome\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68341\"}}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false},{\"type\":[\"reification\"],\"value\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}}]}],\"http://www.w3.org/2004/02/skos/core#exactMatch\":\"http://www.orpha.net/ORDO/Orphanet_68341\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies/dysmorphic syndrome\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4069\"},{\"type\":[\"literal\"],\"value\":\"GARD:18876\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68341\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MCAHS\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#ABBREVIATION\"}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0019042\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0019042\"},\"synonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MCAHS\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#ABBREVIATION\"}]},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasSynonymType\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasSynonymType\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"https://orcid.org/0000-0002-4142-7153\":{\"url\":\"https://orcid.org/0000-0002-4142-7153\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-4142-7153\"},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"Orphanet:68341\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d68341\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:68341\"},\"http://purl.obolibrary.org/obo/MONDO_0019755\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"type\":[\"class\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_68341\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_68341\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:68341\"},\"http://purl.obolibrary.org/obo/MONDO_0021140\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021140\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021147\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0019042\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0019042\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"GARD:18876\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/18876/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:18876\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0019042","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0019755","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0019755","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/4069","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:18876","Orphanet:68341"],"http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":"MCAHS","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0019042","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multiple congenital anomalies/dysmorphic syndrome","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0019755"],"http__//www.w3.org/2004/02/skos/core#exactMatch":"http://www.orpha.net/ORDO/Orphanet_68341","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019042","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0019042","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multiple congenital anomalies/dysmorphic syndrome","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/MONDO_0021140","searchableAnnotationValues":["https://github.com/monarch-initiative/mondo/issues/4069","GARD:18876","Orphanet:68341","MCAHS","MONDO:0019042","false"],"shortForm":"MONDO_0019042","synonym":"MCAHS","synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019182\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"http://purl.obolibrary.org/obo/MONDO_0005137\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}]}]}],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"http://purl.obolibrary.org/obo/MONDO_0005137\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}]}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4521\"},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015960\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}}]},\"http://purl.org/dc/terms/conformsTo\":\"http://purl.obolibrary.org/obo/mondo/patterns/hereditary.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:18935\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"literal\"],\"value\":\"genetic obesity\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"leanness, inherited, autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"literal\"],\"value\":\"monogenic obesity\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, association with, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, early-onset, susceptibility to, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, late-onset, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, mild, early-onset, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, severe, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, severe, and type II diabetes, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, susceptibility to, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019182\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"inherited obesity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}]}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},{\"type\":[\"reification\"],\"value\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015513\"}}]}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0011122\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://www.orpha.net/ORDO/Orphanet_77828\",\"https://omim.org/entry/601665\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited obesity\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4521\"},{\"type\":[\"literal\"],\"value\":\"GARD:18935\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"genetic obesity\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"leanness, inherited, autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"literal\"],\"value\":\"monogenic obesity\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, association with, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, early-onset, susceptibility to, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, late-onset, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, mild, early-onset, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, severe, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, severe, and type II diabetes, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, susceptibility to, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0019182\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0019182\"},\"synonym\":[{\"type\":[\"literal\"],\"value\":\"genetic obesity\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"leanness, inherited, autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"literal\"],\"value\":\"monogenic obesity\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, association with, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, early-onset, susceptibility to, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, late-onset, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, mild, early-onset, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, severe, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, severe, and type II diabetes, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, susceptibility to, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/MONDO_0021136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"rare\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021136\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0015513\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015513\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015513\"},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"Orphanet:77828\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d77828\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:77828\"},\"http://purl.obolibrary.org/obo/MONDO_0003916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"overnutrition\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"OMIM:genemap2\":{\"url\":\"https://omim.org/entry/genemap2\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"OMIM:genemap2\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"OMIM:601665\":{\"url\":\"https://omim.org/entry/601665\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"OMIM:601665\"},\"http://purl.obolibrary.org/obo/MONDO_0005137\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005137\"},\"type\":[\"class\",\"entity\"]},\"GARD:18935\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/18935/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:18935\"},\"MONDO:0019182\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0019182\"},\"http://purl.obolibrary.org/obo/MONDO_0011122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"obesity disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0011122\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015960\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015960\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"mondo:0015960\"},\"http://purl.obolibrary.org/obo/MONDO_0021152\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021152\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_77828\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_77828\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:77828\"},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"excluded_subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"excluded:subClassOf\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0019182","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0011122","http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0011122"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0011122","http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0011122"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/4521","http__//purl.obolibrary.org/obo/mondo#excluded_subClassOf":"http://purl.obolibrary.org/obo/MONDO_0015960","http__//purl.org/dc/terms/conformsTo":"http://purl.obolibrary.org/obo/mondo/patterns/hereditary.yaml","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:18935","OMIM:601665","Orphanet:77828"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["genetic obesity","genetic obesity (disease)","leanness, inherited, autosomal recessive","monogenic obesity","obesity, association with, Autosomal recessive","obesity, early-onset, susceptibility to, Autosomal recessive","obesity, late-onset, Autosomal recessive","obesity, mild, early-onset, Autosomal recessive","obesity, severe, Autosomal recessive","obesity, severe, and type II diabetes, Autosomal recessive","obesity, susceptibility to, Autosomal recessive"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0019182","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"inherited obesity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0011122"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://www.orpha.net/ORDO/Orphanet_77828","https://omim.org/entry/601665"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019182","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0019182","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"inherited obesity","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/MONDO_0021136","searchableAnnotationValues":["https://github.com/monarch-initiative/mondo/issues/4521","GARD:18935","OMIM:601665","Orphanet:77828","genetic obesity","genetic obesity (disease)","leanness, inherited, autosomal recessive","monogenic obesity","obesity, association with, Autosomal recessive","obesity, early-onset, susceptibility to, Autosomal recessive","obesity, late-onset, Autosomal recessive","obesity, mild, early-onset, Autosomal recessive","obesity, severe, Autosomal recessive","obesity, severe, and type II diabetes, Autosomal recessive","obesity, susceptibility to, Autosomal recessive","MONDO:0019182","false"],"shortForm":"MONDO_0019182","synonym":["genetic obesity","genetic obesity (disease)","leanness, inherited, autosomal recessive","monogenic obesity","obesity, association with, Autosomal recessive","obesity, early-onset, susceptibility to, Autosomal recessive","obesity, late-onset, Autosomal recessive","obesity, mild, early-onset, Autosomal recessive","obesity, severe, Autosomal recessive","obesity, severe, and type II diabetes, Autosomal recessive","obesity, susceptibility to, Autosomal recessive"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease that has its basis in the disruption of embryonic morphogenesis.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease that has its basis in the disruption of embryonic morphogenesis.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:22513\"},{\"type\":[\"literal\"],\"value\":\"ICD9:759.7\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C99267\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:400038003\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C1302790\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN206687\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"literal\"],\"value\":\"congenital malformation syndrome\"},{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of embryonic morphogenesis\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/basis_in_disruption_of_process\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"malformation syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"rare developmental defect during embryogenesis\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0021147\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/snomedct/400038003\",\"http://linkedlifedata.com/resource/umls/id/C1302790\",\"http://linkedlifedata.com/resource/umls/id/CN206687\",\"http://purl.obolibrary.org/obo/NCIT_C99267\",\"http://www.orpha.net/ORDO/Orphanet_93890\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease that has its basis in the disruption of embryonic morphogenesis.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"}}]},{\"type\":[\"literal\"],\"value\":\"GARD:22513\"},{\"type\":[\"literal\"],\"value\":\"ICD9:759.7\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C99267\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:400038003\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C1302790\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN206687\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"congenital malformation syndrome\"},{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of embryonic morphogenesis\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/basis_in_disruption_of_process\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"malformation syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"rare developmental defect during embryogenesis\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0019755\"},\"synonym\":[{\"type\":[\"literal\"],\"value\":\"congenital malformation syndrome\"},{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of embryonic morphogenesis\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/basis_in_disruption_of_process\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"malformation syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"rare developmental defect during embryogenesis\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"MONDO:0019755\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0019755\"},\"NCIT:C99267\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C99267\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C99267\"},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C99267\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C99267\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C99267\"},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_93890\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_93890\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:93890\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Orphanet:93890\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d93890\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:93890\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"UMLS:C1302790\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C1302790\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C1302790\"},\"http://purl.obolibrary.org/obo/RO_0004021\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease caused by disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease has basis in disruption of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004021\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"GARD:22513\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/22513/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:22513\"},\"SCTID:400038003\":{\"url\":\"http://snomed.info/id/400038003\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:400038003\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021147\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0019755","definition":"A disease that has its basis in the disruption of embryonic morphogenesis.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021147","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021147","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disease that has its basis in the disruption of embryonic morphogenesis.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:22513","ICD9:759.7","NCIT:C99267","Orphanet:93890","SCTID:400038003","UMLS:C1302790","UMLS:CN206687"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["congenital malformation syndrome","developmental defect during embryogenesis","disorder of embryonic morphogenesis","embryonic morphogenesis disease","malformation syndrome","rare developmental defect during embryogenesis"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0019755","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"developmental defect during embryogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0021147"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/snomedct/400038003","http://linkedlifedata.com/resource/umls/id/C1302790","http://linkedlifedata.com/resource/umls/id/CN206687","http://purl.obolibrary.org/obo/NCIT_C99267","http://www.orpha.net/ORDO/Orphanet_93890"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019755","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0019755","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"developmental defect during embryogenesis","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0048598","searchableAnnotationValues":["A disease that has its basis in the disruption of embryonic morphogenesis.","GARD:22513","ICD9:759.7","NCIT:C99267","Orphanet:93890","SCTID:400038003","UMLS:C1302790","UMLS:CN206687","congenital malformation syndrome","developmental defect during embryogenesis","disorder of embryonic morphogenesis","embryonic morphogenesis disease","malformation syndrome","rare developmental defect during embryogenesis","MONDO:0019755","false"],"shortForm":"MONDO_0019755","synonym":["congenital malformation syndrome","developmental defect during embryogenesis","disorder of embryonic morphogenesis","embryonic morphogenesis disease","malformation syndrome","rare developmental defect during embryogenesis"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019824\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0015514\"],\"directParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015514\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"}}]}],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0015514\"],\"hierarchicalParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015514\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"}}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:19272\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:E23.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:95488/attributed\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:95488/ntbt\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019824\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"non-acquired pituitary hormone deficiency\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015514\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"}}]}],\"http://www.w3.org/2004/02/skos/core#exactMatch\":\"http://www.orpha.net/ORDO/Orphanet_95488\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"non-acquired pituitary hormone deficiency\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"GARD:19272\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:E23.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:95488/attributed\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:95488/ntbt\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0019824\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0019824\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0019824\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0019824\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"Orphanet:95488\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d95488\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:95488\"},\"http://purl.obolibrary.org/obo/MONDO_0015127\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"pituitary deficiency\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015127\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"GARD:19272\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/19272/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:19272\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015514\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary endocrine growth disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015514\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_95488\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_95488\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:95488\"},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0019824","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0015514"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0015514"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0015514"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0015514"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:19272","ICD10CM:E23.0","Orphanet:95488"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0019824","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"non-acquired pituitary hormone deficiency","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0015514"],"http__//www.w3.org/2004/02/skos/core#exactMatch":"http://www.orpha.net/ORDO/Orphanet_95488","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019824","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0019824","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"non-acquired pituitary hormone deficiency","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["GARD:19272","ICD10CM:E23.0","Orphanet:95488","MONDO:0019824","false"],"shortForm":"MONDO_0019824","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An attribute of a disease.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0000001\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0000001\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An attribute of a disease.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C41009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"literal\"],\"value\":\"disease qualifier\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"modifier\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C41009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"qualifier\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C41009\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://www.w3.org/2004/02/skos/core#exactMatch\":\"http://purl.obolibrary.org/obo/NCIT_C41009\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An attribute of a disease.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C41009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"disease qualifier\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"modifier\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C41009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"qualifier\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C41009\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021125\"},\"synonym\":[{\"type\":[\"literal\"],\"value\":\"disease qualifier\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"modifier\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C41009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"qualifier\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C41009\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0021125\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021125\"},\"NCIT:C41009\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C41009\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C41009\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C41009\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C41009\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C41009\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021125","definition":"An attribute of a disease.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0000001","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An attribute of a disease.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"NCIT:C41009","http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["disease qualifier","modifier","qualifier"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021125","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"disease characteristic","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0000001","http__//www.w3.org/2004/02/skos/core#exactMatch":"http://purl.obolibrary.org/obo/NCIT_C41009","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021125","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021125","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disease characteristic","numDescendants":"8.0","numHierarchicalDescendants":"8.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["An attribute of a disease.","NCIT:C41009","disease qualifier","modifier","qualifier","MONDO:0021125","false"],"shortForm":"MONDO_0021125","synonym":["disease qualifier","modifier","qualifier"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021126\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021126\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021126\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"syndromic or isolated\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"syndromic or isolated\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0021126\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021126\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0021126\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021126\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021126\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021126","definition":"An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021125","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021125","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021126","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"syndromic or isolated","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0021125","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021126","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021126","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"syndromic or isolated","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.","MONDO:0021126","false"],"shortForm":"MONDO_0021126","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021127\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021127\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021126\",\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021126\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021126\",\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021126\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021127\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has a syndromic presentation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/MONDO_0021126\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has a syndromic presentation\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002254\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021127\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0021127\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021127\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/MONDO_0002254\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"syndromic disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002254\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021126\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"syndromic or isolated\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021126\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"MONDO:0021127\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021127\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021127\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021127","definition":"An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021126","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021126","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021126","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021126","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021127","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"has a syndromic presentation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0021126","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021127","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021127","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has a syndromic presentation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/MONDO_0002254","searchableAnnotationValues":["An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.","MONDO:0021127","false"],"shortForm":"MONDO_0021127","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021135\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021135\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/254\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021135\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"rare or common\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"rare or common\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/254\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0021135\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021135\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"MONDO:0021135\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021135\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021135\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021135","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021125","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021125","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/254","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021135","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"rare or common","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0021125","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021135","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021135","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"rare or common","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["https://github.com/monarch-initiative/mondo/issues/254","MONDO:0021135","false"],"shortForm":"MONDO_0021135","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021136\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://www.rarediseaseday.org/article/what-is-a-rare-disease\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021135\",\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021135\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021135\",\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021135\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://www.rarediseaseday.org/article/what-is-a-rare-disease\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"type\":[\"literal\"],\"value\":\"rare (European definition)\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021136\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"rare\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/MONDO_0021135\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"rare\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015514\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019040\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://www.rarediseaseday.org/article/what-is-a-rare-disease\"}}]},{\"type\":[\"literal\"],\"value\":\"rare (European definition)\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0021136\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021136\"},\"synonym\":{\"type\":[\"literal\"],\"value\":\"rare (European definition)\"},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/MONDO_0021135\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"rare or common\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021135\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0021136\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021136\"},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015514\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary endocrine growth disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015514\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0016072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle of genetic origin\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0016072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019182\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited obesity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019182\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021136","definition":"A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021135","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021135","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021135","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021135","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.","http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":"rare (European definition)","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021136","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"rare","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0021135","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021136","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021136","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"rare","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/MONDO_0015514","http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0019040","http://purl.obolibrary.org/obo/MONDO_0019182"],"searchableAnnotationValues":["A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.","rare (European definition)","MONDO:0021136","false"],"shortForm":"MONDO_0021136","synonym":"rare (European definition)","synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021139\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021139\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021139\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"congenital or acquired\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital or acquired\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"MONDO:0021139\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021139\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"MONDO:0021139\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021139\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021139\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021139","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021125","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021125","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021139","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"congenital or acquired","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0021125","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021139","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021139","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"congenital or acquired","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["MONDO:0021139","false"],"shortForm":"MONDO_0021139","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021140\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A characteristic of a disease in which the disease is present at birth, regardless of cause.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Wikipedia:Birth_defect\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021139\",\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021139\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021139\",\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021139\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A characteristic of a disease in which the disease is present at birth, regardless of cause.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Wikipedia:Birth_defect\"}}]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4069\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"type\":[\"literal\"],\"value\":\"inborn\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021140\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"congenital\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0021139\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false},{\"type\":[\"reification\"],\"value\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}}]}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002320\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A characteristic of a disease in which the disease is present at birth, regardless of cause.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Wikipedia:Birth_defect\"}}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4069\"},{\"type\":[\"literal\"],\"value\":\"inborn\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0021140\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021140\"},\"synonym\":{\"type\":[\"literal\"],\"value\":\"inborn\"},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019042\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies/dysmorphic syndrome\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019042\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0021140\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021140\"},\"https://orcid.org/0000-0002-4142-7153\":{\"url\":\"https://orcid.org/0000-0002-4142-7153\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-4142-7153\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Wikipedia:Birth_defect\":{\"url\":\"http://en.wikipedia.org/wiki/Birth_defect\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"Wikipedia:Birth_defect\"},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002320\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital nervous system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002320\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021139\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital or acquired\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021139\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021140","definition":"A characteristic of a disease in which the disease is present at birth, regardless of cause.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021139","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021139","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021139","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021139","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A characteristic of a disease in which the disease is present at birth, regardless of cause.","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/4069","http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":"inborn","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021140","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"congenital","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0021139"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021140","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021140","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"congenital","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/MONDO_0002320","http://purl.obolibrary.org/obo/MONDO_0019042"],"searchableAnnotationValues":["A characteristic of a disease in which the disease is present at birth, regardless of cause.","https://github.com/monarch-initiative/mondo/issues/4069","inborn","MONDO:0021140","false"],"shortForm":"MONDO_0021140","synonym":"inborn","synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"http://purl.org/dc/terms/conformsTo\":\"http://purl.obolibrary.org/obo/mondo/patterns/specific_disease_by_disrupted_process.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:Q00-Q99\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/4536\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}]}]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#harrisons_view\",\"http://purl.obolibrary.org/obo/mondo#rare_grouping\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004024\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004024\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":\"http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004024\",\"value\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004024\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:Q00-Q99\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/4536\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}]}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021147\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004024\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease causes disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease disrupts\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004024\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"MONDO:0021147\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021147\"},\"https://orcid.org/0000-0002-4142-7153\":{\"url\":\"https://orcid.org/0000-0002-4142-7153\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-4142-7153\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0001-5208-3432\":{\"url\":\"https://orcid.org/0000-0001-5208-3432\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0001-5208-3432\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021147","definition":"Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.","http__//purl.org/dc/terms/conformsTo":"http://purl.obolibrary.org/obo/mondo/patterns/specific_disease_by_disrupted_process.yaml","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"ICD10CM:Q00-Q99","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021147","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#harrisons_view","http://purl.obolibrary.org/obo/mondo#rare_grouping"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"disorder of development or morphogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"http__//www.w3.org/2004/02/skos/core#exactMatch":"http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021147","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021147","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disorder of development or morphogenesis","numDescendants":"6.0","numHierarchicalDescendants":"6.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0032502","searchableAnnotationValues":["Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.","ICD10CM:Q00-Q99","MONDO:0021147","false"],"shortForm":"MONDO_0021147","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021149\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021149\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021149\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hereditary vs non-hereditary etiology\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary vs non-hereditary etiology\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"MONDO:0021149\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021149\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0021149\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021149\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021149\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021149","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021125","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021125","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021149","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hereditary vs non-hereditary etiology","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0021125","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021149","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021149","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hereditary vs non-hereditary etiology","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["MONDO:0021149","false"],"shortForm":"MONDO_0021149","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021152\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021149\",\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021149\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021149\",\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021149\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0004420\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":[{\"type\":[\"literal\"],\"value\":\"constitutitional genetic\"},{\"type\":[\"literal\"],\"value\":\"familial\"},{\"type\":[\"literal\"],\"value\":\"genetic\"},{\"type\":[\"literal\"],\"value\":\"hereditary\"},{\"type\":[\"literal\"],\"value\":\"inherited genetic\"}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021152\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"inherited\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/MONDO_0021149\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0004420\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"constitutitional genetic\"},{\"type\":[\"literal\"],\"value\":\"familial\"},{\"type\":[\"literal\"],\"value\":\"genetic\"},{\"type\":[\"literal\"],\"value\":\"hereditary\"},{\"type\":[\"literal\"],\"value\":\"inherited genetic\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0021152\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021152\"},\"synonym\":[{\"type\":[\"literal\"],\"value\":\"constitutitional genetic\"},{\"type\":[\"literal\"],\"value\":\"familial\"},{\"type\":[\"literal\"],\"value\":\"genetic\"},{\"type\":[\"literal\"],\"value\":\"hereditary\"},{\"type\":[\"literal\"],\"value\":\"inherited genetic\"}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0021152\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021152\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021149\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary vs non-hereditary etiology\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021149\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"EFO:0004420\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0004420\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0004420\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021152","definition":"A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021149","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021149","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021149","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021149","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"EFO:0004420","http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":["constitutitional genetic","familial","genetic","hereditary","inherited genetic"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021152","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"inherited","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0021149","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021152","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021152","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"inherited","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/MONDO_0003847","searchableAnnotationValues":["A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.","EFO:0004420","constitutitional genetic","familial","genetic","hereditary","inherited genetic","MONDO:0021152","false"],"shortForm":"MONDO_0021152","synonym":["constitutitional genetic","familial","genetic","hereditary","inherited genetic"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0100038\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0100038\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6733-369X\"},{\"type\":[\"literal\"],\"value\":\"https://www.clinicalgenome.org/working-groups/clinical-domain/neurodevelopmental-disorders/\"}]}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6733-369X\"},{\"type\":[\"literal\"],\"value\":\"https://www.clinicalgenome.org/working-groups/clinical-domain/neurodevelopmental-disorders/\"}]}]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/3680\"},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019117\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6733-369X\"}}]},\"http://purl.org/dc/elements/1.1/date\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#dateTime\",\"value\":\"2018-06-29T18:21:11Z\"},\"http://purl.org/dc/terms/creator\":\"https://orcid.org/0000-0001-5208-3432\",\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"type\":[\"literal\"],\"value\":\"complex neurodevelopmental disorder\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0100038\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"complex neurodevelopmental disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"complex neurodevelopmental disorder\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6733-369X\"},{\"type\":[\"literal\"],\"value\":\"https://www.clinicalgenome.org/working-groups/clinical-domain/neurodevelopmental-disorders/\"}]}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/3680\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#dateTime\",\"value\":\"2018-06-29T18:21:11Z\"},{\"type\":[\"literal\"],\"value\":\"complex neurodevelopmental disorder\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0100038\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0100038\"},\"synonym\":{\"type\":[\"literal\"],\"value\":\"complex neurodevelopmental disorder\"},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/elements/1.1/date\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"date\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"date\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0100038\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0100038\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0100038\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neurodevelopmental disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700092\"},\"type\":[\"class\",\"entity\"]},\"http://purl.org/dc/terms/creator\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0002-4142-7153\":{\"url\":\"https://orcid.org/0000-0002-4142-7153\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-4142-7153\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019117\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0019117\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"mondo:0019117\"},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"excluded_subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"excluded:subClassOf\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0002-6733-369X\":{\"url\":\"https://orcid.org/0000-0002-6733-369X\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-6733-369X\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},\"type\":[\"class\",\"entity\"]},\"https://orcid.org/0000-0001-5208-3432\":{\"url\":\"https://orcid.org/0000-0001-5208-3432\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0001-5208-3432\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0100038","definition":"A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700092","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0700092","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700092","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0700092","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/3680","http__//purl.obolibrary.org/obo/mondo#excluded_subClassOf":"http://purl.obolibrary.org/obo/MONDO_0019117","http__//purl.org/dc/elements/1.1/date":"2018-06-29T18:21:11Z","http__//purl.org/dc/terms/creator":"https://orcid.org/0000-0001-5208-3432","http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":"complex neurodevelopmental disorder","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0100038","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"complex neurodevelopmental disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0700092","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0100038","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0100038","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"complex neurodevelopmental disorder","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).","https://github.com/monarch-initiative/mondo/issues/3680","2018-06-29T18:21:11Z","complex neurodevelopmental disorder","MONDO:0100038","false"],"shortForm":"MONDO_0100038","synonym":"complex neurodevelopmental disorder","synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0100500\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0100500\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-0736-9199\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}]}]},\"http://purl.obolibrary.org/obo/MONDO_0700092\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-0736-9199\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}]}]},\"http://purl.obolibrary.org/obo/MONDO_0700092\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"}}]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4789\"},\"http://purl.org/dc/terms/creator\":\"https://orcid.org/0000-0001-5208-3432\",\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0100500\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Mendelian neurodevelopmental disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-0736-9199\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}]}]},\"http://purl.obolibrary.org/obo/MONDO_0700092\"],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700092\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Mendelian neurodevelopmental disorder\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"}}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4789\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0100500\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0100500\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"MONDO:0100500\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0100500\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0100500\"},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"https://orcid.org/0000-0002-1780-5230\":{\"url\":\"https://orcid.org/0000-0002-1780-5230\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-1780-5230\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0002-0736-9199\":{\"url\":\"https://orcid.org/0000-0002-0736-9199\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-0736-9199\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neurodevelopmental disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700092\"},\"type\":[\"class\",\"entity\"]},\"http://purl.org/dc/terms/creator\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021152\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021152\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},\"type\":[\"class\",\"entity\"]},\"https://orcid.org/0000-0001-5208-3432\":{\"url\":\"https://orcid.org/0000-0001-5208-3432\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0001-5208-3432\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0100500","definition":"A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0700092","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700092"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0700092","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700092"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/4789","http__//purl.org/dc/terms/creator":"https://orcid.org/0000-0001-5208-3432","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0100500","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Mendelian neurodevelopmental disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700092"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0100500","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0100500","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Mendelian neurodevelopmental disorder","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.","https://github.com/monarch-initiative/mondo/issues/4789","MONDO:0100500","false"],"shortForm":"MONDO_0100500","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700092\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"SCTID:700364009\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"SCTID:700364009\"}}]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/3410\"},\"http://purl.org/dc/terms/creator\":\"https://orcid.org/0000-0002-4142-7153\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D065886\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"MedDRA:C1535926\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C1535926\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C89338\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:700364009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C1535926\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700092\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"neurodevelopmental disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D065886\",\"http://identifiers.org/snomedct/700364009\",\"http://linkedlifedata.com/resource/umls/id/C1535926\",\"http://purl.obolibrary.org/obo/NCIT_C1535926\",\"http://purl.obolibrary.org/obo/NCIT_C89338\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"neurodevelopmental disorder\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"SCTID:700364009\"}}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/3410\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D065886\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"MedDRA:C1535926\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C1535926\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C89338\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:700364009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C1535926\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0700092\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0700092\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C89338\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C89338\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C89338\"},\"https://orcid.org/0000-0002-1780-5230\":{\"url\":\"https://orcid.org/0000-0002-1780-5230\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-1780-5230\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"NCIT:C89338\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C89338\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C89338\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"UMLS:C1535926\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C1535926\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C1535926\"},\"http://purl.org/dc/terms/creator\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0002-4142-7153\":{\"url\":\"https://orcid.org/0000-0002-4142-7153\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-4142-7153\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C1535926\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C1535926\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C1535926\"},\"MONDO:0700092\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0700092\"},\"MESH:D065886\":{\"url\":\"http://id.nlm.nih.gov/mesh/D065886\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D065886\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"SCTID:700364009\":{\"url\":\"http://snomed.info/id/700364009\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:700364009\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"NCIT:C1535926\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C1535926\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C1535926\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0700092","definition":"A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0005071","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0005071","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/3410","http__//purl.org/dc/terms/creator":"https://orcid.org/0000-0002-4142-7153","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["MESH:D065886","MedDRA:C1535926","NCIT:C1535926","NCIT:C89338","SCTID:700364009","UMLS:C1535926"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0700092","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"neurodevelopmental disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0005071","http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D065886","http://identifiers.org/snomedct/700364009","http://linkedlifedata.com/resource/umls/id/C1535926","http://purl.obolibrary.org/obo/NCIT_C1535926","http://purl.obolibrary.org/obo/NCIT_C89338"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0700092","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0700092","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"neurodevelopmental disorder","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.","https://github.com/monarch-initiative/mondo/issues/3410","MESH:D065886","MedDRA:C1535926","NCIT:C1535926","NCIT:C89338","SCTID:700364009","UMLS:C1535926","MONDO:0700092","false"],"shortForm":"MONDO_0700092","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"http://orcid.org/0000-0002-4142-7153\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"http://orcid.org/0000-0002-4142-7153\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5858\"},\"http://purl.obolibrary.org/obo/RO_0002175\":\"http://purl.obolibrary.org/obo/NCBITaxon_9606\",\"http://purl.org/dc/terms/creator\":\"https://orcid.org/0000-0002-4142-7153\",\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"human disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"}}]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":\"http://purl.obolibrary.org/obo/mondo#rare_grouping\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"http://orcid.org/0000-0002-4142-7153\"}}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_9606\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0000001\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_9606\",\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"numDescendants\":31.0,\"numHierarchicalDescendants\":31.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_9606\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_9606\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5858\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"human disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0700096\"},\"synonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"human disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"}}]},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002162\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002162\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.org/dc/terms/creator\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0002-4142-7153\":{\"url\":\"https://orcid.org/0000-0002-4142-7153\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-4142-7153\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9606\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Homo sapiens\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9606\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0700096\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0700096\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0001-5208-3432\":{\"url\":\"https://orcid.org/0000-0001-5208-3432\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0001-5208-3432\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0700096","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0000001","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/5858","http__//purl.obolibrary.org/obo/RO_0002175":"http://purl.obolibrary.org/obo/NCBITaxon_9606","http__//purl.org/dc/terms/creator":"https://orcid.org/0000-0002-4142-7153","http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":"human disease or disorder","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0700096","http__//www.geneontology.org/formats/oboInOwl#inSubset":"http://purl.obolibrary.org/obo/mondo#rare_grouping","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"human disease","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0000001"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0700096","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0700096","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"human disease","numDescendants":"31.0","numHierarchicalDescendants":"31.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/NCBITaxon_9606","searchableAnnotationValues":["https://github.com/monarch-initiative/mondo/issues/5858","human disease or disorder","MONDO:0700096","false"],"shortForm":"MONDO_0700096","synonym":"human disease or disorder","synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_110814\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:110814\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbellida\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbellida\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_110814\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:110814\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d110814\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:110814\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenacoelomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1312402\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:110814","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_1312402","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_1312402","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_1312402","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_1312402","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Xenoturbellida","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_1312402","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_110814","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_110814","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Xenoturbellida","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_110814","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_110815\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:110815\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_1547233\",\"http://purl.obolibrary.org/obo/NCBITaxon_110814\",\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_1547233\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_1547233\",\"http://purl.obolibrary.org/obo/NCBITaxon_110814\",\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_1547233\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbella\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_1547233\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbella\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_110815\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1547233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbellidae\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1547233\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:110815\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d110815\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:110815\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_110814\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbellida\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:110814\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenacoelomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1312402\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:110815","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_1547233","http://purl.obolibrary.org/obo/NCBITaxon_110814","http://purl.obolibrary.org/obo/NCBITaxon_1312402","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_1547233","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_1547233","http://purl.obolibrary.org/obo/NCBITaxon_110814","http://purl.obolibrary.org/obo/NCBITaxon_1312402","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_1547233","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Xenoturbella","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_1547233","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_110815","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_110815","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Xenoturbella","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_110815","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"numDescendants\":19.0,\"numHierarchicalDescendants\":19.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_117570\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:117570\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d117570\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:117570\"},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:117570","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_7776","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_7776","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Teleostomi","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_7776","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_117570","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_117570","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Teleostomi","numDescendants":"19.0","numHierarchicalDescendants":"19.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_117570","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"numDescendants\":18.0,\"numHierarchicalDescendants\":18.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_117571\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:117571\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d117571\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:117571\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:117571","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_117570","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_117570","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Euteleostomi","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_117570","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_117571","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_117571","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Euteleostomi","numDescendants":"18.0","numHierarchicalDescendants":"18.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_117571","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1312402\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Xenacoelomorpha\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenacoelomorpha\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_1312402\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:1312402\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d1312402\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:1312402\"},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:1312402","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_33213","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_33213","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Xenacoelomorpha","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_33213","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_1312402","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_1312402","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Xenacoelomorpha","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_1312402","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"numDescendants\":35.0,\"numHierarchicalDescendants\":35.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_131567\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"NCBITaxon:131567\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d131567\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:131567\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:131567","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cellular organisms","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_131567","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_131567","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cellular organisms","numDescendants":"35.0","numHierarchicalDescendants":"35.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/CL_0000000","searchableAnnotationValues":"false","shortForm":"NCBITaxon_131567","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"numDescendants\":16.0,\"numHierarchicalDescendants\":16.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_1338369\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:1338369\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d1338369\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:1338369\"},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:1338369","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_8287","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_8287","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Dipnotetrapodomorpha","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_8287","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_1338369","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_1338369","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Dipnotetrapodomorpha","numDescendants":"16.0","numHierarchicalDescendants":"16.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_1338369","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":10.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_1437010\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:1437010\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d1437010\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:1437010\"},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:1437010","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_9347","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_9347","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Boreoeutheria","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_9347","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_1437010","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_1437010","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Boreoeutheria","numDescendants":"10.0","numHierarchicalDescendants":"10.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_1437010","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_1547233\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1547233\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_110814\",\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_110814\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_110814\",\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_110814\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbellidae\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_110814\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbellidae\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_1547233\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:1547233\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d1547233\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:1547233\"},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_110814\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbellida\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:110814\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenacoelomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1312402\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:1547233","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_110814","http://purl.obolibrary.org/obo/NCBITaxon_1312402","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_110814","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_110814","http://purl.obolibrary.org/obo/NCBITaxon_1312402","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_110814","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Xenoturbellidae","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_110814","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_1547233","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_1547233","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Xenoturbellidae","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_1547233","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_207598\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:207598\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Homininae\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Homininae\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_207598\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:207598\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d207598\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:207598\"},\"http://purl.obolibrary.org/obo/NCBITaxon_9443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9526\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Catarrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9526\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9604\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominidae\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9604\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominoidea\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_376913\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:376913\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Simiiformes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314293\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:207598","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9604","http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_9604","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9604","http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_9604","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Homininae","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_9604","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_207598","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_207598","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Homininae","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_207598","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"numDescendants\":34.0,\"numHierarchicalDescendants\":34.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000255\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_2759\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"NCBITaxon:2759\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d2759\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:2759\"},\"http://purl.obolibrary.org/obo/CL_0000255\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"eukaryotic cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000255\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:2759","directAncestor":"http://purl.obolibrary.org/obo/NCBITaxon_131567","directParent":"http://purl.obolibrary.org/obo/NCBITaxon_131567","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/NCBITaxon_131567","hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_131567","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Eukaryota","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_131567","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_2759","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_2759","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Eukaryota","numDescendants":"34.0","numHierarchicalDescendants":"34.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/CL_0000255","searchableAnnotationValues":"false","shortForm":"NCBITaxon_2759","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"numDescendants\":9.0,\"numHierarchicalDescendants\":9.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_314146\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"NCBITaxon:314146\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d314146\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:314146\"},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:314146","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_1437010","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_1437010","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Euarchontoglires","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_1437010","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_314146","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_314146","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Euarchontoglires","numDescendants":"9.0","numHierarchicalDescendants":"9.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_314146","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314293\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Simiiformes\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Simiiformes\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_314293\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:314293\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d314293\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:314293\"},\"http://purl.obolibrary.org/obo/NCBITaxon_9443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_376913\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:376913\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:314293","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_376913","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_376913","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Simiiformes","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_376913","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_314293","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_314293","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Simiiformes","numDescendants":"6.0","numHierarchicalDescendants":"6.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_314293","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314295\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Hominoidea\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominoidea\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_314295\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:314295\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d314295\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:314295\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9526\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Catarrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9526\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_376913\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:376913\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Simiiformes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314293\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:314295","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_9526","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_9526","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Hominoidea","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_9526","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_314295","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_314295","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Hominoidea","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_314295","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"numDescendants\":15.0,\"numHierarchicalDescendants\":15.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_32523\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:32523\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d32523\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:32523\"},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:32523","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_1338369","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_1338369","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Tetrapoda","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_1338369","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_32523","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_32523","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Tetrapoda","numDescendants":"15.0","numHierarchicalDescendants":"15.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_32523","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"numDescendants\":14.0,\"numHierarchicalDescendants\":14.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_32524\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:32524\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d32524\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:32524\"},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:32524","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_32523","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_32523","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Amniota","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_32523","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_32524","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_32524","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Amniota","numDescendants":"14.0","numHierarchicalDescendants":"14.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_32524","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"numDescendants\":12.0,\"numHierarchicalDescendants\":12.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_32525\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:32525\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d32525\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:32525\"},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:32525","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_40674","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_40674","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Theria \u003cmammals\u003e","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_40674","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_32525","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_32525","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Theria \u003cmammals\u003e","numDescendants":"12.0","numHierarchicalDescendants":"12.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_32525","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"numDescendants\":33.0,\"numHierarchicalDescendants\":33.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_33154\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"NCBITaxon:33154\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33154\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:33154\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:33154","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_2759","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_2759","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Opisthokonta","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_2759","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_33154","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_33154","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Opisthokonta","numDescendants":"33.0","numHierarchicalDescendants":"33.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_33154","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"numDescendants\":32.0,\"numHierarchicalDescendants\":32.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000548\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_33208\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000548\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"animal cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000548\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:33208\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33208\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:33208\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:33208","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_33154","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_33154","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Metazoa","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_33154","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_33208","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_33208","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Metazoa","numDescendants":"32.0","numHierarchicalDescendants":"32.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/CL_0000548","searchableAnnotationValues":"false","shortForm":"NCBITaxon_33208","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"numDescendants\":29.0,\"numHierarchicalDescendants\":29.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_33213\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:33213\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33213\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:33213\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:33213","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_6072","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_6072","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Bilateria","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_6072","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_33213","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_33213","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Bilateria","numDescendants":"29.0","numHierarchicalDescendants":"29.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_33213","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"numDescendants\":24.0,\"numHierarchicalDescendants\":24.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_33511\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:33511\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33511\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:33511\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:33511","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_33213","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_33213","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Deuterostomia","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_33213","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_33511","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_33511","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Deuterostomia","numDescendants":"24.0","numHierarchicalDescendants":"24.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_33511","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:376913\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"numDescendants\":7.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_376913\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:376913\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d376913\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:376913\"},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:376913","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_9443","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_9443","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Haplorrhini","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_9443","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_376913","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_376913","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Haplorrhini","numDescendants":"7.0","numHierarchicalDescendants":"7.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_376913","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"numDescendants\":13.0,\"numHierarchicalDescendants\":13.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_40674\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:40674\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d40674\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:40674\"},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:40674","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_32524","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_32524","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Mammalia","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_32524","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_40674","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_40674","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Mammalia","numDescendants":"13.0","numHierarchicalDescendants":"13.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_40674","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_6040\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6040\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Porifera\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Porifera\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_6040\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:6040\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d6040\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:6040\"},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:6040","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_33208","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_33208","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Porifera","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_33208","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_6040","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_6040","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Porifera","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_6040","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"numDescendants\":30.0,\"numHierarchicalDescendants\":30.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000110\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_6072\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000109\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:6072\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d6072\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:6072\"},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000110\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neurula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000110\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organogenesis stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000111\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:6072","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_33208","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_33208","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Eumetazoa","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_33208","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_6072","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_6072","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Eumetazoa","numDescendants":"30.0","numHierarchicalDescendants":"30.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000109","http://purl.obolibrary.org/obo/UBERON_0000110","http://purl.obolibrary.org/obo/UBERON_0000111","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0001016","http://purl.obolibrary.org/obo/UBERON_0002530"],"searchableAnnotationValues":"false","shortForm":"NCBITaxon_6072","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"numDescendants\":23.0,\"numHierarchicalDescendants\":23.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_7711\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:7711\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d7711\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:7711\"},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:7711","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_33511","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_33511","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Chordata","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_33511","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_7711","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_7711","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Chordata","numDescendants":"23.0","numHierarchicalDescendants":"23.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_7711","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"numDescendants\":21.0,\"numHierarchicalDescendants\":21.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_7742\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:7742\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d7742\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:7742\"},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:7742","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_89593","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_89593","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Vertebrata \u003cvertebrates\u003e","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_89593","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_7742","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_7742","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Vertebrata \u003cvertebrates\u003e","numDescendants":"21.0","numHierarchicalDescendants":"21.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_7742","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"numDescendants\":20.0,\"numHierarchicalDescendants\":20.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_7776\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:7776\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d7776\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:7776\"},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:7776","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_7742","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_7742","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Gnathostomata \u003cvertebrates\u003e","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_7742","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_7776","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_7776","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Gnathostomata \u003cvertebrates\u003e","numDescendants":"20.0","numHierarchicalDescendants":"20.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_7776","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"numDescendants\":17.0,\"numHierarchicalDescendants\":17.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_8287\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:8287\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d8287\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:8287\"},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:8287","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_117571","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_117571","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Sarcopterygii","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_117571","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_8287","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_8287","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Sarcopterygii","numDescendants":"17.0","numHierarchicalDescendants":"17.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_8287","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"numDescendants\":22.0,\"numHierarchicalDescendants\":22.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_89593\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:89593\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d89593\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:89593\"},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:89593","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_7711","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_7711","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Craniata \u003cchordates\u003e","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_7711","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_89593","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_89593","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Craniata \u003cchordates\u003e","numDescendants":"22.0","numHierarchicalDescendants":"22.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_89593","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"numDescendants\":11.0,\"numHierarchicalDescendants\":11.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_9347\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:9347\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d9347\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:9347\"},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:9347","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_32525","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_32525","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Eutheria","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_32525","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9347","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_9347","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Eutheria","numDescendants":"11.0","numHierarchicalDescendants":"11.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_9347","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_9443\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:9443\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d9443\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:9443\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:9443","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_314146","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_314146","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Primates","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_314146","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9443","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_9443","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Primates","numDescendants":"8.0","numHierarchicalDescendants":"8.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_9443","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9526\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Catarrhini\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Catarrhini\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_9526\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:9526\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d9526\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:9526\"},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_376913\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:376913\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Simiiformes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314293\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:9526","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_314293","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_314293","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Catarrhini","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_314293","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9526","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_9526","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Catarrhini","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_9526","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9604\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Hominidae\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominidae\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_9604\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:9604\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d9604\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:9604\"},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9526\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Catarrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9526\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominoidea\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_376913\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:376913\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Simiiformes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314293\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:9604","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_314295","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_314295","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Hominidae","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_314295","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9604","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_9604","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Hominidae","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_9604","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_9605\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9605\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_207598\",\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_207598\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_207598\",\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_207598\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Homo\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_207598\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Homo\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_9605\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:9605\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d9605\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:9605\"},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9526\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Catarrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9526\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9604\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominidae\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9604\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominoidea\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_376913\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:376913\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_207598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Homininae\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:207598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Simiiformes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314293\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:9605","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_207598","http://purl.obolibrary.org/obo/NCBITaxon_9604","http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_207598","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_207598","http://purl.obolibrary.org/obo/NCBITaxon_9604","http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_207598","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Homo","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_207598","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9605","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_9605","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Homo","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_9605","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_9606\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9606\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9605\",\"http://purl.obolibrary.org/obo/NCBITaxon_207598\",\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9605\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9605\",\"http://purl.obolibrary.org/obo/NCBITaxon_207598\",\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9605\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Homo sapiens\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_9605\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Homo sapiens\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_9606\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_9606\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"NCBITaxon:9606\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d9606\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"NCBITaxon:9606\"},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002162\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002162\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9526\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Catarrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9526\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9604\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominidae\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9604\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9605\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Homo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9605\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominoidea\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_376913\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:376913\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_207598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Homininae\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:207598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Simiiformes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314293\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:9606","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9605","http://purl.obolibrary.org/obo/NCBITaxon_207598","http://purl.obolibrary.org/obo/NCBITaxon_9604","http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_9605","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9605","http://purl.obolibrary.org/obo/NCBITaxon_207598","http://purl.obolibrary.org/obo/NCBITaxon_9604","http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_9605","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Homo sapiens","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_9605","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9606","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_9606","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Homo sapiens","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/MONDO_0700096","searchableAnnotationValues":"false","shortForm":"NCBITaxon_9606","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"numDescendants\":26.0,\"numHierarchicalDescendants\":26.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OGMS_0000031\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"OGMS:0000031\":{\"url\":\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OGMS:0000031\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"OGMS:0000031","definition":"A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000016","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000016","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"disease","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000016","id":"gitissue502+class+http://purl.obolibrary.org/obo/OGMS_0000031","imported":"false","iri":"http://purl.obolibrary.org/obo/OGMS_0000031","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disease","numDescendants":"26.0","numHierarchicalDescendants":"26.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism.","false"],"shortForm":"OGMS_0000031","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0000001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"numDescendants\":18.0,\"numHierarchicalDescendants\":18.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0000001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"PATO:0000001\":{\"url\":\"http://purl.obolibrary.org/obo/PATO_0000001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"PATO:0000001\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0000001","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000020","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000020","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000020","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0000001","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0000001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"quality","numDescendants":"18.0","numHierarchicalDescendants":"18.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"PATO_0000001","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000051\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"morphology\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"morphology\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0000051\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"PATO:0000051\":{\"url\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"PATO:0000051\"},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0000051","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001241","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001241","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"morphology","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001241","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0000051","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0000051","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"morphology","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"PATO_0000051","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0000141\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000141\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000051\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000051\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"structure\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"structure\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0000141\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphology\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000051\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]},\"PATO:0000141\":{\"url\":\"http://purl.obolibrary.org/obo/PATO_0000141\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"PATO:0000141\"}}}","appearsIn":["gitissue502"],"curie":"PATO:0000141","directAncestor":["http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0000051","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0000051","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"structure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0000051","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0000141","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0000141","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"structure","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"PATO_0000141","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001018\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"physical quality\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"physical quality\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0001018\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"PATO:0001018\":{\"url\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"PATO:0001018\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0001018","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001241","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001241","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"physical quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001241","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001018","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0001018","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"physical quality","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"PATO_0001018","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0000001\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0000001\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0000001\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0001241\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"PATO:0001241\":{\"url\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"PATO:0001241\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0001241","directAncestor":["http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0000001","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"physical object quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0000001","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001241","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0001241","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"physical object quality","numDescendants":"8.0","numHierarchicalDescendants":"8.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"PATO_0001241","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0001992\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001992\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001995\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001995\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001995\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001995\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cellularity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001995\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cellularity\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0001992\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/PATO_0001995\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organismal quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001995\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"PATO:0001992\":{\"url\":\"http://purl.obolibrary.org/obo/PATO_0001992\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"PATO:0001992\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0001992","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001995","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001995","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001995","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001995","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cellularity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001995","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001992","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0001992","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cellularity","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"PATO_0001992","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0001993\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001993\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001992\",\"http://purl.obolibrary.org/obo/PATO_0001995\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001992\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001992\",\"http://purl.obolibrary.org/obo/PATO_0001995\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001992\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multicellular\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001992\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0001993\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0001993\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"PATO:0001993\":{\"url\":\"http://purl.obolibrary.org/obo/PATO_0001993\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"PATO:0001993\"},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001995\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organismal quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001995\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001992\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellularity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001992\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0001993","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001992","http://purl.obolibrary.org/obo/PATO_0001995","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001992","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001992","http://purl.obolibrary.org/obo/PATO_0001995","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001992","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multicellular","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001992","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001993","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0001993","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multicellular","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0010000","searchableAnnotationValues":"false","shortForm":"PATO_0001993","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0001995\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001995\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"organismal quality\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"organismal quality\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0001995\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"PATO:0001995\":{\"url\":\"http://purl.obolibrary.org/obo/PATO_0001995\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"PATO:0001995\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0001995","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001241","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001241","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"organismal quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001241","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001995","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0001995","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"organismal quality","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"PATO_0001995","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0002198\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0002198\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001018\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001018\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"quality of a substance\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"quality of a substance\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000463\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0002198\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0002198\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/PATO_0001018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001018\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000463\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organism substance\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000463\"},\"type\":[\"class\",\"entity\"]},\"PATO:0002198\":{\"url\":\"http://purl.obolibrary.org/obo/PATO_0002198\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"PATO:0002198\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0002198","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001018","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001018","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001018","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001018","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"quality of a substance","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001018","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0002198","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0002198","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"quality of a substance","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000463","searchableAnnotationValues":"false","shortForm":"PATO_0002198","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0010001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0010001\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000141\",\"http://purl.obolibrary.org/obo/PATO_0000051\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0000141\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000141\",\"http://purl.obolibrary.org/obo/PATO_0000051\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0000141\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disconnected\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0000141\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0010001\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0010001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphology\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000051\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"PATO:0010001\":{\"url\":\"http://purl.obolibrary.org/obo/PATO_0010001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"PATO:0010001\"},\"http://purl.obolibrary.org/obo/PATO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000141\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0034923\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected anatomical group\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0034923\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0010001","directAncestor":["http://purl.obolibrary.org/obo/PATO_0000141","http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0000141","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0000141","http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0000141","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"disconnected","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0000141","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0010001","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0010001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disconnected","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0034923","searchableAnnotationValues":"false","shortForm":"PATO_0010001","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"numDescendants\":12.0,\"numHierarchicalDescendants\":12.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"UBERON:0000000\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000000\"},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000000","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000003","directParent":"http://purl.obolibrary.org/obo/BFO_0000003","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/BFO_0000003","hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"processual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/UBERON_0001062","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000000","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"processual entity","numDescendants":"12.0","numHierarchicalDescendants":"12.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"UBERON_0000000","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"numDescendants\":26.0,\"numHierarchicalDescendants\":32.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0006598\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"isObsolete\":false}],\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002497\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000061\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002497\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during or before\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002497\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0000061\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000061\"},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0006598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"presumptive structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/RO_0002473\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0034923\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected anatomical group\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0034923\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"death stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000071\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000061","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000465","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000465","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anatomical structure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000465"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000061","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000061","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anatomical structure","numDescendants":"26.0","numHierarchicalDescendants":"32.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0006598","http://purl.obolibrary.org/obo/UBERON_0034923"],"relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000071","searchableAnnotationValues":"false","shortForm":"UBERON_0000061","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000062\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0006984\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#complementOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_110815\"},\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#disjointWith\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_110815\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0006984\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0006984\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000062\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has 2D boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002002\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002162\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002162\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"UBERON:0000062\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000062\"},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0006984\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical surface\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006984\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_110815\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbella\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:110815\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000062","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0010000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000467"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"organ","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0010000"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000062","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000062","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"organ","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000467","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0006984","http://purl.obolibrary.org/obo/GO_0008150"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000062","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000066\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"http://purl.obolibrary.org/obo/UBERON_0000092\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000066\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002492\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002492\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"UBERON:0000066\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000066\"},\"http://purl.obolibrary.org/obo/UBERON_0000092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000092\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"death stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000071\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organogenesis stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000111\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000066","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000092"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000092"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"fully formed stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000066","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000066","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"fully formed stage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0001016"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000092","http://purl.obolibrary.org/obo/UBERON_0000111","http://purl.obolibrary.org/obo/UBERON_0000071"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000066","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000106\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000108\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000110\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002489\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002489\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002493\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002493\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000068\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002493\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002493\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002489\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002489\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000922\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000922\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0000068\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000068\"},\"http://purl.obolibrary.org/obo/UBERON_0000092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000092\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000106\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"zygote stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000106\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cleavage stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000108\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blastula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000108\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000110\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neurula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000110\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organogenesis stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000111\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000068","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000104"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"embryo stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/UBERON_0000092","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000068","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000068","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"embryo stage","numDescendants":"0.0","numHierarchicalDescendants":"6.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000092","http://purl.obolibrary.org/obo/UBERON_0000106","http://purl.obolibrary.org/obo/UBERON_0000107","http://purl.obolibrary.org/obo/UBERON_0000108","http://purl.obolibrary.org/obo/UBERON_0000109","http://purl.obolibrary.org/obo/UBERON_0000110","http://purl.obolibrary.org/obo/UBERON_0000111","http://purl.obolibrary.org/obo/UBERON_0000922","http://purl.obolibrary.org/obo/UBERON_0000922"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000066","http://purl.obolibrary.org/obo/UBERON_0000092","http://purl.obolibrary.org/obo/GO_0009790"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000068","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000071\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"death stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002229\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"death stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0002497\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002230\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002229\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002229\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000071\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002497\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during or before\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002497\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"UBERON:0000071\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000071\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002229\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002229\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000071","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000104"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"death stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000071","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000071","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"death stage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000066","http://purl.obolibrary.org/obo/UBERON_0000104"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000104"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000071","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000092\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009791\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009791\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009791\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000092\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009791\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009791\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0000092\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000092\"},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000092","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000104"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"post-embryonic stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000092","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000092","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"post-embryonic stage","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000066","http://purl.obolibrary.org/obo/UBERON_0000068"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/GO_0009791"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000092","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000000\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":11.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002229\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002229\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002223\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000106\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002223\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002230\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000104\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"UBERON:0000104\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000104\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000092\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002229\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002229\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000106\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"zygote stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000106\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002223\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002223\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"death stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000071\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000104","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000000","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"life cycle","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000000"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000104","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000104","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"life cycle","numDescendants":"0.0","numHierarchicalDescendants":"11.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/UBERON_0000071","http://purl.obolibrary.org/obo/UBERON_0000071","http://purl.obolibrary.org/obo/UBERON_0000092","http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000106"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000071"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000104","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000000\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"this class represents a proper part of the life cycle of an organism. The class \\u0027life cycle\\u0027 should not be placed here\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000000\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":10.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"this class represents a proper part of the life cycle of an organism. The class \\u0027life cycle\\u0027 should not be placed here\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000105\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"UBERON:0000105\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000105\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000105","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/UBERON_0000104"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"this class represents a proper part of the life cycle of an organism. The class \u0027life cycle\u0027 should not be placed here","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"life cycle stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000000"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000105","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000105","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"life cycle stage","numDescendants":"10.0","numHierarchicalDescendants":"10.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000104","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000104","searchableAnnotationValues":["this class represents a proper part of the life cycle of an organism. The class \u0027life cycle\u0027 should not be placed here","false"],"shortForm":"UBERON_0000105","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000106\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000106\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"http://purl.obolibrary.org/obo/UBERON_0000068\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"zygote stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002223\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"zygote stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002087\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002087\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000106\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002223\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002223\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000106\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002087\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002087\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"UBERON:0000106\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000106\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000106\"},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cleavage stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002223\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002223\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000106","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"zygote stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000106","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000106","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"zygote stage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000107","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/UBERON_0000104"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000106","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000107\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000107\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"http://purl.obolibrary.org/obo/UBERON_0000068\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cleavage stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0040016\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002087\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000106\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cleavage stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000108\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000107\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/GO_0040016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0040016\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002087\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000106\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002087\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000106\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000107\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002087\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002087\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"UBERON:0000107\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000107\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000107\"},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000106\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"zygote stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000106\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000108\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blastula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000108\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0040016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic cleavage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0040016\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000107","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cleavage stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000107","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000107","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cleavage stage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000108","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/GO_0040016","http://purl.obolibrary.org/obo/UBERON_0000106"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000107","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000108\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000108\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"http://purl.obolibrary.org/obo/UBERON_0000068\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"consider adding a preceding stage \\u0027morula stage\\u0027 as part of cleavage\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"blastula stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000107\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"blastula stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000108\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000107\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"consider adding a preceding stage \\u0027morula stage\\u0027 as part of cleavage\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000108\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0000108\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000108\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000108\"},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cleavage stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000107\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000108","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"consider adding a preceding stage \u0027morula stage\u0027 as part of cleavage","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"blastula stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000108","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000108","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"blastula stage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000109","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/UBERON_0000107"],"searchableAnnotationValues":["consider adding a preceding stage \u0027morula stage\u0027 as part of cleavage","false"],"shortForm":"UBERON_0000108","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000109\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"http://purl.obolibrary.org/obo/UBERON_0000068\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gastrula stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000108\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrula stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000110\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000108\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000108\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000109\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0000109\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000109\"},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000108\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blastula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000108\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000110\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neurula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000110\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000109","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gastrula stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000109","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000109","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gastrula stage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000110","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/UBERON_0000108","http://purl.obolibrary.org/obo/GO_0007369","http://purl.obolibrary.org/obo/NCBITaxon_6072"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000109","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000110\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000110\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"http://purl.obolibrary.org/obo/UBERON_0000068\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"neurula stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001841\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"neurula stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001841\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001841\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000110\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"UBERON:0000110\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000110\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000110\"},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001841\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neural tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001841\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000110","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"neurula stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000110","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000110","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"neurula stage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/UBERON_0000109","http://purl.obolibrary.org/obo/GO_0001841","http://purl.obolibrary.org/obo/NCBITaxon_6072"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000110","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000111\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"http://purl.obolibrary.org/obo/UBERON_0000068\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"organogenesis stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048513\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"organogenesis stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002496\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048513\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048513\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000111\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0016880\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"future nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0016880\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002496\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts during or after\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002496\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"UBERON:0000111\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000111\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048513\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"animal organ development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048513\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000111","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"organogenesis stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000111","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000111","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"organogenesis stage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000066","http://purl.obolibrary.org/obo/UBERON_0016880"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/GO_0048513","http://purl.obolibrary.org/obo/NCBITaxon_6072"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000111","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000463\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000463\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"organism substance\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0002198\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"organism substance\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0003000\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0003000\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000463\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"value\":\"http://purl.obolibrary.org/obo/PATO_0002198\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0002198\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000463\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0002198\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality of a substance\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0002198\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0000463\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000463\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000463\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0003000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"produces\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0003000\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000463","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000465","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"organism substance","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000465"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000463","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000463","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"organism substance","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0002530","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/PATO_0002198"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000463","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"numDescendants\":38.0,\"numHierarchicalDescendants\":38.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000465\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000466\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"immaterial anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000466\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0000465\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000465\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000465","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/UBERON_0001062"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"material anatomical entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/UBERON_0001062"],"http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/UBERON_0000466","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000465","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000465","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"material anatomical entity","numDescendants":"38.0","numHierarchicalDescendants":"38.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"UBERON_0000465","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000466\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"immaterial anatomical entity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"immaterial anatomical entity\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000466\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0000466\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000466\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000466","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/UBERON_0001062"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"immaterial anatomical entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/UBERON_0001062"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000466","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000466","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"immaterial anatomical entity","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"UBERON_0000466","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":12.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000467\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0000467\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000467\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000467","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000061","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anatomical system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000061"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000467","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000467","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anatomical system","numDescendants":"3.0","numHierarchicalDescendants":"12.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000062","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0000062"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000467","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"TODO - split body and mc organism? body continues after death stage\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":20.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000463\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001048\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"TODO - split body and mc organism? body continues after death stage\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000468\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000463\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organism substance\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000463\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0000468\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000468\"},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001048\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"primordium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001048\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000468","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0010000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0010000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"TODO - split body and mc organism? body continues after death stage","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multicellular organism","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0010000","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000468","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000468","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multicellular organism","numDescendants":"2.0","numHierarchicalDescendants":"20.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000463","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0001048"],"searchableAnnotationValues":["TODO - split body and mc organism? body continues after death stage","false"],"shortForm":"UBERON_0000468","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000474\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000474\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0003100\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000990\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0003100\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000990\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0003100\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000474\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0003100\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0003100\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000474\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"UBERON:0000474\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000474\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000474\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002263\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0003100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"female organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0003100\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000474","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000990","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0003100"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0003100"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"female reproductive system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000990"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000474","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000474","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"female reproductive system","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/MONDO_0002263","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0003100","searchableAnnotationValues":"false","shortForm":"UBERON_0000474","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000922\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"embryo\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000468\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002489\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002493\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002050\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0006598\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0002489\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002489\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002493\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002493\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000922\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0016880\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"future nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0016880\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002493\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002493\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002489\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002489\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0006598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"presumptive structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002050\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"UBERON:0000922\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000922\"}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000922","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000468","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000468","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"embryo","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000468"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000922","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000922","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"embryo","numDescendants":"0.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0002050","http://purl.obolibrary.org/obo/UBERON_0006598","http://purl.obolibrary.org/obo/UBERON_0016880"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/UBERON_0000068"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000922","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0015204\",\"http://purl.obolibrary.org/obo/UBERON_0015203\",\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0015204\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0015204\",\"http://purl.obolibrary.org/obo/UBERON_0015203\",\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0015204\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0015204\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"http://purl.obolibrary.org/obo/UBERON_0001016\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000949\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002492\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002492\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0000949\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000949\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002473\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0034923\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected anatomical group\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0034923\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0015204\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"glandular system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0015204\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0015203\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"non-connected functional system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0015203\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000949","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0015204","http://purl.obolibrary.org/obo/UBERON_0015203","http://purl.obolibrary.org/obo/UBERON_0034923","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0015204","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0015204","http://purl.obolibrary.org/obo/UBERON_0015203","http://purl.obolibrary.org/obo/UBERON_0034923","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0015204","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"endocrine system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0015204"],"http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0001016"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000949","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000949","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"endocrine system","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/UBERON_0002368"],"relatedTo":["http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0000066"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000949","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"consider splitting genitalia from reproductive system\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0003133\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0005156\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0005564\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"value\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"consider splitting genitalia from reproductive system\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000990\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0000990\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000990\"},\"http://purl.obolibrary.org/obo/RO_0002492\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002492\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005156\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005156\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0003133\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0003133\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002216\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002216\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000991\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000991\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005564\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad primordium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005564\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000990","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"consider splitting genitalia from reproductive system","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"reproductive system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000467"],"http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/UBERON_0001016","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000990","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000990","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"reproductive system","numDescendants":"1.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/UBERON_0000991","http://purl.obolibrary.org/obo/UBERON_0003133","http://purl.obolibrary.org/obo/UBERON_0005156","http://purl.obolibrary.org/obo/UBERON_0005564"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000991","http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/UBERON_0000066"],"searchableAnnotationValues":["consider splitting genitalia from reproductive system","false"],"shortForm":"UBERON_0000990","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000991\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0003133\",\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0005156\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0003133\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0003133\",\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0005156\",\"http://purl.obolibrary.org/obo/UBERON_0000990\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0003133\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gonad\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0003133\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000586\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007276\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0005564\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0005564\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000586\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000586\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007276\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007276\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0005564\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0005564\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000991\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/MONDO_0002259\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002259\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007276\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gamete generation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007276\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005156\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005156\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"UBERON:0000991\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000991\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0003133\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0003133\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000586\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"germ cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000586\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000067\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contains process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000067\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005564\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad primordium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005564\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000991","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0003133","http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0005156"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0003133","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0003133","http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0005156","http://purl.obolibrary.org/obo/UBERON_0000990"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0003133","http://purl.obolibrary.org/obo/UBERON_0000990"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gonad","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0003133"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000991","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000991","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gonad","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0005564"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/CL_0000586","http://purl.obolibrary.org/obo/GO_0007276","http://purl.obolibrary.org/obo/UBERON_0005564"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000991","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000540\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#complementOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_6040\"},\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0050877\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0002319\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002495\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#disjointWith\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6040\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/CL_0002319\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000540\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000540\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/GO_0050877\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0050877\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"value\":\"http://purl.obolibrary.org/obo/CL_0002319\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0002319\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002495\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002495\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001016\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0016880\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"future nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0016880\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002495\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"immediate transformation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002495\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002492\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002492\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Porifera\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050877\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050877\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0002319\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neural cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0002319\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002162\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002162\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002473\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000540\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neuron\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000540\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0001016\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0001016\"},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0001016","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"nervous system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000467"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0001016","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001016","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"nervous system","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/CL_0002319","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/UBERON_0016880"],"relatedTo":["http://purl.obolibrary.org/obo/CL_0000540","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/UBERON_0016880","http://purl.obolibrary.org/obo/GO_0050877","http://purl.obolibrary.org/obo/CL_0002319","http://purl.obolibrary.org/obo/UBERON_0000066","http://purl.obolibrary.org/obo/UBERON_0016880"],"searchableAnnotationValues":"false","shortForm":"UBERON_0001016","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001048\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001048\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0005423\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"primordium\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0005423\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"primordium\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001048\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"UBERON:0001048\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0001048\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0001048\"},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developing anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0001048","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0005423","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"primordium","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0005423"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0001048","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001048","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"primordium","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000468","searchableAnnotationValues":"false","shortForm":"UBERON_0001048","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"numDescendants\":42.0,\"numHierarchicalDescendants\":42.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001062\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"UBERON:0001062\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0001062\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0001062","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000004","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000004","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anatomical entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000004","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0001062","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001062","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anatomical entity","numDescendants":"42.0","numHierarchicalDescendants":"42.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"UBERON_0001062","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002050\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002050\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0005423\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"embryonic structure\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0005423\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic structure\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002050\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"UBERON:0002050\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0002050\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0002050\"},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000922\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000922\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developing anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0002050","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0005423","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000922","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000922"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"embryonic structure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0005423"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0002050","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002050","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"embryonic structure","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000922","searchableAnnotationValues":"false","shortForm":"UBERON_0002050","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"http://purl.obolibrary.org/obo/UBERON_0015204\",\"http://purl.obolibrary.org/obo/UBERON_0015203\",\"http://purl.obolibrary.org/obo/UBERON_0034923\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0002530\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0002530\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0046879\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/GO_0046879\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0046879\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002368\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0002368\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0002368\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002473\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0034923\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected anatomical group\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0034923\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0015204\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"glandular system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0015204\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0015203\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"non-connected functional system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0015203\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0046879\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hormone secretion\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0046879\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0002368","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0002530","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0015204","http://purl.obolibrary.org/obo/UBERON_0015203","http://purl.obolibrary.org/obo/UBERON_0034923"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000949"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"endocrine gland","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0002530"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0002368","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002368","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"endocrine gland","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000949","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/GO_0046879"],"searchableAnnotationValues":"false","shortForm":"UBERON_0002368","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000062\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0046903\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0003000\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000463\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0015204\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/GO_0046903\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0046903\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0003000\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000463\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0003000\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000463\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002530\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"UBERON:0002530\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0002530\"},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000062\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000463\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organism substance\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000463\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002473\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0003000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"produces\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0003000\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0046903\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"secretion\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0046903\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0015204\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"glandular system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0015204\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0002530","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000062","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000062","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gland","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000062"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0002530","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002530","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gland","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0015204","relatedTo":["http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/UBERON_0000463"],"searchableAnnotationValues":"false","shortForm":"UBERON_0002530","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0003100\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0003100\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"female organism\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"female organism\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000474\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0003100\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0003100\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"UBERON:0003100\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0003100\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0003100\"},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000474\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000474\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0003100","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000468","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000468","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"female organism","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0000468","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0003100","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0003100","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"female organism","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000474","searchableAnnotationValues":"false","shortForm":"UBERON_0003100","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0003133\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0003133\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0005156\"],\"directParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0005156\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0005156\",\"http://purl.obolibrary.org/obo/UBERON_0000990\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0005156\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"reproductive organ\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0005156\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive organ\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"value\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0003133\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005156\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005156\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0003133\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0003133\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0003133\"},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002216\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002216\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0003133","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0005156"],"directParent":["http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0005156"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0005156","http://purl.obolibrary.org/obo/UBERON_0000990"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0005156","http://purl.obolibrary.org/obo/UBERON_0000990"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"reproductive organ","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0005156"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0003133","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0003133","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"reproductive organ","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/GO_0000003"],"searchableAnnotationValues":"false","shortForm":"UBERON_0003133","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0005156\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005156\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"reproductive structure\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive structure\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0005156\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0005156\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0005156\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0005156\"},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0005156","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0010000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000990"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"reproductive structure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0010000"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0005156","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0005156","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"reproductive structure","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000990","searchableAnnotationValues":"false","shortForm":"UBERON_0005156","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005423\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"developing anatomical structure\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"developing anatomical structure\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0005423\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"UBERON:0005423\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0005423\"},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0005423","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000465","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000465","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"developing anatomical structure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000465"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0005423","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0005423","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"developing anatomical structure","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0032502","searchableAnnotationValues":"false","shortForm":"UBERON_0005423","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0005564\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005564\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001048\",\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0001048\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001048\",\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"http://purl.obolibrary.org/obo/UBERON_0000467\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0001048\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gonad primordium\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0001048\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad primordium\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0005564\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0005564\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"UBERON:0005564\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0005564\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0005564\"},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developing anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001048\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"primordium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001048\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000991\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000991\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0005564","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0001048","http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0001048","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0001048","http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0000467"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0001048","http://purl.obolibrary.org/obo/UBERON_0000990"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gonad primordium","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0001048"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0005564","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0005564","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gonad primordium","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000991","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0000991"],"searchableAnnotationValues":"false","shortForm":"UBERON_0005564","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0006598\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006598\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0002050\",\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0002050\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0002050\",\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0002050\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"Consider merging with anlage\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"presumptive structure\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0002050\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"presumptive structure\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Consider merging with anlage\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0006598\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000922\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000922\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developing anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0006598\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0006598\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0006598\"},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002050\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0006598","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0002050","http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0002050","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0002050","http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000922","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0002050","http://purl.obolibrary.org/obo/UBERON_0000922"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"Consider merging with anlage","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"presumptive structure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0002050"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0006598","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0006598","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"presumptive structure","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000922","http://purl.obolibrary.org/obo/UBERON_0000061"],"searchableAnnotationValues":["Consider merging with anlage","false"],"shortForm":"UBERON_0006598","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0006984\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006984\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0010199\",\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0010199\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0010199\",\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0010199\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anatomical surface\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0010199\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical surface\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0006984\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0006984\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000062\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000466\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"immaterial anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000466\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has 2D boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002002\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0006984\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0006984\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0006984\"},\"http://purl.obolibrary.org/obo/UBERON_0010199\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"bona-fide anatomical boundary\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010199\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0006984","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0010199","http://purl.obolibrary.org/obo/UBERON_0000466","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0010199","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0010199","http://purl.obolibrary.org/obo/UBERON_0000466","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0010199","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anatomical surface","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0010199","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0006984","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0006984","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anatomical surface","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000062","searchableAnnotationValues":"false","shortForm":"UBERON_0006984","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0001993\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"numDescendants\":9.0,\"numHierarchicalDescendants\":21.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"value\":\"http://purl.obolibrary.org/obo/PATO_0001993\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0001993\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0010000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/PATO_0001993\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001993\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0010000\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0010000\"},\"http://purl.obolibrary.org/obo/RO_0000086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0010000","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000061","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000061","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multicellular anatomical structure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000061"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0010000","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0010000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multicellular anatomical structure","numDescendants":"9.0","numHierarchicalDescendants":"21.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":["http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/PATO_0001993"],"searchableAnnotationValues":"false","shortForm":"UBERON_0010000","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0010199\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010199\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"bona-fide anatomical boundary\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"bona-fide anatomical boundary\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0010199\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"UBERON:0010199\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0010199\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0010199\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000466\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"immaterial anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000466\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0010199","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000466","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000466","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000466","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000466","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"bona-fide anatomical boundary","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0000466","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0010199","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0010199","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"bona-fide anatomical boundary","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"UBERON_0010199","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0015203\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0015203\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"non-connected functional system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"non-connected functional system\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0015203\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"UBERON:0015203\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0015203\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0015203\"},\"http://purl.obolibrary.org/obo/UBERON_0034923\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected anatomical group\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0034923\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0015203","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0034923","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0034923","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0034923","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0034923","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"non-connected functional system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0034923","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0015203","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0015203","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"non-connected functional system","numDescendants":"2.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"UBERON_0015203","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0015204\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0015204\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0015203\",\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0015203\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0015203\",\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0015203\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"glandular system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0015203\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"glandular system\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0015204\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"UBERON:0015204\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0015204\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0015204\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002473\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0034923\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected anatomical group\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0034923\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0015203\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"non-connected functional system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0015203\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0015204","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0015203","http://purl.obolibrary.org/obo/UBERON_0034923","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0015203","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0015203","http://purl.obolibrary.org/obo/UBERON_0034923","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0015203","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"glandular system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0015203"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0015204","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0015204","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"glandular system","numDescendants":"1.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0002530","searchableAnnotationValues":"false","shortForm":"UBERON_0015204","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0016880\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0006598\",\"http://purl.obolibrary.org/obo/UBERON_0002050\",\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0006598\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0006598\",\"http://purl.obolibrary.org/obo/UBERON_0002050\",\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0006598\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"future nervous system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0006598\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"future nervous system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002495\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002495\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002496\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0016880\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002495\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"immediate transformation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002495\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002496\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts during or after\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002496\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000922\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000922\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developing anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005423\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0016880\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0016880\"},\"http://purl.obolibrary.org/obo/UBERON_0006598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"presumptive structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002050\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organogenesis stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000111\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0016880","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0006598","http://purl.obolibrary.org/obo/UBERON_0002050","http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0006598","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0006598","http://purl.obolibrary.org/obo/UBERON_0002050","http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000922","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0006598","http://purl.obolibrary.org/obo/UBERON_0000922"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"future nervous system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0006598"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0016880","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0016880","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"future nervous system","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0001016","http://purl.obolibrary.org/obo/UBERON_0001016"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000922","http://purl.obolibrary.org/obo/UBERON_0001016","http://purl.obolibrary.org/obo/UBERON_0000111"],"searchableAnnotationValues":"false","shortForm":"UBERON_0016880","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0034923\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disconnected anatomical group\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0010001\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#minQualifiedCardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"2\"},\"http://www.w3.org/2002/07/owl#onClass\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002180\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected anatomical group\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"value\":\"http://purl.obolibrary.org/obo/PATO_0010001\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0010001\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0034923\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"UBERON:0034923\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0034923\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0010001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0010001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/RO_0002473\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002180\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0034923","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000465","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000465","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"disconnected anatomical group","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000465"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0034923","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0034923","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disconnected anatomical group","numDescendants":"3.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":["http://purl.obolibrary.org/obo/PATO_0010001","http://purl.obolibrary.org/obo/UBERON_0000061"],"searchableAnnotationValues":"false","shortForm":"UBERON_0034923","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of classes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of classes.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_Class\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"RDFS:Class","definedBy":["rdfs"],"definition":"The class of classes.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of classes.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Class","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Class","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#Class","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Class","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"RDFS_Class","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Container\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Container\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of RDF containers.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of RDF containers.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Container\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Container\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_Container\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"RDFS:Container","definedBy":["rdfs"],"definition":"The class of RDF containers.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of RDF containers.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Container","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Container","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#Container","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Container","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"RDFS_Container","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:ContainerMembershipProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of container membership properties, rdf:_1, rdf:_2, ...,\\n all of which are sub-properties of \\u0027member\\u0027.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of container membership properties, rdf:_1, rdf:_2, ...,\\n all of which are sub-properties of \\u0027member\\u0027.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"ContainerMembershipProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"ContainerMembershipProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_ContainerMembershipProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"RDFS:ContainerMembershipProperty","definedBy":["rdfs"],"definition":"The class of container membership properties, rdf:_1, rdf:_2, ...,\n all of which are sub-properties of \u0027member\u0027.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of container membership properties, rdf:_1, rdf:_2, ...,\n all of which are sub-properties of \u0027member\u0027.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"ContainerMembershipProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"rdfs+class+http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"ContainerMembershipProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"RDFS_ContainerMembershipProperty","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Datatype\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of RDF datatypes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of RDF datatypes.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_Datatype\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"RDFS:Datatype","definedBy":["rdfs"],"definition":"The class of RDF datatypes.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"directParent":"http://www.w3.org/2000/01/rdf-schema#Class","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Class","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of RDF datatypes.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Datatype","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Class","id":"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Datatype","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#Datatype","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Datatype","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"RDFS_Datatype","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Literal\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of literal values, eg. textual strings and integers.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of literal values, eg. textual strings and integers.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_Literal\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"RDFS:Literal","definedBy":["rdfs"],"definition":"The class of literal values, eg. textual strings and integers.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of literal values, eg. textual strings and integers.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Literal","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Literal","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#Literal","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Literal","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"RDFS_Literal","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class resource, everything.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class resource, everything.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_Resource\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"RDFS:Resource","definedBy":["rdfs"],"definition":"The class resource, everything.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class resource, everything.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Resource","id":"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Resource","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#Resource","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Resource","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"RDFS_Resource","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of classes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of classes.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_Class\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"RDFS:Class","definedBy":["rdfs"],"definition":"The class of classes.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of classes.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Class","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2000/01/rdf-schema#Class","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#Class","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Class","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"RDFS_Class","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Container\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Container\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of RDF containers.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of RDF containers.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Container\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Container\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_Container\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"RDFS:Container","definedBy":["rdfs"],"definition":"The class of RDF containers.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of RDF containers.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Container","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2000/01/rdf-schema#Container","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#Container","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Container","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"RDFS_Container","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:ContainerMembershipProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of container membership properties, rdf:_1, rdf:_2, ...,\\n all of which are sub-properties of \\u0027member\\u0027.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of container membership properties, rdf:_1, rdf:_2, ...,\\n all of which are sub-properties of \\u0027member\\u0027.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"ContainerMembershipProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"ContainerMembershipProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_ContainerMembershipProperty\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"RDFS:ContainerMembershipProperty","definedBy":["rdfs"],"definition":"The class of container membership properties, rdf:_1, rdf:_2, ...,\n all of which are sub-properties of \u0027member\u0027.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of container membership properties, rdf:_1, rdf:_2, ...,\n all of which are sub-properties of \u0027member\u0027.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"ContainerMembershipProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+class+http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ContainerMembershipProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"RDFS_ContainerMembershipProperty","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Datatype\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of RDF datatypes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of RDF datatypes.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_Datatype\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"RDFS:Datatype","definedBy":["rdfs"],"definition":"The class of RDF datatypes.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"directParent":"http://www.w3.org/2000/01/rdf-schema#Class","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Class","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of RDF datatypes.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Datatype","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+class+http://www.w3.org/2000/01/rdf-schema#Datatype","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#Datatype","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Datatype","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"RDFS_Datatype","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Literal\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of literal values, eg. textual strings and integers.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of literal values, eg. textual strings and integers.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_Literal\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"RDFS:Literal","definedBy":["rdfs"],"definition":"The class of literal values, eg. textual strings and integers.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of literal values, eg. textual strings and integers.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Literal","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2000/01/rdf-schema#Literal","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#Literal","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Literal","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"RDFS_Literal","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class resource, everything.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class resource, everything.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"numDescendants\":15.0,\"numHierarchicalDescendants\":15.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_Resource\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"rdfs\",\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["rdfs","owl"],"curie":"RDFS:Resource","definedBy":["rdfs"],"definition":"The class resource, everything.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class resource, everything.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"Resource","id":"owl+class+http://www.w3.org/2000/01/rdf-schema#Resource","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#Resource","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Resource","numDescendants":"15.0","numHierarchicalDescendants":"15.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"RDFS_Resource","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#AllDifferent\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:AllDifferent\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of collections of pairwise different individuals.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of collections of pairwise different individuals.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"AllDifferent\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"AllDifferent\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_AllDifferent\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:AllDifferent","definedBy":["owl"],"definition":"The class of collections of pairwise different individuals.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of collections of pairwise different individuals.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"AllDifferent","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2002/07/owl#AllDifferent","imported":"false","iri":"http://www.w3.org/2002/07/owl#AllDifferent","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"AllDifferent","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_AllDifferent","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#AllDisjointClasses\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:AllDisjointClasses\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of collections of pairwise disjoint classes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of collections of pairwise disjoint classes.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"AllDisjointClasses\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"AllDisjointClasses\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_AllDisjointClasses\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:AllDisjointClasses","definedBy":["owl"],"definition":"The class of collections of pairwise disjoint classes.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of collections of pairwise disjoint classes.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"AllDisjointClasses","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2002/07/owl#AllDisjointClasses","imported":"false","iri":"http://www.w3.org/2002/07/owl#AllDisjointClasses","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"AllDisjointClasses","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_AllDisjointClasses","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#AllDisjointProperties\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:AllDisjointProperties\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of collections of pairwise disjoint properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of collections of pairwise disjoint properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"AllDisjointProperties\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"AllDisjointProperties\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_AllDisjointProperties\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:AllDisjointProperties","definedBy":["owl"],"definition":"The class of collections of pairwise disjoint properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of collections of pairwise disjoint properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"AllDisjointProperties","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2002/07/owl#AllDisjointProperties","imported":"false","iri":"http://www.w3.org/2002/07/owl#AllDisjointProperties","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"AllDisjointProperties","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_AllDisjointProperties","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#Annotation\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:Annotation\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Annotation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Annotation\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_Annotation\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:Annotation","definedBy":["owl"],"definition":"The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"Annotation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2002/07/owl#Annotation","imported":"false","iri":"http://www.w3.org/2002/07/owl#Annotation","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Annotation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_Annotation","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:AnnotationProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of annotation properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of annotation properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"AnnotationProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"AnnotationProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_AnnotationProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:AnnotationProperty","definedBy":["owl"],"definition":"The class of annotation properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of annotation properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+class+http://www.w3.org/2002/07/owl#AnnotationProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#AnnotationProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"AnnotationProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_AnnotationProperty","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#AsymmetricProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:AsymmetricProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of asymmetric properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"directParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of asymmetric properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"AsymmetricProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"AsymmetricProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_AsymmetricProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:AsymmetricProperty","definedBy":["owl"],"definition":"The class of asymmetric properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","directParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of asymmetric properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"AsymmetricProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#ObjectProperty","id":"owl+class+http://www.w3.org/2002/07/owl#AsymmetricProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#AsymmetricProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"AsymmetricProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_AsymmetricProperty","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#Axiom\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:Axiom\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Axiom\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Axiom\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_Axiom\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:Axiom","definedBy":["owl"],"definition":"The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"Axiom","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2002/07/owl#Axiom","imported":"false","iri":"http://www.w3.org/2002/07/owl#Axiom","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Axiom","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_Axiom","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#Class\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:Class\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of OWL classes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of OWL classes.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_Class\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:Class","definedBy":["owl"],"definition":"The class of OWL classes.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"directParent":"http://www.w3.org/2000/01/rdf-schema#Class","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Class","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of OWL classes.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"Class","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+class+http://www.w3.org/2002/07/owl#Class","imported":"false","iri":"http://www.w3.org/2002/07/owl#Class","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Class","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_Class","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#DataRange\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:DataRange\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"DataRange\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"DataRange\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_DataRange\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Datatype\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Datatype\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:DataRange","definedBy":["owl"],"definition":"The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2000/01/rdf-schema#Datatype","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"directParent":"http://www.w3.org/2000/01/rdf-schema#Datatype","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://www.w3.org/2000/01/rdf-schema#Datatype","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Datatype","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"DataRange","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Datatype","id":"owl+class+http://www.w3.org/2002/07/owl#DataRange","imported":"false","iri":"http://www.w3.org/2002/07/owl#DataRange","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"DataRange","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_DataRange","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#DatatypeProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:DatatypeProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of data properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of data properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"DatatypeProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"DatatypeProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_DatatypeProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:DatatypeProperty","definedBy":["owl"],"definition":"The class of data properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of data properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"DatatypeProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+class+http://www.w3.org/2002/07/owl#DatatypeProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#DatatypeProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"DatatypeProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_DatatypeProperty","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#DeprecatedClass\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:DeprecatedClass\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of deprecated classes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of deprecated classes.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"DeprecatedClass\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"DeprecatedClass\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_DeprecatedClass\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:DeprecatedClass","definedBy":["owl"],"definition":"The class of deprecated classes.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"directParent":"http://www.w3.org/2000/01/rdf-schema#Class","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Class","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of deprecated classes.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"DeprecatedClass","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+class+http://www.w3.org/2002/07/owl#DeprecatedClass","imported":"false","iri":"http://www.w3.org/2002/07/owl#DeprecatedClass","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"DeprecatedClass","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_DeprecatedClass","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#DeprecatedProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:DeprecatedProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of deprecated properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of deprecated properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"DeprecatedProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"DeprecatedProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_DeprecatedProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:DeprecatedProperty","definedBy":["owl"],"definition":"The class of deprecated properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of deprecated properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"DeprecatedProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+class+http://www.w3.org/2002/07/owl#DeprecatedProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#DeprecatedProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"DeprecatedProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_DeprecatedProperty","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#FunctionalProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:FunctionalProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of functional properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of functional properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"FunctionalProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"FunctionalProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_FunctionalProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:FunctionalProperty","definedBy":["owl"],"definition":"The class of functional properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of functional properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"FunctionalProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+class+http://www.w3.org/2002/07/owl#FunctionalProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#FunctionalProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"FunctionalProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_FunctionalProperty","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#InverseFunctionalProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:InverseFunctionalProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of inverse-functional properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"directParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of inverse-functional properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"InverseFunctionalProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"InverseFunctionalProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_InverseFunctionalProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:InverseFunctionalProperty","definedBy":["owl"],"definition":"The class of inverse-functional properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","directParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of inverse-functional properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"InverseFunctionalProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#ObjectProperty","id":"owl+class+http://www.w3.org/2002/07/owl#InverseFunctionalProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#InverseFunctionalProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"InverseFunctionalProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_InverseFunctionalProperty","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#IrreflexiveProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:IrreflexiveProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of irreflexive properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"directParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of irreflexive properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"IrreflexiveProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IrreflexiveProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_IrreflexiveProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:IrreflexiveProperty","definedBy":["owl"],"definition":"The class of irreflexive properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","directParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of irreflexive properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"IrreflexiveProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#ObjectProperty","id":"owl+class+http://www.w3.org/2002/07/owl#IrreflexiveProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#IrreflexiveProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"IrreflexiveProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_IrreflexiveProperty","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:NamedIndividual\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of named individuals.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2002/07/owl#Thing\",\"directParent\":\"http://www.w3.org/2002/07/owl#Thing\",\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":\"http://www.w3.org/2002/07/owl#Thing\",\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#Thing\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of named individuals.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"NamedIndividual\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"NamedIndividual\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_NamedIndividual\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:NamedIndividual","definedBy":["owl"],"definition":"The class of named individuals.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2002/07/owl#Thing","directParent":"http://www.w3.org/2002/07/owl#Thing","hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":"http://www.w3.org/2002/07/owl#Thing","hierarchicalParent":"http://www.w3.org/2002/07/owl#Thing","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of named individuals.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"NamedIndividual","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#Thing","id":"owl+class+http://www.w3.org/2002/07/owl#NamedIndividual","imported":"false","iri":"http://www.w3.org/2002/07/owl#NamedIndividual","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"NamedIndividual","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_NamedIndividual","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#NegativePropertyAssertion\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:NegativePropertyAssertion\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of negative property assertions.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of negative property assertions.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"NegativePropertyAssertion\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"NegativePropertyAssertion\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_NegativePropertyAssertion\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:NegativePropertyAssertion","definedBy":["owl"],"definition":"The class of negative property assertions.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of negative property assertions.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"NegativePropertyAssertion","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2002/07/owl#NegativePropertyAssertion","imported":"false","iri":"http://www.w3.org/2002/07/owl#NegativePropertyAssertion","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"NegativePropertyAssertion","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_NegativePropertyAssertion","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#Nothing\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:Nothing\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"This is the empty class.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2002/07/owl#Thing\",\"directParent\":\"http://www.w3.org/2002/07/owl#Thing\",\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":\"http://www.w3.org/2002/07/owl#Thing\",\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#Thing\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"This is the empty class.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Nothing\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Nothing\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_Nothing\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:Nothing","definedBy":["owl"],"definition":"This is the empty class.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2002/07/owl#Thing","directParent":"http://www.w3.org/2002/07/owl#Thing","hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":"http://www.w3.org/2002/07/owl#Thing","hierarchicalParent":"http://www.w3.org/2002/07/owl#Thing","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"This is the empty class.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"Nothing","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#Thing","id":"owl+class+http://www.w3.org/2002/07/owl#Nothing","imported":"false","iri":"http://www.w3.org/2002/07/owl#Nothing","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Nothing","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_Nothing","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:ObjectProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of object properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of object properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"ObjectProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"ObjectProperty\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_ObjectProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:ObjectProperty","definedBy":["owl"],"definition":"The class of object properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of object properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+class+http://www.w3.org/2002/07/owl#ObjectProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#ObjectProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"ObjectProperty","numDescendants":"6.0","numHierarchicalDescendants":"6.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_ObjectProperty","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#Ontology\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:Ontology\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of ontologies.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalParent\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of ontologies.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Ontology\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Ontology\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_Ontology\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:Ontology","definedBy":["owl"],"definition":"The class of ontologies.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","directParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalParent":"http://www.w3.org/2000/01/rdf-schema#Resource","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of ontologies.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"Ontology","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+class+http://www.w3.org/2002/07/owl#Ontology","imported":"false","iri":"http://www.w3.org/2002/07/owl#Ontology","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Ontology","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_Ontology","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#OntologyProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:OntologyProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of ontology properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of ontology properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"OntologyProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"OntologyProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_OntologyProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:OntologyProperty","definedBy":["owl"],"definition":"The class of ontology properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of ontology properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"OntologyProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+class+http://www.w3.org/2002/07/owl#OntologyProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#OntologyProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"OntologyProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_OntologyProperty","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#ReflexiveProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:ReflexiveProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of reflexive properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"directParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of reflexive properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"ReflexiveProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"ReflexiveProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_ReflexiveProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:ReflexiveProperty","definedBy":["owl"],"definition":"The class of reflexive properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","directParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of reflexive properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"ReflexiveProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#ObjectProperty","id":"owl+class+http://www.w3.org/2002/07/owl#ReflexiveProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#ReflexiveProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"ReflexiveProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_ReflexiveProperty","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#Restriction\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:Restriction\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of property restrictions.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"directParent\":\"http://www.w3.org/2002/07/owl#Class\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#Resource\"],\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#Class\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of property restrictions.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Restriction\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Restriction\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_Restriction\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:Restriction","definedBy":["owl"],"definition":"The class of property restrictions.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2002/07/owl#Class","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"directParent":"http://www.w3.org/2002/07/owl#Class","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://www.w3.org/2002/07/owl#Class","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource"],"hierarchicalParent":"http://www.w3.org/2002/07/owl#Class","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of property restrictions.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"Restriction","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#Class","id":"owl+class+http://www.w3.org/2002/07/owl#Restriction","imported":"false","iri":"http://www.w3.org/2002/07/owl#Restriction","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Restriction","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_Restriction","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#SymmetricProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:SymmetricProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of symmetric properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"directParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of symmetric properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"SymmetricProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"SymmetricProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_SymmetricProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:SymmetricProperty","definedBy":["owl"],"definition":"The class of symmetric properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","directParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of symmetric properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"SymmetricProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#ObjectProperty","id":"owl+class+http://www.w3.org/2002/07/owl#SymmetricProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#SymmetricProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"SymmetricProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_SymmetricProperty","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#Thing\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:Thing\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of OWL individuals.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of OWL individuals.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Thing\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Thing\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_Thing\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:Thing","definedBy":["owl"],"definition":"The class of OWL individuals.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of OWL individuals.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"Thing","id":"owl+class+http://www.w3.org/2002/07/owl#Thing","imported":"false","iri":"http://www.w3.org/2002/07/owl#Thing","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Thing","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_Thing","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#TransitiveProperty\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:TransitiveProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The class of transitive properties.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"directParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalParent\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The class of transitive properties.\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"TransitiveProperty\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"TransitiveProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_TransitiveProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:TransitiveProperty","definedBy":["owl"],"definition":"The class of transitive properties.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","directParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalParent":"http://www.w3.org/2002/07/owl#ObjectProperty","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"The class of transitive properties.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"TransitiveProperty","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#ObjectProperty","id":"owl+class+http://www.w3.org/2002/07/owl#TransitiveProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#TransitiveProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"TransitiveProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_TransitiveProperty","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#Collection\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:Collection\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Collection\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://www.w3.org/2004/02/skos/core#Concept\",\"http://www.w3.org/2004/02/skos/core#ConceptScheme\"],\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A meaningful collection of concepts.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Labelled collections can be used where you would like a set of concepts to be displayed under a \\u0027node label\\u0027 in the hierarchy.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Collection\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A meaningful collection of concepts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Labelled collections can be used where you would like a set of concepts to be displayed under a \\u0027node label\\u0027 in the hierarchy.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_Collection\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#Concept\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:Concept\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#ConceptScheme\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept Scheme\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:ConceptScheme\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:Collection","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"Collection","http__//www.w3.org/2002/07/owl#disjointWith":["http://www.w3.org/2004/02/skos/core#Concept","http://www.w3.org/2004/02/skos/core#ConceptScheme"],"http__//www.w3.org/2004/02/skos/core#definition":"A meaningful collection of concepts.","http__//www.w3.org/2004/02/skos/core#scopeNote":"Labelled collections can be used where you would like a set of concepts to be displayed under a \u0027node label\u0027 in the hierarchy.","id":"skos+class+http://www.w3.org/2004/02/skos/core#Collection","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#Collection","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Collection","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A meaningful collection of concepts.","Labelled collections can be used where you would like a set of concepts to be displayed under a \u0027node label\u0027 in the hierarchy.","false"],"shortForm":"SKOS_Collection","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#Concept\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:Concept\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An idea or notion; a unit of thought.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An idea or notion; a unit of thought.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_Concept\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:Concept","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"Concept","http__//www.w3.org/2004/02/skos/core#definition":"An idea or notion; a unit of thought.","id":"skos+class+http://www.w3.org/2004/02/skos/core#Concept","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#Concept","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Concept","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["An idea or notion; a unit of thought.","false"],"shortForm":"SKOS_Concept","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#ConceptScheme\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:ConceptScheme\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept Scheme\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://www.w3.org/2004/02/skos/core#Concept\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A set of concepts, optionally including statements about semantic relationships between those concepts.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#example\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Thesauri, classification schemes, subject heading lists, taxonomies, \\u0027folksonomies\\u0027, and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A concept scheme may be defined to include concepts from different sources.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept Scheme\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A set of concepts, optionally including statements about semantic relationships between those concepts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Thesauri, classification schemes, subject heading lists, taxonomies, \\u0027folksonomies\\u0027, and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A concept scheme may be defined to include concepts from different sources.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_ConceptScheme\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#Concept\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:Concept\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#example\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:example\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:ConceptScheme","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"Concept Scheme","http__//www.w3.org/2002/07/owl#disjointWith":"http://www.w3.org/2004/02/skos/core#Concept","http__//www.w3.org/2004/02/skos/core#definition":"A set of concepts, optionally including statements about semantic relationships between those concepts.","http__//www.w3.org/2004/02/skos/core#example":"Thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies.","http__//www.w3.org/2004/02/skos/core#scopeNote":"A concept scheme may be defined to include concepts from different sources.","id":"skos+class+http://www.w3.org/2004/02/skos/core#ConceptScheme","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#ConceptScheme","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Concept Scheme","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A set of concepts, optionally including statements about semantic relationships between those concepts.","Thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies.","A concept scheme may be defined to include concepts from different sources.","false"],"shortForm":"SKOS_ConceptScheme","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#OrderedCollection\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:OrderedCollection\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#Collection\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#Collection\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.w3.org/2004/02/skos/core#Collection\",\"hierarchicalParent\":\"http://www.w3.org/2004/02/skos/core#Collection\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ordered Collection\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2004/02/skos/core#Collection\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ordered collection of concepts, where both the grouping and the ordering are meaningful.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a \\u0027node label\\u0027.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ordered Collection\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ordered collection of concepts, where both the grouping and the ordering are meaningful.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a \\u0027node label\\u0027.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_OrderedCollection\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#Collection\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Collection\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:Collection\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:OrderedCollection","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#Collection","directParent":"http://www.w3.org/2004/02/skos/core#Collection","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.w3.org/2004/02/skos/core#Collection","hierarchicalParent":"http://www.w3.org/2004/02/skos/core#Collection","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"Ordered Collection","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2004/02/skos/core#Collection","http__//www.w3.org/2004/02/skos/core#definition":"An ordered collection of concepts, where both the grouping and the ordering are meaningful.","http__//www.w3.org/2004/02/skos/core#scopeNote":"Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a \u0027node label\u0027.","id":"skos+class+http://www.w3.org/2004/02/skos/core#OrderedCollection","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#OrderedCollection","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"Ordered Collection","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["An ordered collection of concepts, where both the grouping and the ordering are meaningful.","Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a \u0027node label\u0027.","false"],"shortForm":"SKOS_OrderedCollection","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"isObsolete\":false},\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"numDescendants\":105.0,\"numHierarchicalDescendants\":105.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000002","definition":"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"continuant","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/BFO_0000003"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000002","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000002","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"continuant","numDescendants":"105.0","numHierarchicalDescendants":"105.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240","false"],"shortForm":"BFO_0000002","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that has temporal parts and that happens, unfolds or develops through time.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that has temporal parts and that happens, unfolds or develops through time.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"isObsolete\":false},\"http://www.w3.org/2002/07/owl#disjointWith\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"numDescendants\":14.0,\"numHierarchicalDescendants\":14.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that has temporal parts and that happens, unfolds or develops through time.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000003\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000003","definition":"An entity that has temporal parts and that happens, unfolds or develops through time.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An entity that has temporal parts and that happens, unfolds or develops through time.","http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region","BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"occurrent","id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000003","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000003","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"occurrent","numDescendants":"14.0","numHierarchicalDescendants":"14.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["An entity that has temporal parts and that happens, unfolds or develops through time.","BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region","BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.","false"],"shortForm":"BFO_0000003","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"numDescendants\":45.0,\"numHierarchicalDescendants\":45.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000004\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000004","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000002","directParent":"http://purl.obolibrary.org/obo/BFO_0000002","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/BFO_0000002","hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000002","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"independent continuant","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/BFO_0000002"],"http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000020","id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000004","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000004","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"independent continuant","numDescendants":"45.0","numHierarchicalDescendants":"45.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"BFO_0000004","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000015\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000015","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000003","directParent":"http://purl.obolibrary.org/obo/BFO_0000003","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/BFO_0000003","hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000003","id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000015","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000015","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"process","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)","false"],"shortForm":"BFO_0000015","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"numDescendants\":35.0,\"numHierarchicalDescendants\":35.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000016\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000023\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000016","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000017","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000017","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"disposition","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000017","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000023","id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000016","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000016","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disposition","numDescendants":"35.0","numHierarchicalDescendants":"35.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.","false"],"shortForm":"BFO_0000016","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"numDescendants\":37.0,\"numHierarchicalDescendants\":37.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000017\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000017","definition":"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000020","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000020","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"realizable entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/BFO_0000020"],"http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000019","id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000017","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000017","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"realizable entity","numDescendants":"37.0","numHierarchicalDescendants":"37.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","false"],"shortForm":"BFO_0000017","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000019\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000019","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000020","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000020","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/BFO_0000020"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000019","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000019","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"quality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"BFO_0000019","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"numDescendants\":58.0,\"numHierarchicalDescendants\":58.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000020\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000020","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000002","directParent":"http://purl.obolibrary.org/obo/BFO_0000002","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/BFO_0000002","hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000002","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"specifically dependent continuant","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/BFO_0000002"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000020","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000020","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"specifically dependent continuant","numDescendants":"58.0","numHierarchicalDescendants":"58.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"BFO_0000020","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000023\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \\u003dDef. there is some c, c instance_of professor role \\u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \\u003dDef. there is some c, c instance_of professor role \\u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000023\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000023","definition":"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000017","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000017","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \u003dDef. there is some c, c instance_of professor role \u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"role","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000017","id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000023","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000023","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"role","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \u003dDef. there is some c, c instance_of professor role \u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.","false"],"shortForm":"BFO_0000023","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000034\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000034\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000034\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:function\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_function\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:function\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000034","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000016","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000016","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"function","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000016","id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000034","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000034","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"function","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.","false"],"shortForm":"BFO_0000034","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here.\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"numDescendants\":39.0,\"numHierarchicalDescendants\":39.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000040\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000040","definition":"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000004","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000004","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60","BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.","BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"material entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/BFO_0000141"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000040","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000040","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"material entity","numDescendants":"39.0","numHierarchicalDescendants":"39.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60","BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.","BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here.","false"],"shortForm":"BFO_0000040","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2002/07/owl#disjointWith\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000141\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000141","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000004","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000004","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"immaterial entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000004","id":"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000141","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000141","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"immaterial entity","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10","false"],"shortForm":"BFO_0000141","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"numDescendants\":11.0,\"numHierarchicalDescendants\":11.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000000","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000061","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000061","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000061"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000000","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cell","numDescendants":"11.0","numHierarchicalDescendants":"11.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0010000","relatedTo":"http://purl.obolibrary.org/obo/NCBITaxon_131567","searchableAnnotationValues":"false","shortForm":"CL_0000000","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":10.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000003\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000003","directAncestor":["http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"native cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/CL_0000000","id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000003","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000003","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"native cell","numDescendants":"10.0","numHierarchicalDescendants":"10.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"CL_0000003","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000039\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000039\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000003\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"germ line cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/CL_0000003\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0022414\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/CL_0002371\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"germ line cell\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/GO_0022414\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0022414\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000039\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0022414\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0022414\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0002371\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"somatic cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0002371\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000039","directAncestor":["http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000003","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"germ line cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/CL_0000003"],"http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/CL_0002371","id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000039","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000039","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"germ line cell","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0022414","searchableAnnotationValues":"false","shortForm":"CL_0000039","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000211\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000211\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000003\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"electrically active cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/CL_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"electrically active cell\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000211\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000211","directAncestor":["http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000003","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"electrically active cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/CL_0000003","id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000211","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000211","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"electrically active cell","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"CL_0000211","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000255\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000255\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000003\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"eukaryotic cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/CL_0000003\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"eukaryotic cell\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000255\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000255","directAncestor":["http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000003","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"eukaryotic cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/CL_0000003"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000255","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000255","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"eukaryotic cell","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/NCBITaxon_2759","searchableAnnotationValues":"false","shortForm":"CL_0000255","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000393\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000393\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000211\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000211\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000211\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000211\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"electrically responsive cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/CL_0000211\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"electrically responsive cell\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000393\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"electrically active cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000211\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000393","directAncestor":["http://purl.obolibrary.org/obo/CL_0000211","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000211","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000211","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000211","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"electrically responsive cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/CL_0000211","id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000393","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000393","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"electrically responsive cell","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"CL_0000393","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000404\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000404\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000211\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000211\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000211\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000211\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"electrically signaling cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/CL_0000211\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"electrically signaling cell\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000404\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"electrically active cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000211\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000404","directAncestor":["http://purl.obolibrary.org/obo/CL_0000211","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000211","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000211","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000211","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"electrically signaling cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/CL_0000211","id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000404","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000404","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"electrically signaling cell","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"CL_0000404","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000540\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000540\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000393\",\"http://purl.obolibrary.org/obo/CL_0000211\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/CL_0000404\",\"http://purl.obolibrary.org/obo/CL_0002319\",\"http://purl.obolibrary.org/obo/CL_0002371\",\"http://purl.obolibrary.org/obo/CL_0000548\",\"http://purl.obolibrary.org/obo/CL_0000255\"],\"directParent\":[\"http://purl.obolibrary.org/obo/CL_0000393\",\"http://purl.obolibrary.org/obo/CL_0000404\",\"http://purl.obolibrary.org/obo/CL_0002319\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000393\",\"http://purl.obolibrary.org/obo/CL_0000211\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/CL_0000404\",\"http://purl.obolibrary.org/obo/CL_0002319\",\"http://purl.obolibrary.org/obo/CL_0002371\",\"http://purl.obolibrary.org/obo/CL_0000548\",\"http://purl.obolibrary.org/obo/CL_0000255\",\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/CL_0000393\",\"http://purl.obolibrary.org/obo/CL_0000404\",\"http://purl.obolibrary.org/obo/CL_0002319\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":\"http://purl.obolibrary.org/obo/NCBITaxon_9606\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"neuron\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/CL_0000393\",\"http://purl.obolibrary.org/obo/CL_0000404\",\"http://purl.obolibrary.org/obo/CL_0002319\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019226\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"neuron\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000540\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/GO_0019226\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019226\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000540\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/CL_0000404\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"electrically signaling cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000404\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0002319\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neural cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0002319\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"electrically active cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000211\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000255\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"eukaryotic cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000255\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0019226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transmission of nerve impulse\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0019226\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000548\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"animal cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000548\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9606\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Homo sapiens\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9606\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0002371\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"somatic cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0002371\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000393\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"electrically responsive cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000393\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000540","directAncestor":["http://purl.obolibrary.org/obo/CL_0000393","http://purl.obolibrary.org/obo/CL_0000211","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/CL_0000404","http://purl.obolibrary.org/obo/CL_0002319","http://purl.obolibrary.org/obo/CL_0002371","http://purl.obolibrary.org/obo/CL_0000548","http://purl.obolibrary.org/obo/CL_0000255"],"directParent":["http://purl.obolibrary.org/obo/CL_0000393","http://purl.obolibrary.org/obo/CL_0000404","http://purl.obolibrary.org/obo/CL_0002319"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000393","http://purl.obolibrary.org/obo/CL_0000211","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/CL_0000404","http://purl.obolibrary.org/obo/CL_0002319","http://purl.obolibrary.org/obo/CL_0002371","http://purl.obolibrary.org/obo/CL_0000548","http://purl.obolibrary.org/obo/CL_0000255","http://purl.obolibrary.org/obo/UBERON_0001016","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000"],"hierarchicalParent":["http://purl.obolibrary.org/obo/CL_0000393","http://purl.obolibrary.org/obo/CL_0000404","http://purl.obolibrary.org/obo/CL_0002319"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":"http://purl.obolibrary.org/obo/NCBITaxon_9606","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"neuron","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/CL_0000393","http://purl.obolibrary.org/obo/CL_0000404","http://purl.obolibrary.org/obo/CL_0002319"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000540","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000540","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"neuron","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0001016","relatedTo":"http://purl.obolibrary.org/obo/GO_0019226","searchableAnnotationValues":"false","shortForm":"CL_0000540","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000548\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000548\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A native cell that is part of some Metazoa.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000255\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000255\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000255\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000255\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A native cell that is part of some Metazoa.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"animal cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/CL_0000255\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"animal cell\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A native cell that is part of some Metazoa.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000548\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000255\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"eukaryotic cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000255\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000548","definition":"A native cell that is part of some Metazoa.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/CL_0000255","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000255","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000255","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000255","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A native cell that is part of some Metazoa.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"animal cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/CL_0000255"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000548","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000548","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"animal cell","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/NCBITaxon_33208","searchableAnnotationValues":["A native cell that is part of some Metazoa.","false"],"shortForm":"CL_0000548","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0000586\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000586\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000039\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000039\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000039\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000039\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"germ cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/CL_0000039\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009566\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"germ cell\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000586\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009566\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009566\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0000586\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"germ line cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000039\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009566\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fertilization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009566\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002216\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002216\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000991\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000991\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0000586","directAncestor":["http://purl.obolibrary.org/obo/CL_0000039","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000039","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000039","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000039","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"germ cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/CL_0000039"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000586","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0000586","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"germ cell","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000991","relatedTo":"http://purl.obolibrary.org/obo/GO_0009566","searchableAnnotationValues":"false","shortForm":"CL_0000586","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0002319\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0002319\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0002371\",\"http://purl.obolibrary.org/obo/CL_0000548\",\"http://purl.obolibrary.org/obo/CL_0000255\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0002371\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0002371\",\"http://purl.obolibrary.org/obo/CL_0000548\",\"http://purl.obolibrary.org/obo/CL_0000255\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/CL_0002371\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"neural cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/CL_0002371\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"neural cell\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0002319\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0002319\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000255\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"eukaryotic cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000255\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002473\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000548\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"animal cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000548\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0002371\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"somatic cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0002371\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0002319","directAncestor":["http://purl.obolibrary.org/obo/CL_0002371","http://purl.obolibrary.org/obo/CL_0000548","http://purl.obolibrary.org/obo/CL_0000255","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0002371","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0002371","http://purl.obolibrary.org/obo/CL_0000548","http://purl.obolibrary.org/obo/CL_0000255","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0001016","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000"],"hierarchicalParent":["http://purl.obolibrary.org/obo/CL_0002371","http://purl.obolibrary.org/obo/UBERON_0001016"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"neural cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/CL_0002371"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0002319","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0002319","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"neural cell","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0001016","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0001016","searchableAnnotationValues":"false","shortForm":"CL_0002319","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/CL_0002371\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0002371\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000548\",\"http://purl.obolibrary.org/obo/CL_0000255\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/CL_0000548\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/CL_0000548\",\"http://purl.obolibrary.org/obo/CL_0000255\",\"http://purl.obolibrary.org/obo/CL_0000003\",\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/CL_0000548\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"somatic cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/CL_0000548\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"somatic cell\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"CL_0002371\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/CL_0000548\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"animal cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000548\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"native cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000255\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"eukaryotic cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000255\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"CL:0002371","directAncestor":["http://purl.obolibrary.org/obo/CL_0000548","http://purl.obolibrary.org/obo/CL_0000255","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/CL_0000548","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/CL_0000548","http://purl.obolibrary.org/obo/CL_0000255","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/CL_0000548","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"somatic cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/CL_0000548","id":"gitissue502+class+http://purl.obolibrary.org/obo/CL_0002371","imported":"false","iri":"http://purl.obolibrary.org/obo/CL_0002371","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"somatic cell","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"CL_0002371","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0022414\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0003133\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0000003\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0022414\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0022414\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0003133\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0003133\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002216\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002216\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0000003","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"reproduction","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0008150","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0000003","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0000003","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"reproduction","numDescendants":"2.0","numHierarchicalDescendants":"6.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0003133"],"searchableAnnotationValues":"false","shortForm":"GO_0000003","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0001508\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001508\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0042391\",\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0042391\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0042391\",\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0042391\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"action potential\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0042391\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"action potential\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0019226\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001508\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0001508\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0065008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065008\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0042391\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of membrane potential\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0042391\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0019226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transmission of nerve impulse\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0019226\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0001508","directAncestor":["http://purl.obolibrary.org/obo/GO_0042391","http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0042391","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0042391","http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0042391","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"action potential","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0042391","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001508","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0001508","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"action potential","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0019226","searchableAnnotationValues":"false","shortForm":"GO_0001508","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0001704\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001704\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048646\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0007369\",\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0048646\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"formation of primary germ layer\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0048646\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"formation of primary germ layer\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0001704\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0001704","directAncestor":["http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048646","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0007369","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0007369"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"formation of primary germ layer","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0048646"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001704","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0001704","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"formation of primary germ layer","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0007369","searchableAnnotationValues":"false","shortForm":"GO_0001704","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0001705\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001705\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0001704\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0001704\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0001704\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0007369\",\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0007398\",\"http://purl.obolibrary.org/obo/GO_0009888\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0001704\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007398\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"ectoderm formation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0001704\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007398\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"ectoderm formation\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001705\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007398\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007398\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0001705\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007398\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ectoderm development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007398\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001704\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"formation of primary germ layer\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001704\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0001705","directAncestor":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0001704","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0007369","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0007398","http://purl.obolibrary.org/obo/GO_0009888"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0007398"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"ectoderm formation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0001704"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001705","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0001705","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ectoderm formation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0007369","relatedTo":"http://purl.obolibrary.org/obo/GO_0007398","searchableAnnotationValues":"false","shortForm":"GO_0001705","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0001706\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001706\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0001704\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0001704\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0001704\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0007369\",\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0007492\",\"http://purl.obolibrary.org/obo/GO_0009888\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0001704\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007492\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"endoderm formation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0001704\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007492\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"endoderm formation\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001706\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007492\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007492\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0001706\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007492\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endoderm development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007492\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001704\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"formation of primary germ layer\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001704\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0001706","directAncestor":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0001704","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0007369","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0007492","http://purl.obolibrary.org/obo/GO_0009888"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0007492"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"endoderm formation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0001704"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001706","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0001706","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"endoderm formation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0007369","relatedTo":"http://purl.obolibrary.org/obo/GO_0007492","searchableAnnotationValues":"false","shortForm":"GO_0001706","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0001707\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001707\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0001704\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0001704\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0001704\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0007369\",\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0048332\",\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0007498\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0001704\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0048332\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"mesoderm formation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0001704\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048332\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm formation\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001707\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048332\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048332\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0001707\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001704\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"formation of primary germ layer\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001704\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007498\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007498\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048332\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048332\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0001707","directAncestor":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0001704","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0007369","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0048332","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0007498"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0048332"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"mesoderm formation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0001704"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001707","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0001707","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"mesoderm formation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0007369","relatedTo":"http://purl.obolibrary.org/obo/GO_0048332","searchableAnnotationValues":"false","shortForm":"GO_0001707","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0001838\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001838\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0072175\",\"http://purl.obolibrary.org/obo/GO_0035148\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0072175\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0072175\",\"http://purl.obolibrary.org/obo/GO_0035148\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0035239\",\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0060562\",\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0060429\",\"http://purl.obolibrary.org/obo/GO_0016331\",\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009790\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0072175\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0016331\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"embryonic epithelial tube formation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0072175\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0016331\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic epithelial tube formation\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0016331\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0016331\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0001838\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0072175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0072175\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035148\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035148\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0060429\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060429\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0002009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of an epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0002009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0060562\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060562\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035239\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035239\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0016331\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of embryonic epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0016331\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0001838","directAncestor":["http://purl.obolibrary.org/obo/GO_0072175","http://purl.obolibrary.org/obo/GO_0035148","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0072175","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0072175","http://purl.obolibrary.org/obo/GO_0035148","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0035239","http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0060562","http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0060429","http://purl.obolibrary.org/obo/GO_0016331","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009790"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0072175","http://purl.obolibrary.org/obo/GO_0016331"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"embryonic epithelial tube formation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0072175"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001838","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0001838","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"embryonic epithelial tube formation","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0016331","searchableAnnotationValues":"false","shortForm":"GO_0001838","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0001841\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001841\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0001838\",\"http://purl.obolibrary.org/obo/GO_0072175\",\"http://purl.obolibrary.org/obo/GO_0035148\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0001838\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0001838\",\"http://purl.obolibrary.org/obo/GO_0072175\",\"http://purl.obolibrary.org/obo/GO_0035148\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0035239\",\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0060562\",\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0060429\",\"http://purl.obolibrary.org/obo/GO_0016331\",\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0021915\",\"http://purl.obolibrary.org/obo/GO_0007399\",\"http://purl.obolibrary.org/obo/GO_0048731\",\"http://purl.obolibrary.org/obo/GO_0043009\",\"http://purl.obolibrary.org/obo/GO_0009792\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0001838\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0021915\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"neural tube formation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0001838\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0021915\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"neural tube formation\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000110\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001841\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0021915\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0021915\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0001841\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0072175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0072175\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007399\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007399\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035148\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035148\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0060429\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060429\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009792\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development ending in birth or egg hatching\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009792\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001838\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic epithelial tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001838\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0002009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of an epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0002009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048731\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"system development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048731\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0060562\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060562\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0043009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"chordate embryonic development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0043009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035239\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035239\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0016331\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of embryonic epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0016331\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000110\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neurula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000110\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0021915\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neural tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0021915\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0001841","directAncestor":["http://purl.obolibrary.org/obo/GO_0001838","http://purl.obolibrary.org/obo/GO_0072175","http://purl.obolibrary.org/obo/GO_0035148","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0001838","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0001838","http://purl.obolibrary.org/obo/GO_0072175","http://purl.obolibrary.org/obo/GO_0035148","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0035239","http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0060562","http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0060429","http://purl.obolibrary.org/obo/GO_0016331","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0021915","http://purl.obolibrary.org/obo/GO_0007399","http://purl.obolibrary.org/obo/GO_0048731","http://purl.obolibrary.org/obo/GO_0043009","http://purl.obolibrary.org/obo/GO_0009792"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0001838","http://purl.obolibrary.org/obo/GO_0021915"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"neural tube formation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0001838"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001841","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0001841","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"neural tube formation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000110","relatedTo":"http://purl.obolibrary.org/obo/GO_0021915","searchableAnnotationValues":"false","shortForm":"GO_0001841","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0002009\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0002009\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048729\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0060429\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0048729\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0060429\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of an epithelium\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0048729\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0060429\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of an epithelium\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0060429\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0060429\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0002009\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0060429\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060429\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0002009","directAncestor":["http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048729","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0060429"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0060429"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"morphogenesis of an epithelium","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0048729"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0002009","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0002009","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"morphogenesis of an epithelium","numDescendants":"2.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0060429","searchableAnnotationValues":"false","shortForm":"GO_0002009","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0003008\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0003008\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0032501\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0032501\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"system process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0032501\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"system process\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0003008\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0003008","directAncestor":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0032501","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0032501","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"system process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0032501","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0003008","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0003008","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"system process","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0003008","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0005102\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005102\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor binding\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor binding\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0005102\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0005515\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"protein binding\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005515\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0005102","directAncestor":"http://purl.obolibrary.org/obo/GO_0005515","directParent":"http://purl.obolibrary.org/obo/GO_0005515","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0005515","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0005515","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"signaling receptor binding","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0005515","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0005102","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0005102","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"signaling receptor binding","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0005102","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0005179\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005179\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048018\",\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0005515\",\"http://purl.obolibrary.org/obo/GO_0030546\",\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0098772\",\"http://purl.obolibrary.org/obo/GO_0140677\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048018\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048018\",\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0005515\",\"http://purl.obolibrary.org/obo/GO_0030546\",\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0098772\",\"http://purl.obolibrary.org/obo/GO_0140677\",\"http://purl.obolibrary.org/obo/GO_0007165\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0050794\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0051716\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0048018\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hormone activity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0048018\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hormone activity\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0005179\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051716\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051716\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0098772\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098772\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050794\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050794\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0005102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor binding\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007165\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signal transduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007165\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0005515\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"protein binding\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005515\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050896\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050896\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0030545\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030545\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0030546\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor activator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030546\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"receptor ligand activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0140677\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function activator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140677\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0005179","directAncestor":["http://purl.obolibrary.org/obo/GO_0048018","http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0005515","http://purl.obolibrary.org/obo/GO_0030546","http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","http://purl.obolibrary.org/obo/GO_0140677"],"directParent":"http://purl.obolibrary.org/obo/GO_0048018","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048018","http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0005515","http://purl.obolibrary.org/obo/GO_0030546","http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","http://purl.obolibrary.org/obo/GO_0140677","http://purl.obolibrary.org/obo/GO_0007165","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0050794","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0051716","http://purl.obolibrary.org/obo/GO_0050896"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0048018","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hormone activity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0048018","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0005179","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0005179","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hormone activity","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0005179","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0005183\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005183\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0005179\",\"http://purl.obolibrary.org/obo/GO_0048018\",\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0005515\",\"http://purl.obolibrary.org/obo/GO_0030546\",\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0098772\",\"http://purl.obolibrary.org/obo/GO_0140677\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0005179\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0005179\",\"http://purl.obolibrary.org/obo/GO_0048018\",\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0005515\",\"http://purl.obolibrary.org/obo/GO_0030546\",\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0098772\",\"http://purl.obolibrary.org/obo/GO_0140677\",\"http://purl.obolibrary.org/obo/GO_0007165\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0050794\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0051716\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0005179\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gonadotropin hormone-releasing hormone activity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0005179\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gonadotropin hormone-releasing hormone activity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0005183\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0005183\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0005179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hormone activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051716\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051716\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0098772\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098772\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050794\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050794\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0005102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor binding\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004021\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease caused by disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease has basis in disruption of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004021\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007165\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signal transduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007165\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0018555\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0018555\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0005515\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"protein binding\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005515\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050896\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050896\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0030545\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030545\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0030546\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor activator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030546\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"receptor ligand activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0140677\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function activator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140677\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0005183","directAncestor":["http://purl.obolibrary.org/obo/GO_0005179","http://purl.obolibrary.org/obo/GO_0048018","http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0005515","http://purl.obolibrary.org/obo/GO_0030546","http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","http://purl.obolibrary.org/obo/GO_0140677"],"directParent":"http://purl.obolibrary.org/obo/GO_0005179","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0005179","http://purl.obolibrary.org/obo/GO_0048018","http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0005515","http://purl.obolibrary.org/obo/GO_0030546","http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","http://purl.obolibrary.org/obo/GO_0140677","http://purl.obolibrary.org/obo/GO_0007165","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0050794","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0051716","http://purl.obolibrary.org/obo/GO_0050896"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0005179","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gonadotropin hormone-releasing hormone activity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0005179","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0005183","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0005183","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gonadotropin hormone-releasing hormone activity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/MONDO_0018555","searchableAnnotationValues":"false","shortForm":"GO_0005183","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005515\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"protein binding\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"protein binding\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0005515\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0098772\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098772\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0005515","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"protein binding","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0005515","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0005515","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"protein binding","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0098772","searchableAnnotationValues":"false","shortForm":"GO_0005515","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0006810\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0051234\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0051234\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0051234\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"numDescendants\":9.0,\"numHierarchicalDescendants\":9.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0006810\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0006810","directAncestor":["http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0051234","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0051234","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"transport","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0051234","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0006810","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0006810","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"transport","numDescendants":"9.0","numHierarchicalDescendants":"9.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0006810","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0006811\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006811\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0006810\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0006810\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"monoatomic ion transport\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0006810\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"monoatomic ion transport\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0006811\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0006811","directAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0006810","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0006810","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"monoatomic ion transport","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0006810","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0006811","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0006811","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"monoatomic ion transport","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0006811","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":12.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0019226\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007154\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007165\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signal transduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007165\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0019226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transmission of nerve impulse\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0019226\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007154","directAncestor":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009987","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0009987","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cell communication","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0009987","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007154","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007154","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cell communication","numDescendants":"5.0","numHierarchicalDescendants":"12.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/GO_0007165","http://purl.obolibrary.org/obo/GO_0019226"],"searchableAnnotationValues":"false","shortForm":"GO_0007154","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007165\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0050794\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0050794\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0050794\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0051716\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0050794\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0023052\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0051716\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"signal transduction\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0050794\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0023052\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0051716\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"signal transduction\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048018\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0023052\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0023052\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0051716\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0051716\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007165\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051716\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051716\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050794\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050794\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050896\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050896\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"receptor ligand activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007165","directAncestor":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0050794","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"directParent":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0050794"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0050794","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0051716","http://purl.obolibrary.org/obo/GO_0050896"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0050794","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0051716"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"signal transduction","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0050794"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007165","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007165","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"signal transduction","numDescendants":"0.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0048018","relatedTo":["http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0051716"],"searchableAnnotationValues":"false","shortForm":"GO_0007165","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007267\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007267\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cell-cell signaling\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cell-cell signaling\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0023061\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007267\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007267\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signal release\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007267","directAncestor":["http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"directParent":["http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cell-cell signaling","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007267","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007267","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cell-cell signaling","numDescendants":"4.0","numHierarchicalDescendants":"6.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0023061","searchableAnnotationValues":"false","shortForm":"GO_0007267","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007268\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007268\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0098916\",\"http://purl.obolibrary.org/obo/GO_0099537\",\"http://purl.obolibrary.org/obo/GO_0099536\",\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0098916\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0098916\",\"http://purl.obolibrary.org/obo/GO_0099537\",\"http://purl.obolibrary.org/obo/GO_0099536\",\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0098916\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"chemical synaptic transmission\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0098916\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"chemical synaptic transmission\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0019226\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007268\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007268\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0099537\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trans-synaptic signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0099537\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0099536\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"synaptic signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0099536\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0019226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transmission of nerve impulse\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0019226\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007267\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell-cell signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007267\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0098916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anterograde trans-synaptic signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098916\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007268","directAncestor":["http://purl.obolibrary.org/obo/GO_0098916","http://purl.obolibrary.org/obo/GO_0099537","http://purl.obolibrary.org/obo/GO_0099536","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"directParent":"http://purl.obolibrary.org/obo/GO_0098916","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0098916","http://purl.obolibrary.org/obo/GO_0099537","http://purl.obolibrary.org/obo/GO_0099536","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0098916","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"chemical synaptic transmission","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0098916","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007268","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007268","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"chemical synaptic transmission","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0019226","searchableAnnotationValues":"false","shortForm":"GO_0007268","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0048856\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0048856\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0048856\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":22.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009791\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0035295\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048731\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007275\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009791\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009791\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048731\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"system development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048731\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007275","directAncestor":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"directParent":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0048856"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0048856"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multicellular organism development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0048856"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007275","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007275","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multicellular organism development","numDescendants":"3.0","numHierarchicalDescendants":"22.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/GO_0009791","http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0048731"],"searchableAnnotationValues":"false","shortForm":"GO_0007275","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007276\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007276\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048609\",\"http://purl.obolibrary.org/obo/GO_0022414\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048609\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048609\",\"http://purl.obolibrary.org/obo/GO_0022414\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0032504\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0019953\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0048609\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gamete generation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0048609\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gamete generation\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007276\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007276\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032504\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032504\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048609\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal reproductive process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048609\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0019953\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"sexual reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0019953\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0022414\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0022414\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000067\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contains process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000067\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000991\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000991\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007276","directAncestor":["http://purl.obolibrary.org/obo/GO_0048609","http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048609","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048609","http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0032504","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0019953"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0048609","http://purl.obolibrary.org/obo/GO_0019953"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gamete generation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0048609"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007276","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007276","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gamete generation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000991","relatedTo":"http://purl.obolibrary.org/obo/GO_0019953","searchableAnnotationValues":"false","shortForm":"GO_0007276","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007369\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gastrulation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0048598\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001705\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001706\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001707\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrulation\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001704\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001705\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001705\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001706\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001706\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001707\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001707\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007369\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001705\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ectoderm formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001705\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001706\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endoderm formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001706\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001707\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001707\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001704\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"formation of primary germ layer\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001704\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007369","directAncestor":["http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048598","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0048598","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gastrulation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0048598"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007369","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007369","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gastrulation","numDescendants":"0.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/UBERON_0000109"],"relatedTo":["http://purl.obolibrary.org/obo/GO_0001705","http://purl.obolibrary.org/obo/GO_0001706","http://purl.obolibrary.org/obo/GO_0001707"],"searchableAnnotationValues":"false","shortForm":"GO_0007369","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007398\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007398\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"ectoderm development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"ectoderm development\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001705\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007398\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007398\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001705\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ectoderm formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001705\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007398","directAncestor":["http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009888","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0009888","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"ectoderm development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0009888","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007398","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007398","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ectoderm development","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0001705","searchableAnnotationValues":"false","shortForm":"GO_0007398","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007399\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007399\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048731\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048731\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048731\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0048731\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"nervous system development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0048731\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system development\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0021915\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007399\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007399\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048731\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"system development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048731\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0021915\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neural tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0021915\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007399","directAncestor":["http://purl.obolibrary.org/obo/GO_0048731","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048731","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048731","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0048731","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"nervous system development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0048731","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007399","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007399","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"nervous system development","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0021915","searchableAnnotationValues":"false","shortForm":"GO_0007399","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007492\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007492\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"endoderm development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"endoderm development\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001706\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007492\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007492\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001706\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endoderm formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001706\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007492","directAncestor":["http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009888","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0009888","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"endoderm development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0009888","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007492","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007492","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"endoderm development","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0001706","searchableAnnotationValues":"false","shortForm":"GO_0007492","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0007498\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007498\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"mesoderm development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm development\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048332\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007498\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0007498\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048332\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048332\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0007498","directAncestor":["http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009888","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0009888","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"mesoderm development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0009888","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007498","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0007498","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"mesoderm development","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0048332","searchableAnnotationValues":"false","shortForm":"GO_0007498","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"numDescendants\":78.0,\"numHierarchicalDescendants\":81.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"value\":\"http://purl.obolibrary.org/obo/GO_0050789\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0008150\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0008150","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"biological_process","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0008150","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0008150","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"biological_process","numDescendants":"78.0","numHierarchicalDescendants":"81.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/UBERON_0000062"],"searchableAnnotationValues":"false","shortForm":"GO_0008150","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0009566\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009566\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0022414\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0022414\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0022414\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0019953\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0022414\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"fertilization\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0022414\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"fertilization\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000586\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009566\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0009566\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000586\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"germ cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000586\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0019953\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"sexual reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0019953\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0022414\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0022414\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002216\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002216\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0009566","directAncestor":["http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0022414","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0019953"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0019953"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"fertilization","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0022414"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009566","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0009566","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"fertilization","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/CL_0000586","relatedTo":"http://purl.obolibrary.org/obo/GO_0019953","searchableAnnotationValues":"false","shortForm":"GO_0009566","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0032502\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0032502\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":17.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048646\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0009653\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0009653","directAncestor":["http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0032502","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0048856"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anatomical structure morphogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0032502"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009653","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0009653","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anatomical structure morphogenesis","numDescendants":"8.0","numHierarchicalDescendants":"17.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0048646","relatedTo":"http://purl.obolibrary.org/obo/GO_0048856","searchableAnnotationValues":"false","shortForm":"GO_0009653","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":13.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0040016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0009790\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0040016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic cleavage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0040016\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0009790","directAncestor":["http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"directParent":"http://purl.obolibrary.org/obo/GO_0007275","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0007275","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"embryo development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0007275","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009790","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0009790","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"embryo development","numDescendants":"2.0","numHierarchicalDescendants":"13.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/GO_0040016","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/UBERON_0000068"],"searchableAnnotationValues":"false","shortForm":"GO_0009790","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0009791\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009791\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0032501\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0032501\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0032501\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic development\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009791\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0009791\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000092\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0009791","directAncestor":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0032501","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0007275"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"post-embryonic development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0032501"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009791","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0009791","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"post-embryonic development","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000092","relatedTo":"http://purl.obolibrary.org/obo/GO_0007275","searchableAnnotationValues":"false","shortForm":"GO_0009791","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0009792\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009792\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"embryo development ending in birth or egg hatching\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development ending in birth or egg hatching\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0009792\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0009792","directAncestor":["http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"directParent":"http://purl.obolibrary.org/obo/GO_0009790","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0009790","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"embryo development ending in birth or egg hatching","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0009790","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009792","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0009792","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"embryo development ending in birth or egg hatching","numDescendants":"1.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0009792","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":16.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048729\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0009888\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0009888","directAncestor":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048856","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0048856","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"tissue development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0048856","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009888","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0009888","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"tissue development","numDescendants":"5.0","numHierarchicalDescendants":"16.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0048729","searchableAnnotationValues":"false","shortForm":"GO_0009888","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0009914\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009914\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0010817\",\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0010817\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0010817\",\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0010817\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hormone transport\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0010817\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hormone transport\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0009914\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065008\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0010817\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of hormone levels\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0010817\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0009914","directAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0010817","http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007"],"directParent":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0010817"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0010817","http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0010817"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hormone transport","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0010817"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009914","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0009914","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hormone transport","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0009914","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"numDescendants\":16.0,\"numHierarchicalDescendants\":20.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"value\":\"http://purl.obolibrary.org/obo/GO_0050794\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0009987\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050794\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050794\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0009987","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cellular process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0008150","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009987","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0009987","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cellular process","numDescendants":"16.0","numHierarchicalDescendants":"20.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0050794","searchableAnnotationValues":"false","shortForm":"GO_0009987","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0010817\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0010817\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0065008\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0065008\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"regulation of hormone levels\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0065008\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of hormone levels\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0010817\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0065008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065008\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0010817","directAncestor":["http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0065008","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0065008","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"regulation of hormone levels","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0065008","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0010817","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0010817","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulation of hormone levels","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0010817","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0016301\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0016301\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"kinase activity\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"kinase activity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0016301\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0016301","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"kinase activity","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0016301","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0016301","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"kinase activity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0016301","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0016331\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0016331\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048598\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048598\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0060429\",\"http://purl.obolibrary.org/obo/GO_0048598\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048598\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of embryonic epithelium\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048598\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of embryonic epithelium\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001838\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0016331\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0016331\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0060429\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060429\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001838\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic epithelial tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001838\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0002009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of an epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0002009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0016331","directAncestor":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048598"],"directParent":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048598"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0060429","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048598"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"morphogenesis of embryonic epithelium","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048598"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0016331","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0016331","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"morphogenesis of embryonic epithelium","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0001838","searchableAnnotationValues":"false","shortForm":"GO_0016331","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0019226\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0019226\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0050877\",\"http://purl.obolibrary.org/obo/GO_0003008\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0050877\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0050877\",\"http://purl.obolibrary.org/obo/GO_0003008\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0050877\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"transmission of nerve impulse\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0050877\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001508\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007268\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"transmission of nerve impulse\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000540\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019226\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007154\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001508\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001508\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007268\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007268\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0019226\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0003008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"system process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0003008\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050877\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050877\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001508\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"action potential\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001508\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000540\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neuron\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000540\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007268\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"chemical synaptic transmission\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007268\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0019226","directAncestor":["http://purl.obolibrary.org/obo/GO_0050877","http://purl.obolibrary.org/obo/GO_0003008","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0050877","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0050877","http://purl.obolibrary.org/obo/GO_0003008","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0050877","http://purl.obolibrary.org/obo/GO_0007154"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"transmission of nerve impulse","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0050877"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0019226","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0019226","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"transmission of nerve impulse","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/CL_0000540","relatedTo":["http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0001508","http://purl.obolibrary.org/obo/GO_0007268"],"searchableAnnotationValues":"false","shortForm":"GO_0019226","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0019953\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"sexual reproduction\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"sexual reproduction\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007276\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009566\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0019953\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0019953\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007276\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gamete generation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007276\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009566\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fertilization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009566\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0019953","directAncestor":["http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0000003","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"sexual reproduction","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0000003","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0019953","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0019953","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"sexual reproduction","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/GO_0007276","http://purl.obolibrary.org/obo/GO_0009566"],"searchableAnnotationValues":"false","shortForm":"GO_0019953","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0021915\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0021915\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0060429\",\"http://purl.obolibrary.org/obo/GO_0009888\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0060429\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0060429\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0007399\",\"http://purl.obolibrary.org/obo/GO_0048731\",\"http://purl.obolibrary.org/obo/GO_0043009\",\"http://purl.obolibrary.org/obo/GO_0009792\",\"http://purl.obolibrary.org/obo/GO_0009790\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0060429\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007399\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0043009\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"neural tube development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0060429\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007399\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0043009\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"neural tube development\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001841\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0021915\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007399\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007399\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0043009\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0043009\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0021915\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007399\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007399\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0060429\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060429\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009792\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development ending in birth or egg hatching\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009792\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001841\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neural tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001841\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048731\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"system development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048731\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0043009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"chordate embryonic development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0043009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0021915","directAncestor":["http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0060429","http://purl.obolibrary.org/obo/GO_0009888"],"directParent":["http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0060429"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0060429","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0007399","http://purl.obolibrary.org/obo/GO_0048731","http://purl.obolibrary.org/obo/GO_0043009","http://purl.obolibrary.org/obo/GO_0009792","http://purl.obolibrary.org/obo/GO_0009790"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0060429","http://purl.obolibrary.org/obo/GO_0007399","http://purl.obolibrary.org/obo/GO_0043009"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"neural tube development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0060429"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0021915","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0021915","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"neural tube development","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0001841","relatedTo":["http://purl.obolibrary.org/obo/GO_0007399","http://purl.obolibrary.org/obo/GO_0043009"],"searchableAnnotationValues":"false","shortForm":"GO_0021915","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0022414\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0022414\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0000003\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0008150\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"reproductive process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0008150\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive process\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000039\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0022414\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0022414\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"germ line cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000039\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0022414","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0000003"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0000003"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"reproductive process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0008150"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0022414","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0022414","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"reproductive process","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/CL_0000039","relatedTo":"http://purl.obolibrary.org/obo/GO_0000003","searchableAnnotationValues":"false","shortForm":"GO_0022414","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0023052\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0050789\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0050789\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0050789\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":11.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0023052\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0023052\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007165\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signal transduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007165\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0023052","directAncestor":["http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0050789","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0050789","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"signaling","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0050789","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0023052","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0023052","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"signaling","numDescendants":"5.0","numHierarchicalDescendants":"11.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0007165","searchableAnnotationValues":"false","shortForm":"GO_0023052","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0023061\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023061\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032940\",\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0140352\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0032940\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032940\",\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0140352\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0032940\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007267\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"signal release\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0032940\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007267\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"signal release\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007267\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007267\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0023061\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032940\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"secretion by cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032940\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0046903\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"secretion\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0046903\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007267\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell-cell signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007267\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0140352\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"export from cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140352\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0023061","directAncestor":["http://purl.obolibrary.org/obo/GO_0032940","http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0140352","http://purl.obolibrary.org/obo/GO_0009987"],"directParent":"http://purl.obolibrary.org/obo/GO_0032940","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0032940","http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0140352","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0032940","http://purl.obolibrary.org/obo/GO_0007267"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"signal release","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0032940"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0023061","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0023061","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"signal release","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0007267","searchableAnnotationValues":"false","shortForm":"GO_0023061","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0030545\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030545\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor regulator activity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor regulator activity\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0030545\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0098772\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098772\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0030545","directAncestor":"http://purl.obolibrary.org/obo/GO_0098772","directParent":"http://purl.obolibrary.org/obo/GO_0098772","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0098772","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0098772","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"signaling receptor regulator activity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0098772","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0030545","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0030545","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"signaling receptor regulator activity","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0030545","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0030546\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030546\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0098772\",\"http://purl.obolibrary.org/obo/GO_0140677\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0140677\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0098772\",\"http://purl.obolibrary.org/obo/GO_0140677\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0140677\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor activator activity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0140677\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor activator activity\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0030546\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0098772\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098772\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0030545\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030545\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0140677\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function activator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140677\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0030546","directAncestor":["http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","http://purl.obolibrary.org/obo/GO_0140677"],"directParent":["http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0140677"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","http://purl.obolibrary.org/obo/GO_0140677"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0140677"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"signaling receptor activator activity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0140677"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0030546","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0030546","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"signaling receptor activator activity","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0030546","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0032501\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"numDescendants\":9.0,\"numHierarchicalDescendants\":29.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0032501\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0032501","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multicellular organismal process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0008150","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0032501","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0032501","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multicellular organismal process","numDescendants":"9.0","numHierarchicalDescendants":"29.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0032501","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"numDescendants\":33.0,\"numHierarchicalDescendants\":35.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0004024\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004024\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0032502\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004024\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease causes disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease disrupts\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004024\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021147\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developing anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005423\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0032502","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"developmental process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0008150","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0032502","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0032502","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"developmental process","numDescendants":"33.0","numHierarchicalDescendants":"35.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/UBERON_0005423"],"searchableAnnotationValues":"false","shortForm":"GO_0032502","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0032504\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032504\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism reproduction\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism reproduction\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048609\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032504\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0032504\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048609\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal reproductive process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048609\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0032504","directAncestor":["http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0032501"],"directParent":["http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0032501"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multicellular organism reproduction","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0032501"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0032504","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0032504","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multicellular organism reproduction","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0048609","searchableAnnotationValues":"false","shortForm":"GO_0032504","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0032940\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032940\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0140352\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0140352\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0140352\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0140352\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"secretion by cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0140352\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"secretion by cell\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0032940\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0046903\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"secretion\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0046903\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0140352\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"export from cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140352\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0032940","directAncestor":["http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0140352","http://purl.obolibrary.org/obo/GO_0009987"],"directParent":["http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0140352"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0140352","http://purl.obolibrary.org/obo/GO_0009987"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0140352"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"secretion by cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0140352"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0032940","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0032940","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"secretion by cell","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0032940","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0034220\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0034220\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006811\",\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0055085\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0006811\",\"http://purl.obolibrary.org/obo/GO_0055085\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006811\",\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0055085\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0006811\",\"http://purl.obolibrary.org/obo/GO_0055085\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"monoatomic ion transmembrane transport\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0006811\",\"http://purl.obolibrary.org/obo/GO_0055085\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"monoatomic ion transmembrane transport\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0042391\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0034220\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0034220\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0055085\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transmembrane transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0055085\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0042391\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of membrane potential\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0042391\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0006811\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"monoatomic ion transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006811\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0034220","directAncestor":["http://purl.obolibrary.org/obo/GO_0006811","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0055085","http://purl.obolibrary.org/obo/GO_0009987"],"directParent":["http://purl.obolibrary.org/obo/GO_0006811","http://purl.obolibrary.org/obo/GO_0055085"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0006811","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0055085","http://purl.obolibrary.org/obo/GO_0009987"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0006811","http://purl.obolibrary.org/obo/GO_0055085"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"monoatomic ion transmembrane transport","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0006811","http://purl.obolibrary.org/obo/GO_0055085"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0034220","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0034220","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"monoatomic ion transmembrane transport","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0042391","searchableAnnotationValues":"false","shortForm":"GO_0034220","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0035148\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035148\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048646\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0035239\",\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0048646\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0035239\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"tube formation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0048646\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0035239\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"tube formation\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0035239\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0035239\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0035148\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035239\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035239\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0035148","directAncestor":["http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048646","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0035239","http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0035239"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"tube formation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0048646"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0035148","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0035148","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"tube formation","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0035239","searchableAnnotationValues":"false","shortForm":"GO_0035148","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0035239\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035239\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0009653\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0035295\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"tube morphogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0009653\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0035295\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"tube morphogenesis\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0035148\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0035239\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0035295\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0035295\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0035239\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035148\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035148\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0035239","directAncestor":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009653","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0035295"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"tube morphogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0009653"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0035239","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0035239","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"tube morphogenesis","numDescendants":"1.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0035148","relatedTo":"http://purl.obolibrary.org/obo/GO_0035295","searchableAnnotationValues":"false","shortForm":"GO_0035239","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0035295\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0048856\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0048856\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0035239\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0035295\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0035295\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035239\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035239\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0035295","directAncestor":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048856","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0007275"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"tube development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0048856"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0035295","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0035295","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"tube development","numDescendants":"1.0","numHierarchicalDescendants":"7.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0035239","relatedTo":"http://purl.obolibrary.org/obo/GO_0007275","searchableAnnotationValues":"false","shortForm":"GO_0035295","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0038023\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0038023\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor activity\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor activity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002213\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048018\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0038023\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0038023\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0048018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"receptor ligand activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0038023","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"signaling receptor activity","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0038023","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0038023","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"signaling receptor activity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0048018","searchableAnnotationValues":"false","shortForm":"GO_0038023","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0040016\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0040016\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0051301\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0051301\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0051301\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0051301\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"embryonic cleavage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0051301\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic cleavage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0040016\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0040016\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051301\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell division\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051301\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cleavage stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000107\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0040016","directAncestor":["http://purl.obolibrary.org/obo/GO_0051301","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0051301","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0051301","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0051301","http://purl.obolibrary.org/obo/GO_0009790"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"embryonic cleavage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0051301"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0040016","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0040016","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"embryonic cleavage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000107","relatedTo":"http://purl.obolibrary.org/obo/GO_0009790","searchableAnnotationValues":"false","shortForm":"GO_0040016","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0042391\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0042391\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0065008\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0065008\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"regulation of membrane potential\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0065008\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0034220\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of membrane potential\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0034220\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0034220\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0042391\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0065008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065008\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0034220\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"monoatomic ion transmembrane transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0034220\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0042391","directAncestor":["http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0065008","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0065008","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"regulation of membrane potential","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0065008"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0042391","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0042391","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulation of membrane potential","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0034220","searchableAnnotationValues":"false","shortForm":"GO_0042391","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0043009\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0043009\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009792\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009792\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009792\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0009792\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"chordate embryonic development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0009792\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"chordate embryonic development\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0021915\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0043009\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0043009\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009792\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development ending in birth or egg hatching\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009792\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0021915\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neural tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0021915\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0043009","directAncestor":["http://purl.obolibrary.org/obo/GO_0009792","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"directParent":"http://purl.obolibrary.org/obo/GO_0009792","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009792","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0009792","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"chordate embryonic development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0009792","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0043009","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0043009","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"chordate embryonic development","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0021915","searchableAnnotationValues":"false","shortForm":"GO_0043009","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0045202\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0045202\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"synapse\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"synapse\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"value\":\"http://purl.obolibrary.org/obo/GO_0099536\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0045202\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0045202\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0099536\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"synaptic signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0099536\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000066\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0045202","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"synapse","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0045202","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0045202","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"synapse","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0099536","searchableAnnotationValues":"false","shortForm":"GO_0045202","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0046879\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0046879\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009914\",\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0010817\",\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0023061\",\"http://purl.obolibrary.org/obo/GO_0032940\",\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0140352\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0009914\",\"http://purl.obolibrary.org/obo/GO_0023061\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009914\",\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0010817\",\"http://purl.obolibrary.org/obo/GO_0065008\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0023061\",\"http://purl.obolibrary.org/obo/GO_0032940\",\"http://purl.obolibrary.org/obo/GO_0046903\",\"http://purl.obolibrary.org/obo/GO_0140352\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0009914\",\"http://purl.obolibrary.org/obo/GO_0023061\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hormone secretion\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0009914\",\"http://purl.obolibrary.org/obo/GO_0023061\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hormone secretion\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0046879\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0046879\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065008\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0010817\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of hormone levels\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0010817\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032940\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"secretion by cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032940\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signal release\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0046903\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"secretion\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0046903\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009914\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hormone transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009914\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007267\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell-cell signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007267\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0140352\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"export from cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140352\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0046879","directAncestor":["http://purl.obolibrary.org/obo/GO_0009914","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0010817","http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0023061","http://purl.obolibrary.org/obo/GO_0032940","http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0140352","http://purl.obolibrary.org/obo/GO_0009987"],"directParent":["http://purl.obolibrary.org/obo/GO_0009914","http://purl.obolibrary.org/obo/GO_0023061"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009914","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0010817","http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0023061","http://purl.obolibrary.org/obo/GO_0032940","http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0140352","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0009914","http://purl.obolibrary.org/obo/GO_0023061"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hormone secretion","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0009914","http://purl.obolibrary.org/obo/GO_0023061"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0046879","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0046879","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hormone secretion","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0002368","searchableAnnotationValues":"false","shortForm":"GO_0046879","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0046903\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0046903\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0006810\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0006810\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"secretion\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0006810\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"secretion\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0046903\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0046903\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0046903","directAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0006810","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0006810","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"secretion","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0006810","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0046903","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0046903","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"secretion","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0002530","searchableAnnotationValues":"false","shortForm":"GO_0046903","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048018\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048018\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0005515\",\"http://purl.obolibrary.org/obo/GO_0030546\",\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0098772\",\"http://purl.obolibrary.org/obo/GO_0140677\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0030546\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0005515\",\"http://purl.obolibrary.org/obo/GO_0030546\",\"http://purl.obolibrary.org/obo/GO_0030545\",\"http://purl.obolibrary.org/obo/GO_0098772\",\"http://purl.obolibrary.org/obo/GO_0140677\",\"http://purl.obolibrary.org/obo/GO_0007165\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0050794\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0051716\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0030546\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"receptor ligand activity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0005102\",\"http://purl.obolibrary.org/obo/GO_0030546\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0038023\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"receptor ligand activity\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002213\",\"value\":\"http://purl.obolibrary.org/obo/GO_0038023\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0038023\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048018\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051716\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051716\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0098772\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098772\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050794\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050794\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0005102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor binding\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007165\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signal transduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007165\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0005515\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"protein binding\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005515\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050896\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050896\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0030545\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030545\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0030546\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor activator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0030546\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0140677\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function activator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140677\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0038023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling receptor activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0038023\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048018","directAncestor":["http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0005515","http://purl.obolibrary.org/obo/GO_0030546","http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","http://purl.obolibrary.org/obo/GO_0140677"],"directParent":["http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0030546"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0005515","http://purl.obolibrary.org/obo/GO_0030546","http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","http://purl.obolibrary.org/obo/GO_0140677","http://purl.obolibrary.org/obo/GO_0007165","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0050794","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0051716","http://purl.obolibrary.org/obo/GO_0050896"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0030546","http://purl.obolibrary.org/obo/GO_0007165"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"receptor ligand activity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0030546"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048018","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048018","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"receptor ligand activity","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":["http://purl.obolibrary.org/obo/GO_0007165","http://purl.obolibrary.org/obo/GO_0038023"],"searchableAnnotationValues":"false","shortForm":"GO_0048018","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048332\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048332\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048729\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0007498\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0048729\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007498\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"mesoderm morphogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0048729\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007498\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm morphogenesis\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001707\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048332\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007498\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007498\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048332\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001707\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001707\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007498\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"mesoderm development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007498\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048332","directAncestor":["http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048729","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0007498"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0007498"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"mesoderm morphogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0048729"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048332","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048332","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"mesoderm morphogenesis","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0001707","relatedTo":"http://purl.obolibrary.org/obo/GO_0007498","searchableAnnotationValues":"false","shortForm":"GO_0048332","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048513\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048513\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"animal organ development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"animal organ development\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048513\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048513\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organogenesis stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000111\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048513","directAncestor":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048856","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0048856","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"animal organ development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0048856","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048513","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048513","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"animal organ development","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000111","searchableAnnotationValues":"false","shortForm":"GO_0048513","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0009790\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0009653\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0009653\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048598\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004021\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease caused by disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease has basis in disruption of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004021\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019755\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048598","directAncestor":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009653","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0009790"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"embryonic morphogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0009653"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048598","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048598","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"embryonic morphogenesis","numDescendants":"2.0","numHierarchicalDescendants":"8.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/MONDO_0019755","relatedTo":"http://purl.obolibrary.org/obo/GO_0009790","searchableAnnotationValues":"false","shortForm":"GO_0048598","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048609\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048609\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0022414\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0022414\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0022414\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0000003\",\"http://purl.obolibrary.org/obo/GO_0032504\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0022414\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0032504\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal reproductive process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0022414\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032504\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal reproductive process\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0032504\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032504\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048609\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032504\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032504\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0022414\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0022414\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048609","directAncestor":["http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0022414","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0032504","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0032504"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multicellular organismal reproductive process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0022414"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048609","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048609","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multicellular organismal reproductive process","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0032504","searchableAnnotationValues":"false","shortForm":"GO_0048609","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048646\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0032502\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0032502\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048646\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048646","directAncestor":["http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0032502","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0009653"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anatomical structure formation involved in morphogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0032502"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048646","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048646","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anatomical structure formation involved in morphogenesis","numDescendants":"8.0","numHierarchicalDescendants":"8.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0009653","searchableAnnotationValues":"false","shortForm":"GO_0048646","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048729\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0009888\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0009653\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0009653\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048729\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048729","directAncestor":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009653","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0009888"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0009888"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"tissue morphogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0009653"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048729","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048729","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"tissue morphogenesis","numDescendants":"4.0","numHierarchicalDescendants":"8.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0009888","searchableAnnotationValues":"false","shortForm":"GO_0048729","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048731\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048731\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0048856\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"system development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0048856\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"system development\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007275\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048731\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048731","directAncestor":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0048856","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0007275"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"system development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0048856"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048731","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048731","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"system development","numDescendants":"1.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0007275","searchableAnnotationValues":"false","shortForm":"GO_0048731","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"numDescendants\":14.0,\"numHierarchicalDescendants\":34.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009653\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048856\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0048856\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0048856","directAncestor":["http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0032502","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0032502","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anatomical structure development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0032502","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048856","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0048856","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anatomical structure development","numDescendants":"14.0","numHierarchicalDescendants":"34.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0009653","searchableAnnotationValues":"false","shortForm":"GO_0048856","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0050789\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0065007\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0065007\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0065007\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":13.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"value\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0050789\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0050789","directAncestor":["http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0065007","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0065007","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"regulation of biological process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0065007"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0050789","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0050789","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulation of biological process","numDescendants":"8.0","numHierarchicalDescendants":"13.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0008150","searchableAnnotationValues":"false","shortForm":"GO_0050789","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0050794\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050794\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0050789\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0050789\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"regulation of cellular process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0050789\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of cellular process\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0050794\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0050794","directAncestor":["http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0050789","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0050789","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"regulation of cellular process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0050789"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0050794","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0050794","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulation of cellular process","numDescendants":"1.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0009987","searchableAnnotationValues":"false","shortForm":"GO_0050794","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0050877\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050877\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0003008\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0003008\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0003008\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0003008\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"nervous system process\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0003008\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system process\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0050877\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0050877\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0003008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"system process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0003008\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0050877","directAncestor":["http://purl.obolibrary.org/obo/GO_0003008","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0003008","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0003008","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0003008","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"nervous system process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0003008","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0050877","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0050877","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"nervous system process","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0001016","searchableAnnotationValues":"false","shortForm":"GO_0050877","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0050896\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050896\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"response to stimulus\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"response to stimulus\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0050896\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0050896","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"response to stimulus","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0008150","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0050896","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0050896","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"response to stimulus","numDescendants":"1.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0050896","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0051179\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"numDescendants\":11.0,\"numHierarchicalDescendants\":11.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0051179\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0051179","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"localization","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0008150","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0051179","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0051179","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"localization","numDescendants":"11.0","numHierarchicalDescendants":"11.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0051179","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0051234\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0051179\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0051179\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0051179\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":10.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0051234\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0051234","directAncestor":["http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0051179","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0051179","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"establishment of localization","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0051179","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0051234","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0051234","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"establishment of localization","numDescendants":"10.0","numHierarchicalDescendants":"10.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0051234","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0051301\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051301\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cell division\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0009987\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cell division\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0051301\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0051301","directAncestor":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009987","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0009987","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cell division","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0009987","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0051301","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0051301","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cell division","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0051301","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0051716\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051716\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cellular response to stimulus\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0050896\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular response to stimulus\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007165\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0051716\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0051716\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050896\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"response to stimulus\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050896\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007165\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signal transduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007165\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0051716","directAncestor":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0050896"],"directParent":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0050896"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0050896"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0050896"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cellular response to stimulus","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0050896"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0051716","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0051716","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cellular response to stimulus","numDescendants":"0.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0007165","searchableAnnotationValues":"false","shortForm":"GO_0051716","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0055085\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0055085\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"transmembrane transport\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"transmembrane transport\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0055085\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0055085","directAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009987"],"directParent":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0009987"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009987"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0009987"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"transmembrane transport","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0009987"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0055085","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0055085","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"transmembrane transport","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0055085","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0060429\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060429\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0009888\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0002009\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0060429\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0060429\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0002009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of an epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0002009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0060429","directAncestor":["http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0009888","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0009888","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"epithelium development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0009888","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0060429","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0060429","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"epithelium development","numDescendants":"1.0","numHierarchicalDescendants":"7.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0002009","searchableAnnotationValues":"false","shortForm":"GO_0060429","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0060562\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060562\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0035239\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0035239\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0060429\",\"http://purl.obolibrary.org/obo/GO_0035239\",\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0035239\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube morphogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0035239\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube morphogenesis\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0072175\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0060562\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0060562\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0072175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0072175\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0060429\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060429\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0002009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of an epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0002009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035239\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035239\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0060562","directAncestor":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0035239"],"directParent":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0035239"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0060429","http://purl.obolibrary.org/obo/GO_0035239","http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0035239"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"epithelial tube morphogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0035239"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0060562","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0060562","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"epithelial tube morphogenesis","numDescendants":"0.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/GO_0072175","searchableAnnotationValues":"false","shortForm":"GO_0060562","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0065007\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"numDescendants\":15.0,\"numHierarchicalDescendants\":19.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0065007\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0065007","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"biological regulation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0008150","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0065007","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0065007","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"biological regulation","numDescendants":"15.0","numHierarchicalDescendants":"19.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0065007","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0065008\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065008\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0065007\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0065007\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0065007\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological quality\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0065007\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological quality\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0065008\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0065008","directAncestor":["http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0065007","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0065007","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"regulation of biological quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0065007","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0065008","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0065008","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulation of biological quality","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0065008","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0072175\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0072175\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0035148\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0035148\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0035148\",\"http://purl.obolibrary.org/obo/GO_0048646\",\"http://purl.obolibrary.org/obo/GO_0032502\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009653\",\"http://purl.obolibrary.org/obo/GO_0048856\",\"http://purl.obolibrary.org/obo/GO_0035239\",\"http://purl.obolibrary.org/obo/GO_0035295\",\"http://purl.obolibrary.org/obo/GO_0007275\",\"http://purl.obolibrary.org/obo/GO_0032501\",\"http://purl.obolibrary.org/obo/GO_0060562\",\"http://purl.obolibrary.org/obo/GO_0002009\",\"http://purl.obolibrary.org/obo/GO_0048729\",\"http://purl.obolibrary.org/obo/GO_0009888\",\"http://purl.obolibrary.org/obo/GO_0060429\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0035148\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/GO_0060562\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube formation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0035148\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0060562\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube formation\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/GO_0060562\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0060562\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0072175\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0007275\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007275\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035148\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035148\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009653\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009653\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organismal process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032501\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0060429\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060429\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure formation involved in morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048729\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048729\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0002009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphogenesis of an epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0002009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048856\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048856\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0060562\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelial tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0060562\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0035239\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tube morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0035239\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009888\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"tissue development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009888\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0072175","directAncestor":["http://purl.obolibrary.org/obo/GO_0035148","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150"],"directParent":"http://purl.obolibrary.org/obo/GO_0035148","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0035148","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0035239","http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0060562","http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0060429"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0035148","http://purl.obolibrary.org/obo/GO_0060562"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"epithelial tube formation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0035148"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0072175","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0072175","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"epithelial tube formation","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0060562","searchableAnnotationValues":"false","shortForm":"GO_0072175","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098772\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0005515\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0098772\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0005515\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"protein binding\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005515\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0098772","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"molecular function regulator activity","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0098772","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0098772","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"molecular function regulator activity","numDescendants":"6.0","numHierarchicalDescendants":"6.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0005515","searchableAnnotationValues":"false","shortForm":"GO_0098772","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0098916\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098916\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0099537\",\"http://purl.obolibrary.org/obo/GO_0099536\",\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0099537\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0099537\",\"http://purl.obolibrary.org/obo/GO_0099536\",\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0099537\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anterograde trans-synaptic signaling\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0099537\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anterograde trans-synaptic signaling\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0098916\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0099537\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trans-synaptic signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0099537\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0099536\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"synaptic signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0099536\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007267\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell-cell signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007267\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0098916","directAncestor":["http://purl.obolibrary.org/obo/GO_0099537","http://purl.obolibrary.org/obo/GO_0099536","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"directParent":"http://purl.obolibrary.org/obo/GO_0099537","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0099537","http://purl.obolibrary.org/obo/GO_0099536","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0099537","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anterograde trans-synaptic signaling","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0099537","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0098916","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0098916","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anterograde trans-synaptic signaling","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0098916","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0099536\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0099536\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0007267\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0007267\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"synaptic signaling\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0007267\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0045202\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"synaptic signaling\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"value\":\"http://purl.obolibrary.org/obo/GO_0045202\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0045202\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0099536\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0045202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"synapse\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0045202\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007267\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell-cell signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007267\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000066\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0099536","directAncestor":["http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"directParent":"http://purl.obolibrary.org/obo/GO_0007267","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0007267","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"synaptic signaling","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0007267"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0099536","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0099536","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"synaptic signaling","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0045202","searchableAnnotationValues":"false","shortForm":"GO_0099536","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0099537\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0099537\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0099536\",\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"directParent\":\"http://purl.obolibrary.org/obo/GO_0099536\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0099536\",\"http://purl.obolibrary.org/obo/GO_0007267\",\"http://purl.obolibrary.org/obo/GO_0007154\",\"http://purl.obolibrary.org/obo/GO_0009987\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0023052\",\"http://purl.obolibrary.org/obo/GO_0050789\",\"http://purl.obolibrary.org/obo/GO_0065007\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0099536\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"trans-synaptic signaling\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0099536\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"trans-synaptic signaling\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0099537\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0050789\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulation of biological process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050789\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell communication\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0065007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological regulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0065007\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0099536\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"synaptic signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0099536\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007267\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell-cell signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007267\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0023052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"signaling\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0023052\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0099537","directAncestor":["http://purl.obolibrary.org/obo/GO_0099536","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"directParent":"http://purl.obolibrary.org/obo/GO_0099536","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0099536","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007"],"hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0099536","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"trans-synaptic signaling","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0099536","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0099537","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0099537","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"trans-synaptic signaling","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0099537","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0140352\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140352\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"directParent\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0051234\",\"http://purl.obolibrary.org/obo/GO_0051179\",\"http://purl.obolibrary.org/obo/GO_0008150\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"export from cell\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/GO_0006810\",\"http://purl.obolibrary.org/obo/GO_0009987\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"export from cell\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0140352\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0051234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"establishment of localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051234\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0051179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"localization\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0051179\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0006810\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transport\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006810\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009987\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009987\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0140352","directAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009987"],"directParent":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0009987"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/GO_0009987"],"hierarchicalParent":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0009987"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"export from cell","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0009987"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0140352","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0140352","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"export from cell","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0140352","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0140677\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0140677\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"molecular function activator activity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0098772\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function activator activity\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0140677\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0098772\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecular function regulator activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0098772\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"GO:0140677","directAncestor":"http://purl.obolibrary.org/obo/GO_0098772","directParent":"http://purl.obolibrary.org/obo/GO_0098772","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0098772","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0098772","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"molecular function activator activity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0098772","id":"gitissue502+class+http://purl.obolibrary.org/obo/GO_0140677","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0140677","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"molecular function activator activity","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"GO_0140677","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/HP_0001513\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"HP:0001513\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Accumulation of substantial excess body fat.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Accumulation of substantial excess body fat.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Obesity\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Obesity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004029\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004029\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/HP_0001513\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Accumulation of substantial excess body fat.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"HP_0001513\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0004029\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has feature\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004029\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0011122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"obesity disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0011122\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"HP:0001513","definition":"Accumulation of substantial excess body fat.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//purl.obolibrary.org/obo/IAO_0000115":"Accumulation of substantial excess body fat.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Obesity","id":"gitissue502+class+http://purl.obolibrary.org/obo/HP_0001513","imported":"false","iri":"http://purl.obolibrary.org/obo/HP_0001513","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Obesity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/MONDO_0011122","searchableAnnotationValues":["Accumulation of substantial excess body fat.","false"],"shortForm":"HP_0001513","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:4\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:799.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D004194\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:377788\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:64572001\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0012634\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"condition\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease or disorder, non-neoplastic\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"diseases\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"diseases and disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"literal\"],\"value\":\"medical condition\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"other disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D004194\",\"http://identifiers.org/snomedct/64572001\",\"http://linkedlifedata.com/resource/umls/id/C0012634\",\"http://purl.obolibrary.org/obo/DOID_4\",\"http://purl.obolibrary.org/obo/NCIT_C2991\",\"http://www.orpha.net/ORDO/Orphanet_377788\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"numDescendants\":32.0,\"numHierarchicalDescendants\":32.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:4\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:799.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D004194\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:377788\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:64572001\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0012634\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"condition\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease or disorder, non-neoplastic\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"diseases\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"diseases and disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"literal\"],\"value\":\"medical condition\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"other disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0000001\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"condition\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease or disorder, non-neoplastic\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"diseases\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"diseases and disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]},{\"type\":[\"literal\"],\"value\":\"medical condition\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"other disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_4\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_4\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:4\"},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"SCTID:64572001\":{\"url\":\"http://snomed.info/id/64572001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:64572001\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"DOID:4\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_4\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:4\"},\"http://purl.obolibrary.org/obo/NCIT_C2991\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C2991\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C2991\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"EFO:0000408\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0000408\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0000408\"},\"Orphanet:377788\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d377788\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:377788\"},\"NCIT:C2991\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C2991\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C2991\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"OGMS:0000031\":{\"url\":\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OGMS:0000031\"},\"UMLS:C0012634\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0012634\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0012634\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0000001\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0000001\"},\"http://www.orpha.net/ORDO/Orphanet_377788\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_377788\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:377788\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"MESH:D004194\":{\"url\":\"http://id.nlm.nih.gov/mesh/D004194\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D004194\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0000001","definition":"A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000016","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000016","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:4","EFO:0000408","ICD9:799.9","MESH:D004194","NCIT:C2991","OGMS:0000031","Orphanet:377788","SCTID:64572001","UMLS:C0012634"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["condition","disease","disease or disorder","disease or disorder, non-neoplastic","diseases","diseases and disorders","disorder","disorders","medical condition","other disease"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0000001","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"disease","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000016","http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D004194","http://identifiers.org/snomedct/64572001","http://linkedlifedata.com/resource/umls/id/C0012634","http://purl.obolibrary.org/obo/DOID_4","http://purl.obolibrary.org/obo/NCIT_C2991","http://www.orpha.net/ORDO/Orphanet_377788"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0000001","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0000001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disease","numDescendants":"32.0","numHierarchicalDescendants":"32.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.","DOID:4","EFO:0000408","ICD9:799.9","MESH:D004194","NCIT:C2991","OGMS:0000031","Orphanet:377788","SCTID:64572001","UMLS:C0012634","condition","disease","disease or disorder","disease or disorder, non-neoplastic","diseases","diseases and disorders","disorder","disorders","medical condition","other disease","MONDO:0000001","false"],"shortForm":"MONDO_0000001","synonym":["condition","disease","disease or disorder","disease or disorder, non-neoplastic","diseases","diseases and disorders","disorder","disorders","medical condition","other disease"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002146\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:P378\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0005151\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MESH:D007006\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C9227/inferred\"}]}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0005151\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MESH:D007006\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C9227/inferred\"}]}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:P378\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:253.4\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D007006\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:48130008\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0020619\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadotropin deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002146\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hypogonadism\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MESH:D007006\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C9227/inferred\"}]}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D007006\",\"http://identifiers.org/snomedct/48130008\",\"http://linkedlifedata.com/resource/umls/id/C0020619\",\"http://purl.obolibrary.org/obo/DOID_1924\",\"http://purl.obolibrary.org/obo/NCIT_C9227\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hypogonadism\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:P378\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:253.4\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D007006\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:48130008\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0020619\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:1924\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadotropin deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0002146\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0002146\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadotropin deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C9227\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/MONDO_0002259\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002259\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C9227\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C9227\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C9227\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_1924\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_1924\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:1924\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"MESH:D007006\":{\"url\":\"http://id.nlm.nih.gov/mesh/D007006\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D007006\"},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"UMLS:C0020619\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0020619\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0020619\"},\"NCIT:C9227\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C9227\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C9227\"},\"DOID:1924\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_1924\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:1924\"},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0002146\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0002146\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"SCTID:48130008\":{\"url\":\"http://snomed.info/id/48130008\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:48130008\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0002146","definition":"A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0005151"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0002259","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0005151"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0002259","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:1924","ICD9:253.4","MESH:D007006","NCIT:C9227","SCTID:48130008","UMLS:C0020619"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["gonadotropin deficiency","hypogonadotropism"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0002146","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hypogonadism","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0002259","http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D007006","http://identifiers.org/snomedct/48130008","http://linkedlifedata.com/resource/umls/id/C0020619","http://purl.obolibrary.org/obo/DOID_1924","http://purl.obolibrary.org/obo/NCIT_C9227"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002146","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0002146","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hypogonadism","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.","DOID:1924","ICD9:253.4","MESH:D007006","NCIT:C9227","SCTID:48130008","UMLS:C0020619","gonadotropin deficiency","hypogonadotropism","MONDO:0002146","false"],"shortForm":"MONDO_0002146","synonym":["gonadotropin deficiency","hypogonadotropism"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0002254\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002254\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"}}]},\"http://purl.org/dc/terms/conformsTo\":\"http://purl.obolibrary.org/obo/mondo/patterns/syndromic.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:225\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:225\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:225\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000086\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0039082\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:225\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"cluster, symptom\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"clusters, symptom\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"symptom cluster\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"symptom clusters\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"},{\"type\":[\"literal\"],\"value\":\"OGMS:0000086\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome associated with disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromes\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002254\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#harrisons_view\",\"http://purl.obolibrary.org/obo/mondo#rare_grouping\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"syndromic disease\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021127\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021127\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D013577\",\"http://linkedlifedata.com/resource/umls/id/C0039082\",\"http://purl.obolibrary.org/obo/DOID_225\",\"http://purl.obolibrary.org/obo/NCIT_C28193\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"syndromic disease\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021127\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021127\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:225\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:225\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:225\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000086\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0039082\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:225\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"cluster, symptom\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"clusters, symptom\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"symptom cluster\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"symptom clusters\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"},{\"type\":[\"literal\"],\"value\":\"OGMS:0000086\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome associated with disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromes\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0002254\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0002254\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"cluster, symptom\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"clusters, symptom\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"symptom cluster\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"symptom clusters\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"NCIT:C28193\"},{\"type\":[\"literal\"],\"value\":\"OGMS:0000086\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome associated with disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromes\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D013577\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"NCIT:C28193\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C28193\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C28193\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_225\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_225\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:225\"},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"DOID:225\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_225\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:225\"},\"http://purl.obolibrary.org/obo/MONDO_0021127\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has a syndromic presentation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021127\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C28193\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C28193\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C28193\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"UMLS:C0039082\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0039082\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0039082\"},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"MONDO:0002254\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0002254\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0002254\"},\"OGMS:0000086\":{\"url\":\"http://purl.obolibrary.org/obo/OGMS_0000086\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OGMS:0000086\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"MESH:D013577\":{\"url\":\"http://id.nlm.nih.gov/mesh/D013577\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D013577\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0002254","definition":"A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0700096","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0700096","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.","http__//purl.org/dc/terms/conformsTo":"http://purl.obolibrary.org/obo/mondo/patterns/syndromic.yaml","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:225","MESH:D013577","NCIT:C28193","OGMS:0000086","UMLS:C0039082"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["cluster, symptom","clusters, symptom","symptom cluster","symptom clusters","syndrome","syndrome associated with disease or disorder","syndromes","syndromic disease","syndromic disease or disorder"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0002254","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#harrisons_view","http://purl.obolibrary.org/obo/mondo#rare_grouping"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"syndromic disease","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0700096"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D013577","http://linkedlifedata.com/resource/umls/id/C0039082","http://purl.obolibrary.org/obo/DOID_225","http://purl.obolibrary.org/obo/NCIT_C28193"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002254","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0002254","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"syndromic disease","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/MONDO_0021127","searchableAnnotationValues":["A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.","DOID:225","MESH:D013577","NCIT:C28193","OGMS:0000086","UMLS:C0039082","cluster, symptom","clusters, symptom","symptom cluster","symptom clusters","syndrome","syndrome associated with disease or disorder","syndromes","syndromic disease","syndromic disease or disorder","MONDO:0002254","false"],"shortForm":"MONDO_0002254","synonym":["cluster, symptom","clusters, symptom","symptom cluster","symptom clusters","syndrome","syndrome associated with disease or disorder","syndromes","syndromic disease","syndromic disease or disorder"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002259\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A non-neoplastic or neoplastic disorder that affects the testis or the ovary.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:P378\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0005151\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0005039\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MESH:D006058\"}]}]}],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0005151\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0005039\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MESH:D006058\"}]}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A non-neoplastic or neoplastic disorder that affects the testis or the ovary.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:P378\"}}]},\"http://purl.org/dc/terms/conformsTo\":[\"http://purl.obolibrary.org/obo/mondo/patterns/location.yaml\",\"http://purl.obolibrary.org/obo/mondo/patterns/location_top.yaml\"],\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D006058\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0018050\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of gonad\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of gonad\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of gonad\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of gonads\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonad disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonad disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadal disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002259\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0005039\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MESH:D006058\"}]}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0000001\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D006058\",\"http://linkedlifedata.com/resource/umls/id/C0018050\",\"http://purl.obolibrary.org/obo/DOID_2277\",\"http://purl.obolibrary.org/obo/NCIT_C26786\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A non-neoplastic or neoplastic disorder that affects the testis or the ovary.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:P378\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D006058\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0018050\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:2277\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of gonad\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of gonad\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of gonad\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of gonads\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonad disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonad disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadal disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0002259\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0002259\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of gonad\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of gonad\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of gonad\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of gonads\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonad disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonad disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadal disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26786\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"DOID:2277\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_2277\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:2277\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_2277\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_2277\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:2277\"},\"http://purl.obolibrary.org/obo/NCIT_C26786\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C26786\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C26786\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0002259\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0002259\"},\"NCIT:C26786\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C26786\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C26786\"},\"MESH:D006058\":{\"url\":\"http://id.nlm.nih.gov/mesh/D006058\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D006058\"},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"UMLS:C0018050\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0018050\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0018050\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000991\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000991\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0002259","definition":"A non-neoplastic or neoplastic disorder that affects the testis or the ovary.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0005151"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0005151"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0005151"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0005151"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A non-neoplastic or neoplastic disorder that affects the testis or the ovary.","http__//purl.org/dc/terms/conformsTo":["http://purl.obolibrary.org/obo/mondo/patterns/location.yaml","http://purl.obolibrary.org/obo/mondo/patterns/location_top.yaml"],"http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:2277","MESH:D006058","NCIT:C26786","UMLS:C0018050"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["disease of gonad","disease or disorder of gonad","disorder of gonad","disorder of gonads","gonad disease","gonad disease or disorder","gonadal disorder","gonadal disorders"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0002259","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gonadal disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0005151"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D006058","http://linkedlifedata.com/resource/umls/id/C0018050","http://purl.obolibrary.org/obo/DOID_2277","http://purl.obolibrary.org/obo/NCIT_C26786"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002259","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0002259","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gonadal disorder","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000991","searchableAnnotationValues":["A non-neoplastic or neoplastic disorder that affects the testis or the ovary.","DOID:2277","MESH:D006058","NCIT:C26786","UMLS:C0018050","disease of gonad","disease or disorder of gonad","disorder of gonad","disorder of gonads","gonad disease","gonad disease or disorder","gonadal disorder","gonadal disorders","MONDO:0002259","false"],"shortForm":"MONDO_0002259","synonym":["disease of gonad","disease or disorder of gonad","disorder of gonad","disorder of gonads","gonad disease","gonad disease or disorder","gonadal disorder","gonadal disorders"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002263\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the female reproductive system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:229\"},{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}]}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:229\"},{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}]}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the female reproductive system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},\"http://purl.org/dc/terms/conformsTo\":[\"http://purl.obolibrary.org/obo/mondo/patterns/location.yaml\",\"http://purl.obolibrary.org/obo/mondo/patterns/location_top.yaml\"],\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:229\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:629.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:229\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D005831\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:229\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:310789003\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:229\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of female reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of female reproductive system\"},{\"type\":[\"literal\"],\"value\":\"disorder of female genital system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of female reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:229\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":[{\"type\":[\"literal\"],\"value\":\"disease of female genital system\"},{\"type\":[\"literal\"],\"value\":\"disorder of female genital tract\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gynaecological disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/OMO_0003005\"}]},{\"type\":[\"literal\"],\"value\":\"gynecological disease\"}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002263\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:229\"},{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}]}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000474\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0000001\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000474\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D005831\",\"http://identifiers.org/snomedct/310789003\",\"http://purl.obolibrary.org/obo/DOID_229\",\"http://purl.obolibrary.org/obo/NCIT_C27020\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000474\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000474\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the female reproductive system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:229\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:629.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:229\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D005831\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:229\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:310789003\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:229\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of female reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of female reproductive system\"},{\"type\":[\"literal\"],\"value\":\"disorder of female genital system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of female reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:229\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}}]},{\"type\":[\"literal\"],\"value\":\"disease of female genital system\"},{\"type\":[\"literal\"],\"value\":\"disorder of female genital tract\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gynaecological disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/OMO_0003005\"}]},{\"type\":[\"literal\"],\"value\":\"gynecological disease\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0002263\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0002263\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of female reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of female reproductive system\"},{\"type\":[\"literal\"],\"value\":\"disorder of female genital system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of female reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:229\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C27020\"}}]},{\"type\":[\"literal\"],\"value\":\"disease of female genital system\"},{\"type\":[\"literal\"],\"value\":\"disorder of female genital tract\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gynaecological disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/OMO_0003005\"}]},{\"type\":[\"literal\"],\"value\":\"gynecological disease\"}],\"synonymProperty\":[{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\"}],\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/DOID_229\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_229\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:229\"},\"MESH:D005831\":{\"url\":\"http://id.nlm.nih.gov/mesh/D005831\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D005831\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"SCTID:310789003\":{\"url\":\"http://snomed.info/id/310789003\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:310789003\"},\"DOID:229\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_229\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:229\"},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_related_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasRelatedSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0002-6601-2165\":{\"url\":\"https://orcid.org/0000-0002-6601-2165\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-6601-2165\"},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"NCIT:C27020\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C27020\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C27020\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0002263\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0002263\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/OMO_0003005\":{\"url\":\"http://purl.obolibrary.org/obo/OMO_0003005\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"omo:0003005\"},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_synonym_type\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasSynonymType\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C27020\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C27020\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C27020\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000474\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000474\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0002263","definition":"A disease involving the female reproductive system.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0005039","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0005039","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disease involving the female reproductive system.","http__//purl.org/dc/terms/conformsTo":["http://purl.obolibrary.org/obo/mondo/patterns/location.yaml","http://purl.obolibrary.org/obo/mondo/patterns/location_top.yaml"],"http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:229","ICD9:629.9","MESH:D005831","NCIT:C27020","SCTID:310789003"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["disease of female reproductive system","disease or disorder of female reproductive system","disorder of female genital system","disorder of female reproductive system","female reproductive disease","female reproductive system disease","female reproductive system disease or disorder","female reproductive system disorder"],"http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":["disease of female genital system","disorder of female genital tract","gynaecological disease","gynecological disease"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0002263","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"female reproductive system disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0005039"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D005831","http://identifiers.org/snomedct/310789003","http://purl.obolibrary.org/obo/DOID_229","http://purl.obolibrary.org/obo/NCIT_C27020"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002263","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0002263","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"female reproductive system disorder","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000474","searchableAnnotationValues":["A disease involving the female reproductive system.","DOID:229","ICD9:629.9","MESH:D005831","NCIT:C27020","SCTID:310789003","disease of female reproductive system","disease or disorder of female reproductive system","disorder of female genital system","disorder of female reproductive system","female reproductive disease","female reproductive system disease","female reproductive system disease or disorder","female reproductive system disorder","disease of female genital system","disorder of female genital tract","gynaecological disease","gynecological disease","MONDO:0002263","false"],"shortForm":"MONDO_0002263","synonym":["disease of female reproductive system","disease or disorder of female reproductive system","disorder of female genital system","disorder of female reproductive system","female reproductive disease","female reproductive system disease","female reproductive system disease or disorder","female reproductive system disorder","disease of female genital system","disorder of female genital tract","gynaecological disease","gynecological disease"],"synonymProperty":["http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"],"type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0002320\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002320\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An abnormality of the nervous system that is present at birth or detected in the neonatal period.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An abnormality of the nervous system that is present at birth or detected in the neonatal period.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0000839\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:2490\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:2490\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:742\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:2490\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital abnormality of the nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital nervous system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital neurologic anomaly\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:2490\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002320\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"congenital nervous system disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0005071\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://purl.obolibrary.org/obo/DOID_2490\",\"http://purl.obolibrary.org/obo/NCIT_C97172\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital nervous system disorder\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An abnormality of the nervous system that is present at birth or detected in the neonatal period.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:2490\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:742\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:2490\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital abnormality of the nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital nervous system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital neurologic anomaly\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:2490\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0002320\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0002320\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital abnormality of the nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital nervous system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C97172\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital neurologic anomaly\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:2490\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_2490\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_2490\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:2490\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"NCIT:C97172\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C97172\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C97172\"},\"MONDO:0002320\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0002320\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0002320\"},\"ICD9:742\":{\"url\":\"http://www.icd9data.com/getICD9Code.ashx?icd9\\u003d742\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ICD9:742\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000839\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0000839\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"mondo:0000839\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"DOID:2490\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_2490\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:2490\"},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"excluded_subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"excluded:subClassOf\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021140\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021140\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C97172\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C97172\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C97172\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0002320","definition":"An abnormality of the nervous system that is present at birth or detected in the neonatal period.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0005071","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0005071","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An abnormality of the nervous system that is present at birth or detected in the neonatal period.","http__//purl.obolibrary.org/obo/mondo#excluded_subClassOf":"http://purl.obolibrary.org/obo/MONDO_0000839","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:2490","ICD9:742","NCIT:C97172"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["congenital abnormality of the nervous system","congenital nervous system disorder","congenital neurologic anomaly"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0002320","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"congenital nervous system disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0005071"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://purl.obolibrary.org/obo/DOID_2490","http://purl.obolibrary.org/obo/NCIT_C97172"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002320","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0002320","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"congenital nervous system disorder","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/MONDO_0021140","searchableAnnotationValues":["An abnormality of the nervous system that is present at birth or detected in the neonatal period.","DOID:2490","ICD9:742","NCIT:C97172","congenital abnormality of the nervous system","congenital nervous system disorder","congenital neurologic anomaly","MONDO:0002320","false"],"shortForm":"MONDO_0002320","synonym":["congenital abnormality of the nervous system","congenital nervous system disorder","congenital neurologic anomaly"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"definition\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease that is caused by genetic modifications where those modifications are inherited from a parent\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"literal\"],\"value\":\"Usage note: this is intended only for diseases with an inherited genetic etiology. Somatic genetic mutations are excluded. Some ontologies use the term \\u0027genetic disease\\u0027 in the sense of inherited disorders only, we are here careful to distinguish.\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease that is caused by genetic modifications where those modifications are inherited from a parent\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"http://purl.org/dc/terms/conformsTo\":\"http://purl.obolibrary.org/obo/mondo/patterns/hereditary.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic condition\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"literal\"],\"value\":\"genetic disease\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:630\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0000508\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:799.89\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D030342\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:630\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000508\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:630\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000508\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:32895009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:630\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0019247\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:630\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000508\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary diseases\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"inherited disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"inherited genetic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/1758\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"molecular disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Mendelian disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0050177\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":[{\"type\":[\"literal\"],\"value\":\"familial disorder\"},{\"type\":[\"literal\"],\"value\":\"inborn disorder\"}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#harrisons_view\",\"http://purl.obolibrary.org/obo/mondo#rare_grouping\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Usage note: this is intended only for diseases with an inherited genetic etiology. Somatic genetic mutations are excluded. Some ontologies use the term \\u0027genetic disease\\u0027 in the sense of inherited disorders only, we are here careful to distinguish.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D030342\",\"http://identifiers.org/snomedct/32895009\",\"http://linkedlifedata.com/resource/umls/id/C0019247\",\"http://purl.obolibrary.org/obo/DOID_630\",\"http://purl.obolibrary.org/obo/NCIT_C3101\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"numDescendants\":7.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease that is caused by genetic modifications where those modifications are inherited from a parent\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic condition\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"literal\"],\"value\":\"genetic disease\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:630\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0000508\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:799.89\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D030342\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:630\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000508\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:630\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000508\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:32895009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:630\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0019247\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:630\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000508\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary diseases\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"inherited disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"inherited genetic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/1758\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"molecular disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Mendelian disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0050177\"}}]},{\"type\":[\"literal\"],\"value\":\"familial disorder\"},{\"type\":[\"literal\"],\"value\":\"inborn disorder\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0003847\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic condition\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"literal\"],\"value\":\"genetic disease\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hereditary diseases\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"inherited disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"inherited genetic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/1758\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"molecular disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3101\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Mendelian disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0050177\"}}]},{\"type\":[\"literal\"],\"value\":\"familial disorder\"},{\"type\":[\"literal\"],\"value\":\"inborn disorder\"}],\"synonymProperty\":[{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\"}],\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"SCTID:32895009\":{\"url\":\"http://snomed.info/id/32895009\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:32895009\"},\"DOID:630\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_630\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:630\"},\"http://purl.obolibrary.org/obo/DOID_630\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_630\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:630\"},\"DOID:0050177\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_0050177\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:0050177\"},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_related_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasRelatedSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_narrow_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasNarrowSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C3101\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C3101\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C3101\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"NCIT:C3101\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C3101\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C3101\"},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0003847\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0003847\"},\"UMLS:C0019247\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0019247\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0019247\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_broad_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasBroadSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021152\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021152\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"MESH:D030342\":{\"url\":\"http://id.nlm.nih.gov/mesh/D030342\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D030342\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"EFO:0000508\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0000508\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0000508\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0003847","definition":["A disease that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.","Usage note: this is intended only for diseases with an inherited genetic etiology. Somatic genetic mutations are excluded. Some ontologies use the term \u0027genetic disease\u0027 in the sense of inherited disorders only, we are here careful to distinguish."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0700096","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0700096","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disease that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.","http__//purl.org/dc/terms/conformsTo":"http://purl.obolibrary.org/obo/mondo/patterns/hereditary.yaml","http__//www.geneontology.org/formats/oboInOwl#hasBroadSynonym":["genetic condition","genetic disease","genetic disorder"],"http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:630","EFO:0000508","ICD9:799.89","MESH:D030342","NCIT:C3101","SCTID:32895009","UMLS:C0019247"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["hereditary disease","hereditary disease or disorder","hereditary diseases","inherited disease","inherited genetic disease","molecular disease"],"http__//www.geneontology.org/formats/oboInOwl#hasNarrowSynonym":"Mendelian disease","http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":["familial disorder","inborn disorder"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0003847","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#harrisons_view","http://purl.obolibrary.org/obo/mondo#rare_grouping"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Usage note: this is intended only for diseases with an inherited genetic etiology. Somatic genetic mutations are excluded. Some ontologies use the term \u0027genetic disease\u0027 in the sense of inherited disorders only, we are here careful to distinguish.","http__//www.w3.org/2000/01/rdf-schema#label":"hereditary disease","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0700096"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D030342","http://identifiers.org/snomedct/32895009","http://linkedlifedata.com/resource/umls/id/C0019247","http://purl.obolibrary.org/obo/DOID_630","http://purl.obolibrary.org/obo/NCIT_C3101"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0003847","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0003847","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hereditary disease","numDescendants":"7.0","numHierarchicalDescendants":"7.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/MONDO_0021152","searchableAnnotationValues":["A disease that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.","genetic condition","genetic disease","genetic disorder","DOID:630","EFO:0000508","ICD9:799.89","MESH:D030342","NCIT:C3101","SCTID:32895009","UMLS:C0019247","hereditary disease","hereditary disease or disorder","hereditary diseases","inherited disease","inherited genetic disease","molecular disease","Mendelian disease","familial disorder","inborn disorder","MONDO:0003847","false"],"shortForm":"MONDO_0003847","synonym":["genetic condition","genetic disease","genetic disorder","hereditary disease","hereditary disease or disorder","hereditary diseases","inherited disease","inherited genetic disease","molecular disease","Mendelian disease","familial disorder","inborn disorder"],"synonymProperty":["http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"],"type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003916\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D044343\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MESH:D044343\"}]}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MESH:D044343\"}]}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D044343\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:654\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:278.8\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D044343\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:302872003\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C1257763\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003916\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"overnutrition\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MESH:D044343\"}]}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D044343\",\"http://identifiers.org/snomedct/302872003\",\"http://linkedlifedata.com/resource/umls/id/C1257763\",\"http://purl.obolibrary.org/obo/DOID_654\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"overnutrition\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D044343\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:654\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:278.8\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D044343\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:302872003\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C1257763\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:654\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0003916\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0003916\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"DOID:654\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_654\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:654\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005137\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005137\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MESH:D044343\":{\"url\":\"http://id.nlm.nih.gov/mesh/D044343\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D044343\"},\"UMLS:C1257763\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C1257763\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C1257763\"},\"SCTID:302872003\":{\"url\":\"http://snomed.info/id/302872003\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:302872003\"},\"MONDO:0003916\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0003916\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_654\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_654\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:654\"}}}","appearsIn":["gitissue502"],"curie":"MONDO:0003916","definition":"An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0005137","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0005137","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0005137","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0005137","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:654","ICD9:278.8","MESH:D044343","SCTID:302872003","UMLS:C1257763"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0003916","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"overnutrition","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0005137","http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D044343","http://identifiers.org/snomedct/302872003","http://linkedlifedata.com/resource/umls/id/C1257763","http://purl.obolibrary.org/obo/DOID_654"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0003916","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0003916","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"overnutrition","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.","DOID:654","ICD9:278.8","MESH:D044343","SCTID:302872003","UMLS:C1257763","MONDO:0003916","false"],"shortForm":"MONDO_0003916","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the reproductive system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the reproductive system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},\"http://purl.org/dc/terms/conformsTo\":\"http://purl.obolibrary.org/obo/mondo/patterns/location.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:15\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0000512\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0000512\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:362968007\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0000512\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0178829\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Wikipedia:Reproductive_system_disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"EFO:0000512\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of reproductive system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genital disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genital system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:15\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:15\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":\"http://purl.obolibrary.org/obo/mondo#rare_grouping\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/snomedct/362968007\",\"http://linkedlifedata.com/resource/umls/id/C0178829\",\"http://purl.obolibrary.org/obo/DOID_15\",\"http://purl.obolibrary.org/obo/NCIT_C4875\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the reproductive system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:15\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0000512\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0000512\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:362968007\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0000512\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0178829\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Wikipedia:Reproductive_system_disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"EFO:0000512\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of reproductive system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genital disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genital system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:15\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:15\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0005039\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of reproductive system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of reproductive system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genital disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genital system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:15\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:15\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C4875\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"NCIT:C4875\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C4875\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C4875\"},\"UMLS:C0178829\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0178829\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0178829\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"DOID:15\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_15\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:15\"},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"MONDO:0005039\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0005039\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"EFO:0000512\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0000512\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0000512\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Wikipedia:Reproductive_system_disease\":{\"url\":\"http://en.wikipedia.org/wiki/Reproductive_system_disease\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"Wikipedia:Reproductive_system_disease\"},\"http://purl.obolibrary.org/obo/NCIT_C4875\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C4875\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C4875\"},\"https://orcid.org/0000-0002-6601-2165\":{\"url\":\"https://orcid.org/0000-0002-6601-2165\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-6601-2165\"},\"SCTID:362968007\":{\"url\":\"http://snomed.info/id/362968007\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:362968007\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_15\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_15\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:15\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0005039","definition":"A disease involving the reproductive system.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disease involving the reproductive system.","http__//purl.org/dc/terms/conformsTo":"http://purl.obolibrary.org/obo/mondo/patterns/location.yaml","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:15","EFO:0000512","NCIT:C4875","SCTID:362968007","UMLS:C0178829","Wikipedia:Reproductive_system_disease"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["disease of reproductive system","disease or disorder of reproductive system","disorder of reproductive system","genital disorders","genital system disease","reproductive disease","reproductive system disease","reproductive system disease or disorder","reproductive system disorder"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0005039","http__//www.geneontology.org/formats/oboInOwl#inSubset":"http://purl.obolibrary.org/obo/mondo#rare_grouping","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"reproductive system disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/snomedct/362968007","http://linkedlifedata.com/resource/umls/id/C0178829","http://purl.obolibrary.org/obo/DOID_15","http://purl.obolibrary.org/obo/NCIT_C4875"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0005039","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0005039","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"reproductive system disorder","numDescendants":"8.0","numHierarchicalDescendants":"8.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000990","searchableAnnotationValues":["A disease involving the reproductive system.","DOID:15","EFO:0000512","NCIT:C4875","SCTID:362968007","UMLS:C0178829","Wikipedia:Reproductive_system_disease","disease of reproductive system","disease or disorder of reproductive system","disorder of reproductive system","genital disorders","genital system disease","reproductive disease","reproductive system disease","reproductive system disease or disorder","reproductive system disorder","MONDO:0005039","false"],"shortForm":"MONDO_0005039","synonym":["disease of reproductive system","disease or disorder of reproductive system","disorder of reproductive system","genital disorders","genital system disease","reproductive disease","reproductive system disease","reproductive system disease or disorder","reproductive system disorder"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},\"definition\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}}]},{\"type\":[\"literal\"],\"value\":\"\\u0027psychiatric disorder\\u0027 is not classified as a \\u0027nervous system disorder\\u0027 in Mondo (though it is often as such): the hallmarks of psychiatric disorders are based in behavior and emotional state, and the relation with nervous system malfunction or damage is not always clearly determined.\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}}]},\"http://purl.org/dc/terms/conformsTo\":\"http://purl.obolibrary.org/obo/mondo/patterns/location.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0000618\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0000618\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:G00-G99\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/4536\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:349.89\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:349.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D009422\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:118940003\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0027765\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Wikipedia:Nervous_system_disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"EFO:0000618\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of nervous system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurologic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurologic disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"ISBN-13:978-1-259-64403-0\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurological disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurological disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":\"http://purl.obolibrary.org/obo/mondo#rare_grouping\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"\\u0027psychiatric disorder\\u0027 is not classified as a \\u0027nervous system disorder\\u0027 in Mondo (though it is often as such): the hallmarks of psychiatric disorders are based in behavior and emotional state, and the relation with nervous system malfunction or damage is not always clearly determined.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D009422\",\"http://identifiers.org/snomedct/118940003\",\"http://linkedlifedata.com/resource/umls/id/C0027765\",\"http://purl.bioontology.org/ontology/ICD10CM/G00-G99\",\"http://purl.obolibrary.org/obo/DOID_863\",\"http://purl.obolibrary.org/obo/NCIT_C26835\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0000618\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0000618\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:G00-G99\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/4536\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:349.89\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:349.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D009422\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:118940003\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0027765\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Wikipedia:Nervous_system_disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"EFO:0000618\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of nervous system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurologic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurologic disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"ISBN-13:978-1-259-64403-0\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurological disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurological disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0005071\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of nervous system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of nervous system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurologic disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurologic disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:863\"},{\"type\":[\"literal\"],\"value\":\"ISBN-13:978-1-259-64403-0\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26835\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurological disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"neurological disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:863\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_863\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_863\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:863\"},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"DOID:863\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_863\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:863\"},\"NCIT:C26835\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C26835\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C26835\"},\"UMLS:C0027765\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0027765\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0027765\"},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C26835\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C26835\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C26835\"},\"EFO:0000618\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0000618\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0000618\"},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"MESH:D009422\":{\"url\":\"http://id.nlm.nih.gov/mesh/D009422\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D009422\"},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"https://orcid.org/0000-0002-4142-7153\":{\"url\":\"https://orcid.org/0000-0002-4142-7153\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-4142-7153\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0005071\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0005071\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"SCTID:118940003\":{\"url\":\"http://snomed.info/id/118940003\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:118940003\"},\"Wikipedia:Nervous_system_disease\":{\"url\":\"http://en.wikipedia.org/wiki/Nervous_system_disease\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"Wikipedia:Nervous_system_disease\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0001-5208-3432\":{\"url\":\"https://orcid.org/0000-0001-5208-3432\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0001-5208-3432\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0005071","definition":["A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.","\u0027psychiatric disorder\u0027 is not classified as a \u0027nervous system disorder\u0027 in Mondo (though it is often as such): the hallmarks of psychiatric disorders are based in behavior and emotional state, and the relation with nervous system malfunction or damage is not always clearly determined."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.","http__//purl.org/dc/terms/conformsTo":"http://purl.obolibrary.org/obo/mondo/patterns/location.yaml","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:863","EFO:0000618","ICD10CM:G00-G99","ICD9:349.89","ICD9:349.9","MESH:D009422","NCIT:C26835","SCTID:118940003","UMLS:C0027765","Wikipedia:Nervous_system_disease"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["disease of nervous system","disease or disorder of nervous system","disorder of nervous system","nervous system disease","nervous system disease or disorder","nervous system disorder","neurologic disease","neurologic disorder","neurological disease","neurological disorder"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0005071","http__//www.geneontology.org/formats/oboInOwl#inSubset":"http://purl.obolibrary.org/obo/mondo#rare_grouping","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"\u0027psychiatric disorder\u0027 is not classified as a \u0027nervous system disorder\u0027 in Mondo (though it is often as such): the hallmarks of psychiatric disorders are based in behavior and emotional state, and the relation with nervous system malfunction or damage is not always clearly determined.","http__//www.w3.org/2000/01/rdf-schema#label":"nervous system disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D009422","http://identifiers.org/snomedct/118940003","http://linkedlifedata.com/resource/umls/id/C0027765","http://purl.bioontology.org/ontology/ICD10CM/G00-G99","http://purl.obolibrary.org/obo/DOID_863","http://purl.obolibrary.org/obo/NCIT_C26835"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0005071","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0005071","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"nervous system disorder","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0001016","searchableAnnotationValues":["A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.","DOID:863","EFO:0000618","ICD10CM:G00-G99","ICD9:349.89","ICD9:349.9","MESH:D009422","NCIT:C26835","SCTID:118940003","UMLS:C0027765","Wikipedia:Nervous_system_disease","disease of nervous system","disease or disorder of nervous system","disorder of nervous system","nervous system disease","nervous system disease or disorder","nervous system disorder","neurologic disease","neurologic disorder","neurological disease","neurological disorder","MONDO:0005071","false"],"shortForm":"MONDO_0005071","synonym":["disease of nervous system","disease or disorder of nervous system","disorder of nervous system","nervous system disease","nervous system disease or disorder","nervous system disorder","neurologic disease","neurologic disorder","neurological disease","neurological disorder"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005137\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Any condition related to a disturbance between proper intake and utilization of nourishment.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Any condition related to a disturbance between proper intake and utilization of nourishment.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}}]},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005066\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0006504\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:374\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:374\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:783.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D009748\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:exact-label-match\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:2492009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C3714509\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}]}]},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nutrition disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:374\"}}]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005137\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#harrisons_view\",\"http://purl.obolibrary.org/obo/mondo#rare_grouping\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"}}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D009748\",\"http://identifiers.org/snomedct/2492009\",\"http://linkedlifedata.com/resource/umls/id/C3714509\",\"http://purl.obolibrary.org/obo/DOID_374\",\"http://purl.obolibrary.org/obo/NCIT_C26836\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Any condition related to a disturbance between proper intake and utilization of nourishment.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:374\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:783.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D009748\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:exact-label-match\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:2492009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001069\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C3714509\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nutrition disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:374\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0005137\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0005137\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:374\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C26836\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nutrition disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:374\"}}]}],\"synonymProperty\":[{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\"}],\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"EFO:0001069\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0001069\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0001069\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C26836\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C26836\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C26836\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0006504\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0006504\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"mondo:0006504\"},\"NCIT:C26836\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C26836\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C26836\"},\"MESH:D009748\":{\"url\":\"http://id.nlm.nih.gov/mesh/D009748\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D009748\"},\"SCTID:2492009\":{\"url\":\"http://snomed.info/id/2492009\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:2492009\"},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_related_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasRelatedSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005066\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0005066\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"mondo:0005066\"},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"excluded_subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"excluded:subClassOf\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0001-5208-3432\":{\"url\":\"https://orcid.org/0000-0001-5208-3432\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0001-5208-3432\"},\"MONDO:0005137\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0005137\"},\"http://purl.obolibrary.org/obo/DOID_374\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_374\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:374\"},\"UMLS:C3714509\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C3714509\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C3714509\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"DOID:374\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_374\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:374\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0005137","definition":"Any condition related to a disturbance between proper intake and utilization of nourishment.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0700096","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0700096","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"Any condition related to a disturbance between proper intake and utilization of nourishment.","http__//purl.obolibrary.org/obo/mondo#excluded_subClassOf":["http://purl.obolibrary.org/obo/MONDO_0005066","http://purl.obolibrary.org/obo/MONDO_0006504"],"http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:374","EFO:0001069","ICD9:783.9","MESH:D009748","NCIT:C26836","SCTID:2492009","UMLS:C3714509"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":"nutritional disorder","http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":"nutrition disease","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0005137","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#harrisons_view","http://purl.obolibrary.org/obo/mondo#rare_grouping"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"nutritional disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0700096","http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D009748","http://identifiers.org/snomedct/2492009","http://linkedlifedata.com/resource/umls/id/C3714509","http://purl.obolibrary.org/obo/DOID_374","http://purl.obolibrary.org/obo/NCIT_C26836"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0005137","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0005137","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"nutritional disorder","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Any condition related to a disturbance between proper intake and utilization of nourishment.","DOID:374","EFO:0001069","ICD9:783.9","MESH:D009748","NCIT:C26836","SCTID:2492009","UMLS:C3714509","nutritional disorder","nutrition disease","MONDO:0005137","false"],"shortForm":"MONDO_0005137","synonym":["nutritional disorder","nutrition disease"],"synonymProperty":["http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"],"type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the endocrine system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the endocrine system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021199\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"MONDO:Entailed\"},{\"type\":[\"literal\"],\"value\":\"MONDO:metaclass\"}]}]},\"http://purl.org/dc/terms/conformsTo\":\"http://purl.obolibrary.org/obo/mondo/patterns/location.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:28\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:259.8\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:259.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D004700\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:362969004\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0014130\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of endocrine system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of endocrine system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of endocrine system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrinopathy\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"thyroid or other glandular disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#harrisons_view\",\"http://purl.obolibrary.org/obo/mondo#rare_grouping\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D004700\",\"http://identifiers.org/snomedct/362969004\",\"http://linkedlifedata.com/resource/umls/id/C0014130\",\"http://purl.obolibrary.org/obo/DOID_28\",\"http://purl.obolibrary.org/obo/NCIT_C3009\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":10.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease involving the endocrine system.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6601-2165\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:28\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:259.8\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:259.9\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D004700\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:362969004\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001379\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0014130\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of endocrine system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of endocrine system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of endocrine system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrinopathy\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"thyroid or other glandular disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0005151\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disease of endocrine system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"}}]},{\"type\":[\"literal\"],\"value\":\"disease or disorder of endocrine system\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of endocrine system\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location_top\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:28\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/location\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"endocrinopathy\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"thyroid or other glandular disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3009\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCIT_C3009\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C3009\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C3009\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0005151\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0005151\"},\"DOID:28\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_28\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:28\"},\"NCIT:C3009\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C3009\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C3009\"},\"http://purl.obolibrary.org/obo/MONDO_0021199\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021199\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"mondo:0021199\"},\"UMLS:C0014130\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0014130\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0014130\"},\"https://orcid.org/0000-0002-6601-2165\":{\"url\":\"https://orcid.org/0000-0002-6601-2165\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-6601-2165\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"MESH:D004700\":{\"url\":\"http://id.nlm.nih.gov/mesh/D004700\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D004700\"},\"http://purl.obolibrary.org/obo/DOID_28\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_28\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:28\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"EFO:0001379\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0001379\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0001379\"},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"excluded_subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"excluded:subClassOf\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"SCTID:362969004\":{\"url\":\"http://snomed.info/id/362969004\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:362969004\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0005151","definition":"A disease involving the endocrine system.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disease involving the endocrine system.","http__//purl.obolibrary.org/obo/mondo#excluded_subClassOf":"http://purl.obolibrary.org/obo/MONDO_0021199","http__//purl.org/dc/terms/conformsTo":"http://purl.obolibrary.org/obo/mondo/patterns/location.yaml","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:28","EFO:0001379","ICD9:259.8","ICD9:259.9","MESH:D004700","NCIT:C3009","SCTID:362969004","UMLS:C0014130"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["disease of endocrine system","disease or disorder of endocrine system","disorder of endocrine system","endocrine disease","endocrine disorder","endocrine system disease","endocrine system disease or disorder","endocrine system disorder","endocrinopathy","thyroid or other glandular disorders"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0005151","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#harrisons_view","http://purl.obolibrary.org/obo/mondo#rare_grouping"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"endocrine system disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D004700","http://identifiers.org/snomedct/362969004","http://linkedlifedata.com/resource/umls/id/C0014130","http://purl.obolibrary.org/obo/DOID_28","http://purl.obolibrary.org/obo/NCIT_C3009"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0005151","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0005151","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"endocrine system disorder","numDescendants":"10.0","numHierarchicalDescendants":"10.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000949","searchableAnnotationValues":["A disease involving the endocrine system.","DOID:28","EFO:0001379","ICD9:259.8","ICD9:259.9","MESH:D004700","NCIT:C3009","SCTID:362969004","UMLS:C0014130","disease of endocrine system","disease or disorder of endocrine system","disorder of endocrine system","endocrine disease","endocrine disorder","endocrine system disease","endocrine system disease or disorder","endocrine system disorder","endocrinopathy","thyroid or other glandular disorders","MONDO:0005151","false"],"shortForm":"MONDO_0005151","synonym":["disease of endocrine system","disease or disorder of endocrine system","disorder of endocrine system","endocrine disease","endocrine disorder","endocrine system disease","endocrine system disease or disorder","endocrine system disorder","endocrinopathy","thyroid or other glandular disorders"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0008300\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0008300\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002320\",\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0015160\",\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0015770\",\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0015860\",\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"http://purl.obolibrary.org/obo/MONDO_0015514\",\"http://purl.obolibrary.org/obo/MONDO_0016565\",\"http://purl.obolibrary.org/obo/MONDO_0002254\",\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"http://purl.obolibrary.org/obo/MONDO_0019040\",\"http://purl.obolibrary.org/obo/MONDO_0100038\",\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"http://purl.obolibrary.org/obo/MONDO_0100500\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0002320\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015160\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015770\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015890-obsoleted\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0016565\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019040\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MESH:D011218\"}]}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0100038\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6733-369X\"}}]},\"http://purl.obolibrary.org/obo/MONDO_0100500\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002320\",\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0015160\",\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0015770\",\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0015860\",\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"http://purl.obolibrary.org/obo/MONDO_0015514\",\"http://purl.obolibrary.org/obo/MONDO_0016565\",\"http://purl.obolibrary.org/obo/MONDO_0002254\",\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"http://purl.obolibrary.org/obo/MONDO_0019040\",\"http://purl.obolibrary.org/obo/MONDO_0100038\",\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"http://purl.obolibrary.org/obo/MONDO_0100500\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0002320\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015160\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015770\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015890-obsoleted\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0016565\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019040\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MESH:D011218\"}]}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0100038\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6733-369X\"}}]},\"http://purl.obolibrary.org/obo/MONDO_0100500\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"GARD:5575\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:759.81\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D011218\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739/e\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MedDRA:10036476\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739/e\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C75463\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739/e\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:89392001\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0032897\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:ncbi_mim2gene_medline\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C75463\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739/e\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:11983\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Labhart-Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi-Labhart syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C75463\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Willi-Prader syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"PWS\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}],\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#ABBREVIATION\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome chromosome region\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi-like syndrome associated with chromosome 6\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"GARD:0005575\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"GARD:0005575\"},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#DEPRECATED\"}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0008300\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#gard_rare\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"GARD:0005575\"}}]},\"http://purl.obolibrary.org/obo/mondo#nord_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_disease\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://rarediseases.info.nih.gov/diseases/5575/prader-willi-syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"GARD:0005575\"}}]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0002320\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015160\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015770\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015890-obsoleted\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0016565\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019040\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MESH:D011218\"}]}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0100038\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6733-369X\"}}]},\"http://purl.obolibrary.org/obo/MONDO_0100500\"],\"http://www.w3.org/2004/02/skos/core#closeMatch\":\"http://identifiers.org/meddra/10036476\",\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D011218\",\"http://identifiers.org/snomedct/89392001\",\"http://linkedlifedata.com/resource/umls/id/C0032897\",\"http://purl.obolibrary.org/obo/DOID_11983\",\"http://purl.obolibrary.org/obo/NCIT_C75463\",\"http://www.orpha.net/ORDO/Orphanet_739\",\"https://omim.org/entry/176270\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"GARD:5575\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:759.81\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D011218\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739/e\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MedDRA:10036476\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739/e\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C75463\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739/e\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:89392001\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0032897\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:11983\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:ncbi_mim2gene_medline\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C75463\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739/e\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:11983\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Labhart-Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi-Labhart syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C75463\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Willi-Prader syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"PWS\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}],\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#ABBREVIATION\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome chromosome region\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi-like syndrome associated with chromosome 6\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"GARD:0005575\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"GARD:0005575\"},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#DEPRECATED\"}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0008300\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0008300\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:11983\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Labhart-Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi-Labhart syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C75463\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Willi-Prader syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:739\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"PWS\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}],\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#ABBREVIATION\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi syndrome chromosome region\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Prader-Willi-like syndrome associated with chromosome 6\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIM:176270\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"GARD:0005575\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"GARD:0005575\"},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#DEPRECATED\"}]}],\"synonymProperty\":[{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\"}],\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"MONDO:0008300\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0008300\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0008300\"},\"MedDRA:10036476\":{\"url\":\"http://bioportal.bioontology.org/ontologies/MEDDRA?p\\u003dclasses\\u0026conceptid\\u003d10036476\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MedDRA:10036476\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015770\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital hypogonadotropic hypogonadism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015770\"},\"type\":[\"class\",\"entity\"]},\"SCTID:89392001\":{\"url\":\"http://snomed.info/id/89392001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:89392001\"},\"GARD:0005575\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/0005575/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:0005575\"},\"http://purl.obolibrary.org/obo/MONDO_0019040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019042\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies/dysmorphic syndrome\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019042\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neurodevelopmental disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700092\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#closeMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has close match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:closeMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015127\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"pituitary deficiency\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015127\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_related_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasRelatedSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0100500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mendelian neurodevelopmental disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0100500\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015514\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary endocrine growth disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015514\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0016565\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"syndromic genetic obesity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0016565\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0003916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"overnutrition\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002320\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital nervous system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002320\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019824\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"non-acquired pituitary hormone deficiency\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019824\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"OMIM:176270\":{\"url\":\"https://omim.org/entry/176270\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"OMIM:176270\"},\"http://purl.obolibrary.org/obo/MONDO_0015860\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015860\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_11983\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_11983\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:11983\"},\"http://purl.obolibrary.org/obo/MONDO_0002259\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002259\"},\"type\":[\"class\",\"entity\"]},\"DOID:11983\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_11983\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:11983\"},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_synonym_type\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasSynonymType\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002254\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"syndromic disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002254\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Orphanet:739\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d739\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:739\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"GARD:5575\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/5575/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:5575\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015330\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"overgrowth/obesity syndrome\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015330\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C75463\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C75463\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C75463\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015160\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hypogonadism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005137\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005137\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002263\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0011122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"obesity disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0011122\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0018555\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0018555\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:seeAlso\"},\"type\":[\"property\",\"entity\"]},\"MESH:D011218\":{\"url\":\"http://id.nlm.nih.gov/mesh/D011218\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D011218\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0015890\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015890\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015890\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019755\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"type\":[\"class\",\"entity\"]},\"NCIT:C75463\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C75463\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C75463\"},\"UMLS:C0032897\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0032897\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0032897\"},\"http://purl.obolibrary.org/obo/MONDO_0016072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle of genetic origin\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0016072\"},\"type\":[\"class\",\"entity\"]},\"https://orcid.org/0000-0002-6733-369X\":{\"url\":\"https://orcid.org/0000-0002-6733-369X\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-6733-369X\"},\"http://purl.obolibrary.org/obo/MONDO_0019182\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited obesity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019182\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021147\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0100038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"complex neurodevelopmental disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0100038\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},\"type\":[\"class\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_739\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_739\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:739\"},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0008300","definition":"Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0002320","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0015160","http://purl.obolibrary.org/obo/MONDO_0019042","http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0015770","http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0015860","http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0018555","http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0019824","http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0015514","http://purl.obolibrary.org/obo/MONDO_0016565","http://purl.obolibrary.org/obo/MONDO_0002254","http://purl.obolibrary.org/obo/MONDO_0015330","http://purl.obolibrary.org/obo/MONDO_0019182","http://purl.obolibrary.org/obo/MONDO_0011122","http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137","http://purl.obolibrary.org/obo/MONDO_0019040","http://purl.obolibrary.org/obo/MONDO_0100038","http://purl.obolibrary.org/obo/MONDO_0700092","http://purl.obolibrary.org/obo/MONDO_0100500"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0002320","http://purl.obolibrary.org/obo/MONDO_0015160","http://purl.obolibrary.org/obo/MONDO_0015770","http://purl.obolibrary.org/obo/MONDO_0016565","http://purl.obolibrary.org/obo/MONDO_0019040","http://purl.obolibrary.org/obo/MONDO_0100038","http://purl.obolibrary.org/obo/MONDO_0100500"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0002320","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0015160","http://purl.obolibrary.org/obo/MONDO_0019042","http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0015770","http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0015860","http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0018555","http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0019824","http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0015514","http://purl.obolibrary.org/obo/MONDO_0016565","http://purl.obolibrary.org/obo/MONDO_0002254","http://purl.obolibrary.org/obo/MONDO_0015330","http://purl.obolibrary.org/obo/MONDO_0019182","http://purl.obolibrary.org/obo/MONDO_0011122","http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137","http://purl.obolibrary.org/obo/MONDO_0019040","http://purl.obolibrary.org/obo/MONDO_0100038","http://purl.obolibrary.org/obo/MONDO_0700092","http://purl.obolibrary.org/obo/MONDO_0100500"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0002320","http://purl.obolibrary.org/obo/MONDO_0015160","http://purl.obolibrary.org/obo/MONDO_0015770","http://purl.obolibrary.org/obo/MONDO_0016565","http://purl.obolibrary.org/obo/MONDO_0019040","http://purl.obolibrary.org/obo/MONDO_0100038","http://purl.obolibrary.org/obo/MONDO_0100500"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:11983","GARD:5575","ICD9:759.81","MESH:D011218","MedDRA:10036476","NCIT:C75463","OMIM:176270","Orphanet:739","SCTID:89392001","UMLS:C0032897"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["Prader Willi syndrome","Prader-Labhart-Willi syndrome","Prader-Willi syndrome","Prader-Willi-Labhart syndrome","Willi-Prader syndrome"],"http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":["PWS","Prader-Willi syndrome chromosome region","Prader-Willi-like syndrome associated with chromosome 6","obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet","obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0008300","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#nord_rare","http://purl.obolibrary.org/obo/mondo#ordo_disease","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Prader-Willi syndrome","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"https://rarediseases.info.nih.gov/diseases/5575/prader-willi-syndrome","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0002320","http://purl.obolibrary.org/obo/MONDO_0015160","http://purl.obolibrary.org/obo/MONDO_0015770","http://purl.obolibrary.org/obo/MONDO_0016565","http://purl.obolibrary.org/obo/MONDO_0019040","http://purl.obolibrary.org/obo/MONDO_0100038","http://purl.obolibrary.org/obo/MONDO_0100500"],"http__//www.w3.org/2004/02/skos/core#closeMatch":"http://identifiers.org/meddra/10036476","http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D011218","http://identifiers.org/snomedct/89392001","http://linkedlifedata.com/resource/umls/id/C0032897","http://purl.obolibrary.org/obo/DOID_11983","http://purl.obolibrary.org/obo/NCIT_C75463","http://www.orpha.net/ORDO/Orphanet_739","https://omim.org/entry/176270"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0008300","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0008300","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Prader-Willi syndrome","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.","DOID:11983","GARD:5575","ICD9:759.81","MESH:D011218","MedDRA:10036476","NCIT:C75463","OMIM:176270","Orphanet:739","SCTID:89392001","UMLS:C0032897","Prader Willi syndrome","Prader-Labhart-Willi syndrome","Prader-Willi syndrome","Prader-Willi-Labhart syndrome","Willi-Prader syndrome","PWS","Prader-Willi syndrome chromosome region","Prader-Willi-like syndrome associated with chromosome 6","obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet","obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet","MONDO:0008300","false"],"shortForm":"MONDO_0008300","synonym":["Prader Willi syndrome","Prader-Labhart-Willi syndrome","Prader-Willi syndrome","Prader-Willi-Labhart syndrome","Willi-Prader syndrome","PWS","Prader-Willi syndrome chromosome region","Prader-Willi-like syndrome associated with chromosome 6","obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet","obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet"],"synonymProperty":["http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"],"type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0011122\"},\"definition\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder involving an excessive amount of body fat.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"https://www.ama-assn.org/sites/default/files/media-browser/public/about-ama/councils/Council%20Reports/council-on-science-public-health/a13csaph3.pdf\"},{\"type\":[\"literal\"],\"value\":\"https://www.mayoclinic.org/diseases-conditions/obesity/symptoms-causes/syc-20375742\"}]}]},{\"type\":[\"literal\"],\"value\":\"Obesity is a complex disease that may involve multiple environmental and genetic causes. See the subclass monogenic disease for genetic subtypes\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:9970\"}}]},\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"http://purl.obolibrary.org/obo/MONDO_0005137\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:9970\"}}]},\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder involving an excessive amount of body fat.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"https://www.ama-assn.org/sites/default/files/media-browser/public/about-ama/councils/Council%20Reports/council-on-science-public-health/a13csaph3.pdf\"},{\"type\":[\"literal\"],\"value\":\"https://www.mayoclinic.org/diseases-conditions/obesity/symptoms-causes/syc-20375742\"}]}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"HP:0001513\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:otherHierarchy\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:278.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:278.00\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3283\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:otherHierarchy\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NIFSTD:nlx_dys_20090302\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:521399\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentObsolete\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:414916001\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0028754\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:ncbi_mim2gene_medline\"},{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:ambiguous\"},{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"}]}]},{\"type\":[\"literal\"],\"value\":\"obesity disease\"}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0011122\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Obesity is a complex disease that may involve multiple environmental and genetic causes. See the subclass monogenic disease for genetic subtypes\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obesity disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"DOID:9970\"}}]},\"http://purl.obolibrary.org/obo/OGMS_0000031\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004029\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/HP_0001513\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0000001\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004029\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/HP_0001513\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/snomedct/414916001\",\"http://linkedlifedata.com/resource/umls/id/C0028754\",\"http://purl.obolibrary.org/obo/DOID_9970\",\"http://purl.obolibrary.org/obo/NCIT_C3283\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obesity disorder\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004029\",\"value\":\"http://purl.obolibrary.org/obo/HP_0001513\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004029\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/HP_0001513\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder involving an excessive amount of body fat.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"https://www.ama-assn.org/sites/default/files/media-browser/public/about-ama/councils/Council%20Reports/council-on-science-public-health/a13csaph3.pdf\"},{\"type\":[\"literal\"],\"value\":\"https://www.mayoclinic.org/diseases-conditions/obesity/symptoms-causes/syc-20375742\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"HP:0001513\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:otherHierarchy\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:278.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:278.00\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C3283\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:otherHierarchy\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NIFSTD:nlx_dys_20090302\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:521399\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentObsolete\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:414916001\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"EFO:0001073\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0028754\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:9970\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"MONDO:ncbi_mim2gene_medline\"},{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:ambiguous\"},{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"}]}]},{\"type\":[\"literal\"],\"value\":\"obesity disease\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0011122\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0011122\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:ambiguous\"},{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"}]}]},{\"type\":[\"literal\"],\"value\":\"obesity disease\"}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"EFO:0001073\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0001073\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0001073\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0003916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"overnutrition\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003916\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0011122\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0011122\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"UMLS:C0028754\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0028754\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0028754\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C3283\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C3283\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C3283\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004029\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has feature\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004029\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"OMIM:601665\":{\"url\":\"https://omim.org/entry/601665\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"OMIM:601665\"},\"http://purl.obolibrary.org/obo/MONDO_0005137\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005137\"},\"type\":[\"class\",\"entity\"]},\"DOID:9970\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_9970\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:9970\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"SCTID:414916001\":{\"url\":\"http://snomed.info/id/414916001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:414916001\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Orphanet:521399\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d521399\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:521399\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"NCIT:C3283\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C3283\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C3283\"},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"HP:0001513\":{\"url\":\"http://purl.obolibrary.org/obo/HP_0001513\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"HP:0001513\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_9970\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_9970\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:9970\"},\"http://purl.obolibrary.org/obo/HP_0001513\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Obesity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"HP:0001513\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0011122","definition":["A disorder involving an excessive amount of body fat.","Obesity is a complex disease that may involve multiple environmental and genetic causes. See the subclass monogenic disease for genetic subtypes"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/OGMS_0000031"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disorder involving an excessive amount of body fat.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:9970","EFO:0001073","HP:0001513","ICD9:278.0","ICD9:278.00","NCIT:C3283","NIFSTD:nlx_dys_20090302","Orphanet:521399","SCTID:414916001","UMLS:C0028754"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["obesity","obesity disease"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0011122","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Obesity is a complex disease that may involve multiple environmental and genetic causes. See the subclass monogenic disease for genetic subtypes","http__//www.w3.org/2000/01/rdf-schema#label":"obesity disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/OGMS_0000031"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/snomedct/414916001","http://linkedlifedata.com/resource/umls/id/C0028754","http://purl.obolibrary.org/obo/DOID_9970","http://purl.obolibrary.org/obo/NCIT_C3283"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0011122","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0011122","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"obesity disorder","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/HP_0001513","searchableAnnotationValues":["A disorder involving an excessive amount of body fat.","DOID:9970","EFO:0001073","HP:0001513","ICD9:278.0","ICD9:278.00","NCIT:C3283","NIFSTD:nlx_dys_20090302","Orphanet:521399","SCTID:414916001","UMLS:C0028754","obesity","obesity disease","MONDO:0011122","false"],"shortForm":"MONDO_0011122","synonym":["obesity","obesity disease"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015127\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Editor note: in ORDO, Orphanet:101957 is classified as genetic, yet has acquired subtypes\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015889-obsoleted\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015889-obsoleted\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015968\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:101957\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:19801\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:E23.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:101957\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:101957/e\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:101957/specific\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:101957\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0020635\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:101957\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015127\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:101957\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Editor note: in ORDO, Orphanet:101957 is classified as genetic, yet has acquired subtypes\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"pituitary deficiency\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015889-obsoleted\"}}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":\"http://www.orpha.net/ORDO/Orphanet_101957\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"pituitary deficiency\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"GARD:19801\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:E23.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:101957\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:101957/e\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:101957/specific\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:101957\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C0020635\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:101957\"}]}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0015127\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0015127\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"UMLS:C0020635\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0020635\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0020635\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_101957\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_101957\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:101957\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015968\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015968\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"mondo:0015968\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Orphanet:101957\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d101957\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:101957\"},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"excluded_subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"excluded:subClassOf\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0015127\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015127\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"GARD:19801\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/19801/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:19801\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0015889\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015889\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015889\"}}}","appearsIn":["gitissue502"],"curie":"MONDO:0015127","definition":"Editor note: in ORDO, Orphanet:101957 is classified as genetic, yet has acquired subtypes","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0005151","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0005151","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/mondo#excluded_subClassOf":"http://purl.obolibrary.org/obo/MONDO_0015968","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:19801","ICD10CM:E23.0","Orphanet:101957","UMLS:C0020635"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0015127","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Editor note: in ORDO, Orphanet:101957 is classified as genetic, yet has acquired subtypes","http__//www.w3.org/2000/01/rdf-schema#label":"pituitary deficiency","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0005151","http__//www.w3.org/2004/02/skos/core#exactMatch":"http://www.orpha.net/ORDO/Orphanet_101957","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015127","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0015127","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"pituitary deficiency","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["GARD:19801","ICD10CM:E23.0","Orphanet:101957","UMLS:C0020635","MONDO:0015127","false"],"shortForm":"MONDO_0015127","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0015160\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015160\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4069\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentObsolete\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MCA/variable MR\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015160\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4069\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentObsolete\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MCA/variable MR\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0015160\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0015160\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MCA/variable MR\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:102284\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019042\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies/dysmorphic syndrome\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019042\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019755\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"type\":[\"class\",\"entity\"]},\"Orphanet:102284\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d102284\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:102284\"},\"MONDO:0015160\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015160\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015160\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021147\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0015160","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0019042","http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0019042","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0019042","http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0019042","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/4069","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"Orphanet:102284","http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["MCA/variable MR","multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0015160","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0019042","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015160","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0015160","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["https://github.com/monarch-initiative/mondo/issues/4069","Orphanet:102284","MCA/variable MR","multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome","MONDO:0015160","false"],"shortForm":"MONDO_0015160","synonym":["MCA/variable MR","multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015330\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletion effort for ORDO terms.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:139024\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:139024\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5114\"},\"http://purl.obolibrary.org/obo/IAO_0006012\":{\"type\":[\"literal\"],\"value\":\"2023-10-01\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:19903\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:139024\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN199360\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015330\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",\"http://purl.obolibrary.org/obo/mondo#obsoletion_candidate\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:139024\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletion effort for ORDO terms.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"overgrowth/obesity syndrome\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:139024\"}}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://linkedlifedata.com/resource/umls/id/CN199360\",\"http://www.orpha.net/ORDO/Orphanet_139024\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"overgrowth/obesity syndrome\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5114\"},{\"type\":[\"literal\"],\"value\":\"2023-10-01\"},{\"type\":[\"literal\"],\"value\":\"GARD:19903\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:139024\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN199360\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0015330\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0015330\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0006012\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0006012\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0006012\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"GARD:19903\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/19903/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:19903\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0015330\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015330\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"Orphanet:139024\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d139024\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:139024\"},\"http://purl.obolibrary.org/obo/MONDO_0019755\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"type\":[\"class\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_139024\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_139024\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:139024\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021147\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0015330","definition":"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletion effort for ORDO terms.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0019755","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0019755","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/5114","http__//purl.obolibrary.org/obo/IAO_0006012":"2023-10-01","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:19903","Orphanet:139024","UMLS:CN199360"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0015330","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#obsoletion_candidate","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletion effort for ORDO terms.","http__//www.w3.org/2000/01/rdf-schema#label":"overgrowth/obesity syndrome","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0019755","http__//www.w3.org/2004/02/skos/core#exactMatch":["http://linkedlifedata.com/resource/umls/id/CN199360","http://www.orpha.net/ORDO/Orphanet_139024"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015330","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0015330","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"overgrowth/obesity syndrome","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["https://github.com/monarch-initiative/mondo/issues/5114","2023-10-01","GARD:19903","Orphanet:139024","UMLS:CN199360","MONDO:0015330","false"],"shortForm":"MONDO_0015330","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0015514\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015514\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:20012\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D006130\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN237424\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic endocrine growth disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"growth disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015514\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hereditary endocrine growth disease\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"}}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},{\"type\":[\"reification\"],\"value\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015513\"}}]}],\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D006130\",\"http://linkedlifedata.com/resource/umls/id/CN237424\",\"http://www.orpha.net/ORDO/Orphanet_156643\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary endocrine growth disease\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"GARD:20012\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D006130\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN237424\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic endocrine growth disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"growth disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0015514\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0015514\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic endocrine growth disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:156643\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"growth disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"rare\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021136\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0015514\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015514\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015514\"},\"MONDO:0015513\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015513\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015513\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"GARD:20012\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/20012/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:20012\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_156643\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_156643\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:156643\"},\"Orphanet:156643\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d156643\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:156643\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"MESH:D006130\":{\"url\":\"http://id.nlm.nih.gov/mesh/D006130\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D006130\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0015514","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0005151","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0005151","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:20012","MESH:D006130","Orphanet:156643","UMLS:CN237424"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["genetic endocrine growth disease","growth disorder"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0015514","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hereditary endocrine growth disease","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0005151"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D006130","http://linkedlifedata.com/resource/umls/id/CN237424","http://www.orpha.net/ORDO/Orphanet_156643"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015514","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0015514","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hereditary endocrine growth disease","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/MONDO_0021136","searchableAnnotationValues":["GARD:20012","MESH:D006130","Orphanet:156643","UMLS:CN237424","genetic endocrine growth disease","growth disorder","MONDO:0015514","false"],"shortForm":"MONDO_0015514","synonym":["genetic endocrine growth disease","growth disorder"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0015770\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015770\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0015860\",\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"http://purl.obolibrary.org/obo/MONDO_0015514\"],\"directParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}]}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"NCIT:C120162\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}}]}],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0015860\",\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"http://purl.obolibrary.org/obo/MONDO_0015514\"],\"hierarchicalParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}]}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"NCIT:C120162\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:20135\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:E23.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590/attributed\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590/ntbt\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C120162\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:722944006\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C3899503\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C120162\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015770\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"congenital hypogonadotropic hypogonadism\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}]}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"NCIT:C120162\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}}]}],\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/snomedct/722944006\",\"http://linkedlifedata.com/resource/umls/id/C3899503\",\"http://purl.obolibrary.org/obo/NCIT_C120162\",\"http://www.orpha.net/ORDO/Orphanet_174590\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital hypogonadotropic hypogonadism\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"}}]},{\"type\":[\"literal\"],\"value\":\"GARD:20135\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:E23.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590/attributed\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:174590/ntbt\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C120162\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:174590\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:722944006\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C3899503\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C120162\"}]}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0015770\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0015770\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/MONDO_0002259\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002259\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Orphanet:174590\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d174590\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:174590\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hypogonadism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002263\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015127\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"pituitary deficiency\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015127\"},\"type\":[\"class\",\"entity\"]},\"GARD:20135\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/20135/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:20135\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0018555\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0018555\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0015770\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015770\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015770\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"UMLS:C3899503\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C3899503\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C3899503\"},\"http://purl.obolibrary.org/obo/MONDO_0015514\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary endocrine growth disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015514\"},\"type\":[\"class\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_174590\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_174590\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:174590\"},\"NCIT:C120162\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C120162\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C120162\"},\"SCTID:722944006\":{\"url\":\"http://snomed.info/id/722944006\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:722944006\"},\"http://purl.obolibrary.org/obo/MONDO_0016072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle of genetic origin\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0016072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C120162\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C120162\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C120162\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019824\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"non-acquired pituitary hormone deficiency\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019824\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015860\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015860\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0015770","definition":"Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0015860","http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0018555","http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0019824","http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0015514"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0018555","http://purl.obolibrary.org/obo/MONDO_0019824"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0015860","http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0018555","http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0019824","http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0015514"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0018555","http://purl.obolibrary.org/obo/MONDO_0019824"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:20135","ICD10CM:E23.0","NCIT:C120162","Orphanet:174590","SCTID:722944006","UMLS:C3899503"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0015770","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"congenital hypogonadotropic hypogonadism","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0018555","http://purl.obolibrary.org/obo/MONDO_0019824"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/snomedct/722944006","http://linkedlifedata.com/resource/umls/id/C3899503","http://purl.obolibrary.org/obo/NCIT_C120162","http://www.orpha.net/ORDO/Orphanet_174590"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015770","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0015770","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"congenital hypogonadotropic hypogonadism","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).","GARD:20135","ICD10CM:E23.0","NCIT:C120162","Orphanet:174590","SCTID:722944006","UMLS:C3899503","MONDO:0015770","false"],"shortForm":"MONDO_0015770","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0015860\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015860\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019937-obsoleted\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019937-obsoleted\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5114\"},\"http://purl.obolibrary.org/obo/IAO_0006012\":{\"type\":[\"literal\"],\"value\":\"2023-09-01\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:20200\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:180208\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015860\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",\"http://purl.obolibrary.org/obo/mondo#obsoletion_candidate\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:180208\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019937-obsoleted\"}}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":\"http://www.orpha.net/ORDO/Orphanet_180208\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5114\"},{\"type\":[\"literal\"],\"value\":\"2023-09-01\"},{\"type\":[\"literal\"],\"value\":\"GARD:20200\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:180208\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0015860\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0015860\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"GARD:20200\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/20200/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:20200\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0006012\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0006012\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0006012\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Orphanet:180208\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d180208\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:180208\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0015860\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015860\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015860\"},\"http://purl.obolibrary.org/obo/MONDO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002263\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"MONDO:0019937\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0019937\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0019937\"},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_180208\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_180208\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:180208\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0015860","definition":"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0002263","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0002263","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/5114","http__//purl.obolibrary.org/obo/IAO_0006012":"2023-09-01","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:20200","Orphanet:180208"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0015860","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#obsoletion_candidate","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","http__//www.w3.org/2000/01/rdf-schema#label":"anomaly of puberty or/and menstrual cycle","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0002263","http__//www.w3.org/2004/02/skos/core#exactMatch":"http://www.orpha.net/ORDO/Orphanet_180208","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015860","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0015860","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anomaly of puberty or/and menstrual cycle","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["https://github.com/monarch-initiative/mondo/issues/5114","2023-09-01","GARD:20200","Orphanet:180208","MONDO:0015860","false"],"shortForm":"MONDO_0015860","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0016072\"},\"definition\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"}}]},{\"type\":[\"literal\"],\"value\":\"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0015860\",\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0015860\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0015860\",\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0015860\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"}}]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5114\"},\"http://purl.obolibrary.org/obo/IAO_0006012\":{\"type\":[\"literal\"],\"value\":\"2023-09-01\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:20341\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:202940\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic anomaly of puberty or/and menstrual cycle\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"}}]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0016072\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",\"http://purl.obolibrary.org/obo/mondo#obsoletion_candidate\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:202940\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle of genetic origin\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0015860\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},{\"type\":[\"reification\"],\"value\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015980\"}}]}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0015860\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":\"http://www.orpha.net/ORDO/Orphanet_202940\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle of genetic origin\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"}}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5114\"},{\"type\":[\"literal\"],\"value\":\"2023-09-01\"},{\"type\":[\"literal\"],\"value\":\"GARD:20341\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:202940\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic anomaly of puberty or/and menstrual cycle\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0016072\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0016072\"},\"synonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic anomaly of puberty or/and menstrual cycle\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"}}]},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"rare\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021136\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0006012\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0006012\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0006012\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0015980\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015980\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015980\"},\"http://purl.obolibrary.org/obo/MONDO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002263\"},\"type\":[\"class\",\"entity\"]},\"Orphanet:202940\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d202940\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:202940\"},\"MONDO:0016072\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0016072\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021152\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021152\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"GARD:20341\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/20341/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:20341\"},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_202940\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_202940\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:202940\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015860\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015860\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0016072","definition":["An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\u0027s genome.","Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0015860","http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0015860"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0015860","http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0015860"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\u0027s genome.","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/5114","http__//purl.obolibrary.org/obo/IAO_0006012":"2023-09-01","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:20341","Orphanet:202940"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":"genetic anomaly of puberty or/and menstrual cycle","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0016072","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#obsoletion_candidate","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","http__//www.w3.org/2000/01/rdf-schema#label":"anomaly of puberty or/and menstrual cycle of genetic origin","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0015860"],"http__//www.w3.org/2004/02/skos/core#exactMatch":"http://www.orpha.net/ORDO/Orphanet_202940","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0016072","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0016072","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anomaly of puberty or/and menstrual cycle of genetic origin","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/MONDO_0021136","searchableAnnotationValues":["An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\u0027s genome.","https://github.com/monarch-initiative/mondo/issues/5114","2023-09-01","GARD:20341","Orphanet:202940","genetic anomaly of puberty or/and menstrual cycle","MONDO:0016072","false"],"shortForm":"MONDO_0016072","synonym":"genetic anomaly of puberty or/and menstrual cycle","synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0016565\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0016565\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002254\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"http://purl.obolibrary.org/obo/MONDO_0005137\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0002254\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Entailed\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"}]}]}],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002254\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"http://purl.obolibrary.org/obo/MONDO_0005137\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0002254\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Entailed\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"}]}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5114\"},\"http://purl.obolibrary.org/obo/IAO_0006012\":{\"type\":[\"literal\"],\"value\":\"2023-09-01\"},\"http://purl.org/dc/terms/conformsTo\":\"http://purl.obolibrary.org/obo/mondo/patterns/syndromic.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:20650\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN226963\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome associated with obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0016565\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",\"http://purl.obolibrary.org/obo/mondo#obsoletion_candidate\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"syndromic genetic obesity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0002254\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015330\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Entailed\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"}]}]}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0019182\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021127\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://linkedlifedata.com/resource/umls/id/CN226963\",\"http://www.orpha.net/ORDO/Orphanet_240371\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"syndromic genetic obesity\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5114\"},{\"type\":[\"literal\"],\"value\":\"2023-09-01\"},{\"type\":[\"literal\"],\"value\":\"GARD:20650\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:240371\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN226963\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome associated with obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0016565\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0016565\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndrome associated with obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"syndromic obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/syndromic\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"MONDO:0016565\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0016565\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0016565\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021127\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has a syndromic presentation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021127\"},\"type\":[\"class\",\"entity\"]},\"GARD:20650\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/20650/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:20650\"},\"http://www.orpha.net/ORDO/Orphanet_240371\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_240371\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:240371\"},\"Orphanet:240371\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d240371\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:240371\"},\"http://purl.obolibrary.org/obo/MONDO_0003916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"overnutrition\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002254\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"syndromic disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002254\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0006012\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0006012\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0006012\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015330\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"overgrowth/obesity syndrome\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015330\"},\"type\":[\"class\",\"entity\"]},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005137\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005137\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0011122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"obesity disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0011122\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019755\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019182\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited obesity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019182\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021147\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0016565","definition":"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0002254","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0015330","http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0019182","http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0011122","http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0002254","http://purl.obolibrary.org/obo/MONDO_0015330","http://purl.obolibrary.org/obo/MONDO_0019182"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0002254","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0015330","http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0019182","http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0011122","http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0002254","http://purl.obolibrary.org/obo/MONDO_0015330","http://purl.obolibrary.org/obo/MONDO_0019182"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/5114","http__//purl.obolibrary.org/obo/IAO_0006012":"2023-09-01","http__//purl.org/dc/terms/conformsTo":"http://purl.obolibrary.org/obo/mondo/patterns/syndromic.yaml","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:20650","Orphanet:240371","UMLS:CN226963"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["syndrome associated with obesity (disease)","syndromic obesity (disease)"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0016565","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#obsoletion_candidate","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","http__//www.w3.org/2000/01/rdf-schema#label":"syndromic genetic obesity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0002254","http://purl.obolibrary.org/obo/MONDO_0015330","http://purl.obolibrary.org/obo/MONDO_0019182"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://linkedlifedata.com/resource/umls/id/CN226963","http://www.orpha.net/ORDO/Orphanet_240371"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0016565","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0016565","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"syndromic genetic obesity","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["https://github.com/monarch-initiative/mondo/issues/5114","2023-09-01","GARD:20650","Orphanet:240371","UMLS:CN226963","syndrome associated with obesity (disease)","syndromic obesity (disease)","MONDO:0016565","false"],"shortForm":"MONDO_0016565","synonym":["syndrome associated with obesity (disease)","syndromic obesity (disease)"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0018555\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0003847\"],\"directParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}]}]},\"http://purl.obolibrary.org/obo/MONDO_0003847\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0003847\"],\"hierarchicalParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}]}]},\"http://purl.obolibrary.org/obo/MONDO_0003847\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},\"http://purl.obolibrary.org/obo/mondo#should_conform_to\":\"http://purl.obolibrary.org/obo/mondo/patterns/OMIM_phenotypic_series.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:7455\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentObsolete\"}}]},{\"type\":[\"literal\"],\"value\":\"GARD:16533\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"HP:0000044\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:otherHierarchy\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:E23.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:432/inclusion\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:432/ntbt\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:253.4\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OMIMPS:147950\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:33927004\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN235466\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Normosmic idiopathic hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"central hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadotropic deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"literal\"],\"value\":\"hypogonadism, hypogonadotropic\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism with or without anosmia\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIMPS:147950\"}}]},{\"type\":[\"literal\"],\"value\":\"low gonadotropins (secondary hypogonadism)\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nIHH\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"normosmic congenital hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"secondary hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital idiopathic hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"isolated congenital gonadotropin deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:0004228\"}}]},{\"type\":[\"literal\"],\"value\":\"isolated hypogonadotropic hypogonadism\"}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0018555\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#gard_rare\",\"http://purl.obolibrary.org/obo/mondo#nord_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_disease\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002146\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}]}]},\"http://purl.obolibrary.org/obo/MONDO_0003847\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0005183\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0002146\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0005183\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/snomedct/33927004\",\"http://linkedlifedata.com/resource/umls/id/CN235466\",\"http://purl.obolibrary.org/obo/DOID_0090070\",\"http://purl.obolibrary.org/obo/NCIT_C113347\",\"http://www.orpha.net/ORDO/Orphanet_432\",\"https://omim.org/phenotypicSeries/PS147950\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"value\":\"http://purl.obolibrary.org/obo/GO_0005183\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0005183\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:7455\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentObsolete\"}}]},{\"type\":[\"literal\"],\"value\":\"GARD:16533\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"HP:0000044\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:otherHierarchy\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:E23.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:432/inclusion\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:432/ntbt\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:253.4\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OMIMPS:147950\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"},{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:33927004\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN235466\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Normosmic idiopathic hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"central hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadotropic deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"literal\"],\"value\":\"hypogonadism, hypogonadotropic\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism with or without anosmia\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIMPS:147950\"}}]},{\"type\":[\"literal\"],\"value\":\"low gonadotropins (secondary hypogonadism)\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nIHH\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"normosmic congenital hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"secondary hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital idiopathic hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"isolated congenital gonadotropin deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:0004228\"}}]},{\"type\":[\"literal\"],\"value\":\"isolated hypogonadotropic hypogonadism\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0018555\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0018555\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Normosmic idiopathic hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"central hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"gonadotropic deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"literal\"],\"value\":\"hypogonadism, hypogonadotropic\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropic hypogonadism with or without anosmia\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"OMIMPS:147950\"}}]},{\"type\":[\"literal\"],\"value\":\"low gonadotropins (secondary hypogonadism)\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"nIHH\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"normosmic congenital hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:432\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"secondary hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C113347\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"congenital idiopathic hypogonadotropic hypogonadism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"isolated congenital gonadotropin deficiency\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"DOID:0090070\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"hypogonadotropism\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:0004228\"}}]},{\"type\":[\"literal\"],\"value\":\"isolated hypogonadotropic hypogonadism\"}],\"synonymProperty\":[{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\"}],\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"SCTID:33927004\":{\"url\":\"http://snomed.info/id/33927004\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:33927004\"},\"NCIT:C113347\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C113347\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C113347\"},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0005183\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonadotropin hormone-releasing hormone activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0005183\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0004228\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0004228\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0004228\"},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_related_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasRelatedSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_narrow_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasNarrowSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Orphanet:432\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d432\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:432\"},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0018555\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0018555\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0018555\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"GARD:16533\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/16533/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:16533\"},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002259\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002259\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_0090070\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_0090070\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:0090070\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_432\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_432\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:432\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hypogonadism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004021\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease caused by disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease has basis in disruption of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004021\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/mondo#should_conform_to\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"should_conform_to\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"should:conform_to\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"DOID:0090070\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_0090070\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:0090070\"},\"http://purl.obolibrary.org/obo/NCIT_C113347\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C113347\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C113347\"},\"HP:0000044\":{\"url\":\"http://purl.obolibrary.org/obo/HP_0000044\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"HP:0000044\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"DOID:7455\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_7455\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:7455\"},\"OMIMPS:147950\":{\"url\":\"https://omim.org/MIM:PS147950\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OMIMPS:147950\"},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0018555","definition":"Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0003847"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0003847"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0003847"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0003847"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.","http__//purl.obolibrary.org/obo/mondo#should_conform_to":"http://purl.obolibrary.org/obo/mondo/patterns/OMIM_phenotypic_series.yaml","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:0090070","DOID:7455","GARD:16533","HP:0000044","ICD10CM:E23.0","ICD9:253.4","NCIT:C113347","OMIMPS:147950","Orphanet:432","SCTID:33927004","UMLS:CN235466"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["Normosmic idiopathic hypogonadotropic hypogonadism","central hypogonadism","gonadotropic deficiency","hypogonadism, hypogonadotropic","hypogonadotropic hypogonadism","hypogonadotropic hypogonadism with or without anosmia","low gonadotropins (secondary hypogonadism)","nIHH","normosmic congenital hypogonadotropic hypogonadism","secondary hypogonadism"],"http__//www.geneontology.org/formats/oboInOwl#hasNarrowSynonym":["congenital idiopathic hypogonadotropic hypogonadism","isolated congenital gonadotropin deficiency"],"http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":["hypogonadotropism","isolated hypogonadotropic hypogonadism"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0018555","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#nord_rare","http://purl.obolibrary.org/obo/mondo#ordo_disease","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hypogonadotropic hypogonadism","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0003847"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/snomedct/33927004","http://linkedlifedata.com/resource/umls/id/CN235466","http://purl.obolibrary.org/obo/DOID_0090070","http://purl.obolibrary.org/obo/NCIT_C113347","http://www.orpha.net/ORDO/Orphanet_432","https://omim.org/phenotypicSeries/PS147950"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0018555","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0018555","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hypogonadotropic hypogonadism","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0005183","searchableAnnotationValues":["Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.","DOID:0090070","DOID:7455","GARD:16533","HP:0000044","ICD10CM:E23.0","ICD9:253.4","NCIT:C113347","OMIMPS:147950","Orphanet:432","SCTID:33927004","UMLS:CN235466","Normosmic idiopathic hypogonadotropic hypogonadism","central hypogonadism","gonadotropic deficiency","hypogonadism, hypogonadotropic","hypogonadotropic hypogonadism","hypogonadotropic hypogonadism with or without anosmia","low gonadotropins (secondary hypogonadism)","nIHH","normosmic congenital hypogonadotropic hypogonadism","secondary hypogonadism","congenital idiopathic hypogonadotropic hypogonadism","isolated congenital gonadotropin deficiency","hypogonadotropism","isolated hypogonadotropic hypogonadism","MONDO:0018555","false"],"shortForm":"MONDO_0018555","synonym":["Normosmic idiopathic hypogonadotropic hypogonadism","central hypogonadism","gonadotropic deficiency","hypogonadism, hypogonadotropic","hypogonadotropic hypogonadism","hypogonadotropic hypogonadism with or without anosmia","low gonadotropins (secondary hypogonadism)","nIHH","normosmic congenital hypogonadotropic hypogonadism","secondary hypogonadism","congenital idiopathic hypogonadotropic hypogonadism","isolated congenital gonadotropin deficiency","hypogonadotropism","isolated hypogonadotropic hypogonadism"],"synonymProperty":["http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"],"type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0019040\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019040\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-0736-9199\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}]}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-0736-9199\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}]}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"DOID:0080014\"},{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C34470\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:68335\"}]}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68335\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:0080014\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"GARD:18874\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:Q90-Q99\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/4536\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:758.89\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C34470\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68335\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:409709004\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000838\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders, chromosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders, chromosome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"autosomal chromosome disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"autosomal chromosome disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome abnormality disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome abnormality disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorder, autosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorders, autosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosome abnormality\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019040\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68335\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\",\"http://purl.obolibrary.org/obo/mondo#rare_grouping\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-0736-9199\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}]}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},{\"type\":[\"reification\"],\"value\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021198\"}}]}],\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D025063\",\"http://identifiers.org/snomedct/409709004\",\"http://purl.bioontology.org/ontology/ICD10CM/Q90-Q99\",\"http://purl.obolibrary.org/obo/DOID_0080014\",\"http://purl.obolibrary.org/obo/NCIT_C34470\",\"http://www.orpha.net/ORDO/Orphanet_68335\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorder\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"DOID:0080014\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"GARD:18874\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:Q90-Q99\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/4536\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD9:758.89\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:i2s\"},{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C34470\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68335\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:409709004\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000838\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders, chromosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders, chromosome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"autosomal chromosome disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"autosomal chromosome disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome abnormality disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome abnormality disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorder, autosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorders, autosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosome abnormality\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0019040\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0019040\"},\"synonym\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000838\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders, chromosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorders, chromosome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"autosomal chromosome disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"autosomal chromosome disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome abnormality disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome abnormality disorders\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorder, autosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"chromosome disorders, autosomal\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder, chromosome abnormality\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MESH:D025063\"}}]}],\"synonymProperty\":[{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\"}],\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/MONDO_0021136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"rare\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021136\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0021198\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021198\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021198\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0002-0736-9199\":{\"url\":\"https://orcid.org/0000-0002-0736-9199\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-0736-9199\"},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"Orphanet:68335\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d68335\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:68335\"},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_related_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasRelatedSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MESH:D025063\":{\"url\":\"http://id.nlm.nih.gov/mesh/D025063\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D025063\"},\"http://purl.obolibrary.org/obo/DOID_0080014\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_0080014\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:0080014\"},\"NCIT:C34470\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C34470\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C34470\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"https://orcid.org/0000-0002-1780-5230\":{\"url\":\"https://orcid.org/0000-0002-1780-5230\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-1780-5230\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C34470\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C34470\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C34470\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"SCTID:409709004\":{\"url\":\"http://snomed.info/id/409709004\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:409709004\"},\"https://orcid.org/0000-0002-4142-7153\":{\"url\":\"https://orcid.org/0000-0002-4142-7153\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-4142-7153\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0000838\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0000838\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0000838\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019755\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"excluded_subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"excluded:subClassOf\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"DOID:0080014\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_0080014\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:0080014\"},\"GARD:18874\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/18874/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:18874\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0019040\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0019040\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0019040\"},\"https://orcid.org/0000-0001-5208-3432\":{\"url\":\"https://orcid.org/0000-0001-5208-3432\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0001-5208-3432\"},\"http://www.orpha.net/ORDO/Orphanet_68335\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_68335\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:68335\"},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0019040","definition":"Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0700096","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0700096","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)","http__//purl.obolibrary.org/obo/mondo#excluded_subClassOf":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0019755"],"http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:0080014","GARD:18874","ICD10CM:Q90-Q99","ICD9:758.89","MESH:D025063","NCIT:C34470","Orphanet:68335","SCTID:409709004"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["chromosomal disease","chromosomal disorder","chromosomal disorders","chromosome disorder","disorder, chromosomal","disorder, chromosome","disorders, chromosomal","disorders, chromosome"],"http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":["autosomal chromosome disorder","autosomal chromosome disorders","chromosome abnormality disorder","chromosome abnormality disorders","chromosome disorder, autosomal","chromosome disorders, autosomal","disorder, chromosome abnormality"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0019040","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare","http://purl.obolibrary.org/obo/mondo#rare_grouping"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"chromosomal disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0700096"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D025063","http://identifiers.org/snomedct/409709004","http://purl.bioontology.org/ontology/ICD10CM/Q90-Q99","http://purl.obolibrary.org/obo/DOID_0080014","http://purl.obolibrary.org/obo/NCIT_C34470","http://www.orpha.net/ORDO/Orphanet_68335"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019040","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0019040","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"chromosomal disorder","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/MONDO_0021136","searchableAnnotationValues":["Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)","DOID:0080014","GARD:18874","ICD10CM:Q90-Q99","ICD9:758.89","MESH:D025063","NCIT:C34470","Orphanet:68335","SCTID:409709004","chromosomal disease","chromosomal disorder","chromosomal disorders","chromosome disorder","disorder, chromosomal","disorder, chromosome","disorders, chromosomal","disorders, chromosome","autosomal chromosome disorder","autosomal chromosome disorders","chromosome abnormality disorder","chromosome abnormality disorders","chromosome disorder, autosomal","chromosome disorders, autosomal","disorder, chromosome abnormality","MONDO:0019040","false"],"shortForm":"MONDO_0019040","synonym":["chromosomal disease","chromosomal disorder","chromosomal disorders","chromosome disorder","disorder, chromosomal","disorder, chromosome","disorders, chromosomal","disorders, chromosome","autosomal chromosome disorder","autosomal chromosome disorders","chromosome abnormality disorder","chromosome abnormality disorders","chromosome disorder, autosomal","chromosome disorders, autosomal","disorder, chromosome abnormality"],"synonymProperty":["http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"],"type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019042\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68341\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68341\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4069\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:18876\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68341\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MCAHS\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#ABBREVIATION\"}]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019042\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68341\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies/dysmorphic syndrome\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68341\"}}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false},{\"type\":[\"reification\"],\"value\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}}]}],\"http://www.w3.org/2004/02/skos/core#exactMatch\":\"http://www.orpha.net/ORDO/Orphanet_68341\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies/dysmorphic syndrome\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4069\"},{\"type\":[\"literal\"],\"value\":\"GARD:18876\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:68341\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MCAHS\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#ABBREVIATION\"}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0019042\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0019042\"},\"synonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MCAHS\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:Lexical\"},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":\"http://purl.obolibrary.org/obo/mondo#ABBREVIATION\"}]},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_synonym_type\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasSynonymType\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"https://orcid.org/0000-0002-4142-7153\":{\"url\":\"https://orcid.org/0000-0002-4142-7153\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-4142-7153\"},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_related_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasRelatedSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"Orphanet:68341\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d68341\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:68341\"},\"http://purl.obolibrary.org/obo/MONDO_0019755\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"type\":[\"class\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_68341\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_68341\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:68341\"},\"http://purl.obolibrary.org/obo/MONDO_0021140\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021140\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021147\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0019042\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0019042\"},\"GARD:18876\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/18876/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:18876\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0019042","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0019755","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0019755","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/4069","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:18876","Orphanet:68341"],"http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":"MCAHS","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0019042","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multiple congenital anomalies/dysmorphic syndrome","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0019755"],"http__//www.w3.org/2004/02/skos/core#exactMatch":"http://www.orpha.net/ORDO/Orphanet_68341","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019042","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0019042","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multiple congenital anomalies/dysmorphic syndrome","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/MONDO_0021140","searchableAnnotationValues":["https://github.com/monarch-initiative/mondo/issues/4069","GARD:18876","Orphanet:68341","MCAHS","MONDO:0019042","false"],"shortForm":"MONDO_0019042","synonym":"MCAHS","synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019182\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"http://purl.obolibrary.org/obo/MONDO_0005137\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}]}]}],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"http://purl.obolibrary.org/obo/MONDO_0003916\",\"http://purl.obolibrary.org/obo/MONDO_0005137\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}]}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4521\"},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015960\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}}]},\"http://purl.org/dc/terms/conformsTo\":\"http://purl.obolibrary.org/obo/mondo/patterns/hereditary.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:18935\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"literal\"],\"value\":\"genetic obesity\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"leanness, inherited, autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"literal\"],\"value\":\"monogenic obesity\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, association with, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, early-onset, susceptibility to, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, late-onset, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, mild, early-onset, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, severe, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, severe, and type II diabetes, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, susceptibility to, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019182\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"inherited obesity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0011122\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:Redundant\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}]}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},{\"type\":[\"reification\"],\"value\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015513\"}}]}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0011122\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://www.orpha.net/ORDO/Orphanet_77828\",\"https://omim.org/entry/601665\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited obesity\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4521\"},{\"type\":[\"literal\"],\"value\":\"GARD:18935\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"genetic obesity\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"leanness, inherited, autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"literal\"],\"value\":\"monogenic obesity\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, association with, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, early-onset, susceptibility to, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, late-onset, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, mild, early-onset, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, severe, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, severe, and type II diabetes, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, susceptibility to, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0019182\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0019182\"},\"synonym\":[{\"type\":[\"literal\"],\"value\":\"genetic obesity\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"genetic obesity (disease)\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/genetic\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:77828\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"leanness, inherited, autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"literal\"],\"value\":\"monogenic obesity\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, association with, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, early-onset, susceptibility to, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, late-onset, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, mild, early-onset, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, severe, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, severe, and type II diabetes, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"obesity, susceptibility to, Autosomal recessive\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"OMIM:601665\"},{\"type\":[\"literal\"],\"value\":\"OMIM:genemap2\"}]}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/MONDO_0021136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"rare\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021136\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0015513\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015513\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0015513\"},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"Orphanet:77828\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d77828\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:77828\"},\"http://purl.obolibrary.org/obo/MONDO_0003916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"overnutrition\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"OMIM:genemap2\":{\"url\":\"https://omim.org/entry/genemap2\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"OMIM:genemap2\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"OMIM:601665\":{\"url\":\"https://omim.org/entry/601665\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"OMIM:601665\"},\"http://purl.obolibrary.org/obo/MONDO_0005137\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nutritional disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005137\"},\"type\":[\"class\",\"entity\"]},\"GARD:18935\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/18935/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:18935\"},\"MONDO:0019182\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0019182\"},\"http://purl.obolibrary.org/obo/MONDO_0011122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"obesity disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0011122\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015960\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0015960\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"mondo:0015960\"},\"http://purl.obolibrary.org/obo/MONDO_0021152\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021152\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_77828\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_77828\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:77828\"},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"excluded_subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"excluded:subClassOf\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0019182","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0011122","http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0011122"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0011122","http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0011122"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/4521","http__//purl.obolibrary.org/obo/mondo#excluded_subClassOf":"http://purl.obolibrary.org/obo/MONDO_0015960","http__//purl.org/dc/terms/conformsTo":"http://purl.obolibrary.org/obo/mondo/patterns/hereditary.yaml","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:18935","OMIM:601665","Orphanet:77828"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["genetic obesity","genetic obesity (disease)","leanness, inherited, autosomal recessive","monogenic obesity","obesity, association with, Autosomal recessive","obesity, early-onset, susceptibility to, Autosomal recessive","obesity, late-onset, Autosomal recessive","obesity, mild, early-onset, Autosomal recessive","obesity, severe, Autosomal recessive","obesity, severe, and type II diabetes, Autosomal recessive","obesity, susceptibility to, Autosomal recessive"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0019182","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"inherited obesity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0011122"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://www.orpha.net/ORDO/Orphanet_77828","https://omim.org/entry/601665"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019182","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0019182","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"inherited obesity","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/MONDO_0021136","searchableAnnotationValues":["https://github.com/monarch-initiative/mondo/issues/4521","GARD:18935","OMIM:601665","Orphanet:77828","genetic obesity","genetic obesity (disease)","leanness, inherited, autosomal recessive","monogenic obesity","obesity, association with, Autosomal recessive","obesity, early-onset, susceptibility to, Autosomal recessive","obesity, late-onset, Autosomal recessive","obesity, mild, early-onset, Autosomal recessive","obesity, severe, Autosomal recessive","obesity, severe, and type II diabetes, Autosomal recessive","obesity, susceptibility to, Autosomal recessive","MONDO:0019182","false"],"shortForm":"MONDO_0019182","synonym":["genetic obesity","genetic obesity (disease)","leanness, inherited, autosomal recessive","monogenic obesity","obesity, association with, Autosomal recessive","obesity, early-onset, susceptibility to, Autosomal recessive","obesity, late-onset, Autosomal recessive","obesity, mild, early-onset, Autosomal recessive","obesity, severe, Autosomal recessive","obesity, severe, and type II diabetes, Autosomal recessive","obesity, susceptibility to, Autosomal recessive"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease that has its basis in the disruption of embryonic morphogenesis.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease that has its basis in the disruption of embryonic morphogenesis.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:22513\"},{\"type\":[\"literal\"],\"value\":\"ICD9:759.7\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C99267\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:400038003\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C1302790\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN206687\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"literal\"],\"value\":\"congenital malformation syndrome\"},{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of embryonic morphogenesis\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/basis_in_disruption_of_process\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"malformation syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"rare developmental defect during embryogenesis\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0021147\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/snomedct/400038003\",\"http://linkedlifedata.com/resource/umls/id/C1302790\",\"http://linkedlifedata.com/resource/umls/id/CN206687\",\"http://purl.obolibrary.org/obo/NCIT_C99267\",\"http://www.orpha.net/ORDO/Orphanet_93890\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048598\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease that has its basis in the disruption of embryonic morphogenesis.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"}}]},{\"type\":[\"literal\"],\"value\":\"GARD:22513\"},{\"type\":[\"literal\"],\"value\":\"ICD9:759.7\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C99267\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:400038003\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C1302790\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:CN206687\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"congenital malformation syndrome\"},{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of embryonic morphogenesis\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/basis_in_disruption_of_process\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"malformation syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"rare developmental defect during embryogenesis\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0019755\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0019755\"},\"synonym\":[{\"type\":[\"literal\"],\"value\":\"congenital malformation syndrome\"},{\"type\":[\"literal\"],\"value\":\"developmental defect during embryogenesis\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"disorder of embryonic morphogenesis\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"},{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/basis_in_disruption_of_process\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis disease\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:design_pattern\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"malformation syndrome\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"rare developmental defect during embryogenesis\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Orphanet:93890\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"MONDO:0019755\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0019755\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0019755\"},\"NCIT:C99267\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C99267\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C99267\"},\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C99267\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C99267\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C99267\"},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_93890\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_93890\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:93890\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Orphanet:93890\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d93890\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:93890\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"UMLS:C1302790\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C1302790\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C1302790\"},\"http://purl.obolibrary.org/obo/RO_0004021\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease caused by disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease has basis in disruption of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004021\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"GARD:22513\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/22513/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:22513\"},\"SCTID:400038003\":{\"url\":\"http://snomed.info/id/400038003\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:400038003\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021147\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0019755","definition":"A disease that has its basis in the disruption of embryonic morphogenesis.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021147","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021147","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disease that has its basis in the disruption of embryonic morphogenesis.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:22513","ICD9:759.7","NCIT:C99267","Orphanet:93890","SCTID:400038003","UMLS:C1302790","UMLS:CN206687"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["congenital malformation syndrome","developmental defect during embryogenesis","disorder of embryonic morphogenesis","embryonic morphogenesis disease","malformation syndrome","rare developmental defect during embryogenesis"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0019755","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"developmental defect during embryogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0021147"],"http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/snomedct/400038003","http://linkedlifedata.com/resource/umls/id/C1302790","http://linkedlifedata.com/resource/umls/id/CN206687","http://purl.obolibrary.org/obo/NCIT_C99267","http://www.orpha.net/ORDO/Orphanet_93890"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019755","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0019755","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"developmental defect during embryogenesis","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0048598","searchableAnnotationValues":["A disease that has its basis in the disruption of embryonic morphogenesis.","GARD:22513","ICD9:759.7","NCIT:C99267","Orphanet:93890","SCTID:400038003","UMLS:C1302790","UMLS:CN206687","congenital malformation syndrome","developmental defect during embryogenesis","disorder of embryonic morphogenesis","embryonic morphogenesis disease","malformation syndrome","rare developmental defect during embryogenesis","MONDO:0019755","false"],"shortForm":"MONDO_0019755","synonym":["congenital malformation syndrome","developmental defect during embryogenesis","disorder of embryonic morphogenesis","embryonic morphogenesis disease","malformation syndrome","rare developmental defect during embryogenesis"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019824\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0015514\"],\"directParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015514\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"}}]}],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://purl.obolibrary.org/obo/MONDO_0015514\"],\"hierarchicalParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015514\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"}}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"GARD:19272\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:E23.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:95488/attributed\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:95488/ntbt\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019824\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#disease_grouping\",\"http://purl.obolibrary.org/obo/mondo#gard_rare\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"}}]},\"http://purl.obolibrary.org/obo/mondo#orphanet_rare\",\"http://purl.obolibrary.org/obo/mondo#rare\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"non-acquired pituitary hormone deficiency\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015127\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"}}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015514\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"}}]}],\"http://www.w3.org/2004/02/skos/core#exactMatch\":\"http://www.orpha.net/ORDO/Orphanet_95488\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"non-acquired pituitary hormone deficiency\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"GARD:19272\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:E23.0\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:relatedTo\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:95488/attributed\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:95488/ntbt\"}]}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Orphanet:95488\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0019824\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0019824\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0019824\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0019824\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0019824\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"Orphanet:95488\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d95488\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:95488\"},\"http://purl.obolibrary.org/obo/MONDO_0015127\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"pituitary deficiency\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015127\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"GARD:19272\":{\"url\":\"https://rarediseases.info.nih.gov/diseases/19272/index\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GARD:19272\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015514\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary endocrine growth disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015514\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.orpha.net/ORDO/Orphanet_95488\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_95488\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:95488\"},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0019824","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0015514"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0015514"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0015514"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0015514"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["GARD:19272","ICD10CM:E23.0","Orphanet:95488"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0019824","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#disease_grouping","http://purl.obolibrary.org/obo/mondo#gard_rare","http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders","http://purl.obolibrary.org/obo/mondo#orphanet_rare","http://purl.obolibrary.org/obo/mondo#rare"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"non-acquired pituitary hormone deficiency","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0015514"],"http__//www.w3.org/2004/02/skos/core#exactMatch":"http://www.orpha.net/ORDO/Orphanet_95488","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019824","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0019824","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"non-acquired pituitary hormone deficiency","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["GARD:19272","ICD10CM:E23.0","Orphanet:95488","MONDO:0019824","false"],"shortForm":"MONDO_0019824","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An attribute of a disease.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0000001\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0000001\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An attribute of a disease.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C41009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"literal\"],\"value\":\"disease qualifier\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"modifier\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C41009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"qualifier\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C41009\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://www.w3.org/2004/02/skos/core#exactMatch\":\"http://purl.obolibrary.org/obo/NCIT_C41009\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An attribute of a disease.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C41009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"disease qualifier\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"modifier\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C41009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"qualifier\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C41009\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021125\"},\"synonym\":[{\"type\":[\"literal\"],\"value\":\"disease qualifier\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"modifier\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C41009\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"qualifier\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"NCIT:C41009\"}}]}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0021125\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021125\"},\"NCIT:C41009\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C41009\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C41009\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C41009\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C41009\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C41009\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021125","definition":"An attribute of a disease.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0000001","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An attribute of a disease.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"NCIT:C41009","http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["disease qualifier","modifier","qualifier"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021125","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"disease characteristic","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0000001","http__//www.w3.org/2004/02/skos/core#exactMatch":"http://purl.obolibrary.org/obo/NCIT_C41009","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021125","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021125","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disease characteristic","numDescendants":"8.0","numHierarchicalDescendants":"8.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["An attribute of a disease.","NCIT:C41009","disease qualifier","modifier","qualifier","MONDO:0021125","false"],"shortForm":"MONDO_0021125","synonym":["disease qualifier","modifier","qualifier"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021126\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021126\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021126\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"syndromic or isolated\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"syndromic or isolated\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0021126\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021126\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0021126\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021126\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021126\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021126","definition":"An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021125","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021125","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021126","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"syndromic or isolated","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0021125","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021126","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021126","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"syndromic or isolated","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.","MONDO:0021126","false"],"shortForm":"MONDO_0021126","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021127\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021127\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021126\",\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021126\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021126\",\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021126\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021127\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has a syndromic presentation\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/MONDO_0021126\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has a syndromic presentation\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002254\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021127\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0021127\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021127\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/MONDO_0002254\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"syndromic disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002254\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021126\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"syndromic or isolated\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021126\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"MONDO:0021127\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021127\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021127\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021127","definition":"An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021126","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021126","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021126","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021126","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021127","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"has a syndromic presentation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0021126","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021127","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021127","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has a syndromic presentation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/MONDO_0002254","searchableAnnotationValues":["An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.","MONDO:0021127","false"],"shortForm":"MONDO_0021127","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021135\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021135\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/254\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021135\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"rare or common\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"rare or common\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/254\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0021135\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021135\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"MONDO:0021135\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021135\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021135\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021135","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021125","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021125","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/254","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021135","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"rare or common","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0021125","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021135","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021135","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"rare or common","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["https://github.com/monarch-initiative/mondo/issues/254","MONDO:0021135","false"],"shortForm":"MONDO_0021135","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021136\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://www.rarediseaseday.org/article/what-is-a-rare-disease\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021135\",\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021135\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021135\",\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021135\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://www.rarediseaseday.org/article/what-is-a-rare-disease\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"type\":[\"literal\"],\"value\":\"rare (European definition)\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021136\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"rare\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/MONDO_0021135\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"rare\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0015514\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0016072\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019040\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019182\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://www.rarediseaseday.org/article/what-is-a-rare-disease\"}}]},{\"type\":[\"literal\"],\"value\":\"rare (European definition)\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0021136\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021136\"},\"synonym\":{\"type\":[\"literal\"],\"value\":\"rare (European definition)\"},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/MONDO_0021135\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"rare or common\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021135\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"chromosomal disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0021136\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021136\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021136\"},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0015514\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary endocrine growth disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0015514\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0016072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anomaly of puberty or/and menstrual cycle of genetic origin\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0016072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019182\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited obesity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019182\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021136","definition":"A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021135","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021135","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021135","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021135","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.","http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":"rare (European definition)","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021136","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"rare","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0021135","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021136","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021136","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"rare","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/MONDO_0015514","http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0019040","http://purl.obolibrary.org/obo/MONDO_0019182"],"searchableAnnotationValues":["A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.","rare (European definition)","MONDO:0021136","false"],"shortForm":"MONDO_0021136","synonym":"rare (European definition)","synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021139\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021139\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021139\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"congenital or acquired\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital or acquired\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"MONDO:0021139\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021139\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"MONDO:0021139\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021139\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021139\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021139","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021125","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021125","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021139","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"congenital or acquired","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0021125","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021139","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021139","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"congenital or acquired","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["MONDO:0021139","false"],"shortForm":"MONDO_0021139","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021140\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A characteristic of a disease in which the disease is present at birth, regardless of cause.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Wikipedia:Birth_defect\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021139\",\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021139\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021139\",\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021139\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A characteristic of a disease in which the disease is present at birth, regardless of cause.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Wikipedia:Birth_defect\"}}]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4069\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"type\":[\"literal\"],\"value\":\"inborn\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021140\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"congenital\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0021139\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false},{\"type\":[\"reification\"],\"value\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}}]}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002320\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019042\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A characteristic of a disease in which the disease is present at birth, regardless of cause.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"Wikipedia:Birth_defect\"}}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4069\"},{\"type\":[\"literal\"],\"value\":\"inborn\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0021140\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021140\"},\"synonym\":{\"type\":[\"literal\"],\"value\":\"inborn\"},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019042\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multiple congenital anomalies/dysmorphic syndrome\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0019042\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0021140\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021140\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021140\"},\"https://orcid.org/0000-0002-4142-7153\":{\"url\":\"https://orcid.org/0000-0002-4142-7153\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-4142-7153\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"Wikipedia:Birth_defect\":{\"url\":\"http://en.wikipedia.org/wiki/Birth_defect\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"Wikipedia:Birth_defect\"},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002320\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital nervous system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002320\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021139\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"congenital or acquired\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021139\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021140","definition":"A characteristic of a disease in which the disease is present at birth, regardless of cause.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021139","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021139","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021139","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021139","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A characteristic of a disease in which the disease is present at birth, regardless of cause.","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/4069","http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":"inborn","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021140","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"congenital","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0021139"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021140","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021140","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"congenital","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/MONDO_0002320","http://purl.obolibrary.org/obo/MONDO_0019042"],"searchableAnnotationValues":["A characteristic of a disease in which the disease is present at birth, regardless of cause.","https://github.com/monarch-initiative/mondo/issues/4069","inborn","MONDO:0021140","false"],"shortForm":"MONDO_0021140","synonym":"inborn","synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"http://purl.org/dc/terms/conformsTo\":\"http://purl.obolibrary.org/obo/mondo/patterns/specific_disease_by_disrupted_process.yaml\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:Q00-Q99\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/4536\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}]}]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/mondo#harrisons_view\",\"http://purl.obolibrary.org/obo/mondo#rare_grouping\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/OGMS_0000031\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004024\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700096\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004024\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"isObsolete\":false}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":\"http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disorder of development or morphogenesis\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004024\",\"value\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004024\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ICD10CM:Q00-Q99\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/monarch-initiative/mondo/issues/4536\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}]}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0021147\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021147\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/terms/conformsTo\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004024\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease causes disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease disrupts\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004024\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"MONDO:0021147\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021147\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021147\"},\"https://orcid.org/0000-0002-4142-7153\":{\"url\":\"https://orcid.org/0000-0002-4142-7153\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-4142-7153\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0001-5208-3432\":{\"url\":\"https://orcid.org/0000-0001-5208-3432\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0001-5208-3432\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021147","definition":"Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.","http__//purl.org/dc/terms/conformsTo":"http://purl.obolibrary.org/obo/mondo/patterns/specific_disease_by_disrupted_process.yaml","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"ICD10CM:Q00-Q99","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021147","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/mondo#harrisons_view","http://purl.obolibrary.org/obo/mondo#rare_grouping"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"disorder of development or morphogenesis","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/OGMS_0000031"],"http__//www.w3.org/2004/02/skos/core#exactMatch":"http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021147","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021147","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disorder of development or morphogenesis","numDescendants":"6.0","numHierarchicalDescendants":"6.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0032502","searchableAnnotationValues":["Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.","ICD10CM:Q00-Q99","MONDO:0021147","false"],"shortForm":"MONDO_0021147","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021149\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021149\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021149\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hereditary vs non-hereditary etiology\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary vs non-hereditary etiology\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"MONDO:0021149\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021149\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"type\":[\"class\",\"entity\"]},\"MONDO:0021149\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021149\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021149\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021149","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021125","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021125","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021149","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hereditary vs non-hereditary etiology","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0021125","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021149","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021149","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hereditary vs non-hereditary etiology","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["MONDO:0021149","false"],"shortForm":"MONDO_0021149","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021152\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021149\",\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/MONDO_0021149\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0021149\",\"http://purl.obolibrary.org/obo/MONDO_0021125\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/MONDO_0021149\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0004420\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":[{\"type\":[\"literal\"],\"value\":\"constitutitional genetic\"},{\"type\":[\"literal\"],\"value\":\"familial\"},{\"type\":[\"literal\"],\"value\":\"genetic\"},{\"type\":[\"literal\"],\"value\":\"hereditary\"},{\"type\":[\"literal\"],\"value\":\"inherited genetic\"}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021152\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"inherited\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/MONDO_0021149\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:cjm\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"EFO:0004420\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"constitutitional genetic\"},{\"type\":[\"literal\"],\"value\":\"familial\"},{\"type\":[\"literal\"],\"value\":\"genetic\"},{\"type\":[\"literal\"],\"value\":\"hereditary\"},{\"type\":[\"literal\"],\"value\":\"inherited genetic\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0021152\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0021152\"},\"synonym\":[{\"type\":[\"literal\"],\"value\":\"constitutitional genetic\"},{\"type\":[\"literal\"],\"value\":\"familial\"},{\"type\":[\"literal\"],\"value\":\"genetic\"},{\"type\":[\"literal\"],\"value\":\"hereditary\"},{\"type\":[\"literal\"],\"value\":\"inherited genetic\"}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"MONDO:0021152\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0021152\"},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021125\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_related_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasRelatedSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021149\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary vs non-hereditary etiology\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021149\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"EFO:0004420\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0004420\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0004420\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0021152","definition":"A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0021149","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0021149","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0021149","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0021149","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"EFO:0004420","http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":["constitutitional genetic","familial","genetic","hereditary","inherited genetic"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0021152","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"inherited","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0021149","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021152","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0021152","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"inherited","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/MONDO_0003847","searchableAnnotationValues":["A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.","EFO:0004420","constitutitional genetic","familial","genetic","hereditary","inherited genetic","MONDO:0021152","false"],"shortForm":"MONDO_0021152","synonym":["constitutitional genetic","familial","genetic","hereditary","inherited genetic"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0100038\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0100038\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6733-369X\"},{\"type\":[\"literal\"],\"value\":\"https://www.clinicalgenome.org/working-groups/clinical-domain/neurodevelopmental-disorders/\"}]}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6733-369X\"},{\"type\":[\"literal\"],\"value\":\"https://www.clinicalgenome.org/working-groups/clinical-domain/neurodevelopmental-disorders/\"}]}]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/3680\"},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0019117\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6733-369X\"}}]},\"http://purl.org/dc/elements/1.1/date\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#dateTime\",\"value\":\"2018-06-29T18:21:11Z\"},\"http://purl.org/dc/terms/creator\":\"https://orcid.org/0000-0001-5208-3432\",\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"type\":[\"literal\"],\"value\":\"complex neurodevelopmental disorder\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0100038\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"complex neurodevelopmental disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-4142-7153\"}}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"complex neurodevelopmental disorder\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-6733-369X\"},{\"type\":[\"literal\"],\"value\":\"https://www.clinicalgenome.org/working-groups/clinical-domain/neurodevelopmental-disorders/\"}]}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/3680\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#dateTime\",\"value\":\"2018-06-29T18:21:11Z\"},{\"type\":[\"literal\"],\"value\":\"complex neurodevelopmental disorder\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0100038\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0100038\"},\"synonym\":{\"type\":[\"literal\"],\"value\":\"complex neurodevelopmental disorder\"},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/elements/1.1/date\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"date\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"date\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0100038\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0100038\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0100038\"},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neurodevelopmental disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700092\"},\"type\":[\"class\",\"entity\"]},\"http://purl.org/dc/terms/creator\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0002-4142-7153\":{\"url\":\"https://orcid.org/0000-0002-4142-7153\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-4142-7153\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0019117\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0019117\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"mondo:0019117\"},\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"excluded_subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"excluded:subClassOf\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0002-6733-369X\":{\"url\":\"https://orcid.org/0000-0002-6733-369X\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-6733-369X\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},\"type\":[\"class\",\"entity\"]},\"https://orcid.org/0000-0001-5208-3432\":{\"url\":\"https://orcid.org/0000-0001-5208-3432\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0001-5208-3432\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0100038","definition":"A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0700092","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0700092","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0700092","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0700092","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/3680","http__//purl.obolibrary.org/obo/mondo#excluded_subClassOf":"http://purl.obolibrary.org/obo/MONDO_0019117","http__//purl.org/dc/elements/1.1/date":"2018-06-29T18:21:11Z","http__//purl.org/dc/terms/creator":"https://orcid.org/0000-0001-5208-3432","http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":"complex neurodevelopmental disorder","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0100038","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"complex neurodevelopmental disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0700092","id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0100038","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0100038","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"complex neurodevelopmental disorder","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).","https://github.com/monarch-initiative/mondo/issues/3680","2018-06-29T18:21:11Z","complex neurodevelopmental disorder","MONDO:0100038","false"],"shortForm":"MONDO_0100038","synonym":"complex neurodevelopmental disorder","synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0100500\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0100500\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-0736-9199\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}]}]},\"http://purl.obolibrary.org/obo/MONDO_0700092\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-0736-9199\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}]}]},\"http://purl.obolibrary.org/obo/MONDO_0700092\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"}}]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4789\"},\"http://purl.org/dc/terms/creator\":\"https://orcid.org/0000-0001-5208-3432\",\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0100500\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Mendelian neurodevelopmental disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0003847\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":[{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-0736-9199\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}]}]},\"http://purl.obolibrary.org/obo/MONDO_0700092\"],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0700092\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0021152\",\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Mendelian neurodevelopmental disorder\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\\u0027s genome.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"MONDO:patterns/hereditary\"}}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/4789\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0100500\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0100500\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"MONDO:0100500\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0100500\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0100500\"},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"https://orcid.org/0000-0002-1780-5230\":{\"url\":\"https://orcid.org/0000-0002-1780-5230\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-1780-5230\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0002-0736-9199\":{\"url\":\"https://orcid.org/0000-0002-0736-9199\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-0736-9199\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neurodevelopmental disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700092\"},\"type\":[\"class\",\"entity\"]},\"http://purl.org/dc/terms/creator\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0021152\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inherited\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0021152\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},\"type\":[\"class\",\"entity\"]},\"https://orcid.org/0000-0001-5208-3432\":{\"url\":\"https://orcid.org/0000-0001-5208-3432\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0001-5208-3432\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0003847\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hereditary disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0003847\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0100500","definition":"A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0700092","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700092"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/MONDO_0700092","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700092"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/4789","http__//purl.org/dc/terms/creator":"https://orcid.org/0000-0001-5208-3432","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0100500","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Mendelian neurodevelopmental disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700092"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0100500","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0100500","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Mendelian neurodevelopmental disorder","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.","https://github.com/monarch-initiative/mondo/issues/4789","MONDO:0100500","false"],"shortForm":"MONDO_0100500","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700092\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"SCTID:700364009\"}}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/OGMS_0000031\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"SCTID:700364009\"}}]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/3410\"},\"http://purl.org/dc/terms/creator\":\"https://orcid.org/0000-0002-4142-7153\",\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D065886\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"MedDRA:C1535926\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C1535926\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C89338\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:700364009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C1535926\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700092\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"neurodevelopmental disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0002-1780-5230\"}}]},\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D065886\",\"http://identifiers.org/snomedct/700364009\",\"http://linkedlifedata.com/resource/umls/id/C1535926\",\"http://purl.obolibrary.org/obo/NCIT_C1535926\",\"http://purl.obolibrary.org/obo/NCIT_C89338\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"neurodevelopmental disorder\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"SCTID:700364009\"}}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/3410\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"MESH:D065886\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"MedDRA:C1535926\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C1535926\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"NCIT:C89338\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"SCTID:700364009\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"UMLS:C1535926\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"MONDO:equivalentTo\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0700092\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0700092\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C89338\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C89338\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C89338\"},\"https://orcid.org/0000-0002-1780-5230\":{\"url\":\"https://orcid.org/0000-0002-1780-5230\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-1780-5230\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"NCIT:C89338\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C89338\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C89338\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"UMLS:C1535926\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C1535926\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C1535926\"},\"http://purl.org/dc/terms/creator\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0002-4142-7153\":{\"url\":\"https://orcid.org/0000-0002-4142-7153\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-4142-7153\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCIT_C1535926\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C1535926\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C1535926\"},\"MONDO:0700092\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0700092\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0700092\"},\"MESH:D065886\":{\"url\":\"http://id.nlm.nih.gov/mesh/D065886\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D065886\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"SCTID:700364009\":{\"url\":\"http://snomed.info/id/700364009\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:700364009\"},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"NCIT:C1535926\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C1535926\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C1535926\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0700092","definition":"A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0005071","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/OGMS_0000031"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0005071","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/3410","http__//purl.org/dc/terms/creator":"https://orcid.org/0000-0002-4142-7153","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["MESH:D065886","MedDRA:C1535926","NCIT:C1535926","NCIT:C89338","SCTID:700364009","UMLS:C1535926"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0700092","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"neurodevelopmental disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/MONDO_0005071","http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D065886","http://identifiers.org/snomedct/700364009","http://linkedlifedata.com/resource/umls/id/C1535926","http://purl.obolibrary.org/obo/NCIT_C1535926","http://purl.obolibrary.org/obo/NCIT_C89338"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0700092","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0700092","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"neurodevelopmental disorder","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.","https://github.com/monarch-initiative/mondo/issues/3410","MESH:D065886","MedDRA:C1535926","NCIT:C1535926","NCIT:C89338","SCTID:700364009","UMLS:C1535926","MONDO:0700092","false"],"shortForm":"MONDO_0700092","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"http://orcid.org/0000-0002-4142-7153\"}}]},\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"http://orcid.org/0000-0002-4142-7153\"}}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5858\"},\"http://purl.obolibrary.org/obo/RO_0002175\":\"http://purl.obolibrary.org/obo/NCBITaxon_9606\",\"http://purl.org/dc/terms/creator\":\"https://orcid.org/0000-0002-4142-7153\",\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"human disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"}}]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":\"http://purl.obolibrary.org/obo/mondo#rare_grouping\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#source\":{\"type\":[\"literal\"],\"value\":\"http://orcid.org/0000-0002-4142-7153\"}}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_9606\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/MONDO_0000001\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_9606\",\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"numDescendants\":31.0,\"numHierarchicalDescendants\":31.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_9606\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_9606\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"https://github.com/monarch-initiative/mondo/issues/5858\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"human disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"}}]},{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0700096\"},\"synonym\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"human disease or disorder\"},\"axioms\":[{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"}}]},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002162\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002162\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.org/dc/terms/creator\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0002-4142-7153\":{\"url\":\"https://orcid.org/0000-0002-4142-7153\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-4142-7153\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9606\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Homo sapiens\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9606\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MONDO:0700096\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0700096\"},\"https://orcid.org/0000-0001-5208-3432\":{\"url\":\"https://orcid.org/0000-0001-5208-3432\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0001-5208-3432\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"MONDO:0700096","directAncestor":["http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/MONDO_0000001","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/MONDO_0000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/monarch-initiative/mondo/issues/5858","http__//purl.obolibrary.org/obo/RO_0002175":"http://purl.obolibrary.org/obo/NCBITaxon_9606","http__//purl.org/dc/terms/creator":"https://orcid.org/0000-0002-4142-7153","http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":"human disease or disorder","http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0700096","http__//www.geneontology.org/formats/oboInOwl#inSubset":"http://purl.obolibrary.org/obo/mondo#rare_grouping","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"human disease","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/MONDO_0000001"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0700096","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0700096","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"human disease","numDescendants":"31.0","numHierarchicalDescendants":"31.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/NCBITaxon_9606","searchableAnnotationValues":["https://github.com/monarch-initiative/mondo/issues/5858","human disease or disorder","MONDO:0700096","false"],"shortForm":"MONDO_0700096","synonym":"human disease or disorder","synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_110814\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:110814\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbellida\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbellida\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_110814\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenacoelomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1312402\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:110814","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_1312402","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_1312402","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_1312402","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_1312402","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Xenoturbellida","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_1312402","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_110814","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_110814","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Xenoturbellida","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_110814","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_110815\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:110815\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_1547233\",\"http://purl.obolibrary.org/obo/NCBITaxon_110814\",\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_1547233\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_1547233\",\"http://purl.obolibrary.org/obo/NCBITaxon_110814\",\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_1547233\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbella\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_1547233\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbella\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_110815\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1547233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbellidae\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1547233\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_110814\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbellida\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:110814\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenacoelomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1312402\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:110815","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_1547233","http://purl.obolibrary.org/obo/NCBITaxon_110814","http://purl.obolibrary.org/obo/NCBITaxon_1312402","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_1547233","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_1547233","http://purl.obolibrary.org/obo/NCBITaxon_110814","http://purl.obolibrary.org/obo/NCBITaxon_1312402","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_1547233","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Xenoturbella","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_1547233","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_110815","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_110815","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Xenoturbella","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_110815","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"numDescendants\":19.0,\"numHierarchicalDescendants\":19.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_117570\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:117570","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_7776","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_7776","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Teleostomi","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_7776","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_117570","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_117570","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Teleostomi","numDescendants":"19.0","numHierarchicalDescendants":"19.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_117570","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"numDescendants\":18.0,\"numHierarchicalDescendants\":18.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_117571\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:117571","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_117570","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_117570","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Euteleostomi","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_117570","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_117571","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_117571","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Euteleostomi","numDescendants":"18.0","numHierarchicalDescendants":"18.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_117571","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1312402\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Xenacoelomorpha\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenacoelomorpha\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_1312402\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:1312402","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_33213","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_33213","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Xenacoelomorpha","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_33213","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_1312402","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_1312402","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Xenacoelomorpha","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_1312402","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"numDescendants\":35.0,\"numHierarchicalDescendants\":35.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_131567\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:131567","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cellular organisms","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_131567","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_131567","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cellular organisms","numDescendants":"35.0","numHierarchicalDescendants":"35.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/CL_0000000","searchableAnnotationValues":"false","shortForm":"NCBITaxon_131567","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"numDescendants\":16.0,\"numHierarchicalDescendants\":16.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_1338369\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:1338369","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_8287","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_8287","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Dipnotetrapodomorpha","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_8287","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_1338369","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_1338369","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Dipnotetrapodomorpha","numDescendants":"16.0","numHierarchicalDescendants":"16.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_1338369","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":10.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_1437010\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:1437010","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_9347","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_9347","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Boreoeutheria","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_9347","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_1437010","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_1437010","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Boreoeutheria","numDescendants":"10.0","numHierarchicalDescendants":"10.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_1437010","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_1547233\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1547233\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_110814\",\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_110814\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_110814\",\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_110814\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbellidae\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_110814\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbellidae\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_1547233\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_110814\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbellida\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:110814\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1312402\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenacoelomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1312402\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:1547233","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_110814","http://purl.obolibrary.org/obo/NCBITaxon_1312402","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_110814","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_110814","http://purl.obolibrary.org/obo/NCBITaxon_1312402","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_110814","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Xenoturbellidae","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_110814","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_1547233","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_1547233","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Xenoturbellidae","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_1547233","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_207598\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:207598\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Homininae\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Homininae\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_207598\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9526\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Catarrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9526\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9604\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominidae\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9604\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominoidea\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_376913\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:376913\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Simiiformes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314293\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:207598","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9604","http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_9604","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9604","http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_9604","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Homininae","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_9604","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_207598","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_207598","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Homininae","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_207598","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_131567\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"numDescendants\":34.0,\"numHierarchicalDescendants\":34.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000255\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_2759\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000255\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"eukaryotic cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000255\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:2759","directAncestor":"http://purl.obolibrary.org/obo/NCBITaxon_131567","directParent":"http://purl.obolibrary.org/obo/NCBITaxon_131567","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/NCBITaxon_131567","hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_131567","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Eukaryota","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_131567","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_2759","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_2759","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Eukaryota","numDescendants":"34.0","numHierarchicalDescendants":"34.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/CL_0000255","searchableAnnotationValues":"false","shortForm":"NCBITaxon_2759","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"numDescendants\":9.0,\"numHierarchicalDescendants\":9.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_314146\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:314146","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_1437010","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_1437010","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Euarchontoglires","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_1437010","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_314146","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_314146","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Euarchontoglires","numDescendants":"9.0","numHierarchicalDescendants":"9.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_314146","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314293\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Simiiformes\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Simiiformes\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_314293\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_376913\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:376913\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:314293","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_376913","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_376913","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Simiiformes","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_376913","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_314293","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_314293","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Simiiformes","numDescendants":"6.0","numHierarchicalDescendants":"6.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_314293","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314295\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Hominoidea\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominoidea\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_314295\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9526\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Catarrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9526\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_376913\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:376913\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Simiiformes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314293\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:314295","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_9526","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_9526","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Hominoidea","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_9526","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_314295","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_314295","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Hominoidea","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_314295","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"numDescendants\":15.0,\"numHierarchicalDescendants\":15.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_32523\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:32523","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_1338369","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_1338369","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Tetrapoda","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_1338369","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_32523","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_32523","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Tetrapoda","numDescendants":"15.0","numHierarchicalDescendants":"15.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_32523","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"numDescendants\":14.0,\"numHierarchicalDescendants\":14.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_32524\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:32524","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_32523","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_32523","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Amniota","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_32523","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_32524","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_32524","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Amniota","numDescendants":"14.0","numHierarchicalDescendants":"14.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_32524","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"numDescendants\":12.0,\"numHierarchicalDescendants\":12.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_32525\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:32525","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_40674","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_40674","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Theria \u003cmammals\u003e","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_40674","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_32525","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_32525","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Theria \u003cmammals\u003e","numDescendants":"12.0","numHierarchicalDescendants":"12.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_32525","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"numDescendants\":33.0,\"numHierarchicalDescendants\":33.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_33154\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:33154","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_2759","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_2759","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Opisthokonta","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_2759","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_33154","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_33154","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Opisthokonta","numDescendants":"33.0","numHierarchicalDescendants":"33.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_33154","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"numDescendants\":32.0,\"numHierarchicalDescendants\":32.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000548\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_33208\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000548\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"animal cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000548\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:33208","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_33154","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_33154","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Metazoa","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_33154","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_33208","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_33208","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Metazoa","numDescendants":"32.0","numHierarchicalDescendants":"32.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/CL_0000548","searchableAnnotationValues":"false","shortForm":"NCBITaxon_33208","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"numDescendants\":29.0,\"numHierarchicalDescendants\":29.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_33213\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:33213","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_6072","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_6072","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Bilateria","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_6072","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_33213","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_33213","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Bilateria","numDescendants":"29.0","numHierarchicalDescendants":"29.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_33213","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"numDescendants\":24.0,\"numHierarchicalDescendants\":24.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_33511\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:33511","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_33213","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_33213","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Deuterostomia","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_33213","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_33511","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_33511","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Deuterostomia","numDescendants":"24.0","numHierarchicalDescendants":"24.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_33511","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:376913\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"numDescendants\":7.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_376913\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:376913","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_9443","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_9443","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Haplorrhini","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_9443","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_376913","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_376913","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Haplorrhini","numDescendants":"7.0","numHierarchicalDescendants":"7.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_376913","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"numDescendants\":13.0,\"numHierarchicalDescendants\":13.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_40674\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:40674","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_32524","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_32524","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Mammalia","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_32524","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_40674","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_40674","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Mammalia","numDescendants":"13.0","numHierarchicalDescendants":"13.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_40674","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_6040\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6040\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Porifera\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Porifera\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_6040\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:6040","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_33208","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_33208","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Porifera","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_33208","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_6040","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_6040","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Porifera","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_6040","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"numDescendants\":30.0,\"numHierarchicalDescendants\":30.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000110\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_6072\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000110\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neurula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000110\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organogenesis stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000111\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:6072","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_33208","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_33208","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Eumetazoa","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_33208","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_6072","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_6072","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Eumetazoa","numDescendants":"30.0","numHierarchicalDescendants":"30.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000109","http://purl.obolibrary.org/obo/UBERON_0000110","http://purl.obolibrary.org/obo/UBERON_0000111","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0001016","http://purl.obolibrary.org/obo/UBERON_0002530"],"searchableAnnotationValues":"false","shortForm":"NCBITaxon_6072","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"numDescendants\":23.0,\"numHierarchicalDescendants\":23.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_7711\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:7711","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_33511","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_33511","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Chordata","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_33511","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_7711","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_7711","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Chordata","numDescendants":"23.0","numHierarchicalDescendants":"23.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_7711","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"numDescendants\":21.0,\"numHierarchicalDescendants\":21.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_7742\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:7742","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_89593","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_89593","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Vertebrata \u003cvertebrates\u003e","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_89593","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_7742","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_7742","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Vertebrata \u003cvertebrates\u003e","numDescendants":"21.0","numHierarchicalDescendants":"21.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_7742","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"numDescendants\":20.0,\"numHierarchicalDescendants\":20.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_7776\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:7776","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_7742","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_7742","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Gnathostomata \u003cvertebrates\u003e","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_7742","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_7776","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_7776","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Gnathostomata \u003cvertebrates\u003e","numDescendants":"20.0","numHierarchicalDescendants":"20.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_7776","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"numDescendants\":17.0,\"numHierarchicalDescendants\":17.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_8287\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:8287","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_117571","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_117571","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Sarcopterygii","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_117571","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_8287","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_8287","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Sarcopterygii","numDescendants":"17.0","numHierarchicalDescendants":"17.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_8287","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"numDescendants\":22.0,\"numHierarchicalDescendants\":22.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_89593\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:89593","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_7711","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_7711","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Craniata \u003cchordates\u003e","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_7711","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_89593","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_89593","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Craniata \u003cchordates\u003e","numDescendants":"22.0","numHierarchicalDescendants":"22.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_89593","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"numDescendants\":11.0,\"numHierarchicalDescendants\":11.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_9347\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:9347","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_32525","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_32525","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Eutheria","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_32525","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9347","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_9347","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Eutheria","numDescendants":"11.0","numHierarchicalDescendants":"11.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_9347","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_9443\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:9443","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_314146","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_314146","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Primates","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_314146","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9443","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_9443","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Primates","numDescendants":"8.0","numHierarchicalDescendants":"8.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_9443","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9526\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Catarrhini\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Catarrhini\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_9526\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_376913\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:376913\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Simiiformes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314293\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:9526","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_314293","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_314293","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Catarrhini","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_314293","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9526","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_9526","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Catarrhini","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_9526","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9604\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Hominidae\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominidae\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_9604\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9526\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Catarrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9526\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominoidea\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_376913\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:376913\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Simiiformes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314293\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:9604","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_314295","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_314295","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Hominidae","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_314295","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9604","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_9604","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Hominidae","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_9604","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_9605\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9605\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_207598\",\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_207598\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_207598\",\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_207598\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Homo\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_207598\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Homo\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_9605\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9526\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Catarrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9526\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9604\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominidae\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9604\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominoidea\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_376913\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:376913\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_207598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Homininae\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:207598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Simiiformes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314293\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:9605","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_207598","http://purl.obolibrary.org/obo/NCBITaxon_9604","http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_207598","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_207598","http://purl.obolibrary.org/obo/NCBITaxon_9604","http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_207598","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Homo","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_207598","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9605","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_9605","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Homo","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"NCBITaxon_9605","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/NCBITaxon_9606\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9606\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9605\",\"http://purl.obolibrary.org/obo/NCBITaxon_207598\",\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"directParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9605\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/NCBITaxon_9605\",\"http://purl.obolibrary.org/obo/NCBITaxon_207598\",\"http://purl.obolibrary.org/obo/NCBITaxon_9604\",\"http://purl.obolibrary.org/obo/NCBITaxon_314295\",\"http://purl.obolibrary.org/obo/NCBITaxon_9526\",\"http://purl.obolibrary.org/obo/NCBITaxon_314293\",\"http://purl.obolibrary.org/obo/NCBITaxon_376913\",\"http://purl.obolibrary.org/obo/NCBITaxon_9443\",\"http://purl.obolibrary.org/obo/NCBITaxon_314146\",\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\",\"http://purl.obolibrary.org/obo/NCBITaxon_9347\",\"http://purl.obolibrary.org/obo/NCBITaxon_32525\",\"http://purl.obolibrary.org/obo/NCBITaxon_40674\",\"http://purl.obolibrary.org/obo/NCBITaxon_32524\",\"http://purl.obolibrary.org/obo/NCBITaxon_32523\",\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\",\"http://purl.obolibrary.org/obo/NCBITaxon_8287\",\"http://purl.obolibrary.org/obo/NCBITaxon_117571\",\"http://purl.obolibrary.org/obo/NCBITaxon_117570\",\"http://purl.obolibrary.org/obo/NCBITaxon_7776\",\"http://purl.obolibrary.org/obo/NCBITaxon_7742\",\"http://purl.obolibrary.org/obo/NCBITaxon_89593\",\"http://purl.obolibrary.org/obo/NCBITaxon_7711\",\"http://purl.obolibrary.org/obo/NCBITaxon_33511\",\"http://purl.obolibrary.org/obo/NCBITaxon_33213\",\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_33154\",\"http://purl.obolibrary.org/obo/NCBITaxon_2759\",\"http://purl.obolibrary.org/obo/NCBITaxon_131567\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/NCBITaxon_9605\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Homo sapiens\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_9605\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Homo sapiens\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0700096\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_9606\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon_9606\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_131567\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellular organisms\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:131567\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_2759\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eukaryota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:2759\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32525\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Theria \\u003cmammals\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32525\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32524\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Amniota\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32524\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_32523\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Tetrapoda\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:32523\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Bilateria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33213\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0700096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"human disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0700096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7776\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Gnathostomata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7776\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002162\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002162\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Primates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7742\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Vertebrata \\u003cvertebrates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7742\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33154\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Opisthokonta\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33154\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euarchontoglires\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9526\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Catarrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9526\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9604\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominidae\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9604\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9605\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Homo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9605\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1338369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Dipnotetrapodomorpha\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1338369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_89593\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Craniata \\u003cchordates\\u003e\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:89593\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33511\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Deuterostomia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33511\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_8287\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Sarcopterygii\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:8287\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Hominoidea\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314295\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_7711\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Chordata\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:7711\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_376913\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Haplorrhini\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:376913\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_207598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Homininae\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:207598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_40674\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Mammalia\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:40674\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_314293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Simiiformes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:314293\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_9347\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:9347\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117571\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Euteleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117571\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_1437010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Boreoeutheria\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:1437010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_117570\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Teleostomi\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:117570\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"NCBITaxon:9606","directAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9605","http://purl.obolibrary.org/obo/NCBITaxon_207598","http://purl.obolibrary.org/obo/NCBITaxon_9604","http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"directParent":"http://purl.obolibrary.org/obo/NCBITaxon_9605","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/NCBITaxon_9605","http://purl.obolibrary.org/obo/NCBITaxon_207598","http://purl.obolibrary.org/obo/NCBITaxon_9604","http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567"],"hierarchicalParent":"http://purl.obolibrary.org/obo/NCBITaxon_9605","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Homo sapiens","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/NCBITaxon_9605","id":"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9606","imported":"false","iri":"http://purl.obolibrary.org/obo/NCBITaxon_9606","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Homo sapiens","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/MONDO_0700096","searchableAnnotationValues":"false","shortForm":"NCBITaxon_9606","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"numDescendants\":26.0,\"numHierarchicalDescendants\":26.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OGMS_0000031\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"OGMS:0000031","definition":"A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000016","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000016","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"disease","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000016","id":"gitissue502+class+http://purl.obolibrary.org/obo/OGMS_0000031","imported":"false","iri":"http://purl.obolibrary.org/obo/OGMS_0000031","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disease","numDescendants":"26.0","numHierarchicalDescendants":"26.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism.","false"],"shortForm":"OGMS_0000031","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0000001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"numDescendants\":18.0,\"numHierarchicalDescendants\":18.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0000001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0000001","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000020","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000020","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000020","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0000001","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0000001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"quality","numDescendants":"18.0","numHierarchicalDescendants":"18.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"PATO_0000001","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000051\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"morphology\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"morphology\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0000051\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0000051","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001241","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001241","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"morphology","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001241","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0000051","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0000051","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"morphology","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"PATO_0000051","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0000141\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000141\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000051\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000051\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"structure\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"structure\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0000141\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphology\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000051\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0000141","directAncestor":["http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0000051","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0000051","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"structure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0000051","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0000141","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0000141","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"structure","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"PATO_0000141","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001018\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"physical quality\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"physical quality\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0001018\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0001018","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001241","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001241","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"physical quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001241","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001018","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0001018","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"physical quality","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"PATO_0001018","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0000001\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0000001\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0000001\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0001241\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0001241","directAncestor":["http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0000001","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"physical object quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0000001","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001241","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0001241","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"physical object quality","numDescendants":"8.0","numHierarchicalDescendants":"8.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"PATO_0001241","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0001992\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001992\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001995\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001995\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001995\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001995\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cellularity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001995\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cellularity\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0001992\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/PATO_0001995\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organismal quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001995\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0001992","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001995","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001995","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001995","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001995","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cellularity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001995","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001992","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0001992","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cellularity","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"PATO_0001992","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0001993\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001993\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001992\",\"http://purl.obolibrary.org/obo/PATO_0001995\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001992\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001992\",\"http://purl.obolibrary.org/obo/PATO_0001995\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001992\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multicellular\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001992\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0001993\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0001993\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001995\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organismal quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001995\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001992\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cellularity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001992\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0001993","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001992","http://purl.obolibrary.org/obo/PATO_0001995","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001992","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001992","http://purl.obolibrary.org/obo/PATO_0001995","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001992","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multicellular","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001992","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001993","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0001993","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multicellular","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0010000","searchableAnnotationValues":"false","shortForm":"PATO_0001993","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0001995\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001995\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"organismal quality\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"organismal quality\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0001995\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0001995","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001241","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001241","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"organismal quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001241","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001995","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0001995","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"organismal quality","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"PATO_0001995","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0002198\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0002198\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001018\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001018\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"quality of a substance\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"quality of a substance\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000463\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0002198\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0002198\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/PATO_0001018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001018\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000463\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organism substance\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000463\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0002198","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001018","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001018","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001018","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001018","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"quality of a substance","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001018","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0002198","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0002198","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"quality of a substance","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000463","searchableAnnotationValues":"false","shortForm":"PATO_0002198","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0010001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0010001\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000141\",\"http://purl.obolibrary.org/obo/PATO_0000051\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0000141\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000141\",\"http://purl.obolibrary.org/obo/PATO_0000051\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0000141\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disconnected\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0000141\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0010001\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0010001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphology\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000051\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000141\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0034923\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected anatomical group\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0034923\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"PATO:0010001","directAncestor":["http://purl.obolibrary.org/obo/PATO_0000141","http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/PATO_0000141","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0000141","http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0000141","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"disconnected","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0000141","id":"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0010001","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0010001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disconnected","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0034923","searchableAnnotationValues":"false","shortForm":"PATO_0010001","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"numDescendants\":12.0,\"numHierarchicalDescendants\":12.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000000","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000003","directParent":"http://purl.obolibrary.org/obo/BFO_0000003","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/BFO_0000003","hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"processual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/UBERON_0001062","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000000","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"processual entity","numDescendants":"12.0","numHierarchicalDescendants":"12.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"UBERON_0000000","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"numDescendants\":26.0,\"numHierarchicalDescendants\":32.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0006598\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"isObsolete\":false}],\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002497\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000061\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002497\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during or before\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002497\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0006598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"presumptive structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/RO_0002473\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0034923\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected anatomical group\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0034923\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"death stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000071\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000061","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000465","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000465","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anatomical structure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000465"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000061","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000061","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anatomical structure","numDescendants":"26.0","numHierarchicalDescendants":"32.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0006598","http://purl.obolibrary.org/obo/UBERON_0034923"],"relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000071","searchableAnnotationValues":"false","shortForm":"UBERON_0000061","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000062\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0006984\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#complementOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_110815\"},\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#disjointWith\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_110815\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0006984\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0006984\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000062\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has 2D boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002002\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002162\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002162\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biological_process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0006984\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical surface\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006984\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_110815\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Xenoturbella\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:110815\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000062","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0010000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000467"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"organ","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0010000"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000062","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000062","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"organ","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000467","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0006984","http://purl.obolibrary.org/obo/GO_0008150"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000062","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000066\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"http://purl.obolibrary.org/obo/UBERON_0000092\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000066\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002492\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002492\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000092\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"death stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000071\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organogenesis stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000111\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000066","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000092"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000092"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"fully formed stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000066","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000066","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"fully formed stage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0001016"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000092","http://purl.obolibrary.org/obo/UBERON_0000111","http://purl.obolibrary.org/obo/UBERON_0000071"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000066","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000106\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000108\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000110\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002489\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002489\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002493\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002493\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009790\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000068\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002493\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002493\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002489\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002489\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000922\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000922\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009790\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009790\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000092\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000106\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"zygote stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000106\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cleavage stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000108\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blastula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000108\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000110\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neurula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000110\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organogenesis stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000111\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000068","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000104"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"embryo stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/UBERON_0000092","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000068","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000068","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"embryo stage","numDescendants":"0.0","numHierarchicalDescendants":"6.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000092","http://purl.obolibrary.org/obo/UBERON_0000106","http://purl.obolibrary.org/obo/UBERON_0000107","http://purl.obolibrary.org/obo/UBERON_0000108","http://purl.obolibrary.org/obo/UBERON_0000109","http://purl.obolibrary.org/obo/UBERON_0000110","http://purl.obolibrary.org/obo/UBERON_0000111","http://purl.obolibrary.org/obo/UBERON_0000922","http://purl.obolibrary.org/obo/UBERON_0000922"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000066","http://purl.obolibrary.org/obo/UBERON_0000092","http://purl.obolibrary.org/obo/GO_0009790"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000068","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000071\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"death stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002229\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"death stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0002497\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002230\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002229\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002229\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000071\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002497\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during or before\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002497\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002229\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002229\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000071","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000104"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"death stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000071","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000071","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"death stage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000066","http://purl.obolibrary.org/obo/UBERON_0000104"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000104"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000071","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000092\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009791\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/GO_0009791\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0009791\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000092\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0009791\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0009791\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000092","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000104"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"post-embryonic stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000092","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000092","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"post-embryonic stage","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000066","http://purl.obolibrary.org/obo/UBERON_0000068"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/GO_0009791"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000092","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000000\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":11.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002229\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002229\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000092\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002223\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000106\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002223\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002230\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000071\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000104\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"post-embryonic stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000092\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002229\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002229\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000106\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"zygote stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000106\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002223\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002223\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"death stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000071\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000104","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000000","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"life cycle","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000000"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000104","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000104","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"life cycle","numDescendants":"0.0","numHierarchicalDescendants":"11.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/UBERON_0000071","http://purl.obolibrary.org/obo/UBERON_0000071","http://purl.obolibrary.org/obo/UBERON_0000092","http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000106"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000071"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000104","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000000\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"this class represents a proper part of the life cycle of an organism. The class \\u0027life cycle\\u0027 should not be placed here\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000000\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":10.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"this class represents a proper part of the life cycle of an organism. The class \\u0027life cycle\\u0027 should not be placed here\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000105\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000105","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/UBERON_0000104"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"this class represents a proper part of the life cycle of an organism. The class \u0027life cycle\u0027 should not be placed here","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"life cycle stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000000"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000105","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000105","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"life cycle stage","numDescendants":"10.0","numHierarchicalDescendants":"10.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000104","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000104","searchableAnnotationValues":["this class represents a proper part of the life cycle of an organism. The class \u0027life cycle\u0027 should not be placed here","false"],"shortForm":"UBERON_0000105","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000106\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000106\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"http://purl.obolibrary.org/obo/UBERON_0000068\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"zygote stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002223\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"zygote stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002087\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002087\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000106\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002223\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002223\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000106\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002087\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002087\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cleavage stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002223\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002223\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000106","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"zygote stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000106","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000106","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"zygote stage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000107","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/UBERON_0000104"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000106","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000107\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000107\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"http://purl.obolibrary.org/obo/UBERON_0000068\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cleavage stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0040016\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002087\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000106\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cleavage stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000108\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000107\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/GO_0040016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0040016\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002087\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000106\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002087\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000106\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000107\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002087\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002087\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000106\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"zygote stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000106\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000108\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blastula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000108\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0040016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic cleavage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0040016\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000107","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cleavage stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000107","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000107","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cleavage stage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000108","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/GO_0040016","http://purl.obolibrary.org/obo/UBERON_0000106"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000107","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000108\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000108\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"http://purl.obolibrary.org/obo/UBERON_0000068\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"consider adding a preceding stage \\u0027morula stage\\u0027 as part of cleavage\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"blastula stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000107\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"blastula stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000108\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000107\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"consider adding a preceding stage \\u0027morula stage\\u0027 as part of cleavage\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000108\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cleavage stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000107\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000108","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"consider adding a preceding stage \u0027morula stage\u0027 as part of cleavage","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"blastula stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000108","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000108","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"blastula stage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000109","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/UBERON_0000107"],"searchableAnnotationValues":["consider adding a preceding stage \u0027morula stage\u0027 as part of cleavage","false"],"shortForm":"UBERON_0000108","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000109\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"http://purl.obolibrary.org/obo/UBERON_0000068\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gastrula stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000108\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrula stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000110\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000108\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000108\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007369\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000109\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007369\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrulation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007369\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000108\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blastula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000108\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000110\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neurula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000110\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000109","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gastrula stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000109","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000109","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gastrula stage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000110","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/UBERON_0000108","http://purl.obolibrary.org/obo/GO_0007369","http://purl.obolibrary.org/obo/NCBITaxon_6072"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000109","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000110\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000110\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"http://purl.obolibrary.org/obo/UBERON_0000068\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"neurula stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001841\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"neurula stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000109\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/GO_0001841\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0001841\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000110\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gastrula stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0001841\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neural tube formation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0001841\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000110","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"neurula stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000110","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000110","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"neurula stage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/UBERON_0000109","http://purl.obolibrary.org/obo/GO_0001841","http://purl.obolibrary.org/obo/NCBITaxon_6072"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000110","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000111\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",\"http://purl.obolibrary.org/obo/UBERON_0000000\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/UBERON_0000104\",\"http://purl.obolibrary.org/obo/UBERON_0000068\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"organogenesis stage\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000105\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048513\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"organogenesis stage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002496\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"value\":\"http://purl.obolibrary.org/obo/GO_0048513\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0048513\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000111\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0016880\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"future nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0016880\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002496\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts during or after\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002496\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0048513\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"animal organ development\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0048513\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"processual entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000105\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"life cycle stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000105\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000111","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000105","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000068"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"organogenesis stage","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000105"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000111","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000111","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"organogenesis stage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000066","http://purl.obolibrary.org/obo/UBERON_0016880"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/GO_0048513","http://purl.obolibrary.org/obo/NCBITaxon_6072"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000111","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000463\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000463\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"organism substance\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0002198\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"organism substance\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0003000\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0003000\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000463\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"value\":\"http://purl.obolibrary.org/obo/PATO_0002198\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0002198\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000463\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0002198\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality of a substance\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0002198\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0003000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"produces\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0003000\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000463","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000465","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"organism substance","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000465"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000463","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000463","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"organism substance","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0002530","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/PATO_0002198"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000463","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"numDescendants\":38.0,\"numHierarchicalDescendants\":38.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000465\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000466\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"immaterial anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000466\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000465","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/UBERON_0001062"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"material anatomical entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/UBERON_0001062"],"http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/UBERON_0000466","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000465","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000465","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"material anatomical entity","numDescendants":"38.0","numHierarchicalDescendants":"38.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"UBERON_0000465","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000466\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"immaterial anatomical entity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"immaterial anatomical entity\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000466\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000466","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/UBERON_0001062"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"immaterial anatomical entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/UBERON_0001062"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000466","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000466","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"immaterial anatomical entity","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"UBERON_0000466","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":12.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000467\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000467","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000061","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anatomical system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000061"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000467","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000467","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anatomical system","numDescendants":"3.0","numHierarchicalDescendants":"12.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000062","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0000062"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000467","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"TODO - split body and mc organism? body continues after death stage\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":20.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000463\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001048\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"TODO - split body and mc organism? body continues after death stage\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000468\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000463\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organism substance\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000463\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001048\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"primordium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001048\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000468","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0010000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0010000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"TODO - split body and mc organism? body continues after death stage","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multicellular organism","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0010000","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000468","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000468","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multicellular organism","numDescendants":"2.0","numHierarchicalDescendants":"20.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000463","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0001048"],"searchableAnnotationValues":["TODO - split body and mc organism? body continues after death stage","false"],"shortForm":"UBERON_0000468","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000474\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000474\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0003100\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000990\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0003100\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000990\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0003100\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002263\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000474\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0003100\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0003100\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000474\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002263\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0003100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"female organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0003100\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000474","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000990","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0003100"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0003100"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"female reproductive system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000990"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000474","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000474","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"female reproductive system","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/MONDO_0002263","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0003100","searchableAnnotationValues":"false","shortForm":"UBERON_0000474","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000922\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"embryo\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000468\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002489\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002493\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002050\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0006598\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0002489\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002489\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002493\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002493\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000068\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000922\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0016880\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"future nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0016880\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002493\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002493\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002489\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002489\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000068\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000068\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0006598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"presumptive structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002050\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000922","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000468","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000468","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"embryo","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000468"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000922","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000922","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"embryo","numDescendants":"0.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0002050","http://purl.obolibrary.org/obo/UBERON_0006598","http://purl.obolibrary.org/obo/UBERON_0016880"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/UBERON_0000068"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000922","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0015204\",\"http://purl.obolibrary.org/obo/UBERON_0015203\",\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0015204\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0015204\",\"http://purl.obolibrary.org/obo/UBERON_0015203\",\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0015204\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0015204\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"http://purl.obolibrary.org/obo/UBERON_0001016\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005151\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000949\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002492\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002492\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002473\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0034923\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected anatomical group\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0034923\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0015204\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"glandular system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0015204\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005151\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005151\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0015203\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"non-connected functional system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0015203\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000949","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0015204","http://purl.obolibrary.org/obo/UBERON_0015203","http://purl.obolibrary.org/obo/UBERON_0034923","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0015204","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0015204","http://purl.obolibrary.org/obo/UBERON_0015203","http://purl.obolibrary.org/obo/UBERON_0034923","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0015204","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"endocrine system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0015204"],"http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0001016"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000949","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000949","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"endocrine system","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/UBERON_0002368"],"relatedTo":["http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0000066"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000949","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"consider splitting genitalia from reproductive system\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005039\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0003133\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0005156\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0005564\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"value\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"consider splitting genitalia from reproductive system\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000990\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002492\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002492\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005156\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005156\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0003133\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0003133\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005039\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002216\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002216\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000991\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000991\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005564\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad primordium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005564\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000990","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"consider splitting genitalia from reproductive system","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"reproductive system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000467"],"http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/UBERON_0001016","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000990","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000990","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"reproductive system","numDescendants":"1.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/UBERON_0000991","http://purl.obolibrary.org/obo/UBERON_0003133","http://purl.obolibrary.org/obo/UBERON_0005156","http://purl.obolibrary.org/obo/UBERON_0005564"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000991","http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/UBERON_0000066"],"searchableAnnotationValues":["consider splitting genitalia from reproductive system","false"],"shortForm":"UBERON_0000990","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000991\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0003133\",\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0005156\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0003133\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0003133\",\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0005156\",\"http://purl.obolibrary.org/obo/UBERON_0000990\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0003133\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gonad\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0003133\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000586\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007276\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0005564\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0002259\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0005564\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000586\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000586\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"value\":\"http://purl.obolibrary.org/obo/GO_0007276\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0007276\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0005564\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0005564\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000991\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/MONDO_0002259\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonadal disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0002259\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0007276\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gamete generation\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0007276\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005156\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005156\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0003133\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0003133\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000586\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"germ cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000586\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000067\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contains process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000067\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005564\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad primordium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005564\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0000991","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0003133","http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0005156"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0003133","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0003133","http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0005156","http://purl.obolibrary.org/obo/UBERON_0000990"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0003133","http://purl.obolibrary.org/obo/UBERON_0000990"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gonad","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0003133"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000991","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000991","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gonad","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0005564"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/CL_0000586","http://purl.obolibrary.org/obo/GO_0007276","http://purl.obolibrary.org/obo/UBERON_0005564"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000991","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000540\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#complementOf\":\"http://purl.obolibrary.org/obo/NCBITaxon_6040\"},\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0050877\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0002319\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002495\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#disjointWith\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6040\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/CL_0002319\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0005071\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000540\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000540\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/GO_0050877\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0050877\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"value\":\"http://purl.obolibrary.org/obo/CL_0002319\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0002319\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000066\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002495\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002495\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001016\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0016880\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"future nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0016880\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002495\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"immediate transformation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002495\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002492\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002492\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Porifera\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"fully formed stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0050877\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0050877\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0002319\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neural cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0002319\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002162\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002162\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002473\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000540\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"neuron\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000540\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0005071\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0005071\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0001016","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"nervous system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000467"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0001016","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001016","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"nervous system","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/CL_0002319","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/UBERON_0016880"],"relatedTo":["http://purl.obolibrary.org/obo/CL_0000540","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/UBERON_0016880","http://purl.obolibrary.org/obo/GO_0050877","http://purl.obolibrary.org/obo/CL_0002319","http://purl.obolibrary.org/obo/UBERON_0000066","http://purl.obolibrary.org/obo/UBERON_0016880"],"searchableAnnotationValues":"false","shortForm":"UBERON_0001016","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001048\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001048\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0005423\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"primordium\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0005423\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"primordium\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001048\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developing anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0001048","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0005423","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"primordium","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0005423"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0001048","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001048","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"primordium","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000468","searchableAnnotationValues":"false","shortForm":"UBERON_0001048","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"numDescendants\":42.0,\"numHierarchicalDescendants\":42.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001062\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0001062","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000004","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000004","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anatomical entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000004","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0001062","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001062","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anatomical entity","numDescendants":"42.0","numHierarchicalDescendants":"42.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"UBERON_0001062","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002050\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002050\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0005423\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"embryonic structure\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0005423\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic structure\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002050\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000922\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000922\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developing anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0002050","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0005423","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000922","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000922"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"embryonic structure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0005423"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0002050","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002050","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"embryonic structure","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000922","searchableAnnotationValues":"false","shortForm":"UBERON_0002050","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"http://purl.obolibrary.org/obo/UBERON_0015204\",\"http://purl.obolibrary.org/obo/UBERON_0015203\",\"http://purl.obolibrary.org/obo/UBERON_0034923\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0002530\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0002530\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0046879\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/GO_0046879\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0046879\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002368\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002473\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0034923\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected anatomical group\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0034923\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0015204\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"glandular system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0015204\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0015203\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"non-connected functional system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0015203\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0046879\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hormone secretion\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0046879\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0002368","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0002530","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0015204","http://purl.obolibrary.org/obo/UBERON_0015203","http://purl.obolibrary.org/obo/UBERON_0034923"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000949"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"endocrine gland","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0002530"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0002368","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002368","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"endocrine gland","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000949","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/GO_0046879"],"searchableAnnotationValues":"false","shortForm":"UBERON_0002368","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000062\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0046903\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0003000\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000463\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0015204\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"value\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/NCBITaxon_6072\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/GO_0046903\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0046903\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0003000\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000463\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0003000\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000463\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002530\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000062\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000463\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organism substance\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000463\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002160\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002473\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0003000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"produces\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0003000\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0046903\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"secretion\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0046903\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0015204\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"glandular system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0015204\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_6072\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Eumetazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:6072\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0002530","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000062","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000062","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gland","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000062"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0002530","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002530","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gland","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0015204","relatedTo":["http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/UBERON_0000463"],"searchableAnnotationValues":"false","shortForm":"UBERON_0002530","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0003100\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0003100\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"female organism\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"female organism\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000474\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0003100\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0003100\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000474\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"female reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000474\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0003100","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000468","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000468","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"female organism","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0000468","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0003100","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0003100","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"female organism","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000474","searchableAnnotationValues":"false","shortForm":"UBERON_0003100","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0003133\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0003133\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0005156\"],\"directParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0005156\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0005156\",\"http://purl.obolibrary.org/obo/UBERON_0000990\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0005156\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"reproductive organ\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"http://purl.obolibrary.org/obo/UBERON_0005156\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive organ\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"value\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0000003\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0003133\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/GO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproduction\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005156\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005156\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002216\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002216\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0003133","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0005156"],"directParent":["http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0005156"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0005156","http://purl.obolibrary.org/obo/UBERON_0000990"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0005156","http://purl.obolibrary.org/obo/UBERON_0000990"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"reproductive organ","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0005156"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0003133","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0003133","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"reproductive organ","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/GO_0000003"],"searchableAnnotationValues":"false","shortForm":"UBERON_0003133","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0005156\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005156\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"reproductive structure\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0010000\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive structure\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0005156\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0005156","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0010000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000990"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"reproductive structure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0010000"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0005156","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0005156","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"reproductive structure","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000990","searchableAnnotationValues":"false","shortForm":"UBERON_0005156","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005423\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"developing anatomical structure\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"developing anatomical structure\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"value\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0032502\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0005423\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0032502\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developmental process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0032502\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0005423","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000465","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000465","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"developing anatomical structure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000465"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0005423","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0005423","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"developing anatomical structure","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/GO_0032502","searchableAnnotationValues":"false","shortForm":"UBERON_0005423","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0005564\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005564\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001048\",\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0001048\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001048\",\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"http://purl.obolibrary.org/obo/UBERON_0000467\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0001048\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gonad primordium\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0001048\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad primordium\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0005564\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000990\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000991\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0005564\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developing anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001048\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"primordium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001048\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000990\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"reproductive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000990\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000991\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gonad\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000991\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0005564","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0001048","http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0001048","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0001048","http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0000467"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0001048","http://purl.obolibrary.org/obo/UBERON_0000990"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gonad primordium","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0001048"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0005564","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0005564","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gonad primordium","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000991","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0000991"],"searchableAnnotationValues":"false","shortForm":"UBERON_0005564","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0006598\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006598\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0002050\",\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0002050\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0002050\",\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0002050\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"Consider merging with anlage\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"presumptive structure\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0002050\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"presumptive structure\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Consider merging with anlage\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0006598\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000922\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000922\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developing anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002050\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0006598","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0002050","http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0002050","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0002050","http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000922","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0002050","http://purl.obolibrary.org/obo/UBERON_0000922"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":"Consider merging with anlage","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"presumptive structure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0002050"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0006598","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0006598","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"presumptive structure","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000922","http://purl.obolibrary.org/obo/UBERON_0000061"],"searchableAnnotationValues":["Consider merging with anlage","false"],"shortForm":"UBERON_0006598","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0006984\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006984\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0010199\",\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0010199\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0010199\",\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0010199\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anatomical surface\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0010199\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical surface\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000062\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0006984\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0006984\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organ\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000062\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000466\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"immaterial anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000466\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has 2D boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002002\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010199\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"bona-fide anatomical boundary\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010199\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0006984","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0010199","http://purl.obolibrary.org/obo/UBERON_0000466","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0010199","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0010199","http://purl.obolibrary.org/obo/UBERON_0000466","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0010199","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anatomical surface","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0010199","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0006984","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0006984","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anatomical surface","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0000062","searchableAnnotationValues":"false","shortForm":"UBERON_0006984","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000061\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0001993\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"numDescendants\":9.0,\"numHierarchicalDescendants\":21.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/CL_0000000\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"value\":\"http://purl.obolibrary.org/obo/PATO_0001993\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0001993\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0010000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/PATO_0001993\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001993\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0010000","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000061","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000061","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multicellular anatomical structure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000061"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0010000","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0010000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multicellular anatomical structure","numDescendants":"9.0","numHierarchicalDescendants":"21.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":["http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/PATO_0001993"],"searchableAnnotationValues":"false","shortForm":"UBERON_0010000","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0010199\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010199\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"bona-fide anatomical boundary\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0000466\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"bona-fide anatomical boundary\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0010199\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000466\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"immaterial anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000466\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0010199","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000466","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000466","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000466","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000466","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"bona-fide anatomical boundary","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0000466","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0010199","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0010199","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"bona-fide anatomical boundary","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"UBERON_0010199","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0015203\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0015203\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"non-connected functional system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"non-connected functional system\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0015203\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0034923\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected anatomical group\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0034923\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0015203","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0034923","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0034923","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0034923","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0034923","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"non-connected functional system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0034923","id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0015203","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0015203","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"non-connected functional system","numDescendants":"2.0","numHierarchicalDescendants":"3.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"UBERON_0015203","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0015204\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0015204\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0015203\",\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0015203\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0015203\",\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0015203\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"glandular system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0015203\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"glandular system\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0015204\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002473\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0034923\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected anatomical group\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0034923\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0015203\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"non-connected functional system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0015203\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0015204","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0015203","http://purl.obolibrary.org/obo/UBERON_0034923","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0015203","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0015203","http://purl.obolibrary.org/obo/UBERON_0034923","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0015203","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"glandular system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0015203"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0015204","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0015204","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"glandular system","numDescendants":"1.0","numHierarchicalDescendants":"2.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0002530","searchableAnnotationValues":"false","shortForm":"UBERON_0015204","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0016880\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0006598\",\"http://purl.obolibrary.org/obo/UBERON_0002050\",\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0006598\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0006598\",\"http://purl.obolibrary.org/obo/UBERON_0002050\",\"http://purl.obolibrary.org/obo/UBERON_0005423\",\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0010000\",\"http://purl.obolibrary.org/obo/UBERON_0000061\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0006598\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"future nervous system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0006598\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"future nervous system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002495\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002495\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0016880\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000922\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001016\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002496\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000111\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0016880\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002495\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"immediate transformation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002495\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002496\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts during or after\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002496\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000922\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryo\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000922\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0005423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"developing anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0005423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0006598\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"presumptive structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006598\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"nervous system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"embryonic structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002050\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"organogenesis stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000111\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0016880","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0006598","http://purl.obolibrary.org/obo/UBERON_0002050","http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0006598","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0006598","http://purl.obolibrary.org/obo/UBERON_0002050","http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/UBERON_0000922","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0006598","http://purl.obolibrary.org/obo/UBERON_0000922"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"future nervous system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0006598"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0016880","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0016880","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"future nervous system","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0001016","http://purl.obolibrary.org/obo/UBERON_0001016"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000922","http://purl.obolibrary.org/obo/UBERON_0001016","http://purl.obolibrary.org/obo/UBERON_0000111"],"searchableAnnotationValues":"false","shortForm":"UBERON_0016880","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0034923\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0034923\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/UBERON_0001062\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/RO_0002175\":[\"http://purl.obolibrary.org/obo/NCBITaxon_33090\",\"http://purl.obolibrary.org/obo/NCBITaxon_33208\",\"http://purl.obolibrary.org/obo/NCBITaxon_4751\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disconnected anatomical group\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0010001\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#minQualifiedCardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"2\"},\"http://www.w3.org/2002/07/owl#onClass\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002180\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected anatomical group\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"value\":\"http://purl.obolibrary.org/obo/PATO_0010001\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0010001\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000061\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0034923\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/NCBITaxon_33090\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d33090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:33090\"},\"http://purl.obolibrary.org/obo/RO_0002175\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000061\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000061\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0010001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disconnected\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0010001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_33208\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Metazoa\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"NCBITaxon:33208\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/NCBITaxon_4751\":{\"url\":\"http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\\u003d4751\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ncbitaxon:4751\"},\"http://purl.obolibrary.org/obo/RO_0002473\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002180\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"UBERON:0034923","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0000465","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/UBERON_0001062"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000465","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/RO_0002175":["http://purl.obolibrary.org/obo/NCBITaxon_33090","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_4751"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"disconnected anatomical group","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000465"],"id":"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0034923","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0034923","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disconnected anatomical group","numDescendants":"3.0","numHierarchicalDescendants":"4.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","relatedTo":["http://purl.obolibrary.org/obo/PATO_0010001","http://purl.obolibrary.org/obo/UBERON_0000061"],"searchableAnnotationValues":"false","shortForm":"UBERON_0034923","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_DbXref\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio"],"curie":"OIO:DbXref","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"database_cross_reference","id":"oio+class+http://www.geneontology.org/formats/oboInOwl#DbXref","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#DbXref","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"database_cross_reference","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_DbXref","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://www.obofoundry.org/wiki/index.php/Definitions\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"URL:http://www.obofoundry.org/wiki/index.php/Definitions\"},\"isObsolete\":false},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:cjm\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The textual definition of the current term. There must be zero or one instances of this tag per term description\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_Definition\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"oboInOwl:cjm\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#cjm\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:cjm\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio"],"curie":"OIO:Definition","definedBy":["oio"],"definition":"we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string","http__//www.w3.org/2000/01/rdf-schema#label":"definition","id":"oio+class+http://www.geneontology.org/formats/oboInOwl#Definition","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#Definition","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"definition","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_Definition","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:ObsoleteClass\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:cjm\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pseudo-class. in the oboInOwl translation, all obsolete classes are subclasses of this class. Note that this is not a metaclass\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_class\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_class\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_ObsoleteClass\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"oboInOwl:cjm\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#cjm\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:cjm\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio"],"curie":"OIO:ObsoleteClass","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_class","id":"oio+class+http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"obsolete_class","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_ObsoleteClass","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#Subset\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Subset\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_subsetdef\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:subsetdef\"},\"isObsolete\":false},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:cjm\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A grouping of terms from an ontology or ontologies. Note that this is not a metaclass - classes are linked to subsets via oboInOwl:inSubset\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\":[{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Synonym\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"slim\",\"lang\":\"en\"},\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Synonym\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GO-slim\",\"lang\":\"en\"},\"isObsolete\":false}],\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":[{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Synonym\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"view\",\"lang\":\"en\"},\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Synonym\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"partition\",\"lang\":\"en\"},\"isObsolete\":false}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_Subset\"},\"synonym\":[{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Synonym\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"slim\",\"lang\":\"en\"},\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Synonym\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GO-slim\",\"lang\":\"en\"},\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Synonym\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"view\",\"lang\":\"en\"},\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Synonym\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"partition\",\"lang\":\"en\"},\"isObsolete\":false}],\"synonymProperty\":[{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\"},{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\"}],\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#Synonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Synonym\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"oboFormat:subsetdef\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#subsetdef\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboFormat:subsetdef\"},\"oboInOwl:cjm\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#cjm\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:cjm\"},\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_related_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasRelatedSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_narrow_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasNarrowSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio"],"curie":"OIO:Subset","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.geneontology.org/formats/oboInOwl#hasNarrowSynonym":[],"http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"subset","id":"oio+class+http://www.geneontology.org/formats/oboInOwl#Subset","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#Subset","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"subset","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_Subset","synonym":[],"synonymProperty":["http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"],"type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#Synonym\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Synonym\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:cjm\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An instance of synonym usage. synonym instances are linked to classes via oboInOwl:has*Synonym properties\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"synonym\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"synonym\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_Synonym\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"oboInOwl:cjm\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#cjm\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:cjm\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio"],"curie":"OIO:Synonym","definedBy":["oio"],"definition":"we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string","http__//www.w3.org/2000/01/rdf-schema#label":"synonym","id":"oio+class+http://www.geneontology.org/formats/oboInOwl#Synonym","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#Synonym","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"synonym","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_Synonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#SynonymType\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:SynonymType\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"synonym_type\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"synonym_type\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_SynonymType\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio"],"curie":"OIO:SynonymType","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"synonym_type","id":"oio+class+http://www.geneontology.org/formats/oboInOwl#SynonymType","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#SynonymType","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"synonym_type","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_SynonymType","type":["class","entity"]} diff --git a/testcases_expected_output/annotation-properties/gitIssue502/gitissue502_classes.csv b/testcases_expected_output/annotation-properties/gitIssue502/gitissue502_classes.csv index 66ad1430d..559bc276e 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/gitissue502_classes.csv +++ b/testcases_expected_output/annotation-properties/gitIssue502/gitissue502_classes.csv @@ -1,250 +1,250 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","hasHierarchicalChildren:string[]","http__//www.w3.org/2004/02/skos/core#exactMatch:string[]","isDefiningOntology:string[]","linkedEntities:string[]","hierarchicalProperty:string[]","numHierarchicalDescendants:string[]","type:string[]","relatedTo:string[]","http__//purl.obolibrary.org/obo/RO_0002175:string[]","synonymProperty:string[]","http__//www.geneontology.org/formats/oboInOwl#id:string[]","definitionProperty:string[]","http__//www.w3.org/2000/01/rdf-schema#subClassOf:string[]","http__//www.geneontology.org/formats/oboInOwl#inSubset:string[]","hasDirectParents:string[]","http__//purl.obolibrary.org/obo/IAO_0000116:string[]","http__//purl.obolibrary.org/obo/IAO_0000115:string[]","http__//purl.obolibrary.org/obo/IAO_0006012:string[]","http__//www.w3.org/2002/07/owl#equivalentClass:string[]","http__//purl.obolibrary.org/obo/IAO_0000233:string[]","http__//purl.org/dc/elements/1.1/date:string[]","http__//purl.org/dc/terms/conformsTo:string[]","relatedFrom:string[]","numDescendants:string[]","directParent:string[]","http__//www.w3.org/2004/02/skos/core#closeMatch:string[]","http__//purl.obolibrary.org/obo/mondo#should_conform_to:string[]","directAncestor:string[]","http__//purl.org/dc/terms/creator:string[]","http__//www.w3.org/2002/07/owl#disjointWith:string[]","http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym:string[]","http__//www.geneontology.org/formats/oboInOwl#hasBroadSynonym:string[]","http__//www.geneontology.org/formats/oboInOwl#hasNarrowSynonym:string[]","http__//www.w3.org/2000/01/rdf-schema#seeAlso:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym:string[]","http__//www.geneontology.org/formats/oboInOwl#hasDbXref:string[]","synonym:string[]","imported:string[]","http__//www.w3.org/2000/01/rdf-schema#comment:string[]","definition:string[]","ontologyIri:string[]","hierarchicalParent:string[]","http__//purl.obolibrary.org/obo/mondo#excluded_subClassOf:string[]","iri","hierarchicalAncestor:string[]","isObsolete:string[]","label:string[]","ontologyPreferredPrefix:string[]","curie:string[]","shortForm:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]" -"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000002","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000002"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""isObsolete"":false},""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/BFO_0000003"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000003"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""numDescendants"":105.0,""numHierarchicalDescendants"":105.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000002""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""BFO:0000002"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000002"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000002""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","105.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000115","","","false","BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240","An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","","","","","","","105.0","","","","","","http://purl.obolibrary.org/obo/BFO_0000003|","","","","","http://www.w3.org/2002/07/owl#Class","true","false","","","","false","","An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/BFO_0000002","","false","continuant","gitIssue502","BFO:0000002","BFO_0000002","continuant","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000003","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that has temporal parts and that happens, unfolds or develops through time."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that has temporal parts and that happens, unfolds or develops through time."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players."",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""isObsolete"":false},""http://www.w3.org/2002/07/owl#disjointWith"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000002"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""numDescendants"":14.0,""numHierarchicalDescendants"":14.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that has temporal parts and that happens, unfolds or develops through time."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000003""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000003"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000003"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000003""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","14.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000115","","","false","BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region|BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.","An entity that has temporal parts and that happens, unfolds or develops through time.","","","","","","","14.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","true","false","","","","false","","An entity that has temporal parts and that happens, unfolds or develops through time.","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/BFO_0000003","","false","occurrent","gitIssue502","BFO:0000003","BFO_0000003","occurrent","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000004","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000004"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000002"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/BFO_0000002"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000020"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""numDescendants"":45.0,""numHierarchicalDescendants"":45.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""BFO_0000004""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""BFO:0000004"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000004"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000004""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","45.0","class|entity","","","","","","http://purl.obolibrary.org/obo/BFO_0000002|","","true","","","","","","","","","45.0","http://purl.obolibrary.org/obo/BFO_0000002","","","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000020","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","false","independent continuant","gitIssue502","BFO:0000004","BFO_0000004","independent continuant","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000015","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000015"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000003"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000015""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000015"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000015"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000015""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/BFO_0000003","","true","BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)","","","","","","","","0.0","http://purl.obolibrary.org/obo/BFO_0000003","","","http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","false","process","gitIssue502","BFO:0000015","BFO_0000015","process","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000016","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000016"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000017"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000017"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000017"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000023"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""numDescendants"":35.0,""numHierarchicalDescendants"":35.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000016""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000016"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000016"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000016""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000023""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","35.0","class|entity","","","","","","http://purl.obolibrary.org/obo/BFO_0000017","","true","BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.","","","","","","","","35.0","http://purl.obolibrary.org/obo/BFO_0000017","","","http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000023","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000017","","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","disposition","gitIssue502","BFO:0000016","BFO_0000016","disposition","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000017","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000017"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/BFO_0000020"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000017"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000019"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""numDescendants"":37.0,""numHierarchicalDescendants"":37.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000017""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""BFO:0000017"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000017"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000017""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","37.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000020|","","true","","A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","","","","","","","37.0","http://purl.obolibrary.org/obo/BFO_0000020","","","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000019","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000020","","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","realizable entity","gitIssue502","BFO:0000017","BFO_0000017","realizable entity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000019","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000019"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/BFO_0000020"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000019"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""BFO_0000019""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""BFO:0000019"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000019"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000019""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/BFO_0000020|","","true","","","","","","","","","0.0","http://purl.obolibrary.org/obo/BFO_0000020","","","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000020","","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","quality","gitIssue502","BFO:0000019","BFO_0000019","quality","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000020","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000020"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000002"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/BFO_0000002"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000020"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""numDescendants"":58.0,""numHierarchicalDescendants"":58.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""BFO_0000020""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""BFO:0000020"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000020"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000020""},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","58.0","class|entity","","","","","","http://purl.obolibrary.org/obo/BFO_0000002|","","true","","","","","","","","","58.0","http://purl.obolibrary.org/obo/BFO_0000002","","","http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","false","specifically dependent continuant","gitIssue502","BFO:0000020","BFO_0000020","specifically dependent continuant","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000023","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000023"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000023""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000017"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000017"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \u003dDef. there is some c, c instance_of professor role \u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000017"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \u003dDef. there is some c, c instance_of professor role \u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000023""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""BFO:0000023"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000023"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000023""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000017","","true","BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t =Def. there is some c, c instance_of professor role & c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.","A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","","","","","","","0.0","http://purl.obolibrary.org/obo/BFO_0000017","","","http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000017","","http://purl.obolibrary.org/obo/BFO_0000023","http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","role","gitIssue502","BFO:0000023","BFO_0000023","role","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000034","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000034"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000034""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000016"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000034""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000034"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000034"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000034""},""BFO:function"":{""url"":""http://purl.obolibrary.org/obo/BFO_function"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:function""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/BFO_0000016","","true","BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.","","","","","","","","0.0","http://purl.obolibrary.org/obo/BFO_0000016","","","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000016","","http://purl.obolibrary.org/obo/BFO_0000034","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","function","gitIssue502","BFO:0000034","BFO_0000034","function","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000040","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000040"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here."",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/BFO_0000141"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000141"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""numDescendants"":39.0,""numHierarchicalDescendants"":39.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000040""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""BFO:0000040"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000040"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000040""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","39.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000004","","true","BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60|BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.|BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here.","An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","","","","","","","39.0","http://purl.obolibrary.org/obo/BFO_0000004","","","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000141|","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000004","","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002","false","material entity","gitIssue502","BFO:0000040","BFO_0000040","material entity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000141","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000141"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2002/07/owl#disjointWith"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000040"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000141""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""BFO:0000141"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000141"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000141""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/BFO_0000004","","true","BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10","","","","","","","","3.0","http://purl.obolibrary.org/obo/BFO_0000004","","","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000004","","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002","false","immaterial entity","gitIssue502","BFO:0000141","BFO_0000141","immaterial entity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000000","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000000"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cell""},""numDescendants"":11.0,""numHierarchicalDescendants"":11.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0010000"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000000"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000000""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""CL:0000000"":{""url"":""http://purl.obolibrary.org/obo/CL_0000000"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""CL:0000000""},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","11.0","class|entity","http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","http://purl.obolibrary.org/obo/UBERON_0000061|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0010000","11.0","http://purl.obolibrary.org/obo/UBERON_0000061","","","http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000061","","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","cell","gitIssue502","CL:0000000","CL_0000000","cell","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000003","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""native cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/CL_0000000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""native cell""},""numDescendants"":10.0,""numHierarchicalDescendants"":10.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000003""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""CL:0000003"":{""url"":""http://purl.obolibrary.org/obo/CL_0000003"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""CL:0000003""}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","10.0","class|entity","","","","","","http://purl.obolibrary.org/obo/CL_0000000","","true","","","","","","","","","10.0","http://purl.obolibrary.org/obo/CL_0000000","","","http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000000","","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","native cell","gitIssue502","CL:0000003","CL_0000003","native cell","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000039","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000039"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000039""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000003"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""germ line cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/CL_0000003"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0022414"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/CL_0002371"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""germ line cell""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/GO_0022414"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0022414"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000039""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""CL:0000039"":{""url"":""http://purl.obolibrary.org/obo/CL_0000039"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""CL:0000039""},""http://purl.obolibrary.org/obo/GO_0022414"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive process""},""curie"":{""type"":[""literal""],""value"":""GO:0022414""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/CL_0002371"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""somatic cell""},""curie"":{""type"":[""literal""],""value"":""CL:0002371""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/GO_0022414","","","","","http://purl.obolibrary.org/obo/CL_0000003|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/CL_0000003","","","http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","http://purl.obolibrary.org/obo/CL_0002371","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000003","","http://purl.obolibrary.org/obo/CL_0000039","http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","germ line cell","gitIssue502","CL:0000039","CL_0000039","germ line cell","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000211","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000211"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000211""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000003"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""electrically active cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/CL_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""electrically active cell""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000211""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""CL:0000211"":{""url"":""http://purl.obolibrary.org/obo/CL_0000211"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""CL:0000211""},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/CL_0000003","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/CL_0000003","","","http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000003","","http://purl.obolibrary.org/obo/CL_0000211","http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","electrically active cell","gitIssue502","CL:0000211","CL_0000211","electrically active cell","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000255","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000255"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000255""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000003"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""eukaryotic cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/CL_0000003"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""eukaryotic cell""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000255""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""CL:0000255"":{""url"":""http://purl.obolibrary.org/obo/CL_0000255"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""CL:0000255""},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","http://purl.obolibrary.org/obo/NCBITaxon_2759","","","","","http://purl.obolibrary.org/obo/CL_0000003|","","true","","","","","","","","","4.0","http://purl.obolibrary.org/obo/CL_0000003","","","http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000003","","http://purl.obolibrary.org/obo/CL_0000255","http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","eukaryotic cell","gitIssue502","CL:0000255","CL_0000255","eukaryotic cell","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000393","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000393"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000393""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000211"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000211"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000211"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000211"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""electrically responsive cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/CL_0000211"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""electrically responsive cell""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000393""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""CL:0000393"":{""url"":""http://purl.obolibrary.org/obo/CL_0000393"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""CL:0000393""},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""electrically active cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000211""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/CL_0000211","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/CL_0000211","","","http://purl.obolibrary.org/obo/CL_0000211|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000211","","http://purl.obolibrary.org/obo/CL_0000393","http://purl.obolibrary.org/obo/CL_0000211|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","electrically responsive cell","gitIssue502","CL:0000393","CL_0000393","electrically responsive cell","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000404","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000404"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000404""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000211"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000211"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000211"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000211"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""electrically signaling cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/CL_0000211"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""electrically signaling cell""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000404""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""electrically active cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000211""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""CL:0000404"":{""url"":""http://purl.obolibrary.org/obo/CL_0000404"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""CL:0000404""},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/CL_0000211","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/CL_0000211","","","http://purl.obolibrary.org/obo/CL_0000211|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000211","","http://purl.obolibrary.org/obo/CL_0000404","http://purl.obolibrary.org/obo/CL_0000211|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","electrically signaling cell","gitIssue502","CL:0000404","CL_0000404","electrically signaling cell","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000540","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000540"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000540""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000393"",""http://purl.obolibrary.org/obo/CL_0000211"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/CL_0000404"",""http://purl.obolibrary.org/obo/CL_0002319"",""http://purl.obolibrary.org/obo/CL_0002371"",""http://purl.obolibrary.org/obo/CL_0000548"",""http://purl.obolibrary.org/obo/CL_0000255""],""directParent"":[""http://purl.obolibrary.org/obo/CL_0000393"",""http://purl.obolibrary.org/obo/CL_0000404"",""http://purl.obolibrary.org/obo/CL_0002319""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000393"",""http://purl.obolibrary.org/obo/CL_0000211"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/CL_0000404"",""http://purl.obolibrary.org/obo/CL_0002319"",""http://purl.obolibrary.org/obo/CL_0002371"",""http://purl.obolibrary.org/obo/CL_0000548"",""http://purl.obolibrary.org/obo/CL_0000255"",""http://purl.obolibrary.org/obo/UBERON_0001016"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/CL_0000393"",""http://purl.obolibrary.org/obo/CL_0000404"",""http://purl.obolibrary.org/obo/CL_0002319""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":""http://purl.obolibrary.org/obo/NCBITaxon_9606"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""neuron""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/CL_0000393"",""http://purl.obolibrary.org/obo/CL_0000404"",""http://purl.obolibrary.org/obo/CL_0002319"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019226"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""neuron""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000540"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/GO_0019226"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019226"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000540""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/CL_0000404"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""electrically signaling cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000404""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0002319"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neural cell""},""curie"":{""type"":[""literal""],""value"":""CL:0002319""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""electrically active cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000211""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000255"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""eukaryotic cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000255""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0019226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transmission of nerve impulse""},""curie"":{""type"":[""literal""],""value"":""GO:0019226""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""CL:0000540"":{""url"":""http://purl.obolibrary.org/obo/CL_0000540"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""CL:0000540""},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000548"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""animal cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000548""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9606"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Homo sapiens""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9606""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/CL_0002371"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""somatic cell""},""curie"":{""type"":[""literal""],""value"":""CL:0002371""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000393"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""electrically responsive cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000393""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0019226","http://purl.obolibrary.org/obo/NCBITaxon_9606","","","","http://purl.obolibrary.org/obo/CL_0000393|http://purl.obolibrary.org/obo/CL_0000404|http://purl.obolibrary.org/obo/CL_0002319|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0001016","0.0","http://purl.obolibrary.org/obo/CL_0000393|http://purl.obolibrary.org/obo/CL_0000404|http://purl.obolibrary.org/obo/CL_0002319","","","http://purl.obolibrary.org/obo/CL_0000393|http://purl.obolibrary.org/obo/CL_0000211|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/CL_0000404|http://purl.obolibrary.org/obo/CL_0002319|http://purl.obolibrary.org/obo/CL_0002371|http://purl.obolibrary.org/obo/CL_0000548|http://purl.obolibrary.org/obo/CL_0000255","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000393|http://purl.obolibrary.org/obo/CL_0000404|http://purl.obolibrary.org/obo/CL_0002319","","http://purl.obolibrary.org/obo/CL_0000540","http://purl.obolibrary.org/obo/CL_0000393|http://purl.obolibrary.org/obo/CL_0000211|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/CL_0000404|http://purl.obolibrary.org/obo/CL_0002319|http://purl.obolibrary.org/obo/CL_0002371|http://purl.obolibrary.org/obo/CL_0000548|http://purl.obolibrary.org/obo/CL_0000255|http://purl.obolibrary.org/obo/UBERON_0001016|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000","false","neuron","gitIssue502","CL:0000540","CL_0000540","neuron","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000548","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000548"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000548""},""definition"":{""type"":[""literal""],""value"":""A native cell that is part of some Metazoa.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000255"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000255"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000255"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000255"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A native cell that is part of some Metazoa.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""animal cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/CL_0000255"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""animal cell""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A native cell that is part of some Metazoa.""},false],""shortForm"":{""type"":[""literal""],""value"":""CL_0000548""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""CL:0000548"":{""url"":""http://purl.obolibrary.org/obo/CL_0000548"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""CL:0000548""},""http://purl.obolibrary.org/obo/CL_0000255"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""eukaryotic cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000255""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/NCBITaxon_33208","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/CL_0000255|","","true","","A native cell that is part of some Metazoa.","","","","","","","3.0","http://purl.obolibrary.org/obo/CL_0000255","","","http://purl.obolibrary.org/obo/CL_0000255|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","A native cell that is part of some Metazoa.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000255","","http://purl.obolibrary.org/obo/CL_0000548","http://purl.obolibrary.org/obo/CL_0000255|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","animal cell","gitIssue502","CL:0000548","CL_0000548","animal cell","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000586","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000586"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000586""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000039"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000039"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000039"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000039"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""germ cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/CL_0000039"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009566"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""germ cell""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000586"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002216"",""value"":""http://purl.obolibrary.org/obo/GO_0009566"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009566"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000586""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""CL:0000586"":{""url"":""http://purl.obolibrary.org/obo/CL_0000586"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""CL:0000586""},""http://purl.obolibrary.org/obo/CL_0000039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""germ line cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000039""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009566"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fertilization""},""curie"":{""type"":[""literal""],""value"":""GO:0009566""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002216"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002216""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000991"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonad""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000991""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0009566","","","","","http://purl.obolibrary.org/obo/CL_0000039|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000991","0.0","http://purl.obolibrary.org/obo/CL_0000039","","","http://purl.obolibrary.org/obo/CL_0000039|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000039","","http://purl.obolibrary.org/obo/CL_0000586","http://purl.obolibrary.org/obo/CL_0000039|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","germ cell","gitIssue502","CL:0000586","CL_0000586","germ cell","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/CL_0002319","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0002319"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0002319""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0002371"",""http://purl.obolibrary.org/obo/CL_0000548"",""http://purl.obolibrary.org/obo/CL_0000255"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0002371"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0002371"",""http://purl.obolibrary.org/obo/CL_0000548"",""http://purl.obolibrary.org/obo/CL_0000255"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0001016"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/CL_0002371"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""neural cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/CL_0002371"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""neural cell""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002473"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0002319"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0002319""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""CL:0002319"":{""url"":""http://purl.obolibrary.org/obo/CL_0002319"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""CL:0002319""},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000255"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""eukaryotic cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000255""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002473"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000548"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""animal cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000548""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/CL_0002371"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""somatic cell""},""curie"":{""type"":[""literal""],""value"":""CL:0002371""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0001016","","","","","http://purl.obolibrary.org/obo/CL_0002371|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0001016","1.0","http://purl.obolibrary.org/obo/CL_0002371","","","http://purl.obolibrary.org/obo/CL_0002371|http://purl.obolibrary.org/obo/CL_0000548|http://purl.obolibrary.org/obo/CL_0000255|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0002371|http://purl.obolibrary.org/obo/UBERON_0001016","","http://purl.obolibrary.org/obo/CL_0002319","http://purl.obolibrary.org/obo/CL_0002371|http://purl.obolibrary.org/obo/CL_0000548|http://purl.obolibrary.org/obo/CL_0000255|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0001016|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000","false","neural cell","gitIssue502","CL:0002319","CL_0002319","neural cell","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/CL_0002371","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0002371"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0002371""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000548"",""http://purl.obolibrary.org/obo/CL_0000255"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000548"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000548"",""http://purl.obolibrary.org/obo/CL_0000255"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000548"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""somatic cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/CL_0000548"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""somatic cell""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0002371""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/CL_0000548"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""animal cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000548""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""CL:0002371"":{""url"":""http://purl.obolibrary.org/obo/CL_0002371"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""CL:0002371""},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000255"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""eukaryotic cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000255""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/CL_0000548","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/CL_0000548","","","http://purl.obolibrary.org/obo/CL_0000548|http://purl.obolibrary.org/obo/CL_0000255|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000548","","http://purl.obolibrary.org/obo/CL_0002371","http://purl.obolibrary.org/obo/CL_0000548|http://purl.obolibrary.org/obo/CL_0000255|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","somatic cell","gitIssue502","CL:0002371","CL_0002371","somatic cell","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0000003","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0000003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""reproduction""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0008150"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""reproduction""},""numDescendants"":2.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0022414"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002216"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002216"",""value"":""http://purl.obolibrary.org/obo/UBERON_0003133"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0000003""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0003133"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0003133""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0022414"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive process""},""curie"":{""type"":[""literal""],""value"":""GO:0022414""},""type"":[""class"",""entity""]},""GO:0000003"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0000003"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0000003""},""http://purl.obolibrary.org/obo/RO_0002216"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002216""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0008150","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0003133","2.0","http://purl.obolibrary.org/obo/GO_0008150","","","http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0008150","","http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0008150","false","reproduction","gitIssue502","GO:0000003","GO_0000003","reproduction","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001508","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0001508"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0001508""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0042391"",""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0042391"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0042391"",""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0042391"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""action potential""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0042391"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""action potential""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0019226"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001508"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0001508""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0065008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological quality""},""curie"":{""type"":[""literal""],""value"":""GO:0065008""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0001508"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0001508"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0001508""},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0019226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transmission of nerve impulse""},""curie"":{""type"":[""literal""],""value"":""GO:0019226""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0042391"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of membrane potential""},""curie"":{""type"":[""literal""],""value"":""GO:0042391""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0042391","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0019226","0.0","http://purl.obolibrary.org/obo/GO_0042391","","","http://purl.obolibrary.org/obo/GO_0042391|http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0042391","","http://purl.obolibrary.org/obo/GO_0001508","http://purl.obolibrary.org/obo/GO_0042391|http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","false","action potential","gitIssue502","GO:0001508","GO_0001508","action potential","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001704","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0001704"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0001704""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048646"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0007369"",""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0048646"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007369"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""formation of primary germ layer""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0048646"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007369"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""formation of primary germ layer""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007369"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007369"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0001704""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0001704"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0001704"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0001704""},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrulation""},""curie"":{""type"":[""literal""],""value"":""GO:0007369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/GO_0007369","","","","","http://purl.obolibrary.org/obo/GO_0048646|","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/GO_0048646","","","http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0007369","","http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0007369|http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","formation of primary germ layer","gitIssue502","GO:0001704","GO_0001704","formation of primary germ layer","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001705","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0001705"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0001705""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0001704"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0001704"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0001704"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0007369"",""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0007398"",""http://purl.obolibrary.org/obo/GO_0009888""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0001704"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007398"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""ectoderm formation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0001704"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007398"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""ectoderm formation""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0007369"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001705"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007398"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007398"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0001705""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007398"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ectoderm development""},""curie"":{""type"":[""literal""],""value"":""GO:0007398""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0001705"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0001705"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0001705""},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrulation""},""curie"":{""type"":[""literal""],""value"":""GO:0007369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001704"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""formation of primary germ layer""},""curie"":{""type"":[""literal""],""value"":""GO:0001704""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0007398","","","","","http://purl.obolibrary.org/obo/GO_0001704|","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0007369","0.0","http://purl.obolibrary.org/obo/GO_0001704","","","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0007398","","http://purl.obolibrary.org/obo/GO_0001705","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0007369|http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0007398|http://purl.obolibrary.org/obo/GO_0009888","false","ectoderm formation","gitIssue502","GO:0001705","GO_0001705","ectoderm formation","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001706","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0001706"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0001706""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0001704"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0001704"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0001704"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0007369"",""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0007492"",""http://purl.obolibrary.org/obo/GO_0009888""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0001704"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007492"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""endoderm formation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0001704"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007492"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""endoderm formation""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0007369"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001706"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007492"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007492"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0001706""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0001706"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0001706"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0001706""},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrulation""},""curie"":{""type"":[""literal""],""value"":""GO:0007369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007492"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endoderm development""},""curie"":{""type"":[""literal""],""value"":""GO:0007492""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001704"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""formation of primary germ layer""},""curie"":{""type"":[""literal""],""value"":""GO:0001704""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0007492","","","","","http://purl.obolibrary.org/obo/GO_0001704|","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0007369","0.0","http://purl.obolibrary.org/obo/GO_0001704","","","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0007492","","http://purl.obolibrary.org/obo/GO_0001706","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0007369|http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0007492|http://purl.obolibrary.org/obo/GO_0009888","false","endoderm formation","gitIssue502","GO:0001706","GO_0001706","endoderm formation","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001707","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0001707"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0001707""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0001704"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0001704"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0001704"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0007369"",""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0048332"",""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0007498""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0001704"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0048332"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""mesoderm formation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0001704"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048332"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""mesoderm formation""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0007369"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001707"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048332"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048332"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0001707""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0001707"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0001707"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0001707""},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrulation""},""curie"":{""type"":[""literal""],""value"":""GO:0007369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001704"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""formation of primary germ layer""},""curie"":{""type"":[""literal""],""value"":""GO:0001704""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007498"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""mesoderm development""},""curie"":{""type"":[""literal""],""value"":""GO:0007498""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048332"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""mesoderm morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048332""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0048332","","","","","http://purl.obolibrary.org/obo/GO_0001704|","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0007369","0.0","http://purl.obolibrary.org/obo/GO_0001704","","","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0048332","","http://purl.obolibrary.org/obo/GO_0001707","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0007369|http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0048332|http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0007498","false","mesoderm formation","gitIssue502","GO:0001707","GO_0001707","mesoderm formation","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001838","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0001838"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0001838""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0072175"",""http://purl.obolibrary.org/obo/GO_0035148"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0072175"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0072175"",""http://purl.obolibrary.org/obo/GO_0035148"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0035239"",""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0060562"",""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0060429"",""http://purl.obolibrary.org/obo/GO_0016331"",""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009790""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0072175"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0016331"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""embryonic epithelial tube formation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0072175"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0016331"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""embryonic epithelial tube formation""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0016331"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0016331"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0001838""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0072175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelial tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0072175""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035148"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0035148""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""GO:0001838"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0001838"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0001838""},""http://purl.obolibrary.org/obo/GO_0060429"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium development""},""curie"":{""type"":[""literal""],""value"":""GO:0060429""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0002009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphogenesis of an epithelium""},""curie"":{""type"":[""literal""],""value"":""GO:0002009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0060562"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelial tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0060562""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035239"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0035239""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0016331"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphogenesis of embryonic epithelium""},""curie"":{""type"":[""literal""],""value"":""GO:0016331""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/GO_0016331","","","","","http://purl.obolibrary.org/obo/GO_0072175|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0072175","","","http://purl.obolibrary.org/obo/GO_0072175|http://purl.obolibrary.org/obo/GO_0035148|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0072175|http://purl.obolibrary.org/obo/GO_0016331","","http://purl.obolibrary.org/obo/GO_0001838","http://purl.obolibrary.org/obo/GO_0072175|http://purl.obolibrary.org/obo/GO_0035148|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0035239|http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0060562|http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0060429|http://purl.obolibrary.org/obo/GO_0016331|http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009790","false","embryonic epithelial tube formation","gitIssue502","GO:0001838","GO_0001838","embryonic epithelial tube formation","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001841","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0001841"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0001841""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0001838"",""http://purl.obolibrary.org/obo/GO_0072175"",""http://purl.obolibrary.org/obo/GO_0035148"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0001838"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0001838"",""http://purl.obolibrary.org/obo/GO_0072175"",""http://purl.obolibrary.org/obo/GO_0035148"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0035239"",""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0060562"",""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0060429"",""http://purl.obolibrary.org/obo/GO_0016331"",""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0021915"",""http://purl.obolibrary.org/obo/GO_0007399"",""http://purl.obolibrary.org/obo/GO_0048731"",""http://purl.obolibrary.org/obo/GO_0043009"",""http://purl.obolibrary.org/obo/GO_0009792""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0001838"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0021915"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""neural tube formation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0001838"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0021915"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""neural tube formation""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000110"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001841"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0021915"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0021915"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0001841""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0072175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelial tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0072175""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007399"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system development""},""curie"":{""type"":[""literal""],""value"":""GO:0007399""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035148"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0035148""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0060429"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium development""},""curie"":{""type"":[""literal""],""value"":""GO:0060429""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009792"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development ending in birth or egg hatching""},""curie"":{""type"":[""literal""],""value"":""GO:0009792""},""type"":[""class"",""entity""]},""GO:0001841"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0001841"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0001841""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001838"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic epithelial tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001838""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0002009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphogenesis of an epithelium""},""curie"":{""type"":[""literal""],""value"":""GO:0002009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048731"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""system development""},""curie"":{""type"":[""literal""],""value"":""GO:0048731""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0060562"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelial tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0060562""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0043009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""chordate embryonic development""},""curie"":{""type"":[""literal""],""value"":""GO:0043009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035239"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0035239""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0016331"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphogenesis of embryonic epithelium""},""curie"":{""type"":[""literal""],""value"":""GO:0016331""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000110"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neurula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000110""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0021915"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neural tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0021915""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0021915","","","","","http://purl.obolibrary.org/obo/GO_0001838|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000110","0.0","http://purl.obolibrary.org/obo/GO_0001838","","","http://purl.obolibrary.org/obo/GO_0001838|http://purl.obolibrary.org/obo/GO_0072175|http://purl.obolibrary.org/obo/GO_0035148|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0001838|http://purl.obolibrary.org/obo/GO_0021915","","http://purl.obolibrary.org/obo/GO_0001841","http://purl.obolibrary.org/obo/GO_0001838|http://purl.obolibrary.org/obo/GO_0072175|http://purl.obolibrary.org/obo/GO_0035148|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0035239|http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0060562|http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0060429|http://purl.obolibrary.org/obo/GO_0016331|http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0021915|http://purl.obolibrary.org/obo/GO_0007399|http://purl.obolibrary.org/obo/GO_0048731|http://purl.obolibrary.org/obo/GO_0043009|http://purl.obolibrary.org/obo/GO_0009792","false","neural tube formation","gitIssue502","GO:0001841","GO_0001841","neural tube formation","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0002009","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0002009"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0002009""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048729"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0060429""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0048729"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0060429"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""morphogenesis of an epithelium""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0048729"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0060429"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""morphogenesis of an epithelium""},""numDescendants"":2.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0060429"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0060429"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0002009""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""GO:0002009"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0002009"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0002009""},""http://purl.obolibrary.org/obo/GO_0060429"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium development""},""curie"":{""type"":[""literal""],""value"":""GO:0060429""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","http://purl.obolibrary.org/obo/GO_0060429","","","","","http://purl.obolibrary.org/obo/GO_0048729|","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/GO_0048729","","","http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0060429","","http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0060429","false","morphogenesis of an epithelium","gitIssue502","GO:0002009","GO_0002009","morphogenesis of an epithelium","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0003008","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0003008"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0003008""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0032501"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0032501"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""system process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0032501"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""system process""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0003008""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""GO:0003008"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0003008"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0003008""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0032501","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/GO_0032501","","","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0032501","","http://purl.obolibrary.org/obo/GO_0003008","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150","false","system process","gitIssue502","GO:0003008","GO_0003008","system process","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0005102","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0005102"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0005102""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0005515"",""directParent"":""http://purl.obolibrary.org/obo/GO_0005515"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0005515"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0005515"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""signaling receptor binding""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0005515"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""signaling receptor binding""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0005102""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0005515"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""protein binding""},""curie"":{""type"":[""literal""],""value"":""GO:0005515""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0005102"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0005102"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0005102""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0005515","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/GO_0005515","","","http://purl.obolibrary.org/obo/GO_0005515","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0005515","","http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0005515","false","signaling receptor binding","gitIssue502","GO:0005102","GO_0005102","signaling receptor binding","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0005179","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0005179"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0005179""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048018"",""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0005515"",""http://purl.obolibrary.org/obo/GO_0030546"",""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0098772"",""http://purl.obolibrary.org/obo/GO_0140677""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048018"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048018"",""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0005515"",""http://purl.obolibrary.org/obo/GO_0030546"",""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0098772"",""http://purl.obolibrary.org/obo/GO_0140677"",""http://purl.obolibrary.org/obo/GO_0007165"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0050794"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0051716"",""http://purl.obolibrary.org/obo/GO_0050896""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0048018"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hormone activity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0048018"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hormone activity""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0005179""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051716"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0051716""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0098772"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0098772""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050794"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0050794""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0005102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor binding""},""curie"":{""type"":[""literal""],""value"":""GO:0005102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007165"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signal transduction""},""curie"":{""type"":[""literal""],""value"":""GO:0007165""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0005515"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""protein binding""},""curie"":{""type"":[""literal""],""value"":""GO:0005515""},""type"":[""class"",""entity""]},""GO:0005179"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0005179"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0005179""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050896"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0050896""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0030545"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0030545""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0030546"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor activator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0030546""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""receptor ligand activity""},""curie"":{""type"":[""literal""],""value"":""GO:0048018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0140677"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function activator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0140677""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0048018","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0048018","","","http://purl.obolibrary.org/obo/GO_0048018|http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0005515|http://purl.obolibrary.org/obo/GO_0030546|http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0098772|http://purl.obolibrary.org/obo/GO_0140677","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048018","","http://purl.obolibrary.org/obo/GO_0005179","http://purl.obolibrary.org/obo/GO_0048018|http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0005515|http://purl.obolibrary.org/obo/GO_0030546|http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0098772|http://purl.obolibrary.org/obo/GO_0140677|http://purl.obolibrary.org/obo/GO_0007165|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0050794|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0051716|http://purl.obolibrary.org/obo/GO_0050896","false","hormone activity","gitIssue502","GO:0005179","GO_0005179","hormone activity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0005183","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0005183"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0005183""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0005179"",""http://purl.obolibrary.org/obo/GO_0048018"",""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0005515"",""http://purl.obolibrary.org/obo/GO_0030546"",""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0098772"",""http://purl.obolibrary.org/obo/GO_0140677""],""directParent"":""http://purl.obolibrary.org/obo/GO_0005179"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0005179"",""http://purl.obolibrary.org/obo/GO_0048018"",""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0005515"",""http://purl.obolibrary.org/obo/GO_0030546"",""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0098772"",""http://purl.obolibrary.org/obo/GO_0140677"",""http://purl.obolibrary.org/obo/GO_0007165"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0050794"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0051716"",""http://purl.obolibrary.org/obo/GO_0050896""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0005179"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gonadotropin hormone-releasing hormone activity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0005179"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gonadotropin hormone-releasing hormone activity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0004021"",""value"":""http://purl.obolibrary.org/obo/MONDO_0018555"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004021"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0005183"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0005183""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0005179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hormone activity""},""curie"":{""type"":[""literal""],""value"":""GO:0005179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051716"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0051716""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0098772"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0098772""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050794"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0050794""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0005102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor binding""},""curie"":{""type"":[""literal""],""value"":""GO:0005102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004021"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""disease caused by disruption of""},{""type"":[""literal""],""value"":""disease has basis in disruption of""}],""curie"":{""type"":[""literal""],""value"":""RO:0004021""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007165"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signal transduction""},""curie"":{""type"":[""literal""],""value"":""GO:0007165""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0018555"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism""},""curie"":{""type"":[""literal""],""value"":""MONDO:0018555""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0005515"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""protein binding""},""curie"":{""type"":[""literal""],""value"":""GO:0005515""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050896"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0050896""},""type"":[""class"",""entity""]},""GO:0005183"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0005183"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0005183""},""http://purl.obolibrary.org/obo/GO_0030545"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0030545""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0030546"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor activator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0030546""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""receptor ligand activity""},""curie"":{""type"":[""literal""],""value"":""GO:0048018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0140677"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function activator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0140677""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0005179","","true","","","","","","","","http://purl.obolibrary.org/obo/MONDO_0018555","0.0","http://purl.obolibrary.org/obo/GO_0005179","","","http://purl.obolibrary.org/obo/GO_0005179|http://purl.obolibrary.org/obo/GO_0048018|http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0005515|http://purl.obolibrary.org/obo/GO_0030546|http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0098772|http://purl.obolibrary.org/obo/GO_0140677","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0005179","","http://purl.obolibrary.org/obo/GO_0005183","http://purl.obolibrary.org/obo/GO_0005179|http://purl.obolibrary.org/obo/GO_0048018|http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0005515|http://purl.obolibrary.org/obo/GO_0030546|http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0098772|http://purl.obolibrary.org/obo/GO_0140677|http://purl.obolibrary.org/obo/GO_0007165|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0050794|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0051716|http://purl.obolibrary.org/obo/GO_0050896","false","gonadotropin hormone-releasing hormone activity","gitIssue502","GO:0005183","GO_0005183","gonadotropin hormone-releasing hormone activity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0005515","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0005515"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0005515""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""protein binding""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""protein binding""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0098772"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0005515"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0005515""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0098772"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0098772""},""type"":[""class"",""entity""]},""GO:0005515"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0005515"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0005515""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","","4.0","class|entity","","","","","","","","false","","","","","","","","http://purl.obolibrary.org/obo/GO_0098772","4.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","true","false","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/GO_0005515","","false","protein binding","gitIssue502","GO:0005515","GO_0005515","protein binding","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0006810","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0006810"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0051234"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0051234"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""transport""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0051234"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""transport""},""numDescendants"":9.0,""numHierarchicalDescendants"":9.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0006810""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0006810"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0006810"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0006810""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","9.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0051234","","true","","","","","","","","","9.0","http://purl.obolibrary.org/obo/GO_0051234","","","http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0051234","","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150","false","transport","gitIssue502","GO:0006810","GO_0006810","transport","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0006811","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0006811"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0006811""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0006810"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0006810"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""monoatomic ion transport""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0006810"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""monoatomic ion transport""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0006811""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""GO:0006811"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0006811"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0006811""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0006810","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0006810","","","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0006810","","http://purl.obolibrary.org/obo/GO_0006811","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150","false","monoatomic ion transport","gitIssue502","GO:0006811","GO_0006811","monoatomic ion transport","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007154","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007154"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009987"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0009987"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cell communication""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0009987"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cell communication""},""numDescendants"":5.0,""numHierarchicalDescendants"":12.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007165"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007154"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0019226"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007154"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007154""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007165"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signal transduction""},""curie"":{""type"":[""literal""],""value"":""GO:0007165""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0019226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transmission of nerve impulse""},""curie"":{""type"":[""literal""],""value"":""GO:0019226""},""type"":[""class"",""entity""]},""GO:0007154"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0007154"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0007154""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","12.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009987","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0007165|http://purl.obolibrary.org/obo/GO_0019226","5.0","http://purl.obolibrary.org/obo/GO_0009987","","","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009987","","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150","false","cell communication","gitIssue502","GO:0007154","GO_0007154","cell communication","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007165","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007165"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007165""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0050794"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0050794""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0050794"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0051716"",""http://purl.obolibrary.org/obo/GO_0050896""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0050794"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007154"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0023052"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0051716"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""signal transduction""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0050794"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007154"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0023052"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0051716"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""signal transduction""},""numDescendants"":0.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048018"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007165"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007154"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007154"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0023052"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0023052"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0051716"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0051716"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007165""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051716"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0051716""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050794"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0050794""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050896"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0050896""},""type"":[""class"",""entity""]},""GO:0007165"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0007165"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0007165""},""http://purl.obolibrary.org/obo/GO_0048018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""receptor ligand activity""},""curie"":{""type"":[""literal""],""value"":""GO:0048018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0051716","","","","","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0050794|||","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0048018","0.0","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0050794","","","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0050794|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0050794|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0051716","","http://purl.obolibrary.org/obo/GO_0007165","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0050794|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0051716|http://purl.obolibrary.org/obo/GO_0050896","false","signal transduction","gitIssue502","GO:0007165","GO_0007165","signal transduction","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007267","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007267"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007267""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cell-cell signaling""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cell-cell signaling""},""numDescendants"":4.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0023061"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007267"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007267""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0007267"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0007267"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0007267""},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signal release""},""curie"":{""type"":[""literal""],""value"":""GO:0023061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0023061","4.0","http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052","","","http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052","","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","false","cell-cell signaling","gitIssue502","GO:0007267","GO_0007267","cell-cell signaling","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007268","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007268"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007268""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0098916"",""http://purl.obolibrary.org/obo/GO_0099537"",""http://purl.obolibrary.org/obo/GO_0099536"",""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""directParent"":""http://purl.obolibrary.org/obo/GO_0098916"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0098916"",""http://purl.obolibrary.org/obo/GO_0099537"",""http://purl.obolibrary.org/obo/GO_0099536"",""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0098916"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""chemical synaptic transmission""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0098916"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""chemical synaptic transmission""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0019226"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007268"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007268""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0099537"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trans-synaptic signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0099537""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0099536"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""synaptic signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0099536""},""type"":[""class"",""entity""]},""GO:0007268"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0007268"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0007268""},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0019226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transmission of nerve impulse""},""curie"":{""type"":[""literal""],""value"":""GO:0019226""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007267"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell-cell signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0007267""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0098916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anterograde trans-synaptic signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0098916""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0098916","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0019226","0.0","http://purl.obolibrary.org/obo/GO_0098916","","","http://purl.obolibrary.org/obo/GO_0098916|http://purl.obolibrary.org/obo/GO_0099537|http://purl.obolibrary.org/obo/GO_0099536|http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0098916","","http://purl.obolibrary.org/obo/GO_0007268","http://purl.obolibrary.org/obo/GO_0098916|http://purl.obolibrary.org/obo/GO_0099537|http://purl.obolibrary.org/obo/GO_0099536|http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","false","chemical synaptic transmission","gitIssue502","GO:0007268","GO_0007268","chemical synaptic transmission","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007275","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007275"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0048856""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0048856""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multicellular organism development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0048856""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""numDescendants"":3.0,""numHierarchicalDescendants"":22.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0009791"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0035295"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048731"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007275""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009791"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""post-embryonic development""},""curie"":{""type"":[""literal""],""value"":""GO:0009791""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""type"":[""class"",""entity""]},""GO:0007275"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0007275"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0007275""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048731"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""system development""},""curie"":{""type"":[""literal""],""value"":""GO:0048731""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","22.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0048856","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0009791|http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0048731","3.0","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0048856","","","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0048856","","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","false","multicellular organism development","gitIssue502","GO:0007275","GO_0007275","multicellular organism development","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007276","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007276"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007276""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048609"",""http://purl.obolibrary.org/obo/GO_0022414"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048609"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048609"",""http://purl.obolibrary.org/obo/GO_0022414"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0032504"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0019953""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0048609"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0019953"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gamete generation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0048609"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019953"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gamete generation""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000067"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000067"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007276"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0019953"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019953"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007276""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032504"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0032504""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""GO:0007276"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0007276"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0007276""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048609"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal reproductive process""},""curie"":{""type"":[""literal""],""value"":""GO:0048609""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0019953"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""sexual reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0019953""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0022414"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive process""},""curie"":{""type"":[""literal""],""value"":""GO:0022414""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000067"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contains process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000067""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000991"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonad""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000991""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0019953","","","","","http://purl.obolibrary.org/obo/GO_0048609|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000991","0.0","http://purl.obolibrary.org/obo/GO_0048609","","","http://purl.obolibrary.org/obo/GO_0048609|http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048609|http://purl.obolibrary.org/obo/GO_0019953","","http://purl.obolibrary.org/obo/GO_0007276","http://purl.obolibrary.org/obo/GO_0048609|http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0032504|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0019953","false","gamete generation","gitIssue502","GO:0007276","GO_0007276","gamete generation","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007369","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007369"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007369""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048598"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0048598"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gastrulation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0048598"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001705"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001706"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001707"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gastrulation""},""numDescendants"":0.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0001704"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007369"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007369"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0001705"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001705"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0001706"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001706"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0001707"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001707"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007369""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001705"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ectoderm formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001705""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001706"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endoderm formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001706""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001707"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""mesoderm formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001707""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001704"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""formation of primary germ layer""},""curie"":{""type"":[""literal""],""value"":""GO:0001704""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""GO:0007369"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0007369"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0007369""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","http://purl.obolibrary.org/obo/GO_0001705|http://purl.obolibrary.org/obo/GO_0001706|http://purl.obolibrary.org/obo/GO_0001707","","","","","http://purl.obolibrary.org/obo/GO_0048598|||","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/UBERON_0000109","0.0","http://purl.obolibrary.org/obo/GO_0048598","","","http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048598","","http://purl.obolibrary.org/obo/GO_0007369","http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","gastrulation","gitIssue502","GO:0007369","GO_0007369","gastrulation","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007398","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007398"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007398""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009888"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0009888"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""ectoderm development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0009888"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""ectoderm development""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0001705"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007398"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007398""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001705"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ectoderm formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001705""},""type"":[""class"",""entity""]},""GO:0007398"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0007398"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0007398""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009888","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0001705","0.0","http://purl.obolibrary.org/obo/GO_0009888","","","http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009888","","http://purl.obolibrary.org/obo/GO_0007398","http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","false","ectoderm development","gitIssue502","GO:0007398","GO_0007398","ectoderm development","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007399","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007399"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007399""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048731"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048731"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048731"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0048731"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""nervous system development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0048731"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""nervous system development""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0021915"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007399"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007399""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""GO:0007399"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0007399"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0007399""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048731"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""system development""},""curie"":{""type"":[""literal""],""value"":""GO:0048731""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0021915"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neural tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0021915""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0048731","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0021915","0.0","http://purl.obolibrary.org/obo/GO_0048731","","","http://purl.obolibrary.org/obo/GO_0048731|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048731","","http://purl.obolibrary.org/obo/GO_0007399","http://purl.obolibrary.org/obo/GO_0048731|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","nervous system development","gitIssue502","GO:0007399","GO_0007399","nervous system development","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007492","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007492"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007492""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009888"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0009888"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""endoderm development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0009888"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""endoderm development""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0001706"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007492"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007492""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""GO:0007492"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0007492"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0007492""},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001706"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endoderm formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001706""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009888","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0001706","0.0","http://purl.obolibrary.org/obo/GO_0009888","","","http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009888","","http://purl.obolibrary.org/obo/GO_0007492","http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","false","endoderm development","gitIssue502","GO:0007492","GO_0007492","endoderm development","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007498","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007498"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007498""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009888"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0009888"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""mesoderm development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0009888"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""mesoderm development""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048332"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007498"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007498""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""GO:0007498"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0007498"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0007498""},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048332"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""mesoderm morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048332""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009888","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0048332","0.0","http://purl.obolibrary.org/obo/GO_0009888","","","http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009888","","http://purl.obolibrary.org/obo/GO_0007498","http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","false","mesoderm development","gitIssue502","GO:0007498","GO_0007498","mesoderm development","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0008150","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0008150"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""biological_process""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""biological_process""},""numDescendants"":78.0,""numHierarchicalDescendants"":81.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0002211"",""value"":""http://purl.obolibrary.org/obo/GO_0050789"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002211"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008150"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008150"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0008150""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000062""},""type"":[""class"",""entity""]},""GO:0008150"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0008150"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0008150""},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","","81.0","class|entity","","","","","","","","false","","","","","","","","http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/UBERON_0000062","78.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","true","false","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/GO_0008150","","false","biological_process","gitIssue502","GO:0008150","GO_0008150","biological_process","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009566","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0009566"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0009566""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0022414"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0022414"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0022414"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0019953""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0022414"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0019953"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""fertilization""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0022414"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019953"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""fertilization""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002216"",""value"":""http://purl.obolibrary.org/obo/CL_0000586"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009566"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0019953"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019953"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0009566""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""GO:0009566"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0009566"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0009566""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000586"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""germ cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000586""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0019953"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""sexual reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0019953""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0022414"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive process""},""curie"":{""type"":[""literal""],""value"":""GO:0022414""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002216"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002216""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0019953","","","","","http://purl.obolibrary.org/obo/GO_0022414|","","true","","","","","","","","http://purl.obolibrary.org/obo/CL_0000586","0.0","http://purl.obolibrary.org/obo/GO_0022414","","","http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/GO_0019953","","http://purl.obolibrary.org/obo/GO_0009566","http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0019953","false","fertilization","gitIssue502","GO:0009566","GO_0009566","fertilization","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009653","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0009653"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0032502"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0032502"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0048856"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0032502"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048856"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""numDescendants"":8.0,""numHierarchicalDescendants"":17.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048646"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009653"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048856"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048856"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0009653""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""GO:0009653"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0009653"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0009653""},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","17.0","class|entity","http://purl.obolibrary.org/obo/GO_0048856","","","","","http://purl.obolibrary.org/obo/GO_0032502|","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0048646","8.0","http://purl.obolibrary.org/obo/GO_0032502","","","http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0048856","","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856","false","anatomical structure morphogenesis","gitIssue502","GO:0009653","GO_0009653","anatomical structure morphogenesis","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009790","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0009790"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""directParent"":""http://purl.obolibrary.org/obo/GO_0007275"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0007275"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""embryo development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0007275"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""embryo development""},""numDescendants"":2.0,""numHierarchicalDescendants"":13.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0040016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048598"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0009790""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""GO:0009790"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0009790"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0009790""},""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0040016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic cleavage""},""curie"":{""type"":[""literal""],""value"":""GO:0040016""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","13.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0007275","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0040016|http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/UBERON_0000068","2.0","http://purl.obolibrary.org/obo/GO_0007275","","","http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0007275","","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","false","embryo development","gitIssue502","GO:0009790","GO_0009790","embryo development","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009791","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0009791"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0009791""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0032501"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0032501"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007275"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""post-embryonic development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0032501"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""post-embryonic development""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009791"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007275"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0009791""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""GO:0009791"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0009791"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0009791""},""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""post-embryonic stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000092""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0007275","","","","","http://purl.obolibrary.org/obo/GO_0032501|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000092","0.0","http://purl.obolibrary.org/obo/GO_0032501","","","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0007275","","http://purl.obolibrary.org/obo/GO_0009791","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","false","post-embryonic development","gitIssue502","GO:0009791","GO_0009791","post-embryonic development","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009792","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0009792"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0009792""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009790"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0009790"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""embryo development ending in birth or egg hatching""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0009790"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""embryo development ending in birth or egg hatching""},""numDescendants"":1.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0009792""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""GO:0009792"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0009792"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0009792""},""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009790","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0009790","","","http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009790","","http://purl.obolibrary.org/obo/GO_0009792","http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","false","embryo development ending in birth or egg hatching","gitIssue502","GO:0009792","GO_0009792","embryo development ending in birth or egg hatching","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009888","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0009888"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048856"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0048856"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""tissue development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0048856"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""tissue development""},""numDescendants"":5.0,""numHierarchicalDescendants"":16.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048729"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009888"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0009888""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""GO:0009888"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0009888"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0009888""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","16.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0048856","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0048729","5.0","http://purl.obolibrary.org/obo/GO_0048856","","","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048856","","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","false","tissue development","gitIssue502","GO:0009888","GO_0009888","tissue development","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009914","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0009914"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0009914""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0010817"",""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0010817""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0010817"",""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0010817""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hormone transport""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0010817""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hormone transport""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0009914""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological quality""},""curie"":{""type"":[""literal""],""value"":""GO:0065008""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0010817"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of hormone levels""},""curie"":{""type"":[""literal""],""value"":""GO:0010817""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""GO:0009914"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0009914"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0009914""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0010817","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0010817","","","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0010817|http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0010817","","http://purl.obolibrary.org/obo/GO_0009914","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0010817|http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007","false","hormone transport","gitIssue502","GO:0009914","GO_0009914","hormone transport","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009987","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0009987"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cellular process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0008150"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cellular process""},""numDescendants"":16.0,""numHierarchicalDescendants"":20.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002211"",""value"":""http://purl.obolibrary.org/obo/GO_0050794"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002211"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009987"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0009987""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050794"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0050794""},""type"":[""class"",""entity""]},""GO:0009987"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0009987"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0009987""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","20.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0008150","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0050794","16.0","http://purl.obolibrary.org/obo/GO_0008150","","","http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0008150","","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","false","cellular process","gitIssue502","GO:0009987","GO_0009987","cellular process","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0010817","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0010817"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0010817""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0065008"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0065008"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""regulation of hormone levels""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0065008"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""regulation of hormone levels""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0010817""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""GO:0010817"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0010817"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0010817""},""http://purl.obolibrary.org/obo/GO_0065008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological quality""},""curie"":{""type"":[""literal""],""value"":""GO:0065008""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0065008","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/GO_0065008","","","http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0065008","","http://purl.obolibrary.org/obo/GO_0010817","http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","false","regulation of hormone levels","gitIssue502","GO:0010817","GO_0010817","regulation of hormone levels","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0016301","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0016301"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0016301""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""kinase activity""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""kinase activity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0016301""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""GO:0016301"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0016301"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0016301""}}}","false","false","","false","","","0.0","class|entity","","","","","","","","false","","","","","","","","","0.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","false","false","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/GO_0016301","","false","kinase activity","gitIssue502","GO:0016301","GO_0016301","kinase activity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0016331","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0016331"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0016331""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048598""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048598""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0060429"",""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048598""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""morphogenesis of embryonic epithelium""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048598""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""morphogenesis of embryonic epithelium""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0001838"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0016331"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0016331""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0016331"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0016331"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0016331""},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0060429"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium development""},""curie"":{""type"":[""literal""],""value"":""GO:0060429""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001838"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic epithelial tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001838""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0002009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphogenesis of an epithelium""},""curie"":{""type"":[""literal""],""value"":""GO:0002009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048598","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0001838","0.0","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048598","","","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048598","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048598","","http://purl.obolibrary.org/obo/GO_0016331","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0060429|http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","morphogenesis of embryonic epithelium","gitIssue502","GO:0016331","GO_0016331","morphogenesis of embryonic epithelium","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0019226","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0019226"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0019226""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0050877"",""http://purl.obolibrary.org/obo/GO_0003008"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0050877"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0050877"",""http://purl.obolibrary.org/obo/GO_0003008"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0050877"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007154"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""transmission of nerve impulse""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0050877"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007154"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001508"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007268"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""transmission of nerve impulse""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/CL_0000540"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019226"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007154"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007154"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0001508"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001508"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0007268"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007268"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0019226""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0003008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""system process""},""curie"":{""type"":[""literal""],""value"":""GO:0003008""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050877"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system process""},""curie"":{""type"":[""literal""],""value"":""GO:0050877""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001508"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""action potential""},""curie"":{""type"":[""literal""],""value"":""GO:0001508""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000540"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neuron""},""curie"":{""type"":[""literal""],""value"":""CL:0000540""},""type"":[""class"",""entity""]},""GO:0019226"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0019226"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0019226""},""http://purl.obolibrary.org/obo/GO_0007268"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""chemical synaptic transmission""},""curie"":{""type"":[""literal""],""value"":""GO:0007268""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0001508|http://purl.obolibrary.org/obo/GO_0007268","","","","","http://purl.obolibrary.org/obo/GO_0050877|||","","true","","","","","","","","http://purl.obolibrary.org/obo/CL_0000540","0.0","http://purl.obolibrary.org/obo/GO_0050877","","","http://purl.obolibrary.org/obo/GO_0050877|http://purl.obolibrary.org/obo/GO_0003008|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0050877|http://purl.obolibrary.org/obo/GO_0007154","","http://purl.obolibrary.org/obo/GO_0019226","http://purl.obolibrary.org/obo/GO_0050877|http://purl.obolibrary.org/obo/GO_0003008|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987","false","transmission of nerve impulse","gitIssue502","GO:0019226","GO_0019226","transmission of nerve impulse","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0019953","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0019953"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0019953""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0000003"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""sexual reproduction""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""sexual reproduction""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007276"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019953"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0009566"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019953"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0019953""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007276"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gamete generation""},""curie"":{""type"":[""literal""],""value"":""GO:0007276""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0019953"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0019953"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0019953""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009566"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fertilization""},""curie"":{""type"":[""literal""],""value"":""GO:0009566""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0000003","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0007276|http://purl.obolibrary.org/obo/GO_0009566","0.0","http://purl.obolibrary.org/obo/GO_0000003","","","http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0000003","","http://purl.obolibrary.org/obo/GO_0019953","http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0008150","false","sexual reproduction","gitIssue502","GO:0019953","GO_0019953","sexual reproduction","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0021915","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0021915"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0021915""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0060429"",""http://purl.obolibrary.org/obo/GO_0009888""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0060429""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0060429"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0007399"",""http://purl.obolibrary.org/obo/GO_0048731"",""http://purl.obolibrary.org/obo/GO_0043009"",""http://purl.obolibrary.org/obo/GO_0009792"",""http://purl.obolibrary.org/obo/GO_0009790""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0060429"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007399"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0043009"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""neural tube development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0060429"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007399"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0043009"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""neural tube development""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0001841"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0021915"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007399"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007399"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0043009"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0043009"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0021915""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""GO:0021915"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0021915"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0021915""},""http://purl.obolibrary.org/obo/GO_0007399"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system development""},""curie"":{""type"":[""literal""],""value"":""GO:0007399""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0060429"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium development""},""curie"":{""type"":[""literal""],""value"":""GO:0060429""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009792"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development ending in birth or egg hatching""},""curie"":{""type"":[""literal""],""value"":""GO:0009792""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001841"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neural tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001841""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048731"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""system development""},""curie"":{""type"":[""literal""],""value"":""GO:0048731""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0043009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""chordate embryonic development""},""curie"":{""type"":[""literal""],""value"":""GO:0043009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/GO_0007399|http://purl.obolibrary.org/obo/GO_0043009","","","","","http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0060429||","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0001841","0.0","http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0060429","","","http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0060429|http://purl.obolibrary.org/obo/GO_0009888","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0060429|http://purl.obolibrary.org/obo/GO_0007399|http://purl.obolibrary.org/obo/GO_0043009","","http://purl.obolibrary.org/obo/GO_0021915","http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0060429|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0007399|http://purl.obolibrary.org/obo/GO_0048731|http://purl.obolibrary.org/obo/GO_0043009|http://purl.obolibrary.org/obo/GO_0009792|http://purl.obolibrary.org/obo/GO_0009790","false","neural tube development","gitIssue502","GO:0021915","GO_0021915","neural tube development","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0022414","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0022414"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0022414""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0000003""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0008150"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0000003"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""reproductive process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0008150"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""reproductive process""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/CL_0000039"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0022414"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0000003"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0022414""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""germ line cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000039""},""type"":[""class"",""entity""]},""GO:0022414"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0022414"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0022414""},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/GO_0000003","","","","","http://purl.obolibrary.org/obo/GO_0008150|","","true","","","","","","","","http://purl.obolibrary.org/obo/CL_0000039","3.0","http://purl.obolibrary.org/obo/GO_0008150","","","http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0000003","","http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0000003","false","reproductive process","gitIssue502","GO:0022414","GO_0022414","reproductive process","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0023052","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0023052"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0050789"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0050789"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""signaling""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0050789"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""signaling""},""numDescendants"":5.0,""numHierarchicalDescendants"":11.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007165"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0023052"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0023052""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007165"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signal transduction""},""curie"":{""type"":[""literal""],""value"":""GO:0007165""},""type"":[""class"",""entity""]},""GO:0023052"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0023052"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0023052""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","11.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0050789","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0007165","5.0","http://purl.obolibrary.org/obo/GO_0050789","","","http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0050789","","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","false","signaling","gitIssue502","GO:0023052","GO_0023052","signaling","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0023061","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0023061"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0023061""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0032940"",""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0140352"",""http://purl.obolibrary.org/obo/GO_0009987""],""directParent"":""http://purl.obolibrary.org/obo/GO_0032940"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0032940"",""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0140352"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0032940"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007267"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""signal release""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0032940"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007267"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""signal release""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007267"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007267"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0023061""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""GO:0023061"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0023061"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0023061""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032940"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""secretion by cell""},""curie"":{""type"":[""literal""],""value"":""GO:0032940""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0046903"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""secretion""},""curie"":{""type"":[""literal""],""value"":""GO:0046903""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007267"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell-cell signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0007267""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0140352"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""export from cell""},""curie"":{""type"":[""literal""],""value"":""GO:0140352""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/GO_0007267","","","","","http://purl.obolibrary.org/obo/GO_0032940|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0032940","","","http://purl.obolibrary.org/obo/GO_0032940|http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0140352|http://purl.obolibrary.org/obo/GO_0009987","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0032940|http://purl.obolibrary.org/obo/GO_0007267","","http://purl.obolibrary.org/obo/GO_0023061","http://purl.obolibrary.org/obo/GO_0032940|http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0140352|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","false","signal release","gitIssue502","GO:0023061","GO_0023061","signal release","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0030545","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0030545"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0030545""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0098772"",""directParent"":""http://purl.obolibrary.org/obo/GO_0098772"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0098772"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0098772"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""signaling receptor regulator activity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0098772"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""signaling receptor regulator activity""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0030545""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0030545"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0030545"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0030545""},""http://purl.obolibrary.org/obo/GO_0098772"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0098772""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0098772","","true","","","","","","","","","4.0","http://purl.obolibrary.org/obo/GO_0098772","","","http://purl.obolibrary.org/obo/GO_0098772","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0098772","","http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","false","signaling receptor regulator activity","gitIssue502","GO:0030545","GO_0030545","signaling receptor regulator activity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0030546","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0030546"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0030546""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0098772"",""http://purl.obolibrary.org/obo/GO_0140677""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0140677""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0098772"",""http://purl.obolibrary.org/obo/GO_0140677""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0140677""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""signaling receptor activator activity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0140677""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""signaling receptor activator activity""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0030546""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""GO:0030546"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0030546"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0030546""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0098772"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0098772""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0030545"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0030545""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0140677"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function activator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0140677""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0140677","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0140677","","","http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0098772|http://purl.obolibrary.org/obo/GO_0140677","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0140677","","http://purl.obolibrary.org/obo/GO_0030546","http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0098772|http://purl.obolibrary.org/obo/GO_0140677","false","signaling receptor activator activity","gitIssue502","GO:0030546","GO_0030546","signaling receptor activator activity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0032501","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0032501"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0008150"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""numDescendants"":9.0,""numHierarchicalDescendants"":29.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0032501""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0032501"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0032501"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0032501""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","29.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0008150","","true","","","","","","","","","9.0","http://purl.obolibrary.org/obo/GO_0008150","","","http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0008150","","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","false","multicellular organismal process","gitIssue502","GO:0032501","GO_0032501","multicellular organismal process","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0032502","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0032502"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""developmental process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0008150"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""developmental process""},""numDescendants"":33.0,""numHierarchicalDescendants"":35.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0004024"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021147"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004024"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032502"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/UBERON_0005423"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032502"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0032502""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004024"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""disease causes disruption of""},{""type"":[""literal""],""value"":""disease disrupts""}],""curie"":{""type"":[""literal""],""value"":""RO:0004024""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developing anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""GO:0032502"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0032502"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0032502""},""http://purl.obolibrary.org/obo/MONDO_0021147"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021147""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","35.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0008150","","true","","","","","","","","http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/UBERON_0005423","33.0","http://purl.obolibrary.org/obo/GO_0008150","","","http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0008150","","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","false","developmental process","gitIssue502","GO:0032502","GO_0032502","developmental process","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0032504","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0032504"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0032504""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0032501""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0032501""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multicellular organism reproduction""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0032501""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multicellular organism reproduction""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048609"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032504"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0032504""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""GO:0032504"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0032504"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0032504""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048609"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal reproductive process""},""curie"":{""type"":[""literal""],""value"":""GO:0048609""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0032501","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0048609","0.0","http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0032501","","","http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0032501","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0032501","","http://purl.obolibrary.org/obo/GO_0032504","http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0032501","false","multicellular organism reproduction","gitIssue502","GO:0032504","GO_0032504","multicellular organism reproduction","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0032940","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0032940"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0032940""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0140352"",""http://purl.obolibrary.org/obo/GO_0009987""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0140352""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0140352"",""http://purl.obolibrary.org/obo/GO_0009987""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0140352""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""secretion by cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0140352""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""secretion by cell""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0032940""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0046903"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""secretion""},""curie"":{""type"":[""literal""],""value"":""GO:0046903""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0032940"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0032940"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0032940""},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0140352"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""export from cell""},""curie"":{""type"":[""literal""],""value"":""GO:0140352""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0140352","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0140352","","","http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0140352|http://purl.obolibrary.org/obo/GO_0009987","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0140352","","http://purl.obolibrary.org/obo/GO_0032940","http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0140352|http://purl.obolibrary.org/obo/GO_0009987","false","secretion by cell","gitIssue502","GO:0032940","GO_0032940","secretion by cell","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0034220","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0034220"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0034220""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0006811"",""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0055085"",""http://purl.obolibrary.org/obo/GO_0009987""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0006811"",""http://purl.obolibrary.org/obo/GO_0055085""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0006811"",""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0055085"",""http://purl.obolibrary.org/obo/GO_0009987""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0006811"",""http://purl.obolibrary.org/obo/GO_0055085""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""monoatomic ion transmembrane transport""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0006811"",""http://purl.obolibrary.org/obo/GO_0055085""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""monoatomic ion transmembrane transport""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0042391"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0034220"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0034220""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""GO:0034220"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0034220"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0034220""},""http://purl.obolibrary.org/obo/GO_0055085"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transmembrane transport""},""curie"":{""type"":[""literal""],""value"":""GO:0055085""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0042391"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of membrane potential""},""curie"":{""type"":[""literal""],""value"":""GO:0042391""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0006811"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""monoatomic ion transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006811""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0006811|http://purl.obolibrary.org/obo/GO_0055085","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0042391","0.0","http://purl.obolibrary.org/obo/GO_0006811|http://purl.obolibrary.org/obo/GO_0055085","","","http://purl.obolibrary.org/obo/GO_0006811|http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0055085|http://purl.obolibrary.org/obo/GO_0009987","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0006811|http://purl.obolibrary.org/obo/GO_0055085","","http://purl.obolibrary.org/obo/GO_0034220","http://purl.obolibrary.org/obo/GO_0006811|http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0055085|http://purl.obolibrary.org/obo/GO_0009987","false","monoatomic ion transmembrane transport","gitIssue502","GO:0034220","GO_0034220","monoatomic ion transmembrane transport","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0035148","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0035148"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0035148""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048646"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0035239"",""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0048646"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0035239"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""tube formation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0048646"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0035239"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""tube formation""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0035239"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0035239"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0035148""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""GO:0035148"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0035148"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0035148""},""http://purl.obolibrary.org/obo/GO_0035295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035239"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0035239""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/GO_0035239","","","","","http://purl.obolibrary.org/obo/GO_0048646|","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/GO_0048646","","","http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0035239","","http://purl.obolibrary.org/obo/GO_0035148","http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0035239|http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","tube formation","gitIssue502","GO:0035148","GO_0035148","tube formation","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0035239","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0035239"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0035239""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009653"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0009653"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0035295"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""tube morphogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0009653"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0035295"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""tube morphogenesis""},""numDescendants"":1.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0035148"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0035239"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0035295"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0035295"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0035239""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035148"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0035148""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0035239"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0035239"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0035239""},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","http://purl.obolibrary.org/obo/GO_0035295","","","","","http://purl.obolibrary.org/obo/GO_0009653|","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0035148","1.0","http://purl.obolibrary.org/obo/GO_0009653","","","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0035295","","http://purl.obolibrary.org/obo/GO_0035239","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","tube morphogenesis","gitIssue502","GO:0035239","GO_0035239","tube morphogenesis","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0035295","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0035295"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048856"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0048856"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007275"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""tube development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0048856"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""tube development""},""numDescendants"":1.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0035239"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0035295"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007275"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0035295""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""GO:0035295"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0035295"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0035295""},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035239"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0035239""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","http://purl.obolibrary.org/obo/GO_0007275","","","","","http://purl.obolibrary.org/obo/GO_0048856|","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0035239","1.0","http://purl.obolibrary.org/obo/GO_0048856","","","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0007275","","http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","tube development","gitIssue502","GO:0035295","GO_0035295","tube development","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0038023","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0038023"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0038023""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""signaling receptor activity""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""signaling receptor activity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002213"",""value"":""http://purl.obolibrary.org/obo/GO_0048018"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002213"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0038023"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0038023""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""GO:0038023"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0038023"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0038023""},""http://purl.obolibrary.org/obo/GO_0048018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""receptor ligand activity""},""curie"":{""type"":[""literal""],""value"":""GO:0048018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","","0.0","class|entity","","","","","","","","false","","","","","","","","http://purl.obolibrary.org/obo/GO_0048018","0.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","false","false","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/GO_0038023","","false","signaling receptor activity","gitIssue502","GO:0038023","GO_0038023","signaling receptor activity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0040016","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0040016"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0040016""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0051301"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0051301"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0051301"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0051301"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0009790"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""embryonic cleavage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0051301"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""embryonic cleavage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0040016"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0009790"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0040016""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""GO:0040016"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0040016"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0040016""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051301"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell division""},""curie"":{""type"":[""literal""],""value"":""GO:0051301""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cleavage stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000107""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0009790","","","","","http://purl.obolibrary.org/obo/GO_0051301|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000107","0.0","http://purl.obolibrary.org/obo/GO_0051301","","","http://purl.obolibrary.org/obo/GO_0051301|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0051301|http://purl.obolibrary.org/obo/GO_0009790","","http://purl.obolibrary.org/obo/GO_0040016","http://purl.obolibrary.org/obo/GO_0051301|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","false","embryonic cleavage","gitIssue502","GO:0040016","GO_0040016","embryonic cleavage","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0042391","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0042391"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0042391""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0065008"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0065008"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""regulation of membrane potential""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0065008"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0034220"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""regulation of membrane potential""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0034220"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0034220"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0042391""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0065008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological quality""},""curie"":{""type"":[""literal""],""value"":""GO:0065008""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0034220"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""monoatomic ion transmembrane transport""},""curie"":{""type"":[""literal""],""value"":""GO:0034220""},""type"":[""class"",""entity""]},""GO:0042391"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0042391"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0042391""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/GO_0034220","","","","","http://purl.obolibrary.org/obo/GO_0065008|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0065008","","","http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0065008","","http://purl.obolibrary.org/obo/GO_0042391","http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","false","regulation of membrane potential","gitIssue502","GO:0042391","GO_0042391","regulation of membrane potential","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0043009","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0043009"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0043009""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009792"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009792"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009792"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0009792"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""chordate embryonic development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0009792"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""chordate embryonic development""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0021915"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0043009"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0043009""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""GO:0043009"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0043009"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0043009""},""http://purl.obolibrary.org/obo/GO_0009792"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development ending in birth or egg hatching""},""curie"":{""type"":[""literal""],""value"":""GO:0009792""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0021915"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neural tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0021915""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009792","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0021915","0.0","http://purl.obolibrary.org/obo/GO_0009792","","","http://purl.obolibrary.org/obo/GO_0009792|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009792","","http://purl.obolibrary.org/obo/GO_0043009","http://purl.obolibrary.org/obo/GO_0009792|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","false","chordate embryonic development","gitIssue502","GO:0043009","GO_0043009","chordate embryonic development","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0045202","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0045202"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0045202""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""synapse""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""synapse""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000066"",""value"":""http://purl.obolibrary.org/obo/GO_0099536"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000066"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0045202"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0045202""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""GO:0045202"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0045202"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0045202""},""http://purl.obolibrary.org/obo/GO_0099536"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""synaptic signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0099536""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000066""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","","0.0","class|entity","","","","","","","","false","","","","","","","","http://purl.obolibrary.org/obo/GO_0099536","0.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","false","false","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/GO_0045202","","false","synapse","gitIssue502","GO:0045202","GO_0045202","synapse","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0046879","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0046879"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0046879""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009914"",""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0010817"",""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0023061"",""http://purl.obolibrary.org/obo/GO_0032940"",""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0140352"",""http://purl.obolibrary.org/obo/GO_0009987""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0009914"",""http://purl.obolibrary.org/obo/GO_0023061""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009914"",""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0010817"",""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0023061"",""http://purl.obolibrary.org/obo/GO_0032940"",""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0140352"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0009914"",""http://purl.obolibrary.org/obo/GO_0023061""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hormone secretion""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0009914"",""http://purl.obolibrary.org/obo/GO_0023061""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hormone secretion""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0046879"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0046879""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological quality""},""curie"":{""type"":[""literal""],""value"":""GO:0065008""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0010817"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of hormone levels""},""curie"":{""type"":[""literal""],""value"":""GO:0010817""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032940"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""secretion by cell""},""curie"":{""type"":[""literal""],""value"":""GO:0032940""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signal release""},""curie"":{""type"":[""literal""],""value"":""GO:0023061""},""type"":[""class"",""entity""]},""GO:0046879"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0046879"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0046879""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0046903"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""secretion""},""curie"":{""type"":[""literal""],""value"":""GO:0046903""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009914"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hormone transport""},""curie"":{""type"":[""literal""],""value"":""GO:0009914""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007267"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell-cell signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0007267""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0140352"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""export from cell""},""curie"":{""type"":[""literal""],""value"":""GO:0140352""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009914|http://purl.obolibrary.org/obo/GO_0023061","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0002368","0.0","http://purl.obolibrary.org/obo/GO_0009914|http://purl.obolibrary.org/obo/GO_0023061","","","http://purl.obolibrary.org/obo/GO_0009914|http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0010817|http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0023061|http://purl.obolibrary.org/obo/GO_0032940|http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0140352|http://purl.obolibrary.org/obo/GO_0009987","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009914|http://purl.obolibrary.org/obo/GO_0023061","","http://purl.obolibrary.org/obo/GO_0046879","http://purl.obolibrary.org/obo/GO_0009914|http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0010817|http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0023061|http://purl.obolibrary.org/obo/GO_0032940|http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0140352|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789","false","hormone secretion","gitIssue502","GO:0046879","GO_0046879","hormone secretion","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0046903","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0046903"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0046903""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0006810"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0006810"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""secretion""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0006810"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""secretion""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0046903"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0046903""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0046903"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0046903"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0046903""},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0006810","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0002530","3.0","http://purl.obolibrary.org/obo/GO_0006810","","","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0006810","","http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150","false","secretion","gitIssue502","GO:0046903","GO_0046903","secretion","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048018","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048018"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048018""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0005515"",""http://purl.obolibrary.org/obo/GO_0030546"",""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0098772"",""http://purl.obolibrary.org/obo/GO_0140677""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0030546""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0005515"",""http://purl.obolibrary.org/obo/GO_0030546"",""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0098772"",""http://purl.obolibrary.org/obo/GO_0140677"",""http://purl.obolibrary.org/obo/GO_0007165"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0050794"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0051716"",""http://purl.obolibrary.org/obo/GO_0050896""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0030546"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007165"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""receptor ligand activity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0030546"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007165"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002213"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0038023"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""receptor ligand activity""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007165"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007165"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002213"",""value"":""http://purl.obolibrary.org/obo/GO_0038023"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002213"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0038023"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048018""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051716"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0051716""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0098772"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0098772""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050794"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0050794""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0005102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor binding""},""curie"":{""type"":[""literal""],""value"":""GO:0005102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007165"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signal transduction""},""curie"":{""type"":[""literal""],""value"":""GO:0007165""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0005515"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""protein binding""},""curie"":{""type"":[""literal""],""value"":""GO:0005515""},""type"":[""class"",""entity""]},""GO:0048018"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0048018"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0048018""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050896"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0050896""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0030545"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0030545""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0030546"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor activator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0030546""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0140677"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function activator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0140677""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0038023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor activity""},""curie"":{""type"":[""literal""],""value"":""GO:0038023""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/GO_0007165|http://purl.obolibrary.org/obo/GO_0038023","","","","","http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0030546||","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0030546","","","http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0005515|http://purl.obolibrary.org/obo/GO_0030546|http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0098772|http://purl.obolibrary.org/obo/GO_0140677","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0030546|http://purl.obolibrary.org/obo/GO_0007165","","http://purl.obolibrary.org/obo/GO_0048018","http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0005515|http://purl.obolibrary.org/obo/GO_0030546|http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0098772|http://purl.obolibrary.org/obo/GO_0140677|http://purl.obolibrary.org/obo/GO_0007165|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0050794|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0051716|http://purl.obolibrary.org/obo/GO_0050896","false","receptor ligand activity","gitIssue502","GO:0048018","GO_0048018","receptor ligand activity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048332","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048332"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048332""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048729"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0007498""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0048729"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007498"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""mesoderm morphogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0048729"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007498"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""mesoderm morphogenesis""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0001707"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048332"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007498"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007498"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048332""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""GO:0048332"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0048332"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0048332""},""http://purl.obolibrary.org/obo/GO_0001707"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""mesoderm formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001707""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007498"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""mesoderm development""},""curie"":{""type"":[""literal""],""value"":""GO:0007498""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/GO_0007498","","","","","http://purl.obolibrary.org/obo/GO_0048729|","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0001707","0.0","http://purl.obolibrary.org/obo/GO_0048729","","","http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0007498","","http://purl.obolibrary.org/obo/GO_0048332","http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0007498","false","mesoderm morphogenesis","gitIssue502","GO:0048332","GO_0048332","mesoderm morphogenesis","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048513","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048513"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048513""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048856"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0048856"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""animal organ development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0048856"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""animal organ development""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048513"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048513""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""GO:0048513"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0048513"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0048513""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organogenesis stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000111""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0048856","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000111","0.0","http://purl.obolibrary.org/obo/GO_0048856","","","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048856","","http://purl.obolibrary.org/obo/GO_0048513","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","false","animal organ development","gitIssue502","GO:0048513","GO_0048513","animal organ development","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048598","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048598"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009653"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0009653"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0009790"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0009653"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""numDescendants"":2.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0004021"",""value"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004021"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048598"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0009790"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048598""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004021"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""disease caused by disruption of""},{""type"":[""literal""],""value"":""disease has basis in disruption of""}],""curie"":{""type"":[""literal""],""value"":""RO:0004021""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019755"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019755""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""GO:0048598"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0048598"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0048598""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","http://purl.obolibrary.org/obo/GO_0009790","","","","","http://purl.obolibrary.org/obo/GO_0009653|","","true","","","","","","","","http://purl.obolibrary.org/obo/MONDO_0019755","2.0","http://purl.obolibrary.org/obo/GO_0009653","","","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0009790","","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","embryonic morphogenesis","gitIssue502","GO:0048598","GO_0048598","embryonic morphogenesis","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048609","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048609"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048609""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0022414"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0022414"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0022414"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0032504"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0022414"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0032504"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multicellular organismal reproductive process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0022414"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032504"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multicellular organismal reproductive process""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0032504"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032504"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048609""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""GO:0048609"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0048609"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0048609""},""http://purl.obolibrary.org/obo/GO_0032504"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0032504""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0022414"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive process""},""curie"":{""type"":[""literal""],""value"":""GO:0022414""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/GO_0032504","","","","","http://purl.obolibrary.org/obo/GO_0022414|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0022414","","","http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/GO_0032504","","http://purl.obolibrary.org/obo/GO_0048609","http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0032504|http://purl.obolibrary.org/obo/GO_0032501","false","multicellular organismal reproductive process","gitIssue502","GO:0048609","GO_0048609","multicellular organismal reproductive process","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048646","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048646"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0032502"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0032502"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0009653"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0032502"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009653"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""numDescendants"":8.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0009653"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009653"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048646""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""GO:0048646"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0048646"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0048646""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","http://purl.obolibrary.org/obo/GO_0009653","","","","","http://purl.obolibrary.org/obo/GO_0032502|","","true","","","","","","","","","8.0","http://purl.obolibrary.org/obo/GO_0032502","","","http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0009653","","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856","false","anatomical structure formation involved in morphogenesis","gitIssue502","GO:0048646","GO_0048646","anatomical structure formation involved in morphogenesis","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048729","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048729"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009653"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0009888""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0009653"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0009888"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0009653"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009888"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""numDescendants"":4.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0009888"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009888"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048729""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""GO:0048729"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0048729"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0048729""},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","http://purl.obolibrary.org/obo/GO_0009888","","","","","http://purl.obolibrary.org/obo/GO_0009653|","","true","","","","","","","","","4.0","http://purl.obolibrary.org/obo/GO_0009653","","","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0009888","","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0009888","false","tissue morphogenesis","gitIssue502","GO:0048729","GO_0048729","tissue morphogenesis","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048731","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048731"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048731""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048856"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0048856"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007275"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""system development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0048856"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""system development""},""numDescendants"":1.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007275"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048731""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""GO:0048731"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0048731"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0048731""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/GO_0007275","","","","","http://purl.obolibrary.org/obo/GO_0048856|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0048856","","","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0007275","","http://purl.obolibrary.org/obo/GO_0048731","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","system development","gitIssue502","GO:0048731","GO_0048731","system development","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048856","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048856"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0032502"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0032502"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anatomical structure development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0032502"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""numDescendants"":14.0,""numHierarchicalDescendants"":34.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0009653"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048856"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048856""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""GO:0048856"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0048856"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0048856""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","34.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0032502","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0009653","14.0","http://purl.obolibrary.org/obo/GO_0032502","","","http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0032502","","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","false","anatomical structure development","gitIssue502","GO:0048856","GO_0048856","anatomical structure development","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0050789","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0050789"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0065007"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0065007"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""regulation of biological process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0065007"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002211"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008150"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""numDescendants"":8.0,""numHierarchicalDescendants"":13.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002211"",""value"":""http://purl.obolibrary.org/obo/GO_0008150"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002211"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008150"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0050789""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""GO:0050789"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0050789"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0050789""}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","13.0","class|entity","http://purl.obolibrary.org/obo/GO_0008150","","","","","http://purl.obolibrary.org/obo/GO_0065007|","","true","","","","","","","","","8.0","http://purl.obolibrary.org/obo/GO_0065007","","","http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0065007","","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","false","regulation of biological process","gitIssue502","GO:0050789","GO_0050789","regulation of biological process","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0050794","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0050794"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0050794""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0050789"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0050789"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""regulation of cellular process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0050789"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002211"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009987"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""regulation of cellular process""},""numDescendants"":1.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002211"",""value"":""http://purl.obolibrary.org/obo/GO_0009987"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002211"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009987"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0050794""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""GO:0050794"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0050794"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0050794""},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","http://purl.obolibrary.org/obo/GO_0009987","","","","","http://purl.obolibrary.org/obo/GO_0050789|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0050789","","","http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0050789","","http://purl.obolibrary.org/obo/GO_0050794","http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","false","regulation of cellular process","gitIssue502","GO:0050794","GO_0050794","regulation of cellular process","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0050877","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0050877"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0050877""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0003008"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0003008"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0003008"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0003008"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""nervous system process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0003008"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""nervous system process""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0050877"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0050877""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0050877"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0050877"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0050877""},""http://purl.obolibrary.org/obo/GO_0003008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""system process""},""curie"":{""type"":[""literal""],""value"":""GO:0003008""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0003008","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0001016","1.0","http://purl.obolibrary.org/obo/GO_0003008","","","http://purl.obolibrary.org/obo/GO_0003008|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0003008","","http://purl.obolibrary.org/obo/GO_0050877","http://purl.obolibrary.org/obo/GO_0003008|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150","false","nervous system process","gitIssue502","GO:0050877","GO_0050877","nervous system process","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0050896","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0050896"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0050896""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""response to stimulus""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0008150"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""response to stimulus""},""numDescendants"":1.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0050896""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0050896"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0050896"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0050896""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0008150","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0008150","","","http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0008150","","http://purl.obolibrary.org/obo/GO_0050896","http://purl.obolibrary.org/obo/GO_0008150","false","response to stimulus","gitIssue502","GO:0050896","GO_0050896","response to stimulus","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0051179","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0051179"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""localization""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0008150"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""localization""},""numDescendants"":11.0,""numHierarchicalDescendants"":11.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0051179""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0051179"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0051179"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0051179""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","11.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0008150","","true","","","","","","","","","11.0","http://purl.obolibrary.org/obo/GO_0008150","","","http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0008150","","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","false","localization","gitIssue502","GO:0051179","GO_0051179","localization","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0051234","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0051234"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0051179"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0051179"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""establishment of localization""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0051179"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""numDescendants"":10.0,""numHierarchicalDescendants"":10.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0051234""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0051234"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0051234"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0051234""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","10.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0051179","","true","","","","","","","","","10.0","http://purl.obolibrary.org/obo/GO_0051179","","","http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0051179","","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150","false","establishment of localization","gitIssue502","GO:0051234","GO_0051234","establishment of localization","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0051301","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0051301"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0051301""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009987"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0009987"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cell division""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0009987"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cell division""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0051301""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""GO:0051301"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0051301"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0051301""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009987","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0009987","","","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009987","","http://purl.obolibrary.org/obo/GO_0051301","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150","false","cell division","gitIssue502","GO:0051301","GO_0051301","cell division","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0051716","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0051716"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0051716""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0050896""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0050896""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0050896""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0050896""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cellular response to stimulus""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0050896""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cellular response to stimulus""},""numDescendants"":0.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007165"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0051716"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0051716""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007165"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signal transduction""},""curie"":{""type"":[""literal""],""value"":""GO:0007165""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050896"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0050896""},""type"":[""class"",""entity""]},""GO:0051716"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0051716"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0051716""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0050896","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0007165","0.0","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0050896","","","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0050896","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0050896","","http://purl.obolibrary.org/obo/GO_0051716","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0050896","false","cellular response to stimulus","gitIssue502","GO:0051716","GO_0051716","cellular response to stimulus","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0055085","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0055085"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0055085""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009987""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0009987""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009987""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0009987""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""transmembrane transport""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0009987""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""transmembrane transport""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0055085""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0055085"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0055085"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0055085""},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0009987","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0009987","","","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009987","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0009987","","http://purl.obolibrary.org/obo/GO_0055085","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009987","false","transmembrane transport","gitIssue502","GO:0055085","GO_0055085","transmembrane transport","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0060429","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0060429"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0060429""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009888"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0009888"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""epithelium development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0009888"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""epithelium development""},""numDescendants"":1.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0002009"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0060429"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0060429""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""GO:0060429"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0060429"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0060429""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0002009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphogenesis of an epithelium""},""curie"":{""type"":[""literal""],""value"":""GO:0002009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009888","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0002009","1.0","http://purl.obolibrary.org/obo/GO_0009888","","","http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009888","","http://purl.obolibrary.org/obo/GO_0060429","http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","false","epithelium development","gitIssue502","GO:0060429","GO_0060429","epithelium development","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0060562","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0060562"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0060562""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0035239""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0035239""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0060429"",""http://purl.obolibrary.org/obo/GO_0035239"",""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0035239""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""epithelial tube morphogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0035239""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""epithelial tube morphogenesis""},""numDescendants"":0.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0072175"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0060562"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0060562""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""GO:0060562"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0060562"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0060562""},""http://purl.obolibrary.org/obo/GO_0072175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelial tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0072175""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0060429"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium development""},""curie"":{""type"":[""literal""],""value"":""GO:0060429""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0002009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphogenesis of an epithelium""},""curie"":{""type"":[""literal""],""value"":""GO:0002009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035239"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0035239""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0035239","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0072175","0.0","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0035239","","","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0035239","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0035239","","http://purl.obolibrary.org/obo/GO_0060562","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0060429|http://purl.obolibrary.org/obo/GO_0035239|http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","epithelial tube morphogenesis","gitIssue502","GO:0060562","GO_0060562","epithelial tube morphogenesis","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0065007","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0065007"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""biological regulation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0008150"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""biological regulation""},""numDescendants"":15.0,""numHierarchicalDescendants"":19.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0065007""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0065007"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0065007"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0065007""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","19.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0008150","","true","","","","","","","","","15.0","http://purl.obolibrary.org/obo/GO_0008150","","","http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0008150","","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150","false","biological regulation","gitIssue502","GO:0065007","GO_0065007","biological regulation","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0065008","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0065008"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0065008""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0065007"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0065007"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""regulation of biological quality""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0065007"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""regulation of biological quality""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0065008""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0065008"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0065008"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0065008""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0065007","","true","","","","","","","","","5.0","http://purl.obolibrary.org/obo/GO_0065007","","","http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0065007","","http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","false","regulation of biological quality","gitIssue502","GO:0065008","GO_0065008","regulation of biological quality","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0072175","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0072175"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0072175""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0035148"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0035148"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0035148"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0035239"",""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0060562"",""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0060429""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0035148"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0060562"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""epithelial tube formation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0035148"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0060562"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""epithelial tube formation""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0060562"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0060562"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0072175""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035148"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0035148""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""GO:0072175"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0072175"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0072175""},""http://purl.obolibrary.org/obo/GO_0060429"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium development""},""curie"":{""type"":[""literal""],""value"":""GO:0060429""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0002009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphogenesis of an epithelium""},""curie"":{""type"":[""literal""],""value"":""GO:0002009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0060562"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelial tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0060562""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035239"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0035239""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/GO_0060562","","","","","http://purl.obolibrary.org/obo/GO_0035148|","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/GO_0035148","","","http://purl.obolibrary.org/obo/GO_0035148|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0035148|http://purl.obolibrary.org/obo/GO_0060562","","http://purl.obolibrary.org/obo/GO_0072175","http://purl.obolibrary.org/obo/GO_0035148|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0035239|http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0060562|http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0060429","false","epithelial tube formation","gitIssue502","GO:0072175","GO_0072175","epithelial tube formation","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0098772","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0098772"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0098772""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0005515"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""numDescendants"":6.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0005515"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0005515"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0098772""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0005515"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""protein binding""},""curie"":{""type"":[""literal""],""value"":""GO:0005515""},""type"":[""class"",""entity""]},""GO:0098772"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0098772"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0098772""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","http://purl.obolibrary.org/obo/GO_0005515","","","","","","","false","","","","","","","","","6.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","true","false","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/GO_0098772","","false","molecular function regulator activity","gitIssue502","GO:0098772","GO_0098772","molecular function regulator activity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0098916","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0098916"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0098916""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0099537"",""http://purl.obolibrary.org/obo/GO_0099536"",""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""directParent"":""http://purl.obolibrary.org/obo/GO_0099537"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0099537"",""http://purl.obolibrary.org/obo/GO_0099536"",""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0099537"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anterograde trans-synaptic signaling""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0099537"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anterograde trans-synaptic signaling""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0098916""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0099537"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trans-synaptic signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0099537""},""type"":[""class"",""entity""]},""GO:0098916"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0098916"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0098916""},""http://purl.obolibrary.org/obo/GO_0099536"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""synaptic signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0099536""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007267"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell-cell signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0007267""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0099537","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0099537","","","http://purl.obolibrary.org/obo/GO_0099537|http://purl.obolibrary.org/obo/GO_0099536|http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0099537","","http://purl.obolibrary.org/obo/GO_0098916","http://purl.obolibrary.org/obo/GO_0099537|http://purl.obolibrary.org/obo/GO_0099536|http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","false","anterograde trans-synaptic signaling","gitIssue502","GO:0098916","GO_0098916","anterograde trans-synaptic signaling","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0099536","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0099536"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0099536""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""directParent"":""http://purl.obolibrary.org/obo/GO_0007267"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0007267"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""synaptic signaling""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0007267"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000066"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0045202"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""synaptic signaling""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000066"",""value"":""http://purl.obolibrary.org/obo/GO_0045202"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000066"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0045202"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0099536""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0045202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""synapse""},""curie"":{""type"":[""literal""],""value"":""GO:0045202""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007267"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell-cell signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0007267""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""GO:0099536"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0099536"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0099536""},""http://purl.obolibrary.org/obo/BFO_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000066""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/GO_0045202","","","","","http://purl.obolibrary.org/obo/GO_0007267|","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/GO_0007267","","","http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0007267","","http://purl.obolibrary.org/obo/GO_0099536","http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","false","synaptic signaling","gitIssue502","GO:0099536","GO_0099536","synaptic signaling","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0099537","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0099537"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0099537""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0099536"",""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""directParent"":""http://purl.obolibrary.org/obo/GO_0099536"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0099536"",""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0099536"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""trans-synaptic signaling""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0099536"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""trans-synaptic signaling""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0099537""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0099536"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""synaptic signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0099536""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007267"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell-cell signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0007267""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""GO:0099537"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0099537"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0099537""},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0099536","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/GO_0099536","","","http://purl.obolibrary.org/obo/GO_0099536|http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0099536","","http://purl.obolibrary.org/obo/GO_0099537","http://purl.obolibrary.org/obo/GO_0099536|http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","false","trans-synaptic signaling","gitIssue502","GO:0099537","GO_0099537","trans-synaptic signaling","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0140352","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0140352"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0140352""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009987""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0009987""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009987""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0009987""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""export from cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0009987""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""export from cell""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0140352""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0140352"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0140352"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0140352""},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0009987","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0009987","","","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009987","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0009987","","http://purl.obolibrary.org/obo/GO_0140352","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009987","false","export from cell","gitIssue502","GO:0140352","GO_0140352","export from cell","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/GO_0140677","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0140677"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0140677""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0098772"",""directParent"":""http://purl.obolibrary.org/obo/GO_0098772"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0098772"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0098772"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""molecular function activator activity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0098772"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""molecular function activator activity""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0140677""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GO:0140677"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0140677"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0140677""},""http://purl.obolibrary.org/obo/GO_0098772"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0098772""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0098772","","true","","","","","","","","","4.0","http://purl.obolibrary.org/obo/GO_0098772","","","http://purl.obolibrary.org/obo/GO_0098772","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0098772","","http://purl.obolibrary.org/obo/GO_0140677","http://purl.obolibrary.org/obo/GO_0098772","false","molecular function activator activity","gitIssue502","GO:0140677","GO_0140677","molecular function activator activity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/HP_0001513","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/HP_0001513"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""HP:0001513""},""definition"":{""type"":[""literal""],""value"":""Accumulation of substantial excess body fat.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Accumulation of substantial excess body fat.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Obesity""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Obesity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0004029"",""value"":""http://purl.obolibrary.org/obo/MONDO_0011122"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004029"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/HP_0001513"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Accumulation of substantial excess body fat.""},false],""shortForm"":{""type"":[""literal""],""value"":""HP_0001513""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0004029"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has feature""},""curie"":{""type"":[""literal""],""value"":""RO:0004029""},""type"":[""property"",""objectProperty"",""entity""]},""HP:0001513"":{""url"":""http://purl.obolibrary.org/obo/HP_0001513"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""HP:0001513""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0011122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""obesity disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0011122""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000115","","","false","","Accumulation of substantial excess body fat.","","","","","","http://purl.obolibrary.org/obo/MONDO_0011122","0.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","false","false","","","","false","","Accumulation of substantial excess body fat.","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/HP_0001513","","false","Obesity","gitIssue502","HP:0001513","HP_0001513","Obesity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0000001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0000001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OGMS:0000031""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OGMS:0000031""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:4""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0000408""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0000408""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:799.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D004194""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""EFO:0000408""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C2991""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OGMS:0000031""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:377788""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:64572001""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""EFO:0000408""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0012634""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C2991""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""condition""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease or disorder, non-neoplastic""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""diseases""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""diseases and disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""literal""],""value"":""medical condition""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""other disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0000001""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disease""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000016"",""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D004194"",""http://identifiers.org/snomedct/64572001"",""http://linkedlifedata.com/resource/umls/id/C0012634"",""http://purl.obolibrary.org/obo/DOID_4"",""http://purl.obolibrary.org/obo/NCIT_C2991"",""http://www.orpha.net/ORDO/Orphanet_377788""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disease""},""numDescendants"":32.0,""numHierarchicalDescendants"":32.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OGMS:0000031""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:4""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0000408""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0000408""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:799.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D004194""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""EFO:0000408""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C2991""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OGMS:0000031""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:377788""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:64572001""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""EFO:0000408""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0012634""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C2991""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""condition""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease or disorder, non-neoplastic""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""diseases""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""diseases and disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""literal""],""value"":""medical condition""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""other disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""literal""],""value"":""MONDO:0000001""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0000001""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""condition""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease or disorder, non-neoplastic""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""diseases""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""diseases and disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""literal""],""value"":""medical condition""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""other disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DOID_4"":{""url"":""http://purl.obolibrary.org/obo/DOID_4"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:4""},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""SCTID:64572001"":{""url"":""http://snomed.info/id/64572001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:64572001""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""DOID:4"":{""url"":""http://purl.obolibrary.org/obo/DOID_4"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:4""},""http://purl.obolibrary.org/obo/NCIT_C2991"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C2991"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C2991""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""EFO:0000408"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0000408"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0000408""},""Orphanet:377788"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d377788"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:377788""},""NCIT:C2991"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C2991"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C2991""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""OGMS:0000031"":{""url"":""http://purl.obolibrary.org/obo/OGMS_0000031"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OGMS:0000031""},""UMLS:C0012634"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0012634"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0012634""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0000001"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0000001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0000001""},""http://www.orpha.net/ORDO/Orphanet_377788"":{""url"":""http://www.orpha.net/ORDO/Orphanet_377788"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:377788""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""MESH:D004194"":{""url"":""http://id.nlm.nih.gov/mesh/D004194"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D004194""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D004194|http://identifiers.org/snomedct/64572001|http://linkedlifedata.com/resource/umls/id/C0012634|http://purl.obolibrary.org/obo/DOID_4|http://purl.obolibrary.org/obo/NCIT_C2991|http://www.orpha.net/ORDO/Orphanet_377788","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","32.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0000001","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000016","","true","","A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.","","","","","","","32.0","http://purl.obolibrary.org/obo/BFO_0000016","","","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","condition|disease|disease or disorder|disease or disorder, non-neoplastic|diseases|diseases and disorders|disorder|disorders|medical condition|other disease","DOID:4|EFO:0000408|ICD9:799.9|MESH:D004194|NCIT:C2991|OGMS:0000031|Orphanet:377788|SCTID:64572001|UMLS:C0012634","condition|disease|disease or disorder|disease or disorder, non-neoplastic|diseases|diseases and disorders|disorder|disorders|medical condition|other disease","false","","A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000016","","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","disease","gitIssue502","MONDO:0000001","MONDO_0000001","disease","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002146","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0002146"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0002146""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:P378""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002259"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0005151""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002259"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MESH:D007006""},{""type"":[""literal""],""value"":""NCIT:C9227/inferred""}]}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002259"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0005151""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002259"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MESH:D007006""},{""type"":[""literal""],""value"":""NCIT:C9227/inferred""}]}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:P378""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:1924""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:253.4""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D007006""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C9227""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:48130008""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0020619""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C9227""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadotropin deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C9227""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C9227""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0002146""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hypogonadism""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002259"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MESH:D007006""},{""type"":[""literal""],""value"":""NCIT:C9227/inferred""}]}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D007006"",""http://identifiers.org/snomedct/48130008"",""http://linkedlifedata.com/resource/umls/id/C0020619"",""http://purl.obolibrary.org/obo/DOID_1924"",""http://purl.obolibrary.org/obo/NCIT_C9227""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hypogonadism""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:P378""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:1924""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:253.4""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D007006""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C9227""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:48130008""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0020619""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C9227""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadotropin deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C9227""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C9227""}}]},{""type"":[""literal""],""value"":""MONDO:0002146""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0002146""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadotropin deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C9227""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C9227""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/MONDO_0002259"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonadal disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002259""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C9227"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C9227"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C9227""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DOID_1924"":{""url"":""http://purl.obolibrary.org/obo/DOID_1924"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:1924""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""MESH:D007006"":{""url"":""http://id.nlm.nih.gov/mesh/D007006"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D007006""},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""UMLS:C0020619"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0020619"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0020619""},""NCIT:C9227"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C9227"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C9227""},""DOID:1924"":{""url"":""http://purl.obolibrary.org/obo/DOID_1924"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:1924""},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0002146"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0002146"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0002146""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""SCTID:48130008"":{""url"":""http://snomed.info/id/48130008"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:48130008""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D007006|http://identifiers.org/snomedct/48130008|http://linkedlifedata.com/resource/umls/id/C0020619|http://purl.obolibrary.org/obo/DOID_1924|http://purl.obolibrary.org/obo/NCIT_C9227","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0002146","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0002259","","true","","A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.","","","","","","","3.0","http://purl.obolibrary.org/obo/MONDO_0002259","","","http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0005151","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","gonadotropin deficiency|hypogonadotropism","DOID:1924|ICD9:253.4|MESH:D007006|NCIT:C9227|SCTID:48130008|UMLS:C0020619","gonadotropin deficiency|hypogonadotropism","false","","A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0002259","","http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0005151","false","hypogonadism","gitIssue502","MONDO:0002146","MONDO_0002146","hypogonadism","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002254","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0002254"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0002254""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C28193""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C28193""}}]},""http://purl.org/dc/terms/conformsTo"":""http://purl.obolibrary.org/obo/mondo/patterns/syndromic.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:225""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D013577""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:225""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C28193""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:225""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OGMS:0000086""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0039082""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:225""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C28193""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""cluster, symptom""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""clusters, symptom""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""symptom cluster""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""symptom clusters""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""NCIT:C28193""},{""type"":[""literal""],""value"":""OGMS:0000086""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome associated with disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromes""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0002254""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#harrisons_view"",""http://purl.obolibrary.org/obo/mondo#rare_grouping""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""syndromic disease""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021127"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021127"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D013577"",""http://linkedlifedata.com/resource/umls/id/C0039082"",""http://purl.obolibrary.org/obo/DOID_225"",""http://purl.obolibrary.org/obo/NCIT_C28193""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""syndromic disease""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021127"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021127"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C28193""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:225""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D013577""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:225""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C28193""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:225""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OGMS:0000086""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0039082""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:225""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C28193""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""cluster, symptom""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""clusters, symptom""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""symptom cluster""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""symptom clusters""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""NCIT:C28193""},{""type"":[""literal""],""value"":""OGMS:0000086""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome associated with disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromes""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""literal""],""value"":""MONDO:0002254""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0002254""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""cluster, symptom""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""clusters, symptom""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""symptom cluster""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""symptom clusters""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""NCIT:C28193""},{""type"":[""literal""],""value"":""OGMS:0000086""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome associated with disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromes""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""NCIT:C28193"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C28193"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C28193""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DOID_225"":{""url"":""http://purl.obolibrary.org/obo/DOID_225"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:225""},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""DOID:225"":{""url"":""http://purl.obolibrary.org/obo/DOID_225"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:225""},""http://purl.obolibrary.org/obo/MONDO_0021127"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has a syndromic presentation""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021127""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C28193"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C28193"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C28193""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""UMLS:C0039082"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0039082"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0039082""},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""MONDO:0002254"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0002254"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0002254""},""OGMS:0000086"":{""url"":""http://purl.obolibrary.org/obo/OGMS_0000086"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OGMS:0000086""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""MESH:D013577"":{""url"":""http://id.nlm.nih.gov/mesh/D013577"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D013577""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D013577|http://linkedlifedata.com/resource/umls/id/C0039082|http://purl.obolibrary.org/obo/DOID_225|http://purl.obolibrary.org/obo/NCIT_C28193","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/MONDO_0021127","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0002254","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0700096|","http://purl.obolibrary.org/obo/mondo#harrisons_view|http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.","","","","","http://purl.obolibrary.org/obo/mondo/patterns/syndromic.yaml","","2.0","http://purl.obolibrary.org/obo/MONDO_0700096","","","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","cluster, symptom|clusters, symptom|symptom cluster|symptom clusters|syndrome|syndrome associated with disease or disorder|syndromes|syndromic disease|syndromic disease or disorder","DOID:225|MESH:D013577|NCIT:C28193|OGMS:0000086|UMLS:C0039082","cluster, symptom|clusters, symptom|symptom cluster|symptom clusters|syndrome|syndrome associated with disease or disorder|syndromes|syndromic disease|syndromic disease or disorder","false","","A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700096","","http://purl.obolibrary.org/obo/MONDO_0002254","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","syndromic disease","gitIssue502","MONDO:0002254","MONDO_0002254","syndromic disease","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002259","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0002259"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0002259""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A non-neoplastic or neoplastic disorder that affects the testis or the ovary.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:P378""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0005151""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0005039"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MESH:D006058""}]}]}],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0005151""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0005039"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MESH:D006058""}]}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A non-neoplastic or neoplastic disorder that affects the testis or the ovary.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:P378""}}]},""http://purl.org/dc/terms/conformsTo"":[""http://purl.obolibrary.org/obo/mondo/patterns/location.yaml"",""http://purl.obolibrary.org/obo/mondo/patterns/location_top.yaml""],""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:2277""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D006058""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C26786""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0018050""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of gonad""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of gonad""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of gonad""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of gonads""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonad disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonad disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadal disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadal disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0002259""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gonadal disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0005039"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MESH:D006058""}]}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0000001"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D006058"",""http://linkedlifedata.com/resource/umls/id/C0018050"",""http://purl.obolibrary.org/obo/DOID_2277"",""http://purl.obolibrary.org/obo/NCIT_C26786""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gonadal disorder""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A non-neoplastic or neoplastic disorder that affects the testis or the ovary.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:P378""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:2277""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D006058""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C26786""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0018050""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of gonad""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of gonad""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of gonad""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of gonads""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonad disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonad disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadal disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadal disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]},{""type"":[""literal""],""value"":""MONDO:0002259""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0002259""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of gonad""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of gonad""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of gonad""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of gonads""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonad disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonad disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadal disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadal disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""DOID:2277"":{""url"":""http://purl.obolibrary.org/obo/DOID_2277"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:2277""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DOID_2277"":{""url"":""http://purl.obolibrary.org/obo/DOID_2277"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:2277""},""http://purl.obolibrary.org/obo/NCIT_C26786"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C26786"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C26786""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0002259"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0002259"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0002259""},""NCIT:C26786"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C26786"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C26786""},""MESH:D006058"":{""url"":""http://id.nlm.nih.gov/mesh/D006058"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D006058""},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""UMLS:C0018050"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0018050"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0018050""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000991"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonad""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000991""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D006058|http://linkedlifedata.com/resource/umls/id/C0018050|http://purl.obolibrary.org/obo/DOID_2277|http://purl.obolibrary.org/obo/NCIT_C26786","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000991","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0002259","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0005151|","","true","","A non-neoplastic or neoplastic disorder that affects the testis or the ovary.","","","","","http://purl.obolibrary.org/obo/mondo/patterns/location.yaml|http://purl.obolibrary.org/obo/mondo/patterns/location_top.yaml","","4.0","http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0005151","","","http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0005151","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","disease of gonad|disease or disorder of gonad|disorder of gonad|disorder of gonads|gonad disease|gonad disease or disorder|gonadal disorder|gonadal disorders","DOID:2277|MESH:D006058|NCIT:C26786|UMLS:C0018050","disease of gonad|disease or disorder of gonad|disorder of gonad|disorder of gonads|gonad disease|gonad disease or disorder|gonadal disorder|gonadal disorders","false","","A non-neoplastic or neoplastic disorder that affects the testis or the ovary.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0005151","","http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0005151","false","gonadal disorder","gitIssue502","MONDO:0002259","MONDO_0002259","gonadal disorder","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002263","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0002263"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0002263""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the female reproductive system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005039"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:229""},{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""NCIT:C27020""}]}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005039"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:229""},{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""NCIT:C27020""}]}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the female reproductive system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},""http://purl.org/dc/terms/conformsTo"":[""http://purl.obolibrary.org/obo/mondo/patterns/location.yaml"",""http://purl.obolibrary.org/obo/mondo/patterns/location_top.yaml""],""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:229""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:629.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:229""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D005831""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:229""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C27020""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:310789003""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:229""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of female reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of female reproductive system""},{""type"":[""literal""],""value"":""disorder of female genital system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of female reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:229""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location""},{""type"":[""literal""],""value"":""NCIT:C27020""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C27020""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":[{""type"":[""literal""],""value"":""disease of female genital system""},{""type"":[""literal""],""value"":""disorder of female genital tract""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gynaecological disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/OMO_0003005""}]},{""type"":[""literal""],""value"":""gynecological disease""}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0002263""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005039"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:229""},{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""NCIT:C27020""}]}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000474"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0000001"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000474"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D005831"",""http://identifiers.org/snomedct/310789003"",""http://purl.obolibrary.org/obo/DOID_229"",""http://purl.obolibrary.org/obo/NCIT_C27020""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000474"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000474"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the female reproductive system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:229""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:629.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:229""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D005831""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:229""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C27020""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:310789003""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:229""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of female reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of female reproductive system""},{""type"":[""literal""],""value"":""disorder of female genital system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of female reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:229""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location""},{""type"":[""literal""],""value"":""NCIT:C27020""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C27020""}}]},{""type"":[""literal""],""value"":""disease of female genital system""},{""type"":[""literal""],""value"":""disorder of female genital tract""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gynaecological disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/OMO_0003005""}]},{""type"":[""literal""],""value"":""gynecological disease""},{""type"":[""literal""],""value"":""MONDO:0002263""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0002263""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of female reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of female reproductive system""},{""type"":[""literal""],""value"":""disorder of female genital system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of female reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:229""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location""},{""type"":[""literal""],""value"":""NCIT:C27020""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C27020""}}]},{""type"":[""literal""],""value"":""disease of female genital system""},{""type"":[""literal""],""value"":""disorder of female genital tract""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gynaecological disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/OMO_0003005""}]},{""type"":[""literal""],""value"":""gynecological disease""}],""synonymProperty"":[{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym""}],""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/DOID_229"":{""url"":""http://purl.obolibrary.org/obo/DOID_229"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:229""},""MESH:D005831"":{""url"":""http://id.nlm.nih.gov/mesh/D005831"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D005831""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""SCTID:310789003"":{""url"":""http://snomed.info/id/310789003"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:310789003""},""DOID:229"":{""url"":""http://purl.obolibrary.org/obo/DOID_229"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:229""},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""curie"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0002-6601-2165"":{""url"":""https://orcid.org/0000-0002-6601-2165"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-6601-2165""},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""NCIT:C27020"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C27020"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C27020""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""MONDO:0002263"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0002263"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0002263""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/OMO_0003005"":{""url"":""http://purl.obolibrary.org/obo/OMO_0003005"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""omo:0003005""},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasSynonymType""},""curie"":{""type"":[""literal""],""value"":""hasSynonymType""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C27020"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C27020"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C27020""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000474"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""female reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000474""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D005831|http://identifiers.org/snomedct/310789003|http://purl.obolibrary.org/obo/DOID_229|http://purl.obolibrary.org/obo/NCIT_C27020","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000474","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym|http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","MONDO:0002263","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0005039|","","true","","A disease involving the female reproductive system.","","","","","http://purl.obolibrary.org/obo/mondo/patterns/location.yaml|http://purl.obolibrary.org/obo/mondo/patterns/location_top.yaml","","4.0","http://purl.obolibrary.org/obo/MONDO_0005039","","","http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","disease of female genital system|disorder of female genital tract|gynaecological disease|gynecological disease","","","","http://www.w3.org/2002/07/owl#Class","true","true","disease of female reproductive system|disease or disorder of female reproductive system|disorder of female genital system|disorder of female reproductive system|female reproductive disease|female reproductive system disease|female reproductive system disease or disorder|female reproductive system disorder","DOID:229|ICD9:629.9|MESH:D005831|NCIT:C27020|SCTID:310789003","disease of female reproductive system|disease or disorder of female reproductive system|disorder of female genital system|disorder of female reproductive system|female reproductive disease|female reproductive system disease|female reproductive system disease or disorder|female reproductive system disorder|disease of female genital system|disorder of female genital tract|gynaecological disease|gynecological disease","false","","A disease involving the female reproductive system.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0005039","","http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","female reproductive system disorder","gitIssue502","MONDO:0002263","MONDO_0002263","female reproductive system disorder","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002320","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0002320"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0002320""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An abnormality of the nervous system that is present at birth or detected in the neonatal period.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0005071"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0005071"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An abnormality of the nervous system that is present at birth or detected in the neonatal period.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0000839"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:2490""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:2490""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:742""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:2490""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C97172""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital abnormality of the nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital nervous system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital neurologic anomaly""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:2490""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0002320""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""congenital nervous system disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0005071"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://purl.obolibrary.org/obo/DOID_2490"",""http://purl.obolibrary.org/obo/NCIT_C97172""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""congenital nervous system disorder""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An abnormality of the nervous system that is present at birth or detected in the neonatal period.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:2490""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:742""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:2490""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C97172""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital abnormality of the nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital nervous system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital neurologic anomaly""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:2490""}}]},{""type"":[""literal""],""value"":""MONDO:0002320""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0002320""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital abnormality of the nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital nervous system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital neurologic anomaly""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:2490""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DOID_2490"":{""url"":""http://purl.obolibrary.org/obo/DOID_2490"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:2490""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""NCIT:C97172"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C97172"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C97172""},""MONDO:0002320"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0002320"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0002320""},""ICD9:742"":{""url"":""http://www.icd9data.com/getICD9Code.ashx?icd9\u003d742"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ICD9:742""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000839"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0000839"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""mondo:0000839""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""DOID:2490"":{""url"":""http://purl.obolibrary.org/obo/DOID_2490"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:2490""},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""excluded_subClassOf""},""curie"":{""type"":[""literal""],""value"":""excluded:subClassOf""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021140"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""congenital""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021140""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C97172"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C97172"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C97172""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005071""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://purl.obolibrary.org/obo/DOID_2490|http://purl.obolibrary.org/obo/NCIT_C97172","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/MONDO_0021140","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0002320","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0005071|","","true","","An abnormality of the nervous system that is present at birth or detected in the neonatal period.","","","","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0005071","","","http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","congenital abnormality of the nervous system|congenital nervous system disorder|congenital neurologic anomaly","DOID:2490|ICD9:742|NCIT:C97172","congenital abnormality of the nervous system|congenital nervous system disorder|congenital neurologic anomaly","false","","An abnormality of the nervous system that is present at birth or detected in the neonatal period.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0000839","http://purl.obolibrary.org/obo/MONDO_0002320","http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","congenital nervous system disorder","gitIssue502","MONDO:0002320","MONDO_0002320","congenital nervous system disorder","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0003847","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0003847"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""definition"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""literal""],""value"":""Usage note: this is intended only for diseases with an inherited genetic etiology. Somatic genetic mutations are excluded. Some ontologies use the term \u0027genetic disease\u0027 in the sense of inherited disorders only, we are here careful to distinguish.""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""http://purl.org/dc/terms/conformsTo"":""http://purl.obolibrary.org/obo/mondo/patterns/hereditary.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic condition""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""literal""],""value"":""genetic disease""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:630""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0000508""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:799.89""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D030342""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:630""},{""type"":[""literal""],""value"":""EFO:0000508""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C3101""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:630""},{""type"":[""literal""],""value"":""EFO:0000508""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:32895009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:630""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0019247""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:630""},{""type"":[""literal""],""value"":""EFO:0000508""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C3101""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""},{""type"":[""literal""],""value"":""NCIT:C3101""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary diseases""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""inherited disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""inherited genetic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/1758""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""molecular disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Mendelian disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0050177""}}]},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":[{""type"":[""literal""],""value"":""familial disorder""},{""type"":[""literal""],""value"":""inborn disorder""}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0003847""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#harrisons_view"",""http://purl.obolibrary.org/obo/mondo#rare_grouping""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Usage note: this is intended only for diseases with an inherited genetic etiology. Somatic genetic mutations are excluded. Some ontologies use the term \u0027genetic disease\u0027 in the sense of inherited disorders only, we are here careful to distinguish.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hereditary disease""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D030342"",""http://identifiers.org/snomedct/32895009"",""http://linkedlifedata.com/resource/umls/id/C0019247"",""http://purl.obolibrary.org/obo/DOID_630"",""http://purl.obolibrary.org/obo/NCIT_C3101""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""numDescendants"":7.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic condition""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""literal""],""value"":""genetic disease""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:630""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0000508""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:799.89""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D030342""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:630""},{""type"":[""literal""],""value"":""EFO:0000508""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C3101""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:630""},{""type"":[""literal""],""value"":""EFO:0000508""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:32895009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:630""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0019247""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:630""},{""type"":[""literal""],""value"":""EFO:0000508""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C3101""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""},{""type"":[""literal""],""value"":""NCIT:C3101""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary diseases""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""inherited disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""inherited genetic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/1758""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""molecular disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Mendelian disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0050177""}}]},{""type"":[""literal""],""value"":""familial disorder""},{""type"":[""literal""],""value"":""inborn disorder""},{""type"":[""literal""],""value"":""MONDO:0003847""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0003847""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic condition""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""literal""],""value"":""genetic disease""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""},{""type"":[""literal""],""value"":""NCIT:C3101""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary diseases""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""inherited disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""inherited genetic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/1758""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""molecular disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Mendelian disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0050177""}}]},{""type"":[""literal""],""value"":""familial disorder""},{""type"":[""literal""],""value"":""inborn disorder""}],""synonymProperty"":[{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym""}],""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""SCTID:32895009"":{""url"":""http://snomed.info/id/32895009"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:32895009""},""DOID:630"":{""url"":""http://purl.obolibrary.org/obo/DOID_630"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:630""},""http://purl.obolibrary.org/obo/DOID_630"":{""url"":""http://purl.obolibrary.org/obo/DOID_630"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:630""},""DOID:0050177"":{""url"":""http://purl.obolibrary.org/obo/DOID_0050177"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:0050177""},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""curie"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasNarrowSynonym""},""curie"":{""type"":[""literal""],""value"":""hasNarrowSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C3101"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C3101"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C3101""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""NCIT:C3101"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C3101"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C3101""},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""MONDO:0003847"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0003847"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0003847""},""UMLS:C0019247"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0019247"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0019247""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasBroadSynonym""},""curie"":{""type"":[""literal""],""value"":""hasBroadSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021152"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inherited""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021152""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""MESH:D030342"":{""url"":""http://id.nlm.nih.gov/mesh/D030342"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D030342""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""EFO:0000508"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0000508"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0000508""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D030342|http://identifiers.org/snomedct/32895009|http://linkedlifedata.com/resource/umls/id/C0019247|http://purl.obolibrary.org/obo/DOID_630|http://purl.obolibrary.org/obo/NCIT_C3101","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","http://purl.obolibrary.org/obo/MONDO_0021152","","http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym|http://www.geneontology.org/formats/oboInOwl#hasExactSynonym|http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym|http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","MONDO:0003847","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/MONDO_0700096|","http://purl.obolibrary.org/obo/mondo#harrisons_view|http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","A disease that is caused by genetic modifications where those modifications are inherited from a parent's genome.","","","","","http://purl.obolibrary.org/obo/mondo/patterns/hereditary.yaml","","7.0","http://purl.obolibrary.org/obo/MONDO_0700096","","","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","familial disorder|inborn disorder","genetic condition|genetic disease|genetic disorder","Mendelian disease","","http://www.w3.org/2002/07/owl#Class","true","true","hereditary disease|hereditary disease or disorder|hereditary diseases|inherited disease|inherited genetic disease|molecular disease","DOID:630|EFO:0000508|ICD9:799.89|MESH:D030342|NCIT:C3101|SCTID:32895009|UMLS:C0019247","genetic condition|genetic disease|genetic disorder|hereditary disease|hereditary disease or disorder|hereditary diseases|inherited disease|inherited genetic disease|molecular disease|Mendelian disease|familial disorder|inborn disorder","false","Usage note: this is intended only for diseases with an inherited genetic etiology. Somatic genetic mutations are excluded. Some ontologies use the term 'genetic disease' in the sense of inherited disorders only, we are here careful to distinguish.","A disease that is caused by genetic modifications where those modifications are inherited from a parent's genome.|Usage note: this is intended only for diseases with an inherited genetic etiology. Somatic genetic mutations are excluded. Some ontologies use the term 'genetic disease' in the sense of inherited disorders only, we are here careful to distinguish.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700096","","http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","hereditary disease","gitIssue502","MONDO:0003847","MONDO_0003847","hereditary disease","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0003916","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0003916"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0003916""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D044343""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005137"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005137"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MESH:D044343""}]}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005137"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005137"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MESH:D044343""}]}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D044343""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:654""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:278.8""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D044343""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:302872003""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C1257763""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0003916""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""overnutrition""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005137"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MESH:D044343""}]}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D044343"",""http://identifiers.org/snomedct/302872003"",""http://linkedlifedata.com/resource/umls/id/C1257763"",""http://purl.obolibrary.org/obo/DOID_654""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""overnutrition""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D044343""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:654""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:278.8""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D044343""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:302872003""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C1257763""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""literal""],""value"":""MONDO:0003916""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0003916""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""DOID:654"":{""url"":""http://purl.obolibrary.org/obo/DOID_654"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:654""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005137"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nutritional disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005137""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""MESH:D044343"":{""url"":""http://id.nlm.nih.gov/mesh/D044343"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D044343""},""UMLS:C1257763"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C1257763"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C1257763""},""SCTID:302872003"":{""url"":""http://snomed.info/id/302872003"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:302872003""},""MONDO:0003916"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0003916"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0003916""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DOID_654"":{""url"":""http://purl.obolibrary.org/obo/DOID_654"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:654""}}}","false","true","http://identifiers.org/mesh/D044343|http://identifiers.org/snomedct/302872003|http://linkedlifedata.com/resource/umls/id/C1257763|http://purl.obolibrary.org/obo/DOID_654","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","","","","MONDO:0003916","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0005137","","true","","An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.","","","","","","","4.0","http://purl.obolibrary.org/obo/MONDO_0005137","","","http://purl.obolibrary.org/obo/MONDO_0005137|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","DOID:654|ICD9:278.8|MESH:D044343|SCTID:302872003|UMLS:C1257763","","false","","An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0005137","","http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","overnutrition","gitIssue502","MONDO:0003916","MONDO_0003916","overnutrition","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0005039","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0005039"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the reproductive system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the reproductive system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},""http://purl.org/dc/terms/conformsTo"":""http://purl.obolibrary.org/obo/mondo/patterns/location.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:15""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0000512""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0000512""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C4875""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:362968007""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0000512""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0178829""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C4875""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Wikipedia:Reproductive_system_disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""EFO:0000512""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of reproductive system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C4875""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genital disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C4875""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genital system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:15""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:15""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location""},{""type"":[""literal""],""value"":""NCIT:C4875""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C4875""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0005039""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":""http://purl.obolibrary.org/obo/mondo#rare_grouping"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/snomedct/362968007"",""http://linkedlifedata.com/resource/umls/id/C0178829"",""http://purl.obolibrary.org/obo/DOID_15"",""http://purl.obolibrary.org/obo/NCIT_C4875""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""numDescendants"":8.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the reproductive system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:15""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0000512""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0000512""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C4875""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:362968007""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0000512""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0178829""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C4875""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Wikipedia:Reproductive_system_disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""EFO:0000512""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of reproductive system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C4875""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genital disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C4875""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genital system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:15""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:15""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location""},{""type"":[""literal""],""value"":""NCIT:C4875""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C4875""}}]},{""type"":[""literal""],""value"":""MONDO:0005039""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0005039""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of reproductive system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C4875""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genital disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C4875""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genital system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:15""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:15""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location""},{""type"":[""literal""],""value"":""NCIT:C4875""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C4875""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""NCIT:C4875"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C4875"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C4875""},""UMLS:C0178829"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0178829"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0178829""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""DOID:15"":{""url"":""http://purl.obolibrary.org/obo/DOID_15"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:15""},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""MONDO:0005039"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0005039"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0005039""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""EFO:0000512"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0000512"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0000512""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""Wikipedia:Reproductive_system_disease"":{""url"":""http://en.wikipedia.org/wiki/Reproductive_system_disease"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""Wikipedia:Reproductive_system_disease""},""http://purl.obolibrary.org/obo/NCIT_C4875"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C4875"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C4875""},""https://orcid.org/0000-0002-6601-2165"":{""url"":""https://orcid.org/0000-0002-6601-2165"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-6601-2165""},""SCTID:362968007"":{""url"":""http://snomed.info/id/362968007"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:362968007""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DOID_15"":{""url"":""http://purl.obolibrary.org/obo/DOID_15"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:15""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/snomedct/362968007|http://linkedlifedata.com/resource/umls/id/C0178829|http://purl.obolibrary.org/obo/DOID_15|http://purl.obolibrary.org/obo/NCIT_C4875","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000990","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0005039","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031|","http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","A disease involving the reproductive system.","","","","","http://purl.obolibrary.org/obo/mondo/patterns/location.yaml","","8.0","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031","","","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","disease of reproductive system|disease or disorder of reproductive system|disorder of reproductive system|genital disorders|genital system disease|reproductive disease|reproductive system disease|reproductive system disease or disorder|reproductive system disorder","DOID:15|EFO:0000512|NCIT:C4875|SCTID:362968007|UMLS:C0178829|Wikipedia:Reproductive_system_disease","disease of reproductive system|disease or disorder of reproductive system|disorder of reproductive system|genital disorders|genital system disease|reproductive disease|reproductive system disease|reproductive system disease or disorder|reproductive system disorder","false","","A disease involving the reproductive system.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031","","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","reproductive system disorder","gitIssue502","MONDO:0005039","MONDO_0005039","reproductive system disorder","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0005071","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0005071"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0005071""},""definition"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26835""}}]},{""type"":[""literal""],""value"":""\u0027psychiatric disorder\u0027 is not classified as a \u0027nervous system disorder\u0027 in Mondo (though it is often as such): the hallmarks of psychiatric disorders are based in behavior and emotional state, and the relation with nervous system malfunction or damage is not always clearly determined.""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26835""}}]},""http://purl.org/dc/terms/conformsTo"":""http://purl.obolibrary.org/obo/mondo/patterns/location.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:863""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0000618""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0000618""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:G00-G99""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/4536""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:349.89""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:349.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D009422""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C26835""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:118940003""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0027765""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Wikipedia:Nervous_system_disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""EFO:0000618""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of nervous system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26835""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurologic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurologic disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""ISBN-13:978-1-259-64403-0""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurological disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurological disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0005071""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":""http://purl.obolibrary.org/obo/mondo#rare_grouping"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""\u0027psychiatric disorder\u0027 is not classified as a \u0027nervous system disorder\u0027 in Mondo (though it is often as such): the hallmarks of psychiatric disorders are based in behavior and emotional state, and the relation with nervous system malfunction or damage is not always clearly determined.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""nervous system disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D009422"",""http://identifiers.org/snomedct/118940003"",""http://linkedlifedata.com/resource/umls/id/C0027765"",""http://purl.bioontology.org/ontology/ICD10CM/G00-G99"",""http://purl.obolibrary.org/obo/DOID_863"",""http://purl.obolibrary.org/obo/NCIT_C26835""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""nervous system disorder""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26835""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:863""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0000618""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0000618""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:G00-G99""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/4536""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:349.89""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:349.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D009422""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C26835""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:118940003""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0027765""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Wikipedia:Nervous_system_disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""EFO:0000618""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of nervous system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26835""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurologic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurologic disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""ISBN-13:978-1-259-64403-0""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurological disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurological disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]},{""type"":[""literal""],""value"":""MONDO:0005071""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0005071""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of nervous system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26835""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurologic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurologic disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""ISBN-13:978-1-259-64403-0""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurological disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurological disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DOID_863"":{""url"":""http://purl.obolibrary.org/obo/DOID_863"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:863""},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""DOID:863"":{""url"":""http://purl.obolibrary.org/obo/DOID_863"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:863""},""NCIT:C26835"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C26835"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C26835""},""UMLS:C0027765"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0027765"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0027765""},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C26835"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C26835"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C26835""},""EFO:0000618"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0000618"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0000618""},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""MESH:D009422"":{""url"":""http://id.nlm.nih.gov/mesh/D009422"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D009422""},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""https://orcid.org/0000-0002-4142-7153"":{""url"":""https://orcid.org/0000-0002-4142-7153"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-4142-7153""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""MONDO:0005071"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0005071"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0005071""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""SCTID:118940003"":{""url"":""http://snomed.info/id/118940003"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:118940003""},""Wikipedia:Nervous_system_disease"":{""url"":""http://en.wikipedia.org/wiki/Nervous_system_disease"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""Wikipedia:Nervous_system_disease""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0001-5208-3432"":{""url"":""https://orcid.org/0000-0001-5208-3432"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0001-5208-3432""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D009422|http://identifiers.org/snomedct/118940003|http://linkedlifedata.com/resource/umls/id/C0027765|http://purl.bioontology.org/ontology/ICD10CM/G00-G99|http://purl.obolibrary.org/obo/DOID_863|http://purl.obolibrary.org/obo/NCIT_C26835","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0001016","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0005071","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031|","http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.","","","","","http://purl.obolibrary.org/obo/mondo/patterns/location.yaml","","5.0","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031","","","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","disease of nervous system|disease or disorder of nervous system|disorder of nervous system|nervous system disease|nervous system disease or disorder|nervous system disorder|neurologic disease|neurologic disorder|neurological disease|neurological disorder","DOID:863|EFO:0000618|ICD10CM:G00-G99|ICD9:349.89|ICD9:349.9|MESH:D009422|NCIT:C26835|SCTID:118940003|UMLS:C0027765|Wikipedia:Nervous_system_disease","disease of nervous system|disease or disorder of nervous system|disorder of nervous system|nervous system disease|nervous system disease or disorder|nervous system disorder|neurologic disease|neurologic disorder|neurological disease|neurological disorder","false","'psychiatric disorder' is not classified as a 'nervous system disorder' in Mondo (though it is often as such): the hallmarks of psychiatric disorders are based in behavior and emotional state, and the relation with nervous system malfunction or damage is not always clearly determined.","A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.|'psychiatric disorder' is not classified as a 'nervous system disorder' in Mondo (though it is often as such): the hallmarks of psychiatric disorders are based in behavior and emotional state, and the relation with nervous system malfunction or damage is not always clearly determined.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031","","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","nervous system disorder","gitIssue502","MONDO:0005071","MONDO_0005071","nervous system disorder","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0005137","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0005137"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0005137""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Any condition related to a disturbance between proper intake and utilization of nourishment.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26836""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Any condition related to a disturbance between proper intake and utilization of nourishment.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26836""}}]},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005066"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""NCIT:C26836""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0006504"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:374""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:374""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0001069""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0001069""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:783.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D009748""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""EFO:0001069""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C26836""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""EFO:0001069""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:exact-label-match""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:2492009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""EFO:0001069""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C3714509""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C26836""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nutritional disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""NCIT:C26836""}]}]},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nutrition disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:374""}}]},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0005137""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#harrisons_view"",""http://purl.obolibrary.org/obo/mondo#rare_grouping""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""nutritional disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""}}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D009748"",""http://identifiers.org/snomedct/2492009"",""http://linkedlifedata.com/resource/umls/id/C3714509"",""http://purl.obolibrary.org/obo/DOID_374"",""http://purl.obolibrary.org/obo/NCIT_C26836""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""nutritional disorder""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Any condition related to a disturbance between proper intake and utilization of nourishment.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26836""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:374""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0001069""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0001069""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:783.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D009748""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""EFO:0001069""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C26836""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""EFO:0001069""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:exact-label-match""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:2492009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""EFO:0001069""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C3714509""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C26836""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nutritional disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""NCIT:C26836""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nutrition disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:374""}}]},{""type"":[""literal""],""value"":""MONDO:0005137""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0005137""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nutritional disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""NCIT:C26836""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nutrition disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:374""}}]}],""synonymProperty"":[{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym""}],""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""EFO:0001069"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0001069"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0001069""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C26836"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C26836"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C26836""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0006504"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0006504"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""mondo:0006504""},""NCIT:C26836"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C26836"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C26836""},""MESH:D009748"":{""url"":""http://id.nlm.nih.gov/mesh/D009748"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D009748""},""SCTID:2492009"":{""url"":""http://snomed.info/id/2492009"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:2492009""},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""curie"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005066"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0005066"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""mondo:0005066""},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""excluded_subClassOf""},""curie"":{""type"":[""literal""],""value"":""excluded:subClassOf""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0001-5208-3432"":{""url"":""https://orcid.org/0000-0001-5208-3432"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0001-5208-3432""},""MONDO:0005137"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0005137"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0005137""},""http://purl.obolibrary.org/obo/DOID_374"":{""url"":""http://purl.obolibrary.org/obo/DOID_374"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:374""},""UMLS:C3714509"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C3714509"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C3714509""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""DOID:374"":{""url"":""http://purl.obolibrary.org/obo/DOID_374"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:374""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D009748|http://identifiers.org/snomedct/2492009|http://linkedlifedata.com/resource/umls/id/C3714509|http://purl.obolibrary.org/obo/DOID_374|http://purl.obolibrary.org/obo/NCIT_C26836","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym|http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","MONDO:0005137","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/mondo#harrisons_view|http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","Any condition related to a disturbance between proper intake and utilization of nourishment.","","","","","","","5.0","http://purl.obolibrary.org/obo/MONDO_0700096","","","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","nutrition disease","","","","http://www.w3.org/2002/07/owl#Class","true","true","nutritional disorder","DOID:374|EFO:0001069|ICD9:783.9|MESH:D009748|NCIT:C26836|SCTID:2492009|UMLS:C3714509","nutritional disorder|nutrition disease","false","","Any condition related to a disturbance between proper intake and utilization of nourishment.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0005066|http://purl.obolibrary.org/obo/MONDO_0006504","http://purl.obolibrary.org/obo/MONDO_0005137","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","nutritional disorder","gitIssue502","MONDO:0005137","MONDO_0005137","nutritional disorder","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0005151","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the endocrine system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the endocrine system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0021199"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""MONDO:Entailed""},{""type"":[""literal""],""value"":""MONDO:metaclass""}]}]},""http://purl.org/dc/terms/conformsTo"":""http://purl.obolibrary.org/obo/mondo/patterns/location.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:28""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0001379""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:259.8""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:259.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D004700""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C3009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:362969004""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0014130""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C3009""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of endocrine system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of endocrine system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of endocrine system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C3009""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""NCIT:C3009""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrinopathy""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""thyroid or other glandular disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0005151""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#harrisons_view"",""http://purl.obolibrary.org/obo/mondo#rare_grouping""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D004700"",""http://identifiers.org/snomedct/362969004"",""http://linkedlifedata.com/resource/umls/id/C0014130"",""http://purl.obolibrary.org/obo/DOID_28"",""http://purl.obolibrary.org/obo/NCIT_C3009""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""numDescendants"":10.0,""numHierarchicalDescendants"":10.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the endocrine system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:28""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0001379""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:259.8""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:259.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D004700""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C3009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:362969004""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0014130""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C3009""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of endocrine system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of endocrine system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of endocrine system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C3009""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""NCIT:C3009""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrinopathy""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""thyroid or other glandular disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""literal""],""value"":""MONDO:0005151""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0005151""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of endocrine system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of endocrine system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of endocrine system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C3009""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""NCIT:C3009""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrinopathy""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""thyroid or other glandular disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCIT_C3009"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C3009"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C3009""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""MONDO:0005151"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0005151""},""DOID:28"":{""url"":""http://purl.obolibrary.org/obo/DOID_28"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:28""},""NCIT:C3009"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C3009"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C3009""},""http://purl.obolibrary.org/obo/MONDO_0021199"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021199"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""mondo:0021199""},""UMLS:C0014130"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0014130"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0014130""},""https://orcid.org/0000-0002-6601-2165"":{""url"":""https://orcid.org/0000-0002-6601-2165"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-6601-2165""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""MESH:D004700"":{""url"":""http://id.nlm.nih.gov/mesh/D004700"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D004700""},""http://purl.obolibrary.org/obo/DOID_28"":{""url"":""http://purl.obolibrary.org/obo/DOID_28"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:28""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""EFO:0001379"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0001379"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0001379""},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""excluded_subClassOf""},""curie"":{""type"":[""literal""],""value"":""excluded:subClassOf""},""type"":[""property"",""annotationProperty"",""entity""]},""SCTID:362969004"":{""url"":""http://snomed.info/id/362969004"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:362969004""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D004700|http://identifiers.org/snomedct/362969004|http://linkedlifedata.com/resource/umls/id/C0014130|http://purl.obolibrary.org/obo/DOID_28|http://purl.obolibrary.org/obo/NCIT_C3009","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","10.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000949","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0005151","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031|","http://purl.obolibrary.org/obo/mondo#harrisons_view|http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","A disease involving the endocrine system.","","","","","http://purl.obolibrary.org/obo/mondo/patterns/location.yaml","","10.0","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031","","","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","disease of endocrine system|disease or disorder of endocrine system|disorder of endocrine system|endocrine disease|endocrine disorder|endocrine system disease|endocrine system disease or disorder|endocrine system disorder|endocrinopathy|thyroid or other glandular disorders","DOID:28|EFO:0001379|ICD9:259.8|ICD9:259.9|MESH:D004700|NCIT:C3009|SCTID:362969004|UMLS:C0014130","disease of endocrine system|disease or disorder of endocrine system|disorder of endocrine system|endocrine disease|endocrine disorder|endocrine system disease|endocrine system disease or disorder|endocrine system disorder|endocrinopathy|thyroid or other glandular disorders","false","","A disease involving the endocrine system.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0021199","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","endocrine system disorder","gitIssue502","MONDO:0005151","MONDO_0005151","endocrine system disorder","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0008300","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0008300"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0008300""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002320"",""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0015160"",""http://purl.obolibrary.org/obo/MONDO_0019042"",""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0015770"",""http://purl.obolibrary.org/obo/MONDO_0016072"",""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0015860"",""http://purl.obolibrary.org/obo/MONDO_0002263"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0018555"",""http://purl.obolibrary.org/obo/MONDO_0002146"",""http://purl.obolibrary.org/obo/MONDO_0002259"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0019824"",""http://purl.obolibrary.org/obo/MONDO_0015127"",""http://purl.obolibrary.org/obo/MONDO_0015514"",""http://purl.obolibrary.org/obo/MONDO_0016565"",""http://purl.obolibrary.org/obo/MONDO_0002254"",""http://purl.obolibrary.org/obo/MONDO_0015330"",""http://purl.obolibrary.org/obo/MONDO_0019182"",""http://purl.obolibrary.org/obo/MONDO_0011122"",""http://purl.obolibrary.org/obo/MONDO_0003916"",""http://purl.obolibrary.org/obo/MONDO_0005137"",""http://purl.obolibrary.org/obo/MONDO_0019040"",""http://purl.obolibrary.org/obo/MONDO_0100038"",""http://purl.obolibrary.org/obo/MONDO_0700092"",""http://purl.obolibrary.org/obo/MONDO_0100500""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0002320"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015160"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015770"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015890-obsoleted""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0016565"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019040"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MESH:D011218""}]}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0100038"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6733-369X""}}]},""http://purl.obolibrary.org/obo/MONDO_0100500""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002320"",""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0015160"",""http://purl.obolibrary.org/obo/MONDO_0019042"",""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0015770"",""http://purl.obolibrary.org/obo/MONDO_0016072"",""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0015860"",""http://purl.obolibrary.org/obo/MONDO_0002263"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0018555"",""http://purl.obolibrary.org/obo/MONDO_0002146"",""http://purl.obolibrary.org/obo/MONDO_0002259"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0019824"",""http://purl.obolibrary.org/obo/MONDO_0015127"",""http://purl.obolibrary.org/obo/MONDO_0015514"",""http://purl.obolibrary.org/obo/MONDO_0016565"",""http://purl.obolibrary.org/obo/MONDO_0002254"",""http://purl.obolibrary.org/obo/MONDO_0015330"",""http://purl.obolibrary.org/obo/MONDO_0019182"",""http://purl.obolibrary.org/obo/MONDO_0011122"",""http://purl.obolibrary.org/obo/MONDO_0003916"",""http://purl.obolibrary.org/obo/MONDO_0005137"",""http://purl.obolibrary.org/obo/MONDO_0019040"",""http://purl.obolibrary.org/obo/MONDO_0100038"",""http://purl.obolibrary.org/obo/MONDO_0700092"",""http://purl.obolibrary.org/obo/MONDO_0100500""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0002320"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015160"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015770"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015890-obsoleted""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0016565"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019040"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MESH:D011218""}]}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0100038"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6733-369X""}}]},""http://purl.obolibrary.org/obo/MONDO_0100500""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:11983""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""GARD:5575""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:759.81""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D011218""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""Orphanet:739""},{""type"":[""literal""],""value"":""Orphanet:739/e""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MedDRA:10036476""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""Orphanet:739""},{""type"":[""literal""],""value"":""Orphanet:739/e""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C75463""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OMIM:176270""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""Orphanet:739""},{""type"":[""literal""],""value"":""Orphanet:739/e""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:739""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""OMIM:176270""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:89392001""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0032897""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:ncbi_mim2gene_medline""},{""type"":[""literal""],""value"":""NCIT:C75463""},{""type"":[""literal""],""value"":""OMIM:176270""},{""type"":[""literal""],""value"":""Orphanet:739""},{""type"":[""literal""],""value"":""Orphanet:739/e""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:11983""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Labhart-Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:176270""},{""type"":[""literal""],""value"":""Orphanet:739""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:Lexical""},{""type"":[""literal""],""value"":""OMIM:176270""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi-Labhart syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C75463""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Willi-Prader syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:739""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""PWS""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:Lexical""},{""type"":[""literal""],""value"":""OMIM:176270""}],""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#ABBREVIATION""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome chromosome region""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIM:176270""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi-like syndrome associated with chromosome 6""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIM:176270""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""GARD:0005575""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""GARD:0005575""},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#DEPRECATED""}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0008300""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#gard_rare"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""GARD:0005575""}}]},""http://purl.obolibrary.org/obo/mondo#nord_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_disease"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Prader-Willi syndrome""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://rarediseases.info.nih.gov/diseases/5575/prader-willi-syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""GARD:0005575""}}]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0002320"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015160"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015770"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015890-obsoleted""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0016565"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019040"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MESH:D011218""}]}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0100038"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6733-369X""}}]},""http://purl.obolibrary.org/obo/MONDO_0100500""],""http://www.w3.org/2004/02/skos/core#closeMatch"":""http://identifiers.org/meddra/10036476"",""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D011218"",""http://identifiers.org/snomedct/89392001"",""http://linkedlifedata.com/resource/umls/id/C0032897"",""http://purl.obolibrary.org/obo/DOID_11983"",""http://purl.obolibrary.org/obo/NCIT_C75463"",""http://www.orpha.net/ORDO/Orphanet_739"",""https://omim.org/entry/176270""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Prader-Willi syndrome""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:11983""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""GARD:5575""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:759.81""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D011218""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""Orphanet:739""},{""type"":[""literal""],""value"":""Orphanet:739/e""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MedDRA:10036476""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""Orphanet:739""},{""type"":[""literal""],""value"":""Orphanet:739/e""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C75463""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OMIM:176270""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""Orphanet:739""},{""type"":[""literal""],""value"":""Orphanet:739/e""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:739""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""OMIM:176270""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:89392001""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0032897""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:ncbi_mim2gene_medline""},{""type"":[""literal""],""value"":""NCIT:C75463""},{""type"":[""literal""],""value"":""OMIM:176270""},{""type"":[""literal""],""value"":""Orphanet:739""},{""type"":[""literal""],""value"":""Orphanet:739/e""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:11983""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Labhart-Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:176270""},{""type"":[""literal""],""value"":""Orphanet:739""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:Lexical""},{""type"":[""literal""],""value"":""OMIM:176270""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi-Labhart syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C75463""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Willi-Prader syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""PWS""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:Lexical""},{""type"":[""literal""],""value"":""OMIM:176270""}],""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#ABBREVIATION""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome chromosome region""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIM:176270""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi-like syndrome associated with chromosome 6""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIM:176270""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""GARD:0005575""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""GARD:0005575""},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#DEPRECATED""}]},{""type"":[""literal""],""value"":""MONDO:0008300""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0008300""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:11983""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Labhart-Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:176270""},{""type"":[""literal""],""value"":""Orphanet:739""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:Lexical""},{""type"":[""literal""],""value"":""OMIM:176270""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi-Labhart syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C75463""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Willi-Prader syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""PWS""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:Lexical""},{""type"":[""literal""],""value"":""OMIM:176270""}],""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#ABBREVIATION""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome chromosome region""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIM:176270""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi-like syndrome associated with chromosome 6""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIM:176270""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""GARD:0005575""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""GARD:0005575""},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#DEPRECATED""}]}],""synonymProperty"":[{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym""}],""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""MONDO:0008300"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0008300"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0008300""},""MedDRA:10036476"":{""url"":""http://bioportal.bioontology.org/ontologies/MEDDRA?p\u003dclasses\u0026conceptid\u003d10036476"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MedDRA:10036476""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015770"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""congenital hypogonadotropic hypogonadism""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015770""},""type"":[""class"",""entity""]},""SCTID:89392001"":{""url"":""http://snomed.info/id/89392001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:89392001""},""GARD:0005575"":{""url"":""https://rarediseases.info.nih.gov/diseases/0005575/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:0005575""},""http://purl.obolibrary.org/obo/MONDO_0019040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""chromosomal disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019042"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multiple congenital anomalies/dysmorphic syndrome""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019042""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neurodevelopmental disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700092""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#closeMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has close match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""closeMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015127"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""pituitary deficiency""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015127""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""curie"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0100500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mendelian neurodevelopmental disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0100500""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015514"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary endocrine growth disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015514""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0016565"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""syndromic genetic obesity""},""curie"":{""type"":[""literal""],""value"":""MONDO:0016565""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0003916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""overnutrition""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002320"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""congenital nervous system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002320""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019824"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""non-acquired pituitary hormone deficiency""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019824""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""OMIM:176270"":{""url"":""https://omim.org/entry/176270"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""OMIM:176270""},""http://purl.obolibrary.org/obo/MONDO_0015860"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015860""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DOID_11983"":{""url"":""http://purl.obolibrary.org/obo/DOID_11983"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:11983""},""http://purl.obolibrary.org/obo/MONDO_0002259"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonadal disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002259""},""type"":[""class"",""entity""]},""DOID:11983"":{""url"":""http://purl.obolibrary.org/obo/DOID_11983"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:11983""},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasSynonymType""},""curie"":{""type"":[""literal""],""value"":""hasSynonymType""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002254"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""syndromic disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002254""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""Orphanet:739"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d739"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:739""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""GARD:5575"":{""url"":""https://rarediseases.info.nih.gov/diseases/5575/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:5575""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015330"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""overgrowth/obesity syndrome""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015330""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C75463"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C75463"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C75463""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015160""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hypogonadism""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005137"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nutritional disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005137""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002263""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0011122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""obesity disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0011122""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0018555"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism""},""curie"":{""type"":[""literal""],""value"":""MONDO:0018555""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""entity""]},""MESH:D011218"":{""url"":""http://id.nlm.nih.gov/mesh/D011218"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D011218""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0015890"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015890"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015890""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019755"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019755""},""type"":[""class"",""entity""]},""NCIT:C75463"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C75463"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C75463""},""UMLS:C0032897"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0032897"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0032897""},""http://purl.obolibrary.org/obo/MONDO_0016072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle of genetic origin""},""curie"":{""type"":[""literal""],""value"":""MONDO:0016072""},""type"":[""class"",""entity""]},""https://orcid.org/0000-0002-6733-369X"":{""url"":""https://orcid.org/0000-0002-6733-369X"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-6733-369X""},""http://purl.obolibrary.org/obo/MONDO_0019182"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inherited obesity""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019182""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021147"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021147""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0100038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""complex neurodevelopmental disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0100038""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005071""},""type"":[""class"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_739"":{""url"":""http://www.orpha.net/ORDO/Orphanet_739"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:739""},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","http://identifiers.org/mesh/D011218|http://identifiers.org/snomedct/89392001|http://linkedlifedata.com/resource/umls/id/C0032897|http://purl.obolibrary.org/obo/DOID_11983|http://purl.obolibrary.org/obo/NCIT_C75463|http://www.orpha.net/ORDO/Orphanet_739|https://omim.org/entry/176270","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym|http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","MONDO:0008300","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0002320|http://purl.obolibrary.org/obo/MONDO_0015160|http://purl.obolibrary.org/obo/MONDO_0015770|http://purl.obolibrary.org/obo/MONDO_0016565|http://purl.obolibrary.org/obo/MONDO_0019040|http://purl.obolibrary.org/obo/MONDO_0100038|http://purl.obolibrary.org/obo/MONDO_0100500","http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#nord_rare|http://purl.obolibrary.org/obo/mondo#ordo_disease|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.","","","","","","","0.0","http://purl.obolibrary.org/obo/MONDO_0002320|http://purl.obolibrary.org/obo/MONDO_0015160|http://purl.obolibrary.org/obo/MONDO_0015770|http://purl.obolibrary.org/obo/MONDO_0016565|http://purl.obolibrary.org/obo/MONDO_0019040|http://purl.obolibrary.org/obo/MONDO_0100038|http://purl.obolibrary.org/obo/MONDO_0100500","http://identifiers.org/meddra/10036476","","http://purl.obolibrary.org/obo/MONDO_0002320|http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0015160|http://purl.obolibrary.org/obo/MONDO_0019042|http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0015770|http://purl.obolibrary.org/obo/MONDO_0016072|http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0015860|http://purl.obolibrary.org/obo/MONDO_0002263|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0018555|http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0019824|http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0015514|http://purl.obolibrary.org/obo/MONDO_0016565|http://purl.obolibrary.org/obo/MONDO_0002254|http://purl.obolibrary.org/obo/MONDO_0015330|http://purl.obolibrary.org/obo/MONDO_0019182|http://purl.obolibrary.org/obo/MONDO_0011122|http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/MONDO_0005137|http://purl.obolibrary.org/obo/MONDO_0019040|http://purl.obolibrary.org/obo/MONDO_0100038|http://purl.obolibrary.org/obo/MONDO_0700092|http://purl.obolibrary.org/obo/MONDO_0100500","","","PWS|Prader-Willi syndrome chromosome region|Prader-Willi-like syndrome associated with chromosome 6|obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet|obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet","","","https://rarediseases.info.nih.gov/diseases/5575/prader-willi-syndrome","http://www.w3.org/2002/07/owl#Class","false","true","Prader Willi syndrome|Prader-Labhart-Willi syndrome|Prader-Willi syndrome|Prader-Willi-Labhart syndrome|Willi-Prader syndrome","DOID:11983|GARD:5575|ICD9:759.81|MESH:D011218|MedDRA:10036476|NCIT:C75463|OMIM:176270|Orphanet:739|SCTID:89392001|UMLS:C0032897","Prader Willi syndrome|Prader-Labhart-Willi syndrome|Prader-Willi syndrome|Prader-Willi-Labhart syndrome|Willi-Prader syndrome|PWS|Prader-Willi syndrome chromosome region|Prader-Willi-like syndrome associated with chromosome 6|obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet|obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet","false","","Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0002320|http://purl.obolibrary.org/obo/MONDO_0015160|http://purl.obolibrary.org/obo/MONDO_0015770|http://purl.obolibrary.org/obo/MONDO_0016565|http://purl.obolibrary.org/obo/MONDO_0019040|http://purl.obolibrary.org/obo/MONDO_0100038|http://purl.obolibrary.org/obo/MONDO_0100500","","http://purl.obolibrary.org/obo/MONDO_0008300","http://purl.obolibrary.org/obo/MONDO_0002320|http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0015160|http://purl.obolibrary.org/obo/MONDO_0019042|http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0015770|http://purl.obolibrary.org/obo/MONDO_0016072|http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0015860|http://purl.obolibrary.org/obo/MONDO_0002263|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0018555|http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0019824|http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0015514|http://purl.obolibrary.org/obo/MONDO_0016565|http://purl.obolibrary.org/obo/MONDO_0002254|http://purl.obolibrary.org/obo/MONDO_0015330|http://purl.obolibrary.org/obo/MONDO_0019182|http://purl.obolibrary.org/obo/MONDO_0011122|http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/MONDO_0005137|http://purl.obolibrary.org/obo/MONDO_0019040|http://purl.obolibrary.org/obo/MONDO_0100038|http://purl.obolibrary.org/obo/MONDO_0700092|http://purl.obolibrary.org/obo/MONDO_0100500","false","Prader-Willi syndrome","gitIssue502","MONDO:0008300","MONDO_0008300","Prader-Willi syndrome","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0011122","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0011122"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0011122""},""definition"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder involving an excessive amount of body fat.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""https://www.ama-assn.org/sites/default/files/media-browser/public/about-ama/councils/Council%20Reports/council-on-science-public-health/a13csaph3.pdf""},{""type"":[""literal""],""value"":""https://www.mayoclinic.org/diseases-conditions/obesity/symptoms-causes/syc-20375742""}]}]},{""type"":[""literal""],""value"":""Obesity is a complex disease that may involve multiple environmental and genetic causes. See the subclass monogenic disease for genetic subtypes""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0003916"",""http://purl.obolibrary.org/obo/MONDO_0005137"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0003916"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:9970""}}]},""http://purl.obolibrary.org/obo/OGMS_0000031""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0003916"",""http://purl.obolibrary.org/obo/MONDO_0005137"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0003916"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:9970""}}]},""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder involving an excessive amount of body fat.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""https://www.ama-assn.org/sites/default/files/media-browser/public/about-ama/councils/Council%20Reports/council-on-science-public-health/a13csaph3.pdf""},{""type"":[""literal""],""value"":""https://www.mayoclinic.org/diseases-conditions/obesity/symptoms-causes/syc-20375742""}]}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:9970""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0001073""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""HP:0001513""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:otherHierarchy""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:278.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:278.00""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C3283""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:otherHierarchy""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NIFSTD:nlx_dys_20090302""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""EFO:0001073""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:521399""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentObsolete""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:414916001""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0028754""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:ncbi_mim2gene_medline""},{""type"":[""literal""],""value"":""OMIM:601665""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:ambiguous""},{""type"":[""literal""],""value"":""OMIM:601665""}]}]},{""type"":[""literal""],""value"":""obesity disease""}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0011122""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Obesity is a complex disease that may involve multiple environmental and genetic causes. See the subclass monogenic disease for genetic subtypes""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obesity disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0003916"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:9970""}}]},""http://purl.obolibrary.org/obo/OGMS_0000031"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004029"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/HP_0001513"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0000001"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004029"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/HP_0001513"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/snomedct/414916001"",""http://linkedlifedata.com/resource/umls/id/C0028754"",""http://purl.obolibrary.org/obo/DOID_9970"",""http://purl.obolibrary.org/obo/NCIT_C3283""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obesity disorder""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004029"",""value"":""http://purl.obolibrary.org/obo/HP_0001513"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004029"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/HP_0001513"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder involving an excessive amount of body fat.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""https://www.ama-assn.org/sites/default/files/media-browser/public/about-ama/councils/Council%20Reports/council-on-science-public-health/a13csaph3.pdf""},{""type"":[""literal""],""value"":""https://www.mayoclinic.org/diseases-conditions/obesity/symptoms-causes/syc-20375742""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:9970""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0001073""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""HP:0001513""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:otherHierarchy""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:278.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:278.00""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C3283""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:otherHierarchy""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NIFSTD:nlx_dys_20090302""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""EFO:0001073""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:521399""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentObsolete""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:414916001""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0028754""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:ncbi_mim2gene_medline""},{""type"":[""literal""],""value"":""OMIM:601665""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:ambiguous""},{""type"":[""literal""],""value"":""OMIM:601665""}]}]},{""type"":[""literal""],""value"":""obesity disease""},{""type"":[""literal""],""value"":""MONDO:0011122""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0011122""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:ambiguous""},{""type"":[""literal""],""value"":""OMIM:601665""}]}]},{""type"":[""literal""],""value"":""obesity disease""}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""EFO:0001073"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0001073"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0001073""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0003916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""overnutrition""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003916""},""type"":[""class"",""entity""]},""MONDO:0011122"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0011122"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0011122""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""UMLS:C0028754"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0028754"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0028754""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C3283"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C3283"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C3283""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004029"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has feature""},""curie"":{""type"":[""literal""],""value"":""RO:0004029""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""OMIM:601665"":{""url"":""https://omim.org/entry/601665"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""OMIM:601665""},""http://purl.obolibrary.org/obo/MONDO_0005137"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nutritional disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005137""},""type"":[""class"",""entity""]},""DOID:9970"":{""url"":""http://purl.obolibrary.org/obo/DOID_9970"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:9970""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""SCTID:414916001"":{""url"":""http://snomed.info/id/414916001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:414916001""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""Orphanet:521399"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d521399"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:521399""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""NCIT:C3283"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C3283"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C3283""},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""HP:0001513"":{""url"":""http://purl.obolibrary.org/obo/HP_0001513"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""HP:0001513""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DOID_9970"":{""url"":""http://purl.obolibrary.org/obo/DOID_9970"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:9970""},""http://purl.obolibrary.org/obo/HP_0001513"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Obesity""},""curie"":{""type"":[""literal""],""value"":""HP:0001513""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/snomedct/414916001|http://linkedlifedata.com/resource/umls/id/C0028754|http://purl.obolibrary.org/obo/DOID_9970|http://purl.obolibrary.org/obo/NCIT_C3283","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/HP_0001513","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0011122","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/OGMS_0000031|","http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","A disorder involving an excessive amount of body fat.","","","","","","","3.0","http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/OGMS_0000031","","","http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/MONDO_0005137|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","obesity|obesity disease","DOID:9970|EFO:0001073|HP:0001513|ICD9:278.0|ICD9:278.00|NCIT:C3283|NIFSTD:nlx_dys_20090302|Orphanet:521399|SCTID:414916001|UMLS:C0028754","obesity|obesity disease","false","Obesity is a complex disease that may involve multiple environmental and genetic causes. See the subclass monogenic disease for genetic subtypes","A disorder involving an excessive amount of body fat.|Obesity is a complex disease that may involve multiple environmental and genetic causes. See the subclass monogenic disease for genetic subtypes","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/OGMS_0000031","","http://purl.obolibrary.org/obo/MONDO_0011122","http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/MONDO_0005137|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","obesity disorder","gitIssue502","MONDO:0011122","MONDO_0011122","obesity disorder","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015127","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0015127"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0015127""},""definition"":{""type"":[""literal""],""value"":""Editor note: in ORDO, Orphanet:101957 is classified as genetic, yet has acquired subtypes""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015889-obsoleted""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015889-obsoleted""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015968"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:101957""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:19801""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:E23.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:101957""},{""type"":[""literal""],""value"":""Orphanet:101957/e""},{""type"":[""literal""],""value"":""Orphanet:101957/specific""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:101957""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0020635""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:101957""}]}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0015127""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:101957""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Editor note: in ORDO, Orphanet:101957 is classified as genetic, yet has acquired subtypes""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""pituitary deficiency""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015889-obsoleted""}}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":""http://www.orpha.net/ORDO/Orphanet_101957"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""pituitary deficiency""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""GARD:19801""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:E23.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:101957""},{""type"":[""literal""],""value"":""Orphanet:101957/e""},{""type"":[""literal""],""value"":""Orphanet:101957/specific""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:101957""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0020635""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:101957""}]}]},{""type"":[""literal""],""value"":""MONDO:0015127""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0015127""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""UMLS:C0020635"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0020635"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0020635""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_101957"":{""url"":""http://www.orpha.net/ORDO/Orphanet_101957"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:101957""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015968"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015968"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""mondo:0015968""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""Orphanet:101957"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d101957"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:101957""},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""excluded_subClassOf""},""curie"":{""type"":[""literal""],""value"":""excluded:subClassOf""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0015127"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015127"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015127""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""GARD:19801"":{""url"":""https://rarediseases.info.nih.gov/diseases/19801/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:19801""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]},""MONDO:0015889"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015889"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015889""}}}","false","true","http://www.orpha.net/ORDO/Orphanet_101957","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","MONDO:0015127","http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/MONDO_0005151","","","http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","GARD:19801|ICD10CM:E23.0|Orphanet:101957|UMLS:C0020635","","false","Editor note: in ORDO, Orphanet:101957 is classified as genetic, yet has acquired subtypes","Editor note: in ORDO, Orphanet:101957 is classified as genetic, yet has acquired subtypes","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0015968","http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","pituitary deficiency","gitIssue502","MONDO:0015127","MONDO_0015127","pituitary deficiency","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015160","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0015160"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0015160""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0019042"",""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019042"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0019042"",""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019042"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4069""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:102284""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentObsolete""}}]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MCA/variable MR""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0015160""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019042"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4069""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:102284""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentObsolete""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MCA/variable MR""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]},{""type"":[""literal""],""value"":""MONDO:0015160""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0015160""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MCA/variable MR""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019042"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multiple congenital anomalies/dysmorphic syndrome""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019042""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019755"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019755""},""type"":[""class"",""entity""]},""Orphanet:102284"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d102284"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:102284""},""MONDO:0015160"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015160"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015160""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021147"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021147""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0015160","","http://purl.obolibrary.org/obo/MONDO_0019042","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","","","https://github.com/monarch-initiative/mondo/issues/4069","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0019042","","","http://purl.obolibrary.org/obo/MONDO_0019042|http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","MCA/variable MR|multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome","Orphanet:102284","MCA/variable MR|multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0019042","","http://purl.obolibrary.org/obo/MONDO_0015160","http://purl.obolibrary.org/obo/MONDO_0019042|http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome","gitIssue502","MONDO:0015160","MONDO_0015160","multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015330","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0015330"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0015330""},""definition"":{""type"":[""literal""],""value"":""Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletion effort for ORDO terms.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:139024""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:139024""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5114""},""http://purl.obolibrary.org/obo/IAO_0006012"":{""type"":[""literal""],""value"":""2023-10-01""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:19903""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:139024""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN199360""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0015330""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",""http://purl.obolibrary.org/obo/mondo#obsoletion_candidate"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:139024""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletion effort for ORDO terms.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""overgrowth/obesity syndrome""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:139024""}}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://linkedlifedata.com/resource/umls/id/CN199360"",""http://www.orpha.net/ORDO/Orphanet_139024""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""overgrowth/obesity syndrome""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5114""},{""type"":[""literal""],""value"":""2023-10-01""},{""type"":[""literal""],""value"":""GARD:19903""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:139024""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN199360""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""MONDO:0015330""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0015330""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0006012"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0006012""},""curie"":{""type"":[""literal""],""value"":""IAO:0006012""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""GARD:19903"":{""url"":""https://rarediseases.info.nih.gov/diseases/19903/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:19903""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""MONDO:0015330"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015330"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015330""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""Orphanet:139024"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d139024"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:139024""},""http://purl.obolibrary.org/obo/MONDO_0019755"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019755""},""type"":[""class"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_139024"":{""url"":""http://www.orpha.net/ORDO/Orphanet_139024"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:139024""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021147"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021147""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://linkedlifedata.com/resource/umls/id/CN199360|http://www.orpha.net/ORDO/Orphanet_139024","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","MONDO:0015330","http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#obsoletion_candidate|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","2023-10-01","","https://github.com/monarch-initiative/mondo/issues/5114","","","","2.0","http://purl.obolibrary.org/obo/MONDO_0019755","","","http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","GARD:19903|Orphanet:139024|UMLS:CN199360","","false","Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletion effort for ORDO terms.","Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletion effort for ORDO terms.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0019755","","http://purl.obolibrary.org/obo/MONDO_0015330","http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","overgrowth/obesity syndrome","gitIssue502","MONDO:0015330","MONDO_0015330","overgrowth/obesity syndrome","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015514","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0015514"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0015514""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:156643""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:156643""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:20012""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D006130""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:156643""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN237424""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic endocrine growth disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:156643""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""growth disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0015514""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:156643""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hereditary endocrine growth disease""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:156643""}}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},{""type"":[""reification""],""value"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015513""}}]}],""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D006130"",""http://linkedlifedata.com/resource/umls/id/CN237424"",""http://www.orpha.net/ORDO/Orphanet_156643""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hereditary endocrine growth disease""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""GARD:20012""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D006130""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:156643""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN237424""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic endocrine growth disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:156643""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""growth disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""literal""],""value"":""MONDO:0015514""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0015514""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic endocrine growth disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:156643""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""growth disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""rare""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021136""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0015514"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015514"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015514""},""MONDO:0015513"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015513"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015513""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""GARD:20012"":{""url"":""https://rarediseases.info.nih.gov/diseases/20012/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:20012""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_156643"":{""url"":""http://www.orpha.net/ORDO/Orphanet_156643"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:156643""},""Orphanet:156643"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d156643"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:156643""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""MESH:D006130"":{""url"":""http://id.nlm.nih.gov/mesh/D006130"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D006130""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D006130|http://linkedlifedata.com/resource/umls/id/CN237424|http://www.orpha.net/ORDO/Orphanet_156643","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/MONDO_0021136","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0015514","","http://purl.obolibrary.org/obo/MONDO_0005151||","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/MONDO_0005151","","","http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","genetic endocrine growth disease|growth disorder","GARD:20012|MESH:D006130|Orphanet:156643|UMLS:CN237424","genetic endocrine growth disease|growth disorder","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0005151","","http://purl.obolibrary.org/obo/MONDO_0015514","http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","hereditary endocrine growth disease","gitIssue502","MONDO:0015514","MONDO_0015514","hereditary endocrine growth disease","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015770","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0015770"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0015770""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:174590""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0016072"",""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0015860"",""http://purl.obolibrary.org/obo/MONDO_0002263"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0018555"",""http://purl.obolibrary.org/obo/MONDO_0002146"",""http://purl.obolibrary.org/obo/MONDO_0002259"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0019824"",""http://purl.obolibrary.org/obo/MONDO_0015127"",""http://purl.obolibrary.org/obo/MONDO_0015514""],""directParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0016072"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""Orphanet:174590""}]}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0018555"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""NCIT:C120162""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019824"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:174590""}}]}],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0016072"",""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0015860"",""http://purl.obolibrary.org/obo/MONDO_0002263"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0018555"",""http://purl.obolibrary.org/obo/MONDO_0002146"",""http://purl.obolibrary.org/obo/MONDO_0002259"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0019824"",""http://purl.obolibrary.org/obo/MONDO_0015127"",""http://purl.obolibrary.org/obo/MONDO_0015514""],""hierarchicalParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0016072"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""Orphanet:174590""}]}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0018555"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""NCIT:C120162""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019824"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:174590""}}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:174590""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:20135""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:E23.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:174590""},{""type"":[""literal""],""value"":""Orphanet:174590/attributed""},{""type"":[""literal""],""value"":""Orphanet:174590/ntbt""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C120162""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:174590""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:722944006""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C3899503""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C120162""}]}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0015770""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:174590""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""congenital hypogonadotropic hypogonadism""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0016072"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""Orphanet:174590""}]}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0018555"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""NCIT:C120162""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019824"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:174590""}}]}],""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/snomedct/722944006"",""http://linkedlifedata.com/resource/umls/id/C3899503"",""http://purl.obolibrary.org/obo/NCIT_C120162"",""http://www.orpha.net/ORDO/Orphanet_174590""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""congenital hypogonadotropic hypogonadism""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:174590""}}]},{""type"":[""literal""],""value"":""GARD:20135""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:E23.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:174590""},{""type"":[""literal""],""value"":""Orphanet:174590/attributed""},{""type"":[""literal""],""value"":""Orphanet:174590/ntbt""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C120162""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:174590""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:722944006""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C3899503""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C120162""}]}]},{""type"":[""literal""],""value"":""MONDO:0015770""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0015770""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/MONDO_0002259"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonadal disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002259""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""Orphanet:174590"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d174590"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:174590""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hypogonadism""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002263""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015127"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""pituitary deficiency""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015127""},""type"":[""class"",""entity""]},""GARD:20135"":{""url"":""https://rarediseases.info.nih.gov/diseases/20135/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:20135""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0018555"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism""},""curie"":{""type"":[""literal""],""value"":""MONDO:0018555""},""type"":[""class"",""entity""]},""MONDO:0015770"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015770"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015770""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""UMLS:C3899503"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C3899503"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C3899503""},""http://purl.obolibrary.org/obo/MONDO_0015514"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary endocrine growth disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015514""},""type"":[""class"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_174590"":{""url"":""http://www.orpha.net/ORDO/Orphanet_174590"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:174590""},""NCIT:C120162"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C120162"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C120162""},""SCTID:722944006"":{""url"":""http://snomed.info/id/722944006"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:722944006""},""http://purl.obolibrary.org/obo/MONDO_0016072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle of genetic origin""},""curie"":{""type"":[""literal""],""value"":""MONDO:0016072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C120162"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C120162"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C120162""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019824"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""non-acquired pituitary hormone deficiency""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019824""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015860"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015860""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/snomedct/722944006|http://linkedlifedata.com/resource/umls/id/C3899503|http://purl.obolibrary.org/obo/NCIT_C120162|http://www.orpha.net/ORDO/Orphanet_174590","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","MONDO:0015770","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0016072|http://purl.obolibrary.org/obo/MONDO_0018555|http://purl.obolibrary.org/obo/MONDO_0019824","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).","","","","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0016072|http://purl.obolibrary.org/obo/MONDO_0018555|http://purl.obolibrary.org/obo/MONDO_0019824","","","http://purl.obolibrary.org/obo/MONDO_0016072|http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0015860|http://purl.obolibrary.org/obo/MONDO_0002263|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0018555|http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0019824|http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0015514","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","GARD:20135|ICD10CM:E23.0|NCIT:C120162|Orphanet:174590|SCTID:722944006|UMLS:C3899503","","false","","Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0016072|http://purl.obolibrary.org/obo/MONDO_0018555|http://purl.obolibrary.org/obo/MONDO_0019824","","http://purl.obolibrary.org/obo/MONDO_0015770","http://purl.obolibrary.org/obo/MONDO_0016072|http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0015860|http://purl.obolibrary.org/obo/MONDO_0002263|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0018555|http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0019824|http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0015514","false","congenital hypogonadotropic hypogonadism","gitIssue502","MONDO:0015770","MONDO_0015770","congenital hypogonadotropic hypogonadism","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015860","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0015860"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0015860""},""definition"":{""type"":[""literal""],""value"":""Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002263"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002263"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0019937-obsoleted""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002263"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002263"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0019937-obsoleted""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5114""},""http://purl.obolibrary.org/obo/IAO_0006012"":{""type"":[""literal""],""value"":""2023-09-01""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:20200""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:180208""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0015860""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",""http://purl.obolibrary.org/obo/mondo#obsoletion_candidate"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:180208""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002263"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0019937-obsoleted""}}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":""http://www.orpha.net/ORDO/Orphanet_180208"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5114""},{""type"":[""literal""],""value"":""2023-09-01""},{""type"":[""literal""],""value"":""GARD:20200""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:180208""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""MONDO:0015860""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0015860""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""GARD:20200"":{""url"":""https://rarediseases.info.nih.gov/diseases/20200/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:20200""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0006012"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0006012""},""curie"":{""type"":[""literal""],""value"":""IAO:0006012""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""Orphanet:180208"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d180208"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:180208""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""MONDO:0015860"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015860"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015860""},""http://purl.obolibrary.org/obo/MONDO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002263""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""MONDO:0019937"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0019937"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0019937""},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_180208"":{""url"":""http://www.orpha.net/ORDO/Orphanet_180208"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:180208""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://www.orpha.net/ORDO/Orphanet_180208","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","MONDO:0015860","http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#obsoletion_candidate|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","2023-09-01","","https://github.com/monarch-initiative/mondo/issues/5114","","","","3.0","http://purl.obolibrary.org/obo/MONDO_0002263","","","http://purl.obolibrary.org/obo/MONDO_0002263|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","GARD:20200|Orphanet:180208","","false","Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0002263","","http://purl.obolibrary.org/obo/MONDO_0015860","http://purl.obolibrary.org/obo/MONDO_0002263|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","anomaly of puberty or/and menstrual cycle","gitIssue502","MONDO:0015860","MONDO_0015860","anomaly of puberty or/and menstrual cycle","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0016072","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0016072"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0016072""},""definition"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/genetic""}}]},{""type"":[""literal""],""value"":""Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0015860"",""http://purl.obolibrary.org/obo/MONDO_0002263"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0015860""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0015860"",""http://purl.obolibrary.org/obo/MONDO_0002263"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0015860""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/genetic""}}]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5114""},""http://purl.obolibrary.org/obo/IAO_0006012"":{""type"":[""literal""],""value"":""2023-09-01""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:20341""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:202940""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic anomaly of puberty or/and menstrual cycle""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/genetic""}}]},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0016072""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",""http://purl.obolibrary.org/obo/mondo#obsoletion_candidate"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:202940""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle of genetic origin""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0015860"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},{""type"":[""reification""],""value"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015980""}}]}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0015860"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":""http://www.orpha.net/ORDO/Orphanet_202940"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle of genetic origin""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/genetic""}}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5114""},{""type"":[""literal""],""value"":""2023-09-01""},{""type"":[""literal""],""value"":""GARD:20341""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:202940""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic anomaly of puberty or/and menstrual cycle""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/genetic""}}]},{""type"":[""literal""],""value"":""MONDO:0016072""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0016072""},""synonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic anomaly of puberty or/and menstrual cycle""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/genetic""}}]},""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""rare""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021136""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0006012"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0006012""},""curie"":{""type"":[""literal""],""value"":""IAO:0006012""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""MONDO:0015980"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015980"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015980""},""http://purl.obolibrary.org/obo/MONDO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002263""},""type"":[""class"",""entity""]},""Orphanet:202940"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d202940"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:202940""},""MONDO:0016072"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0016072"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0016072""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021152"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inherited""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021152""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""GARD:20341"":{""url"":""https://rarediseases.info.nih.gov/diseases/20341/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:20341""},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_202940"":{""url"":""http://www.orpha.net/ORDO/Orphanet_202940"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:202940""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015860"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015860""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://www.orpha.net/ORDO/Orphanet_202940","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/MONDO_0021136","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0016072","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0015860||","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#obsoletion_candidate|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual's genome.","2023-09-01","","https://github.com/monarch-initiative/mondo/issues/5114","","","","2.0","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0015860","","","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0015860|http://purl.obolibrary.org/obo/MONDO_0002263|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","genetic anomaly of puberty or/and menstrual cycle","GARD:20341|Orphanet:202940","genetic anomaly of puberty or/and menstrual cycle","false","Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual's genome.|Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0015860","","http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0015860|http://purl.obolibrary.org/obo/MONDO_0002263|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/OGMS_0000031","false","anomaly of puberty or/and menstrual cycle of genetic origin","gitIssue502","MONDO:0016072","MONDO_0016072","anomaly of puberty or/and menstrual cycle of genetic origin","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0016565","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0016565"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0016565""},""definition"":{""type"":[""literal""],""value"":""Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002254"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0015330"",""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0019182"",""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0011122"",""http://purl.obolibrary.org/obo/MONDO_0003916"",""http://purl.obolibrary.org/obo/MONDO_0005137""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0002254"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015330"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:240371""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019182"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Entailed""},{""type"":[""literal""],""value"":""Orphanet:240371""}]}]}],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002254"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0015330"",""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0019182"",""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0011122"",""http://purl.obolibrary.org/obo/MONDO_0003916"",""http://purl.obolibrary.org/obo/MONDO_0005137""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0002254"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015330"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:240371""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019182"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Entailed""},{""type"":[""literal""],""value"":""Orphanet:240371""}]}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5114""},""http://purl.obolibrary.org/obo/IAO_0006012"":{""type"":[""literal""],""value"":""2023-09-01""},""http://purl.org/dc/terms/conformsTo"":""http://purl.obolibrary.org/obo/mondo/patterns/syndromic.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:20650""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:240371""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN226963""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome associated with obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0016565""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",""http://purl.obolibrary.org/obo/mondo#obsoletion_candidate"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:240371""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""syndromic genetic obesity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0002254"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015330"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:240371""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019182"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Entailed""},{""type"":[""literal""],""value"":""Orphanet:240371""}]}]}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0019182"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021127"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://linkedlifedata.com/resource/umls/id/CN226963"",""http://www.orpha.net/ORDO/Orphanet_240371""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""syndromic genetic obesity""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5114""},{""type"":[""literal""],""value"":""2023-09-01""},{""type"":[""literal""],""value"":""GARD:20650""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:240371""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN226963""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome associated with obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""literal""],""value"":""MONDO:0016565""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0016565""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome associated with obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""MONDO:0016565"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0016565"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0016565""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021127"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has a syndromic presentation""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021127""},""type"":[""class"",""entity""]},""GARD:20650"":{""url"":""https://rarediseases.info.nih.gov/diseases/20650/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:20650""},""http://www.orpha.net/ORDO/Orphanet_240371"":{""url"":""http://www.orpha.net/ORDO/Orphanet_240371"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:240371""},""Orphanet:240371"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d240371"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:240371""},""http://purl.obolibrary.org/obo/MONDO_0003916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""overnutrition""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002254"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""syndromic disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002254""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0006012"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0006012""},""curie"":{""type"":[""literal""],""value"":""IAO:0006012""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015330"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""overgrowth/obesity syndrome""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015330""},""type"":[""class"",""entity""]},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005137"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nutritional disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005137""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0011122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""obesity disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0011122""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019755"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019755""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019182"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inherited obesity""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019182""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021147"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021147""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://linkedlifedata.com/resource/umls/id/CN226963|http://www.orpha.net/ORDO/Orphanet_240371","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0016565","http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/MONDO_0002254|http://purl.obolibrary.org/obo/MONDO_0015330|http://purl.obolibrary.org/obo/MONDO_0019182","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#obsoletion_candidate|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","2023-09-01","","https://github.com/monarch-initiative/mondo/issues/5114","","http://purl.obolibrary.org/obo/mondo/patterns/syndromic.yaml","","1.0","http://purl.obolibrary.org/obo/MONDO_0002254|http://purl.obolibrary.org/obo/MONDO_0015330|http://purl.obolibrary.org/obo/MONDO_0019182","","","http://purl.obolibrary.org/obo/MONDO_0002254|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0015330|http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0019182|http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0011122|http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/MONDO_0005137","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","syndrome associated with obesity (disease)|syndromic obesity (disease)","GARD:20650|Orphanet:240371|UMLS:CN226963","syndrome associated with obesity (disease)|syndromic obesity (disease)","false","Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0002254|http://purl.obolibrary.org/obo/MONDO_0015330|http://purl.obolibrary.org/obo/MONDO_0019182","","http://purl.obolibrary.org/obo/MONDO_0016565","http://purl.obolibrary.org/obo/MONDO_0002254|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0015330|http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0019182|http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0011122|http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/MONDO_0005137","false","syndromic genetic obesity","gitIssue502","MONDO:0016565","MONDO_0016565","syndromic genetic obesity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0018555","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0018555"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0018555""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002146"",""http://purl.obolibrary.org/obo/MONDO_0002259"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0003847""],""directParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002146"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""NCIT:C113347""}]}]},""http://purl.obolibrary.org/obo/MONDO_0003847""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002146"",""http://purl.obolibrary.org/obo/MONDO_0002259"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0003847""],""hierarchicalParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002146"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""NCIT:C113347""}]}]},""http://purl.obolibrary.org/obo/MONDO_0003847""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},""http://purl.obolibrary.org/obo/mondo#should_conform_to"":""http://purl.obolibrary.org/obo/mondo/patterns/OMIM_phenotypic_series.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:0090070""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:7455""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentObsolete""}}]},{""type"":[""literal""],""value"":""GARD:16533""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""HP:0000044""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:otherHierarchy""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:E23.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:432""},{""type"":[""literal""],""value"":""Orphanet:432/inclusion""},{""type"":[""literal""],""value"":""Orphanet:432/ntbt""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:253.4""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C113347""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OMIMPS:147950""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:432""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:33927004""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN235466""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Normosmic idiopathic hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""central hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadotropic deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""literal""],""value"":""hypogonadism, hypogonadotropic""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism with or without anosmia""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIMPS:147950""}}]},{""type"":[""literal""],""value"":""low gonadotropins (secondary hypogonadism)""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nIHH""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""normosmic congenital hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""secondary hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital idiopathic hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0090070""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""isolated congenital gonadotropin deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0090070""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:0004228""}}]},{""type"":[""literal""],""value"":""isolated hypogonadotropic hypogonadism""}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0018555""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#gard_rare"",""http://purl.obolibrary.org/obo/mondo#nord_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_disease"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002146"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""NCIT:C113347""}]}]},""http://purl.obolibrary.org/obo/MONDO_0003847"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004021"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0005183"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0002146"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004021"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0005183"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/snomedct/33927004"",""http://linkedlifedata.com/resource/umls/id/CN235466"",""http://purl.obolibrary.org/obo/DOID_0090070"",""http://purl.obolibrary.org/obo/NCIT_C113347"",""http://www.orpha.net/ORDO/Orphanet_432"",""https://omim.org/phenotypicSeries/PS147950""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004021"",""value"":""http://purl.obolibrary.org/obo/GO_0005183"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004021"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0005183"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:0090070""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:7455""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentObsolete""}}]},{""type"":[""literal""],""value"":""GARD:16533""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""HP:0000044""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:otherHierarchy""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:E23.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:432""},{""type"":[""literal""],""value"":""Orphanet:432/inclusion""},{""type"":[""literal""],""value"":""Orphanet:432/ntbt""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:253.4""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C113347""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OMIMPS:147950""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:432""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:33927004""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN235466""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Normosmic idiopathic hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""central hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadotropic deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""literal""],""value"":""hypogonadism, hypogonadotropic""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism with or without anosmia""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIMPS:147950""}}]},{""type"":[""literal""],""value"":""low gonadotropins (secondary hypogonadism)""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nIHH""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""normosmic congenital hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""secondary hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital idiopathic hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0090070""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""isolated congenital gonadotropin deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0090070""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:0004228""}}]},{""type"":[""literal""],""value"":""isolated hypogonadotropic hypogonadism""},{""type"":[""literal""],""value"":""MONDO:0018555""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0018555""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Normosmic idiopathic hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""central hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadotropic deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""literal""],""value"":""hypogonadism, hypogonadotropic""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism with or without anosmia""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIMPS:147950""}}]},{""type"":[""literal""],""value"":""low gonadotropins (secondary hypogonadism)""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nIHH""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""normosmic congenital hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""secondary hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital idiopathic hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0090070""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""isolated congenital gonadotropin deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0090070""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:0004228""}}]},{""type"":[""literal""],""value"":""isolated hypogonadotropic hypogonadism""}],""synonymProperty"":[{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym""}],""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""SCTID:33927004"":{""url"":""http://snomed.info/id/33927004"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:33927004""},""NCIT:C113347"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C113347"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C113347""},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0005183"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonadotropin hormone-releasing hormone activity""},""curie"":{""type"":[""literal""],""value"":""GO:0005183""},""type"":[""class"",""entity""]},""MONDO:0004228"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0004228"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0004228""},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""curie"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasNarrowSynonym""},""curie"":{""type"":[""literal""],""value"":""hasNarrowSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""Orphanet:432"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d432"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:432""},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""MONDO:0018555"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0018555"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0018555""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""GARD:16533"":{""url"":""https://rarediseases.info.nih.gov/diseases/16533/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:16533""},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002259"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonadal disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002259""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DOID_0090070"":{""url"":""http://purl.obolibrary.org/obo/DOID_0090070"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:0090070""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_432"":{""url"":""http://www.orpha.net/ORDO/Orphanet_432"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:432""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hypogonadism""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004021"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""disease caused by disruption of""},{""type"":[""literal""],""value"":""disease has basis in disruption of""}],""curie"":{""type"":[""literal""],""value"":""RO:0004021""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/mondo#should_conform_to"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""should_conform_to""},""curie"":{""type"":[""literal""],""value"":""should:conform_to""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""DOID:0090070"":{""url"":""http://purl.obolibrary.org/obo/DOID_0090070"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:0090070""},""http://purl.obolibrary.org/obo/NCIT_C113347"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C113347"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C113347""},""HP:0000044"":{""url"":""http://purl.obolibrary.org/obo/HP_0000044"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""HP:0000044""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""DOID:7455"":{""url"":""http://purl.obolibrary.org/obo/DOID_7455"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:7455""},""OMIMPS:147950"":{""url"":""https://omim.org/MIM:PS147950"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OMIMPS:147950""},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/snomedct/33927004|http://linkedlifedata.com/resource/umls/id/CN235466|http://purl.obolibrary.org/obo/DOID_0090070|http://purl.obolibrary.org/obo/NCIT_C113347|http://www.orpha.net/ORDO/Orphanet_432|https://omim.org/phenotypicSeries/PS147950","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/GO_0005183","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym|http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym|http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","MONDO:0018555","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0003847|","http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#nord_rare|http://purl.obolibrary.org/obo/mondo#ordo_disease|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.","","","","","","","2.0","http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0003847","","http://purl.obolibrary.org/obo/mondo/patterns/OMIM_phenotypic_series.yaml","http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0003847","","","hypogonadotropism|isolated hypogonadotropic hypogonadism","","congenital idiopathic hypogonadotropic hypogonadism|isolated congenital gonadotropin deficiency","","http://www.w3.org/2002/07/owl#Class","true","true","Normosmic idiopathic hypogonadotropic hypogonadism|central hypogonadism|gonadotropic deficiency|hypogonadism, hypogonadotropic|hypogonadotropic hypogonadism|hypogonadotropic hypogonadism with or without anosmia|low gonadotropins (secondary hypogonadism)|nIHH|normosmic congenital hypogonadotropic hypogonadism|secondary hypogonadism","DOID:0090070|DOID:7455|GARD:16533|HP:0000044|ICD10CM:E23.0|ICD9:253.4|NCIT:C113347|OMIMPS:147950|Orphanet:432|SCTID:33927004|UMLS:CN235466","Normosmic idiopathic hypogonadotropic hypogonadism|central hypogonadism|gonadotropic deficiency|hypogonadism, hypogonadotropic|hypogonadotropic hypogonadism|hypogonadotropic hypogonadism with or without anosmia|low gonadotropins (secondary hypogonadism)|nIHH|normosmic congenital hypogonadotropic hypogonadism|secondary hypogonadism|congenital idiopathic hypogonadotropic hypogonadism|isolated congenital gonadotropin deficiency|hypogonadotropism|isolated hypogonadotropic hypogonadism","false","","Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0003847","","http://purl.obolibrary.org/obo/MONDO_0018555","http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0003847","false","hypogonadotropic hypogonadism","gitIssue502","MONDO:0018555","MONDO_0018555","hypogonadotropic hypogonadism","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019040","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0019040"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0019040""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-0736-9199""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}]}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-0736-9199""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}]}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0003847"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0080014""},{""type"":[""literal""],""value"":""MESH:D025063""},{""type"":[""literal""],""value"":""NCIT:C34470""},{""type"":[""literal""],""value"":""Orphanet:68335""}]}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:68335""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:0080014""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""GARD:18874""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:Q90-Q99""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/4536""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:758.89""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D025063""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C34470""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:68335""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:409709004""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:0000838""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders, chromosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders, chromosome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""autosomal chromosome disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""autosomal chromosome disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome abnormality disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome abnormality disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorder, autosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorders, autosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosome abnormality""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0019040""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:68335""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare"",""http://purl.obolibrary.org/obo/mondo#rare_grouping""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""chromosomal disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-0736-9199""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}]}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},{""type"":[""reification""],""value"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0021198""}}]}],""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D025063"",""http://identifiers.org/snomedct/409709004"",""http://purl.bioontology.org/ontology/ICD10CM/Q90-Q99"",""http://purl.obolibrary.org/obo/DOID_0080014"",""http://purl.obolibrary.org/obo/NCIT_C34470"",""http://www.orpha.net/ORDO/Orphanet_68335""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""chromosomal disorder""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:0080014""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""GARD:18874""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:Q90-Q99""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/4536""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:758.89""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D025063""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C34470""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:68335""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:409709004""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:0000838""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders, chromosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders, chromosome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""autosomal chromosome disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""autosomal chromosome disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome abnormality disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome abnormality disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorder, autosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorders, autosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosome abnormality""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""literal""],""value"":""MONDO:0019040""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0019040""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:0000838""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders, chromosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders, chromosome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""autosomal chromosome disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""autosomal chromosome disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome abnormality disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome abnormality disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorder, autosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorders, autosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosome abnormality""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]}],""synonymProperty"":[{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym""}],""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/MONDO_0021136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""rare""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021136""},""type"":[""class"",""entity""]},""MONDO:0021198"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021198"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021198""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0002-0736-9199"":{""url"":""https://orcid.org/0000-0002-0736-9199"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-0736-9199""},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""Orphanet:68335"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d68335"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:68335""},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""curie"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""MESH:D025063"":{""url"":""http://id.nlm.nih.gov/mesh/D025063"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D025063""},""http://purl.obolibrary.org/obo/DOID_0080014"":{""url"":""http://purl.obolibrary.org/obo/DOID_0080014"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:0080014""},""NCIT:C34470"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C34470"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C34470""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""https://orcid.org/0000-0002-1780-5230"":{""url"":""https://orcid.org/0000-0002-1780-5230"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-1780-5230""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C34470"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C34470"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C34470""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""SCTID:409709004"":{""url"":""http://snomed.info/id/409709004"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:409709004""},""https://orcid.org/0000-0002-4142-7153"":{""url"":""https://orcid.org/0000-0002-4142-7153"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-4142-7153""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0000838"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0000838"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0000838""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019755"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019755""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""excluded_subClassOf""},""curie"":{""type"":[""literal""],""value"":""excluded:subClassOf""},""type"":[""property"",""annotationProperty"",""entity""]},""DOID:0080014"":{""url"":""http://purl.obolibrary.org/obo/DOID_0080014"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:0080014""},""GARD:18874"":{""url"":""https://rarediseases.info.nih.gov/diseases/18874/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:18874""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0019040"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0019040"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0019040""},""https://orcid.org/0000-0001-5208-3432"":{""url"":""https://orcid.org/0000-0001-5208-3432"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0001-5208-3432""},""http://www.orpha.net/ORDO/Orphanet_68335"":{""url"":""http://www.orpha.net/ORDO/Orphanet_68335"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:68335""},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D025063|http://identifiers.org/snomedct/409709004|http://purl.bioontology.org/ontology/ICD10CM/Q90-Q99|http://purl.obolibrary.org/obo/DOID_0080014|http://purl.obolibrary.org/obo/NCIT_C34470|http://www.orpha.net/ORDO/Orphanet_68335","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/MONDO_0021136","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym|http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","MONDO:0019040","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0700096||","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare|http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)","","","","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0700096","","","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","autosomal chromosome disorder|autosomal chromosome disorders|chromosome abnormality disorder|chromosome abnormality disorders|chromosome disorder, autosomal|chromosome disorders, autosomal|disorder, chromosome abnormality","","","","http://www.w3.org/2002/07/owl#Class","true","true","chromosomal disease|chromosomal disorder|chromosomal disorders|chromosome disorder|disorder, chromosomal|disorder, chromosome|disorders, chromosomal|disorders, chromosome","DOID:0080014|GARD:18874|ICD10CM:Q90-Q99|ICD9:758.89|MESH:D025063|NCIT:C34470|Orphanet:68335|SCTID:409709004","chromosomal disease|chromosomal disorder|chromosomal disorders|chromosome disorder|disorder, chromosomal|disorder, chromosome|disorders, chromosomal|disorders, chromosome|autosomal chromosome disorder|autosomal chromosome disorders|chromosome abnormality disorder|chromosome abnormality disorders|chromosome disorder, autosomal|chromosome disorders, autosomal|disorder, chromosome abnormality","false","","Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0019040","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","chromosomal disorder","gitIssue502","MONDO:0019040","MONDO_0019040","chromosomal disorder","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019042","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0019042"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0019042""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:68341""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:68341""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4069""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:18876""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:68341""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MCAHS""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:Lexical""},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#ABBREVIATION""}]},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0019042""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:68341""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multiple congenital anomalies/dysmorphic syndrome""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:68341""}}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false},{""type"":[""reification""],""value"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}}]}],""http://www.w3.org/2004/02/skos/core#exactMatch"":""http://www.orpha.net/ORDO/Orphanet_68341"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multiple congenital anomalies/dysmorphic syndrome""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4069""},{""type"":[""literal""],""value"":""GARD:18876""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:68341""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MCAHS""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:Lexical""},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#ABBREVIATION""}]},{""type"":[""literal""],""value"":""MONDO:0019042""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0019042""},""synonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MCAHS""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:Lexical""},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#ABBREVIATION""}]},""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasSynonymType""},""curie"":{""type"":[""literal""],""value"":""hasSynonymType""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""https://orcid.org/0000-0002-4142-7153"":{""url"":""https://orcid.org/0000-0002-4142-7153"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-4142-7153""},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""curie"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""Orphanet:68341"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d68341"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:68341""},""http://purl.obolibrary.org/obo/MONDO_0019755"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019755""},""type"":[""class"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_68341"":{""url"":""http://www.orpha.net/ORDO/Orphanet_68341"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:68341""},""http://purl.obolibrary.org/obo/MONDO_0021140"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""congenital""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021140""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021147"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021147""},""type"":[""class"",""entity""]},""MONDO:0019042"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0019042"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0019042""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""GARD:18876"":{""url"":""https://rarediseases.info.nih.gov/diseases/18876/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:18876""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://www.orpha.net/ORDO/Orphanet_68341","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/MONDO_0021140","","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","MONDO:0019042","","http://purl.obolibrary.org/obo/MONDO_0019755||","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","","","https://github.com/monarch-initiative/mondo/issues/4069","","","","2.0","http://purl.obolibrary.org/obo/MONDO_0019755","","","http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","MCAHS","","","","http://www.w3.org/2002/07/owl#Class","true","true","","GARD:18876|Orphanet:68341","MCAHS","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0019755","","http://purl.obolibrary.org/obo/MONDO_0019042","http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","multiple congenital anomalies/dysmorphic syndrome","gitIssue502","MONDO:0019042","MONDO_0019042","multiple congenital anomalies/dysmorphic syndrome","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019182","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0019182"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0019182""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0011122"",""http://purl.obolibrary.org/obo/MONDO_0003916"",""http://purl.obolibrary.org/obo/MONDO_0005137""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:77828""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0011122"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""Orphanet:77828""}]}]}],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0011122"",""http://purl.obolibrary.org/obo/MONDO_0003916"",""http://purl.obolibrary.org/obo/MONDO_0005137""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:77828""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0011122"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""Orphanet:77828""}]}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4521""},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015960"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:77828""}}]},""http://purl.org/dc/terms/conformsTo"":""http://purl.obolibrary.org/obo/mondo/patterns/hereditary.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:18935""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OMIM:601665""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:77828""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""literal""],""value"":""genetic obesity""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/genetic""},{""type"":[""literal""],""value"":""Orphanet:77828""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""leanness, inherited, autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""literal""],""value"":""monogenic obesity""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, association with, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, early-onset, susceptibility to, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, late-onset, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, mild, early-onset, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, severe, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, severe, and type II diabetes, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, susceptibility to, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0019182""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:77828""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""inherited obesity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:77828""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0011122"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""Orphanet:77828""}]}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},{""type"":[""reification""],""value"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015513""}}]}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0011122"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://www.orpha.net/ORDO/Orphanet_77828"",""https://omim.org/entry/601665""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""inherited obesity""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4521""},{""type"":[""literal""],""value"":""GARD:18935""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OMIM:601665""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:77828""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""genetic obesity""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/genetic""},{""type"":[""literal""],""value"":""Orphanet:77828""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""leanness, inherited, autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""literal""],""value"":""monogenic obesity""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, association with, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, early-onset, susceptibility to, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, late-onset, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, mild, early-onset, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, severe, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, severe, and type II diabetes, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, susceptibility to, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""literal""],""value"":""MONDO:0019182""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0019182""},""synonym"":[{""type"":[""literal""],""value"":""genetic obesity""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/genetic""},{""type"":[""literal""],""value"":""Orphanet:77828""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""leanness, inherited, autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""literal""],""value"":""monogenic obesity""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, association with, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, early-onset, susceptibility to, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, late-onset, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, mild, early-onset, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, severe, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, severe, and type II diabetes, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, susceptibility to, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/MONDO_0021136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""rare""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021136""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0015513"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015513"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015513""},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""Orphanet:77828"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d77828"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:77828""},""http://purl.obolibrary.org/obo/MONDO_0003916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""overnutrition""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""OMIM:genemap2"":{""url"":""https://omim.org/entry/genemap2"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""OMIM:genemap2""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""OMIM:601665"":{""url"":""https://omim.org/entry/601665"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""OMIM:601665""},""http://purl.obolibrary.org/obo/MONDO_0005137"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nutritional disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005137""},""type"":[""class"",""entity""]},""GARD:18935"":{""url"":""https://rarediseases.info.nih.gov/diseases/18935/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:18935""},""MONDO:0019182"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0019182"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0019182""},""http://purl.obolibrary.org/obo/MONDO_0011122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""obesity disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0011122""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015960"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015960"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""mondo:0015960""},""http://purl.obolibrary.org/obo/MONDO_0021152"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inherited""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021152""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_77828"":{""url"":""http://www.orpha.net/ORDO/Orphanet_77828"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:77828""},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""excluded_subClassOf""},""curie"":{""type"":[""literal""],""value"":""excluded:subClassOf""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://www.orpha.net/ORDO/Orphanet_77828|https://omim.org/entry/601665","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/MONDO_0021136","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0019182","","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0011122||","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","","","https://github.com/monarch-initiative/mondo/issues/4521","","http://purl.obolibrary.org/obo/mondo/patterns/hereditary.yaml","","2.0","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0011122","","","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0011122|http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/MONDO_0005137","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","genetic obesity|genetic obesity (disease)|leanness, inherited, autosomal recessive|monogenic obesity|obesity, association with, Autosomal recessive|obesity, early-onset, susceptibility to, Autosomal recessive|obesity, late-onset, Autosomal recessive|obesity, mild, early-onset, Autosomal recessive|obesity, severe, Autosomal recessive|obesity, severe, and type II diabetes, Autosomal recessive|obesity, susceptibility to, Autosomal recessive","GARD:18935|OMIM:601665|Orphanet:77828","genetic obesity|genetic obesity (disease)|leanness, inherited, autosomal recessive|monogenic obesity|obesity, association with, Autosomal recessive|obesity, early-onset, susceptibility to, Autosomal recessive|obesity, late-onset, Autosomal recessive|obesity, mild, early-onset, Autosomal recessive|obesity, severe, Autosomal recessive|obesity, severe, and type II diabetes, Autosomal recessive|obesity, susceptibility to, Autosomal recessive","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0011122","http://purl.obolibrary.org/obo/MONDO_0015960","http://purl.obolibrary.org/obo/MONDO_0019182","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0011122|http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/MONDO_0005137","false","inherited obesity","gitIssue502","MONDO:0019182","MONDO_0019182","inherited obesity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019755","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0019755""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease that has its basis in the disruption of embryonic morphogenesis.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:design_pattern""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021147"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021147"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease that has its basis in the disruption of embryonic morphogenesis.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:design_pattern""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:22513""},{""type"":[""literal""],""value"":""ICD9:759.7""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C99267""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:93890""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:400038003""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C1302790""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN206687""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""literal""],""value"":""congenital malformation syndrome""},{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of embryonic morphogenesis""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/basis_in_disruption_of_process""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""embryonic morphogenesis disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:design_pattern""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""malformation syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:93890""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""rare developmental defect during embryogenesis""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:93890""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0019755""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:93890""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0021147"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004021"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048598"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004021"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048598"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/snomedct/400038003"",""http://linkedlifedata.com/resource/umls/id/C1302790"",""http://linkedlifedata.com/resource/umls/id/CN206687"",""http://purl.obolibrary.org/obo/NCIT_C99267"",""http://www.orpha.net/ORDO/Orphanet_93890""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004021"",""value"":""http://purl.obolibrary.org/obo/GO_0048598"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004021"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048598"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease that has its basis in the disruption of embryonic morphogenesis.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:design_pattern""}}]},{""type"":[""literal""],""value"":""GARD:22513""},{""type"":[""literal""],""value"":""ICD9:759.7""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C99267""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:93890""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:400038003""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C1302790""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN206687""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""congenital malformation syndrome""},{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of embryonic morphogenesis""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/basis_in_disruption_of_process""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""embryonic morphogenesis disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:design_pattern""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""malformation syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:93890""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""rare developmental defect during embryogenesis""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:93890""}}]},{""type"":[""literal""],""value"":""MONDO:0019755""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0019755""},""synonym"":[{""type"":[""literal""],""value"":""congenital malformation syndrome""},{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of embryonic morphogenesis""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/basis_in_disruption_of_process""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""embryonic morphogenesis disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:design_pattern""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""malformation syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:93890""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""rare developmental defect during embryogenesis""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:93890""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""MONDO:0019755"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0019755""},""NCIT:C99267"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C99267"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C99267""},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C99267"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C99267"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C99267""},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_93890"":{""url"":""http://www.orpha.net/ORDO/Orphanet_93890"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:93890""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""Orphanet:93890"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d93890"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:93890""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""UMLS:C1302790"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C1302790"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C1302790""},""http://purl.obolibrary.org/obo/RO_0004021"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""disease caused by disruption of""},{""type"":[""literal""],""value"":""disease has basis in disruption of""}],""curie"":{""type"":[""literal""],""value"":""RO:0004021""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""GARD:22513"":{""url"":""https://rarediseases.info.nih.gov/diseases/22513/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:22513""},""SCTID:400038003"":{""url"":""http://snomed.info/id/400038003"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:400038003""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021147"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021147""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/snomedct/400038003|http://linkedlifedata.com/resource/umls/id/C1302790|http://linkedlifedata.com/resource/umls/id/CN206687|http://purl.obolibrary.org/obo/NCIT_C99267|http://www.orpha.net/ORDO/Orphanet_93890","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","http://purl.obolibrary.org/obo/GO_0048598","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0019755","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0021147|","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","A disease that has its basis in the disruption of embryonic morphogenesis.","","","","","","","5.0","http://purl.obolibrary.org/obo/MONDO_0021147","","","http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","congenital malformation syndrome|developmental defect during embryogenesis|disorder of embryonic morphogenesis|embryonic morphogenesis disease|malformation syndrome|rare developmental defect during embryogenesis","GARD:22513|ICD9:759.7|NCIT:C99267|Orphanet:93890|SCTID:400038003|UMLS:C1302790|UMLS:CN206687","congenital malformation syndrome|developmental defect during embryogenesis|disorder of embryonic morphogenesis|embryonic morphogenesis disease|malformation syndrome|rare developmental defect during embryogenesis","false","","A disease that has its basis in the disruption of embryonic morphogenesis.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021147","","http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","developmental defect during embryogenesis","gitIssue502","MONDO:0019755","MONDO_0019755","developmental defect during embryogenesis","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019824","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0019824"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0019824""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0015127"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0015514""],""directParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015127"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:95488""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015514"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:95488""}}]}],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0015127"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0015514""],""hierarchicalParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015127"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:95488""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015514"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:95488""}}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:19272""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:E23.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:95488""},{""type"":[""literal""],""value"":""Orphanet:95488/attributed""},{""type"":[""literal""],""value"":""Orphanet:95488/ntbt""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:95488""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0019824""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:95488""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""non-acquired pituitary hormone deficiency""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015127"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:95488""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015514"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:95488""}}]}],""http://www.w3.org/2004/02/skos/core#exactMatch"":""http://www.orpha.net/ORDO/Orphanet_95488"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""non-acquired pituitary hormone deficiency""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""GARD:19272""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:E23.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:95488""},{""type"":[""literal""],""value"":""Orphanet:95488/attributed""},{""type"":[""literal""],""value"":""Orphanet:95488/ntbt""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:95488""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""MONDO:0019824""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0019824""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0019824"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0019824"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0019824""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""Orphanet:95488"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d95488"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:95488""},""http://purl.obolibrary.org/obo/MONDO_0015127"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""pituitary deficiency""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015127""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""GARD:19272"":{""url"":""https://rarediseases.info.nih.gov/diseases/19272/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:19272""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015514"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary endocrine growth disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015514""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_95488"":{""url"":""http://www.orpha.net/ORDO/Orphanet_95488"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:95488""},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://www.orpha.net/ORDO/Orphanet_95488","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","MONDO:0019824","","http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0015514","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0015514","","","http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0015514","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","GARD:19272|ICD10CM:E23.0|Orphanet:95488","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0015514","","http://purl.obolibrary.org/obo/MONDO_0019824","http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0015514","false","non-acquired pituitary hormone deficiency","gitIssue502","MONDO:0019824","MONDO_0019824","non-acquired pituitary hormone deficiency","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021125","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An attribute of a disease.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0000001"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0000001"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An attribute of a disease.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C41009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""literal""],""value"":""disease qualifier""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""modifier""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C41009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""qualifier""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C41009""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021125""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disease characteristic""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0000001"",""http://www.w3.org/2004/02/skos/core#exactMatch"":""http://purl.obolibrary.org/obo/NCIT_C41009"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""numDescendants"":8.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An attribute of a disease.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C41009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""disease qualifier""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""modifier""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C41009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""qualifier""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C41009""}}]},{""type"":[""literal""],""value"":""MONDO:0021125""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021125""},""synonym"":[{""type"":[""literal""],""value"":""disease qualifier""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""modifier""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C41009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""qualifier""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C41009""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0021125"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021125""},""NCIT:C41009"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C41009"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C41009""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C41009"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C41009"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C41009""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://purl.obolibrary.org/obo/NCIT_C41009","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0021125","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/PATO_0000001","","true","","An attribute of a disease.","","","","","","","8.0","http://purl.obolibrary.org/obo/PATO_0000001","","","http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","disease qualifier|modifier|qualifier","NCIT:C41009","disease qualifier|modifier|qualifier","false","","An attribute of a disease.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0000001","","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","disease characteristic","gitIssue502","MONDO:0021125","MONDO_0021125","disease characteristic","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021126","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021126"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021126""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021126""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""syndromic or isolated""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""syndromic or isolated""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""literal""],""value"":""MONDO:0021126""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021126""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0021126"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021126"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021126""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","MONDO:0021126","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0021125","","true","","An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.","","","","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0021125","","","http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021125","","http://purl.obolibrary.org/obo/MONDO_0021126","http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","syndromic or isolated","gitIssue502","MONDO:0021126","MONDO_0021126","syndromic or isolated","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021127","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021127"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021127""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021126"",""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021126"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021126"",""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021126"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021127""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has a syndromic presentation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/MONDO_0021126"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has a syndromic presentation""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0002254"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021127"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""literal""],""value"":""MONDO:0021127""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021127""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/MONDO_0002254"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""syndromic disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002254""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021126"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""syndromic or isolated""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021126""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""MONDO:0021127"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021127"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021127""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","MONDO:0021127","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0021126","","true","","An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.","","","","","","http://purl.obolibrary.org/obo/MONDO_0002254","0.0","http://purl.obolibrary.org/obo/MONDO_0021126","","","http://purl.obolibrary.org/obo/MONDO_0021126|http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021126","","http://purl.obolibrary.org/obo/MONDO_0021127","http://purl.obolibrary.org/obo/MONDO_0021126|http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","has a syndromic presentation","gitIssue502","MONDO:0021127","MONDO_0021127","has a syndromic presentation","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021135","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021135"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021135""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/254""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021135""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""rare or common""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""rare or common""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/254""},{""type"":[""literal""],""value"":""MONDO:0021135""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021135""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""MONDO:0021135"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021135"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021135""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","MONDO:0021135","","http://purl.obolibrary.org/obo/MONDO_0021125","","true","","","","","https://github.com/monarch-initiative/mondo/issues/254","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0021125","","","http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021125","","http://purl.obolibrary.org/obo/MONDO_0021135","http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","rare or common","gitIssue502","MONDO:0021135","MONDO_0021135","rare or common","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021136","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021136""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://www.rarediseaseday.org/article/what-is-a-rare-disease""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021135"",""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021135"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021135"",""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021135"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://www.rarediseaseday.org/article/what-is-a-rare-disease""}}]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""type"":[""literal""],""value"":""rare (European definition)""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021136""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""rare""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/MONDO_0021135"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""rare""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0015514"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0016072"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0019040"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0019182"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://www.rarediseaseday.org/article/what-is-a-rare-disease""}}]},{""type"":[""literal""],""value"":""rare (European definition)""},{""type"":[""literal""],""value"":""MONDO:0021136""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021136""},""synonym"":{""type"":[""literal""],""value"":""rare (European definition)""},""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/MONDO_0021135"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""rare or common""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021135""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""chromosomal disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0021136"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021136""},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015514"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary endocrine growth disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015514""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0016072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle of genetic origin""},""curie"":{""type"":[""literal""],""value"":""MONDO:0016072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019182"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inherited obesity""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019182""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0021136","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0021135","","true","","A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.","","","","","","http://purl.obolibrary.org/obo/MONDO_0015514|http://purl.obolibrary.org/obo/MONDO_0016072|http://purl.obolibrary.org/obo/MONDO_0019040|http://purl.obolibrary.org/obo/MONDO_0019182","0.0","http://purl.obolibrary.org/obo/MONDO_0021135","","","http://purl.obolibrary.org/obo/MONDO_0021135|http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","rare (European definition)","","rare (European definition)","false","","A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021135","","http://purl.obolibrary.org/obo/MONDO_0021136","http://purl.obolibrary.org/obo/MONDO_0021135|http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","rare","gitIssue502","MONDO:0021136","MONDO_0021136","rare","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021139","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021139"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021139""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021139""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""congenital or acquired""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""congenital or acquired""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""MONDO:0021139""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021139""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""MONDO:0021139"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021139"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021139""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","MONDO:0021139","","http://purl.obolibrary.org/obo/MONDO_0021125","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0021125","","","http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021125","","http://purl.obolibrary.org/obo/MONDO_0021139","http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","congenital or acquired","gitIssue502","MONDO:0021139","MONDO_0021139","congenital or acquired","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021140","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021140""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A characteristic of a disease in which the disease is present at birth, regardless of cause.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Wikipedia:Birth_defect""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021139"",""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021139"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021139"",""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021139"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A characteristic of a disease in which the disease is present at birth, regardless of cause.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Wikipedia:Birth_defect""}}]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4069""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""type"":[""literal""],""value"":""inborn""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021140""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""congenital""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0021139"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false},{""type"":[""reification""],""value"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}}]}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""congenital""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0002320"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0019042"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A characteristic of a disease in which the disease is present at birth, regardless of cause.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Wikipedia:Birth_defect""}}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4069""},{""type"":[""literal""],""value"":""inborn""},{""type"":[""literal""],""value"":""MONDO:0021140""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021140""},""synonym"":{""type"":[""literal""],""value"":""inborn""},""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019042"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multiple congenital anomalies/dysmorphic syndrome""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019042""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""type"":[""class"",""entity""]},""MONDO:0021140"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021140""},""https://orcid.org/0000-0002-4142-7153"":{""url"":""https://orcid.org/0000-0002-4142-7153"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-4142-7153""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""Wikipedia:Birth_defect"":{""url"":""http://en.wikipedia.org/wiki/Birth_defect"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""Wikipedia:Birth_defect""},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002320"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""congenital nervous system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002320""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021139"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""congenital or acquired""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021139""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0021140","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0021139||","","true","","A characteristic of a disease in which the disease is present at birth, regardless of cause.","","","https://github.com/monarch-initiative/mondo/issues/4069","","","http://purl.obolibrary.org/obo/MONDO_0002320|http://purl.obolibrary.org/obo/MONDO_0019042","0.0","http://purl.obolibrary.org/obo/MONDO_0021139","","","http://purl.obolibrary.org/obo/MONDO_0021139|http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","inborn","","inborn","false","","A characteristic of a disease in which the disease is present at birth, regardless of cause.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021139","","http://purl.obolibrary.org/obo/MONDO_0021140","http://purl.obolibrary.org/obo/MONDO_0021139|http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","congenital","gitIssue502","MONDO:0021140","MONDO_0021140","congenital","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021147","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021147"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021147""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""http://purl.org/dc/terms/conformsTo"":""http://purl.obolibrary.org/obo/mondo/patterns/specific_disease_by_disrupted_process.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:Q00-Q99""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/4536""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}]}]},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021147""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#harrisons_view"",""http://purl.obolibrary.org/obo/mondo#rare_grouping""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004024"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032502"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004024"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032502"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":""http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""numDescendants"":6.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004024"",""value"":""http://purl.obolibrary.org/obo/GO_0032502"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004024"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032502"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:Q00-Q99""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/4536""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}]}]},{""type"":[""literal""],""value"":""MONDO:0021147""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021147""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004024"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""disease causes disruption of""},{""type"":[""literal""],""value"":""disease disrupts""}],""curie"":{""type"":[""literal""],""value"":""RO:0004024""},""type"":[""property"",""objectProperty"",""entity""]},""MONDO:0021147"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021147"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021147""},""https://orcid.org/0000-0002-4142-7153"":{""url"":""https://orcid.org/0000-0002-4142-7153"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-4142-7153""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0001-5208-3432"":{""url"":""https://orcid.org/0000-0001-5208-3432"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0001-5208-3432""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","http://purl.obolibrary.org/obo/GO_0032502","","","MONDO:0021147","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031|","http://purl.obolibrary.org/obo/mondo#harrisons_view|http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.","","","","","http://purl.obolibrary.org/obo/mondo/patterns/specific_disease_by_disrupted_process.yaml","","6.0","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031","","","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","ICD10CM:Q00-Q99","","false","","Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031","","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","disorder of development or morphogenesis","gitIssue502","MONDO:0021147","MONDO_0021147","disorder of development or morphogenesis","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021149","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021149"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021149""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021149""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hereditary vs non-hereditary etiology""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hereditary vs non-hereditary etiology""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""MONDO:0021149""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021149""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""type"":[""class"",""entity""]},""MONDO:0021149"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021149"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021149""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","MONDO:0021149","","http://purl.obolibrary.org/obo/MONDO_0021125","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0021125","","","http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021125","","http://purl.obolibrary.org/obo/MONDO_0021149","http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","hereditary vs non-hereditary etiology","gitIssue502","MONDO:0021149","MONDO_0021149","hereditary vs non-hereditary etiology","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021152","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021152""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021149"",""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021149"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021149"",""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021149"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0004420""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":[{""type"":[""literal""],""value"":""constitutitional genetic""},{""type"":[""literal""],""value"":""familial""},{""type"":[""literal""],""value"":""genetic""},{""type"":[""literal""],""value"":""hereditary""},{""type"":[""literal""],""value"":""inherited genetic""}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021152""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""inherited""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/MONDO_0021149"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""inherited""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0003847"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0004420""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""constitutitional genetic""},{""type"":[""literal""],""value"":""familial""},{""type"":[""literal""],""value"":""genetic""},{""type"":[""literal""],""value"":""hereditary""},{""type"":[""literal""],""value"":""inherited genetic""},{""type"":[""literal""],""value"":""MONDO:0021152""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021152""},""synonym"":[{""type"":[""literal""],""value"":""constitutitional genetic""},{""type"":[""literal""],""value"":""familial""},{""type"":[""literal""],""value"":""genetic""},{""type"":[""literal""],""value"":""hereditary""},{""type"":[""literal""],""value"":""inherited genetic""}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0021152"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021152""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""curie"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021149"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary vs non-hereditary etiology""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021149""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""EFO:0004420"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0004420"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0004420""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","MONDO:0021152","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0021149","","true","","A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.","","","","","","http://purl.obolibrary.org/obo/MONDO_0003847","0.0","http://purl.obolibrary.org/obo/MONDO_0021149","","","http://purl.obolibrary.org/obo/MONDO_0021149|http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","constitutitional genetic|familial|genetic|hereditary|inherited genetic","","","","http://www.w3.org/2002/07/owl#Class","false","true","","EFO:0004420","constitutitional genetic|familial|genetic|hereditary|inherited genetic","false","","A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021149","","http://purl.obolibrary.org/obo/MONDO_0021152","http://purl.obolibrary.org/obo/MONDO_0021149|http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","inherited","gitIssue502","MONDO:0021152","MONDO_0021152","inherited","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0100038","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0100038"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0100038""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6733-369X""},{""type"":[""literal""],""value"":""https://www.clinicalgenome.org/working-groups/clinical-domain/neurodevelopmental-disorders/""}]}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700092"",""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700092"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700092"",""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700092"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6733-369X""},{""type"":[""literal""],""value"":""https://www.clinicalgenome.org/working-groups/clinical-domain/neurodevelopmental-disorders/""}]}]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/3680""},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019117"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6733-369X""}}]},""http://purl.org/dc/elements/1.1/date"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#dateTime"",""value"":""2018-06-29T18:21:11Z""},""http://purl.org/dc/terms/creator"":""https://orcid.org/0000-0001-5208-3432"",""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""type"":[""literal""],""value"":""complex neurodevelopmental disorder""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0100038""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""complex neurodevelopmental disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700092"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""complex neurodevelopmental disorder""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6733-369X""},{""type"":[""literal""],""value"":""https://www.clinicalgenome.org/working-groups/clinical-domain/neurodevelopmental-disorders/""}]}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/3680""},{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#dateTime"",""value"":""2018-06-29T18:21:11Z""},{""type"":[""literal""],""value"":""complex neurodevelopmental disorder""},{""type"":[""literal""],""value"":""MONDO:0100038""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0100038""},""synonym"":{""type"":[""literal""],""value"":""complex neurodevelopmental disorder""},""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/elements/1.1/date"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""date""},""curie"":{""type"":[""literal""],""value"":""date""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0100038"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0100038"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0100038""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neurodevelopmental disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700092""},""type"":[""class"",""entity""]},""http://purl.org/dc/terms/creator"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""creator""},""curie"":{""type"":[""literal""],""value"":""creator""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0002-4142-7153"":{""url"":""https://orcid.org/0000-0002-4142-7153"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-4142-7153""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019117"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0019117"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""mondo:0019117""},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""excluded_subClassOf""},""curie"":{""type"":[""literal""],""value"":""excluded:subClassOf""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0002-6733-369X"":{""url"":""https://orcid.org/0000-0002-6733-369X"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-6733-369X""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005071""},""type"":[""class"",""entity""]},""https://orcid.org/0000-0001-5208-3432"":{""url"":""https://orcid.org/0000-0001-5208-3432"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0001-5208-3432""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0100038","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0700092","","true","","A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).","","","https://github.com/monarch-initiative/mondo/issues/3680","2018-06-29T18:21:11Z","","","1.0","http://purl.obolibrary.org/obo/MONDO_0700092","","","http://purl.obolibrary.org/obo/MONDO_0700092|http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","https://orcid.org/0000-0001-5208-3432","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","complex neurodevelopmental disorder","","complex neurodevelopmental disorder","false","","A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700092","http://purl.obolibrary.org/obo/MONDO_0019117","http://purl.obolibrary.org/obo/MONDO_0100038","http://purl.obolibrary.org/obo/MONDO_0700092|http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","complex neurodevelopmental disorder","gitIssue502","MONDO:0100038","MONDO_0100038","complex neurodevelopmental disorder","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0100500","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0100500"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0100500""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0700092"",""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0003847"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-0736-9199""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}]}]},""http://purl.obolibrary.org/obo/MONDO_0700092""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0700092"",""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0003847"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-0736-9199""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}]}]},""http://purl.obolibrary.org/obo/MONDO_0700092""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""}}]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4789""},""http://purl.org/dc/terms/creator"":""https://orcid.org/0000-0001-5208-3432"",""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0100500""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Mendelian neurodevelopmental disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0003847"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-0736-9199""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}]}]},""http://purl.obolibrary.org/obo/MONDO_0700092""],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700092"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Mendelian neurodevelopmental disorder""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""}}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4789""},{""type"":[""literal""],""value"":""MONDO:0100500""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0100500""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""MONDO:0100500"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0100500"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0100500""},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""https://orcid.org/0000-0002-1780-5230"":{""url"":""https://orcid.org/0000-0002-1780-5230"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-1780-5230""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0002-0736-9199"":{""url"":""https://orcid.org/0000-0002-0736-9199"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-0736-9199""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neurodevelopmental disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700092""},""type"":[""class"",""entity""]},""http://purl.org/dc/terms/creator"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""creator""},""curie"":{""type"":[""literal""],""value"":""creator""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021152"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inherited""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021152""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005071""},""type"":[""class"",""entity""]},""https://orcid.org/0000-0001-5208-3432"":{""url"":""https://orcid.org/0000-0001-5208-3432"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0001-5208-3432""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","MONDO:0100500","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700092","","true","","A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent's genome.","","","https://github.com/monarch-initiative/mondo/issues/4789","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700092","","","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0700092|http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/OGMS_0000031","https://orcid.org/0000-0001-5208-3432","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent's genome.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700092","","http://purl.obolibrary.org/obo/MONDO_0100500","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0700092|http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/OGMS_0000031","false","Mendelian neurodevelopmental disorder","gitIssue502","MONDO:0100500","MONDO_0100500","Mendelian neurodevelopmental disorder","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0700092","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0700092"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0700092""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""SCTID:700364009""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005071"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005071"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""SCTID:700364009""}}]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/3410""},""http://purl.org/dc/terms/creator"":""https://orcid.org/0000-0002-4142-7153"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D065886""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""MedDRA:C1535926""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C1535926""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C89338""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:700364009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C1535926""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0700092""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""neurodevelopmental disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005071"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D065886"",""http://identifiers.org/snomedct/700364009"",""http://linkedlifedata.com/resource/umls/id/C1535926"",""http://purl.obolibrary.org/obo/NCIT_C1535926"",""http://purl.obolibrary.org/obo/NCIT_C89338""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""neurodevelopmental disorder""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""SCTID:700364009""}}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/3410""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D065886""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""MedDRA:C1535926""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C1535926""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C89338""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:700364009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C1535926""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""MONDO:0700092""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0700092""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C89338"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C89338"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C89338""},""https://orcid.org/0000-0002-1780-5230"":{""url"":""https://orcid.org/0000-0002-1780-5230"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-1780-5230""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""NCIT:C89338"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C89338"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C89338""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""UMLS:C1535926"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C1535926"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C1535926""},""http://purl.org/dc/terms/creator"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""creator""},""curie"":{""type"":[""literal""],""value"":""creator""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0002-4142-7153"":{""url"":""https://orcid.org/0000-0002-4142-7153"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-4142-7153""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C1535926"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C1535926"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C1535926""},""MONDO:0700092"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0700092"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0700092""},""MESH:D065886"":{""url"":""http://id.nlm.nih.gov/mesh/D065886"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D065886""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""SCTID:700364009"":{""url"":""http://snomed.info/id/700364009"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:700364009""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005071""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""NCIT:C1535926"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C1535926"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C1535926""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D065886|http://identifiers.org/snomedct/700364009|http://linkedlifedata.com/resource/umls/id/C1535926|http://purl.obolibrary.org/obo/NCIT_C1535926|http://purl.obolibrary.org/obo/NCIT_C89338","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","MONDO:0700092","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0005071","","true","","A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.","","","https://github.com/monarch-initiative/mondo/issues/3410","","","","3.0","http://purl.obolibrary.org/obo/MONDO_0005071","","","http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","https://orcid.org/0000-0002-4142-7153","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","MESH:D065886|MedDRA:C1535926|NCIT:C1535926|NCIT:C89338|SCTID:700364009|UMLS:C1535926","","false","","A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0005071","","http://purl.obolibrary.org/obo/MONDO_0700092","http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","neurodevelopmental disorder","gitIssue502","MONDO:0700092","MONDO_0700092","neurodevelopmental disorder","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0700096","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0000001"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""http://orcid.org/0000-0002-4142-7153""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0000001"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""http://orcid.org/0000-0002-4142-7153""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5858""},""http://purl.obolibrary.org/obo/RO_0002175"":""http://purl.obolibrary.org/obo/NCBITaxon_9606"",""http://purl.org/dc/terms/creator"":""https://orcid.org/0000-0002-4142-7153"",""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""human disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""}}]},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0700096""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":""http://purl.obolibrary.org/obo/mondo#rare_grouping"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""human disease""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0000001"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""http://orcid.org/0000-0002-4142-7153""}}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002162"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_9606"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0000001"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002162"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_9606"",""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""human disease""},""numDescendants"":31.0,""numHierarchicalDescendants"":31.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002162"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_9606"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002162"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_9606"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5858""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""human disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""}}]},{""type"":[""literal""],""value"":""MONDO:0700096""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0700096""},""synonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""human disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""}}]},""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002162"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002162""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.org/dc/terms/creator"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""creator""},""curie"":{""type"":[""literal""],""value"":""creator""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0002-4142-7153"":{""url"":""https://orcid.org/0000-0002-4142-7153"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-4142-7153""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9606"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Homo sapiens""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9606""},""type"":[""class"",""entity""]},""MONDO:0700096"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0700096""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0001-5208-3432"":{""url"":""https://orcid.org/0000-0001-5208-3432"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0001-5208-3432""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","31.0","class|entity","http://purl.obolibrary.org/obo/NCBITaxon_9606","http://purl.obolibrary.org/obo/NCBITaxon_9606","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0700096","","http://purl.obolibrary.org/obo/MONDO_0000001|","http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","","","","https://github.com/monarch-initiative/mondo/issues/5858","","","","31.0","http://purl.obolibrary.org/obo/MONDO_0000001","","","http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","https://orcid.org/0000-0002-4142-7153","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","human disease or disorder","","human disease or disorder","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0000001","","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","human disease","gitIssue502","MONDO:0700096","MONDO_0700096","human disease","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_110814","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_110814"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:110814""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Xenoturbellida""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Xenoturbellida""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_110814""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""NCBITaxon:110814"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d110814"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:110814""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1312402"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Xenacoelomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1312402""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_1312402","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/NCBITaxon_1312402","","","http://purl.obolibrary.org/obo/NCBITaxon_1312402|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_1312402","","http://purl.obolibrary.org/obo/NCBITaxon_110814","http://purl.obolibrary.org/obo/NCBITaxon_1312402|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Xenoturbellida","gitIssue502","NCBITaxon:110814","NCBITaxon_110814","Xenoturbellida","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_110815","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_110815"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:110815""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_1547233"",""http://purl.obolibrary.org/obo/NCBITaxon_110814"",""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_1547233"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_1547233"",""http://purl.obolibrary.org/obo/NCBITaxon_110814"",""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_1547233"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Xenoturbella""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_1547233"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Xenoturbella""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_110815""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1547233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Xenoturbellidae""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1547233""},""type"":[""class"",""entity""]},""NCBITaxon:110815"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d110815"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:110815""},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_110814"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Xenoturbellida""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:110814""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1312402"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Xenacoelomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1312402""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_1547233","","true","","","","","","","","","0.0","http://purl.obolibrary.org/obo/NCBITaxon_1547233","","","http://purl.obolibrary.org/obo/NCBITaxon_1547233|http://purl.obolibrary.org/obo/NCBITaxon_110814|http://purl.obolibrary.org/obo/NCBITaxon_1312402|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_1547233","","http://purl.obolibrary.org/obo/NCBITaxon_110815","http://purl.obolibrary.org/obo/NCBITaxon_1547233|http://purl.obolibrary.org/obo/NCBITaxon_110814|http://purl.obolibrary.org/obo/NCBITaxon_1312402|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Xenoturbella","gitIssue502","NCBITaxon:110815","NCBITaxon_110815","Xenoturbella","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_117570","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Teleostomi""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""numDescendants"":19.0,""numHierarchicalDescendants"":19.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_117570""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""NCBITaxon:117570"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d117570"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:117570""},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","19.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_7776","","true","","","","","","","","","19.0","http://purl.obolibrary.org/obo/NCBITaxon_7776","","","http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_7776","","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Teleostomi","gitIssue502","NCBITaxon:117570","NCBITaxon_117570","Teleostomi","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_117571","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Euteleostomi""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""numDescendants"":18.0,""numHierarchicalDescendants"":18.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_117571""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""NCBITaxon:117571"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d117571"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:117571""},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","18.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_117570","","true","","","","","","","","","18.0","http://purl.obolibrary.org/obo/NCBITaxon_117570","","","http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_117570","","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Euteleostomi","gitIssue502","NCBITaxon:117571","NCBITaxon_117571","Euteleostomi","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_1312402","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1312402""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Xenacoelomorpha""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Xenacoelomorpha""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_1312402""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""NCBITaxon:1312402"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d1312402"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:1312402""},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_33213","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/NCBITaxon_33213","","","http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_33213","","http://purl.obolibrary.org/obo/NCBITaxon_1312402","http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Xenacoelomorpha","gitIssue502","NCBITaxon:1312402","NCBITaxon_1312402","Xenacoelomorpha","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_131567","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cellular organisms""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""numDescendants"":35.0,""numHierarchicalDescendants"":35.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/CL_0000000"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_131567""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""NCBITaxon:131567"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d131567"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:131567""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","","35.0","class|entity","","","","","","","","false","","","","","","","","http://purl.obolibrary.org/obo/CL_0000000","35.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","true","false","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/NCBITaxon_131567","","false","cellular organisms","gitIssue502","NCBITaxon:131567","NCBITaxon_131567","cellular organisms","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_1338369","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""numDescendants"":16.0,""numHierarchicalDescendants"":16.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_1338369""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""NCBITaxon:1338369"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d1338369"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:1338369""},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","16.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_8287","","true","","","","","","","","","16.0","http://purl.obolibrary.org/obo/NCBITaxon_8287","","","http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_8287","","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Dipnotetrapodomorpha","gitIssue502","NCBITaxon:1338369","NCBITaxon_1338369","Dipnotetrapodomorpha","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_1437010","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""numDescendants"":10.0,""numHierarchicalDescendants"":10.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_1437010""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""NCBITaxon:1437010"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d1437010"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:1437010""},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","10.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_9347","","true","","","","","","","","","10.0","http://purl.obolibrary.org/obo/NCBITaxon_9347","","","http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_9347","","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Boreoeutheria","gitIssue502","NCBITaxon:1437010","NCBITaxon_1437010","Boreoeutheria","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_1547233","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_1547233"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1547233""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_110814"",""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_110814"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_110814"",""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_110814"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Xenoturbellidae""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_110814"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Xenoturbellidae""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_1547233""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""NCBITaxon:1547233"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d1547233"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:1547233""},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_110814"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Xenoturbellida""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:110814""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1312402"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Xenacoelomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1312402""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_110814","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/NCBITaxon_110814","","","http://purl.obolibrary.org/obo/NCBITaxon_110814|http://purl.obolibrary.org/obo/NCBITaxon_1312402|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_110814","","http://purl.obolibrary.org/obo/NCBITaxon_1547233","http://purl.obolibrary.org/obo/NCBITaxon_110814|http://purl.obolibrary.org/obo/NCBITaxon_1312402|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Xenoturbellidae","gitIssue502","NCBITaxon:1547233","NCBITaxon_1547233","Xenoturbellidae","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_207598","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_207598"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:207598""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Homininae""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Homininae""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_207598""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""NCBITaxon:207598"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d207598"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:207598""},""http://purl.obolibrary.org/obo/NCBITaxon_9443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Primates""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9526"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Catarrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9526""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9604"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Hominidae""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9604""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Hominoidea""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_376913"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Haplorrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:376913""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Simiiformes""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314293""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_9604","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/NCBITaxon_9604","","","http://purl.obolibrary.org/obo/NCBITaxon_9604|http://purl.obolibrary.org/obo/NCBITaxon_314295|http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_9604","","http://purl.obolibrary.org/obo/NCBITaxon_207598","http://purl.obolibrary.org/obo/NCBITaxon_9604|http://purl.obolibrary.org/obo/NCBITaxon_314295|http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Homininae","gitIssue502","NCBITaxon:207598","NCBITaxon_207598","Homininae","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_2759","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""directAncestor"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Eukaryota""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""numDescendants"":34.0,""numHierarchicalDescendants"":34.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/CL_0000255"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_2759""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""NCBITaxon:2759"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d2759"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:2759""},""http://purl.obolibrary.org/obo/CL_0000255"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""eukaryotic cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000255""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","34.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_131567","","true","","","","","","","","http://purl.obolibrary.org/obo/CL_0000255","34.0","http://purl.obolibrary.org/obo/NCBITaxon_131567","","","http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_131567","","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Eukaryota","gitIssue502","NCBITaxon:2759","NCBITaxon_2759","Eukaryota","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_314146","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""numDescendants"":9.0,""numHierarchicalDescendants"":9.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_314146""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""NCBITaxon:314146"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d314146"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:314146""},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","9.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_1437010","","true","","","","","","","","","9.0","http://purl.obolibrary.org/obo/NCBITaxon_1437010","","","http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_1437010","","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Euarchontoglires","gitIssue502","NCBITaxon:314146","NCBITaxon_314146","Euarchontoglires","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_314293","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314293""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Simiiformes""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Simiiformes""},""numDescendants"":6.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_314293""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""NCBITaxon:314293"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d314293"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:314293""},""http://purl.obolibrary.org/obo/NCBITaxon_9443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Primates""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_376913"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Haplorrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:376913""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_376913","","true","","","","","","","","","6.0","http://purl.obolibrary.org/obo/NCBITaxon_376913","","","http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_376913","","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Simiiformes","gitIssue502","NCBITaxon:314293","NCBITaxon_314293","Simiiformes","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_314295","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314295""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Hominoidea""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Hominoidea""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_314295""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Primates""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""type"":[""class"",""entity""]},""NCBITaxon:314295"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d314295"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:314295""},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9526"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Catarrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9526""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_376913"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Haplorrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:376913""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Simiiformes""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314293""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_9526","","true","","","","","","","","","4.0","http://purl.obolibrary.org/obo/NCBITaxon_9526","","","http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_9526","","http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Hominoidea","gitIssue502","NCBITaxon:314295","NCBITaxon_314295","Hominoidea","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_32523","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Tetrapoda""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""numDescendants"":15.0,""numHierarchicalDescendants"":15.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_32523""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""NCBITaxon:32523"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d32523"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:32523""},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","15.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_1338369","","true","","","","","","","","","15.0","http://purl.obolibrary.org/obo/NCBITaxon_1338369","","","http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_1338369","","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Tetrapoda","gitIssue502","NCBITaxon:32523","NCBITaxon_32523","Tetrapoda","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_32524","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Amniota""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Amniota""},""numDescendants"":14.0,""numHierarchicalDescendants"":14.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_32524""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""NCBITaxon:32524"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d32524"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:32524""},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","14.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_32523","","true","","","","","","","","","14.0","http://purl.obolibrary.org/obo/NCBITaxon_32523","","","http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_32523","","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Amniota","gitIssue502","NCBITaxon:32524","NCBITaxon_32524","Amniota","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_32525","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""numDescendants"":12.0,""numHierarchicalDescendants"":12.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_32525""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""NCBITaxon:32525"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d32525"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:32525""},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","12.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_40674","","true","","","","","","","","","12.0","http://purl.obolibrary.org/obo/NCBITaxon_40674","","","http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_40674","","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Theria ","gitIssue502","NCBITaxon:32525","NCBITaxon_32525","Theria ","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_33154","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Opisthokonta""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""numDescendants"":33.0,""numHierarchicalDescendants"":33.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_33154""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""NCBITaxon:33154"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33154"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:33154""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","33.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_2759","","true","","","","","","","","","33.0","http://purl.obolibrary.org/obo/NCBITaxon_2759","","","http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_2759","","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Opisthokonta","gitIssue502","NCBITaxon:33154","NCBITaxon_33154","Opisthokonta","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_33208","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Metazoa""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Metazoa""},""numDescendants"":32.0,""numHierarchicalDescendants"":32.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/CL_0000548"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_33208""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000548"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""animal cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000548""},""type"":[""class"",""entity""]},""NCBITaxon:33208"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33208"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:33208""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","32.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_33154","","true","","","","","","","","http://purl.obolibrary.org/obo/CL_0000548","32.0","http://purl.obolibrary.org/obo/NCBITaxon_33154","","","http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_33154","","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Metazoa","gitIssue502","NCBITaxon:33208","NCBITaxon_33208","Metazoa","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_33213","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Bilateria""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Bilateria""},""numDescendants"":29.0,""numHierarchicalDescendants"":29.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_33213""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""NCBITaxon:33213"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33213"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:33213""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","29.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_6072","","true","","","","","","","","","29.0","http://purl.obolibrary.org/obo/NCBITaxon_6072","","","http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_6072","","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Bilateria","gitIssue502","NCBITaxon:33213","NCBITaxon_33213","Bilateria","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_33511","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Deuterostomia""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""numDescendants"":24.0,""numHierarchicalDescendants"":24.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_33511""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""NCBITaxon:33511"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33511"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:33511""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","24.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_33213","","true","","","","","","","","","24.0","http://purl.obolibrary.org/obo/NCBITaxon_33213","","","http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_33213","","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Deuterostomia","gitIssue502","NCBITaxon:33511","NCBITaxon_33511","Deuterostomia","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_376913","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:376913""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Haplorrhini""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Haplorrhini""},""numDescendants"":7.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_376913""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""NCBITaxon:376913"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d376913"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:376913""},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Primates""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_9443","","true","","","","","","","","","7.0","http://purl.obolibrary.org/obo/NCBITaxon_9443","","","http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_9443","","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Haplorrhini","gitIssue502","NCBITaxon:376913","NCBITaxon_376913","Haplorrhini","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_40674","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Mammalia""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Mammalia""},""numDescendants"":13.0,""numHierarchicalDescendants"":13.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_40674""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""NCBITaxon:40674"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d40674"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:40674""},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","13.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_32524","","true","","","","","","","","","13.0","http://purl.obolibrary.org/obo/NCBITaxon_32524","","","http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_32524","","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Mammalia","gitIssue502","NCBITaxon:40674","NCBITaxon_40674","Mammalia","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_6040","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_6040"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6040""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Porifera""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Porifera""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_6040""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""NCBITaxon:6040"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d6040"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:6040""},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_33208","","true","","","","","","","","","0.0","http://purl.obolibrary.org/obo/NCBITaxon_33208","","","http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_33208","","http://purl.obolibrary.org/obo/NCBITaxon_6040","http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Porifera","gitIssue502","NCBITaxon:6040","NCBITaxon_6040","Porifera","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_6072","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Eumetazoa""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""numDescendants"":30.0,""numHierarchicalDescendants"":30.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000110"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_6072""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000109""},""type"":[""class"",""entity""]},""NCBITaxon:6072"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d6072"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:6072""},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000110"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neurula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000110""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organogenesis stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000111""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","30.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_33208","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000109|http://purl.obolibrary.org/obo/UBERON_0000110|http://purl.obolibrary.org/obo/UBERON_0000111|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0001016|http://purl.obolibrary.org/obo/UBERON_0002530","30.0","http://purl.obolibrary.org/obo/NCBITaxon_33208","","","http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_33208","","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Eumetazoa","gitIssue502","NCBITaxon:6072","NCBITaxon_6072","Eumetazoa","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_7711","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Chordata""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Chordata""},""numDescendants"":23.0,""numHierarchicalDescendants"":23.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_7711""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""NCBITaxon:7711"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d7711"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:7711""},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","23.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_33511","","true","","","","","","","","","23.0","http://purl.obolibrary.org/obo/NCBITaxon_33511","","","http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_33511","","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Chordata","gitIssue502","NCBITaxon:7711","NCBITaxon_7711","Chordata","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_7742","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""numDescendants"":21.0,""numHierarchicalDescendants"":21.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_7742""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""NCBITaxon:7742"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d7742"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:7742""},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","21.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_89593","","true","","","","","","","","","21.0","http://purl.obolibrary.org/obo/NCBITaxon_89593","","","http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_89593","","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Vertebrata ","gitIssue502","NCBITaxon:7742","NCBITaxon_7742","Vertebrata ","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_7776","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""numDescendants"":20.0,""numHierarchicalDescendants"":20.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_7776""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""NCBITaxon:7776"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d7776"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:7776""},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","20.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_7742","","true","","","","","","","","","20.0","http://purl.obolibrary.org/obo/NCBITaxon_7742","","","http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_7742","","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Gnathostomata ","gitIssue502","NCBITaxon:7776","NCBITaxon_7776","Gnathostomata ","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_8287","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""numDescendants"":17.0,""numHierarchicalDescendants"":17.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_8287""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""NCBITaxon:8287"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d8287"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:8287""},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","17.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_117571","","true","","","","","","","","","17.0","http://purl.obolibrary.org/obo/NCBITaxon_117571","","","http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_117571","","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Sarcopterygii","gitIssue502","NCBITaxon:8287","NCBITaxon_8287","Sarcopterygii","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_89593","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""numDescendants"":22.0,""numHierarchicalDescendants"":22.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_89593""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""NCBITaxon:89593"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d89593"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:89593""},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","22.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_7711","","true","","","","","","","","","22.0","http://purl.obolibrary.org/obo/NCBITaxon_7711","","","http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_7711","","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Craniata ","gitIssue502","NCBITaxon:89593","NCBITaxon_89593","Craniata ","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9347","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Eutheria""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Eutheria""},""numDescendants"":11.0,""numHierarchicalDescendants"":11.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_9347""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""NCBITaxon:9347"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d9347"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:9347""},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","11.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_32525","","true","","","","","","","","","11.0","http://purl.obolibrary.org/obo/NCBITaxon_32525","","","http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_32525","","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Eutheria","gitIssue502","NCBITaxon:9347","NCBITaxon_9347","Eutheria","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9443","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Primates""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Primates""},""numDescendants"":8.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_9443""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""NCBITaxon:9443"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d9443"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:9443""},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_314146","","true","","","","","","","","","8.0","http://purl.obolibrary.org/obo/NCBITaxon_314146","","","http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_314146","","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Primates","gitIssue502","NCBITaxon:9443","NCBITaxon_9443","Primates","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9526","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9526""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Catarrhini""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Catarrhini""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_9526""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""NCBITaxon:9526"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d9526"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:9526""},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Primates""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_376913"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Haplorrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:376913""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Simiiformes""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314293""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_314293","","true","","","","","","","","","5.0","http://purl.obolibrary.org/obo/NCBITaxon_314293","","","http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_314293","","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Catarrhini","gitIssue502","NCBITaxon:9526","NCBITaxon_9526","Catarrhini","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9604","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9604""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Hominidae""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Hominidae""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_9604""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""NCBITaxon:9604"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d9604"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:9604""},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Primates""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9526"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Catarrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9526""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Hominoidea""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_376913"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Haplorrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:376913""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Simiiformes""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314293""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_314295","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/NCBITaxon_314295","","","http://purl.obolibrary.org/obo/NCBITaxon_314295|http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_314295","","http://purl.obolibrary.org/obo/NCBITaxon_9604","http://purl.obolibrary.org/obo/NCBITaxon_314295|http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Hominidae","gitIssue502","NCBITaxon:9604","NCBITaxon_9604","Hominidae","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9605","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_9605"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9605""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_207598"",""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_207598"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_207598"",""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_207598"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Homo""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_207598"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Homo""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_9605""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""NCBITaxon:9605"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d9605"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:9605""},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Primates""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9526"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Catarrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9526""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9604"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Hominidae""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9604""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Hominoidea""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_376913"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Haplorrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:376913""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_207598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Homininae""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:207598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Simiiformes""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314293""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_207598","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/NCBITaxon_207598","","","http://purl.obolibrary.org/obo/NCBITaxon_207598|http://purl.obolibrary.org/obo/NCBITaxon_9604|http://purl.obolibrary.org/obo/NCBITaxon_314295|http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_207598","","http://purl.obolibrary.org/obo/NCBITaxon_9605","http://purl.obolibrary.org/obo/NCBITaxon_207598|http://purl.obolibrary.org/obo/NCBITaxon_9604|http://purl.obolibrary.org/obo/NCBITaxon_314295|http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Homo","gitIssue502","NCBITaxon:9605","NCBITaxon_9605","Homo","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9606","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_9606"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9606""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9605"",""http://purl.obolibrary.org/obo/NCBITaxon_207598"",""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9605"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9605"",""http://purl.obolibrary.org/obo/NCBITaxon_207598"",""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9605"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Homo sapiens""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_9605"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Homo sapiens""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002162"",""value"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002162"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_9606"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_9606""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""NCBITaxon:9606"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d9606"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""NCBITaxon:9606""},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002162"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002162""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Primates""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9526"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Catarrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9526""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9604"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Hominidae""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9604""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9605"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Homo""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9605""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Hominoidea""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_376913"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Haplorrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:376913""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_207598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Homininae""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:207598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Simiiformes""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314293""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_9605","","true","","","","","","","","http://purl.obolibrary.org/obo/MONDO_0700096","0.0","http://purl.obolibrary.org/obo/NCBITaxon_9605","","","http://purl.obolibrary.org/obo/NCBITaxon_9605|http://purl.obolibrary.org/obo/NCBITaxon_207598|http://purl.obolibrary.org/obo/NCBITaxon_9604|http://purl.obolibrary.org/obo/NCBITaxon_314295|http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_9605","","http://purl.obolibrary.org/obo/NCBITaxon_9606","http://purl.obolibrary.org/obo/NCBITaxon_9605|http://purl.obolibrary.org/obo/NCBITaxon_207598|http://purl.obolibrary.org/obo/NCBITaxon_9604|http://purl.obolibrary.org/obo/NCBITaxon_314295|http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Homo sapiens","gitIssue502","NCBITaxon:9606","NCBITaxon_9606","Homo sapiens","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/OGMS_0000031","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/OGMS_0000031"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disease""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000016"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disease""},""numDescendants"":26.0,""numHierarchicalDescendants"":26.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""OGMS_0000031""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""OGMS:0000031"":{""url"":""http://purl.obolibrary.org/obo/OGMS_0000031"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OGMS:0000031""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","26.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000016","","true","","A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism.","","","","","","","26.0","http://purl.obolibrary.org/obo/BFO_0000016","","","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000016","","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","disease","gitIssue502","OGMS:0000031","OGMS_0000031","disease","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0000001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0000001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""quality""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000020"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""quality""},""numDescendants"":18.0,""numHierarchicalDescendants"":18.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0000001""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""PATO:0000001"":{""url"":""http://purl.obolibrary.org/obo/PATO_0000001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""PATO:0000001""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","18.0","class|entity","","","","","","http://purl.obolibrary.org/obo/BFO_0000020","","true","","","","","","","","","18.0","http://purl.obolibrary.org/obo/BFO_0000020","","","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000020","","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","quality","gitIssue502","PATO:0000001","PATO_0000001","quality","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0000051","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0000051"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0000051""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""morphology""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001241"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""morphology""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0000051""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""PATO:0000051"":{""url"":""http://purl.obolibrary.org/obo/PATO_0000051"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""PATO:0000051""},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0001241","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/PATO_0001241","","","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0001241","","http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","morphology","gitIssue502","PATO:0000051","PATO_0000051","morphology","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0000141","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0000141"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0000141""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000051"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0000051"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000051"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0000051"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""structure""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0000051"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""structure""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0000141""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphology""},""curie"":{""type"":[""literal""],""value"":""PATO:0000051""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]},""PATO:0000141"":{""url"":""http://purl.obolibrary.org/obo/PATO_0000141"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""PATO:0000141""}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0000051","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/PATO_0000051","","","http://purl.obolibrary.org/obo/PATO_0000051|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0000051","","http://purl.obolibrary.org/obo/PATO_0000141","http://purl.obolibrary.org/obo/PATO_0000051|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","structure","gitIssue502","PATO:0000141","PATO_0000141","structure","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001018","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0001018"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0001018""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""physical quality""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001241"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""physical quality""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0001018""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""PATO:0001018"":{""url"":""http://purl.obolibrary.org/obo/PATO_0001018"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""PATO:0001018""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0001241","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/PATO_0001241","","","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0001241","","http://purl.obolibrary.org/obo/PATO_0001018","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","physical quality","gitIssue502","PATO:0001018","PATO_0001018","physical quality","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001241","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0001241"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0000001"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0000001"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""physical object quality""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0000001"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""physical object quality""},""numDescendants"":8.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0001241""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""PATO:0001241"":{""url"":""http://purl.obolibrary.org/obo/PATO_0001241"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""PATO:0001241""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0000001","","true","","","","","","","","","8.0","http://purl.obolibrary.org/obo/PATO_0000001","","","http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0000001","","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","physical object quality","gitIssue502","PATO:0001241","PATO_0001241","physical object quality","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001992","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0001992"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0001992""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001995"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001995"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001995"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001995"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cellularity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001995"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cellularity""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0001992""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/PATO_0001995"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organismal quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001995""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""PATO:0001992"":{""url"":""http://purl.obolibrary.org/obo/PATO_0001992"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""PATO:0001992""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0001995","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/PATO_0001995","","","http://purl.obolibrary.org/obo/PATO_0001995|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0001995","","http://purl.obolibrary.org/obo/PATO_0001992","http://purl.obolibrary.org/obo/PATO_0001995|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","cellularity","gitIssue502","PATO:0001992","PATO_0001992","cellularity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001993","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0001993"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0001993""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001992"",""http://purl.obolibrary.org/obo/PATO_0001995"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001992"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001992"",""http://purl.obolibrary.org/obo/PATO_0001995"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001992"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multicellular""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001992"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multicellular""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0000086"",""value"":""http://purl.obolibrary.org/obo/UBERON_0010000"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0001993"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0001993""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""PATO:0001993"":{""url"":""http://purl.obolibrary.org/obo/PATO_0001993"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""PATO:0001993""},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001995"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organismal quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001995""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001992"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellularity""},""curie"":{""type"":[""literal""],""value"":""PATO:0001992""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0001992","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0010000","0.0","http://purl.obolibrary.org/obo/PATO_0001992","","","http://purl.obolibrary.org/obo/PATO_0001992|http://purl.obolibrary.org/obo/PATO_0001995|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0001992","","http://purl.obolibrary.org/obo/PATO_0001993","http://purl.obolibrary.org/obo/PATO_0001992|http://purl.obolibrary.org/obo/PATO_0001995|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","multicellular","gitIssue502","PATO:0001993","PATO_0001993","multicellular","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001995","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0001995"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0001995""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""organismal quality""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001241"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""organismal quality""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0001995""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""PATO:0001995"":{""url"":""http://purl.obolibrary.org/obo/PATO_0001995"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""PATO:0001995""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0001241","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/PATO_0001241","","","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0001241","","http://purl.obolibrary.org/obo/PATO_0001995","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","organismal quality","gitIssue502","PATO:0001995","PATO_0001995","organismal quality","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0002198","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0002198"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0002198""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001018"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001018"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001018"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001018"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""quality of a substance""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001018"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""quality of a substance""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0000086"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000463"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0002198"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0002198""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/PATO_0001018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001018""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000463"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organism substance""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000463""},""type"":[""class"",""entity""]},""PATO:0002198"":{""url"":""http://purl.obolibrary.org/obo/PATO_0002198"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""PATO:0002198""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0001018","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000463","0.0","http://purl.obolibrary.org/obo/PATO_0001018","","","http://purl.obolibrary.org/obo/PATO_0001018|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0001018","","http://purl.obolibrary.org/obo/PATO_0002198","http://purl.obolibrary.org/obo/PATO_0001018|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","quality of a substance","gitIssue502","PATO:0002198","PATO_0002198","quality of a substance","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0010001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0010001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0010001""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000141"",""http://purl.obolibrary.org/obo/PATO_0000051"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0000141"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000141"",""http://purl.obolibrary.org/obo/PATO_0000051"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0000141"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disconnected""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0000141"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disconnected""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0000086"",""value"":""http://purl.obolibrary.org/obo/UBERON_0034923"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0010001"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0010001""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphology""},""curie"":{""type"":[""literal""],""value"":""PATO:0000051""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""PATO:0010001"":{""url"":""http://purl.obolibrary.org/obo/PATO_0010001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""PATO:0010001""},""http://purl.obolibrary.org/obo/PATO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""structure""},""curie"":{""type"":[""literal""],""value"":""PATO:0000141""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0034923"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disconnected anatomical group""},""curie"":{""type"":[""literal""],""value"":""UBERON:0034923""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0000141","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0034923","0.0","http://purl.obolibrary.org/obo/PATO_0000141","","","http://purl.obolibrary.org/obo/PATO_0000141|http://purl.obolibrary.org/obo/PATO_0000051|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0000141","","http://purl.obolibrary.org/obo/PATO_0010001","http://purl.obolibrary.org/obo/PATO_0000141|http://purl.obolibrary.org/obo/PATO_0000051|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","disconnected","gitIssue502","PATO:0010001","PATO_0010001","disconnected","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000000","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000000"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000003"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""processual entity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/UBERON_0001062"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""processual entity""},""numDescendants"":12.0,""numHierarchicalDescendants"":12.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000000""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""UBERON:0000000"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000000"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000000""},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","12.0","class|entity","","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/BFO_0000003","","true","","","","","","","","","12.0","http://purl.obolibrary.org/obo/BFO_0000003","","","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/UBERON_0001062","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","false","processual entity","gitIssue502","UBERON:0000000","UBERON_0000000","processual entity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000061","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000465"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000465"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anatomical structure""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002497"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""numDescendants"":26.0,""numHierarchicalDescendants"":32.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0002387"",""value"":""http://purl.obolibrary.org/obo/UBERON_0006598"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002473"",""value"":""http://purl.obolibrary.org/obo/UBERON_0034923"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""isObsolete"":false}],""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002497"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002497"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000061""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002497"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during or before""},""curie"":{""type"":[""literal""],""value"":""RO:0002497""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""UBERON:0000061"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000061""},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0006598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""presumptive structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0006598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/RO_0002473"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0034923"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disconnected anatomical group""},""curie"":{""type"":[""literal""],""value"":""UBERON:0034923""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""death stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000071""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","32.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000071","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000465|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0006598|http://purl.obolibrary.org/obo/UBERON_0034923","26.0","http://purl.obolibrary.org/obo/UBERON_0000465","","","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000465","","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","anatomical structure","gitIssue502","UBERON:0000061","UBERON_0000061","anatomical structure","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000062","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000062""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0010000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""organ""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002002"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0006984"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002162"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#complementOf"":""http://purl.obolibrary.org/obo/NCBITaxon_110815""},""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008150"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#disjointWith"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002162"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_110815"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""organ""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002002"",""value"":""http://purl.obolibrary.org/obo/UBERON_0006984"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002002"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0006984"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/GO_0008150"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008150"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000062""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has 2D boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002002""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002162"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002162""},""type"":[""property"",""objectProperty"",""entity""]},""UBERON:0000062"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000062""},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0006984"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical surface""},""curie"":{""type"":[""literal""],""value"":""UBERON:0006984""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_110815"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Xenoturbella""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:110815""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0006984|http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0010000||||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000467","4.0","http://purl.obolibrary.org/obo/UBERON_0010000","","","http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000467","","http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468","false","organ","gitIssue502","UBERON:0000062","UBERON_0000062","organ","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000066","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000066""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104"",""http://purl.obolibrary.org/obo/UBERON_0000092""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""fully formed stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""fully formed stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000063"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002492"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002492"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002492"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000063"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000066""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002492"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during""},""curie"":{""type"":[""literal""],""value"":""RO:0002492""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""UBERON:0000066"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000066""},""http://purl.obolibrary.org/obo/UBERON_0000092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""post-embryonic stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000092""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""death stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000071""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organogenesis stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000111""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000092|http://purl.obolibrary.org/obo/UBERON_0000111|http://purl.obolibrary.org/obo/UBERON_0000071","","","","","http://purl.obolibrary.org/obo/UBERON_0000105|||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0001016","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000092","","http://purl.obolibrary.org/obo/UBERON_0000066","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000092","false","fully formed stage","gitIssue502","UBERON:0000066","UBERON_0000066","fully formed stage","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000068","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""embryo stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""embryo stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000106"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000108"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000110"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002489"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002489"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002493"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002493"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000063"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000063"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/GO_0009790"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000068""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002493"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends with""},""curie"":{""type"":[""literal""],""value"":""RO:0002493""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002489"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence starts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002489""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fully formed stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000066""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000922"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000922""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""UBERON:0000068"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000068""},""http://purl.obolibrary.org/obo/UBERON_0000092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""post-embryonic stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000092""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000106"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""zygote stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000106""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cleavage stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000108"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blastula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000108""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000110"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neurula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000110""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organogenesis stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000111""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000066|http://purl.obolibrary.org/obo/UBERON_0000092|http://purl.obolibrary.org/obo/GO_0009790","","","","","http://purl.obolibrary.org/obo/UBERON_0000105||||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000092|http://purl.obolibrary.org/obo/UBERON_0000106|http://purl.obolibrary.org/obo/UBERON_0000107|http://purl.obolibrary.org/obo/UBERON_0000108|http://purl.obolibrary.org/obo/UBERON_0000109|http://purl.obolibrary.org/obo/UBERON_0000110|http://purl.obolibrary.org/obo/UBERON_0000111|http://purl.obolibrary.org/obo/UBERON_0000922|http://purl.obolibrary.org/obo/UBERON_0000922","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/UBERON_0000092","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000104","","http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104","false","embryo stage","gitIssue502","UBERON:0000068","UBERON_0000068","embryo stage","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000071","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000071""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""death stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002229"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""death stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0002497"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002497"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000063"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002230"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002230"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002229"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002229"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000071""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002497"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during or before""},""curie"":{""type"":[""literal""],""value"":""RO:0002497""},""type"":[""property"",""objectProperty"",""entity""]},""UBERON:0000071"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000071""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fully formed stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000066""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002229"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002229""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000105||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000066|http://purl.obolibrary.org/obo/UBERON_0000104","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000104","","http://purl.obolibrary.org/obo/UBERON_0000071","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104","false","death stage","gitIssue502","UBERON:0000071","UBERON_0000071","death stage","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000092","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000092""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""post-embryonic stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009791"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""post-embryonic stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000063"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/GO_0009791"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009791"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000092""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fully formed stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000066""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009791"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""post-embryonic development""},""curie"":{""type"":[""literal""],""value"":""GO:0009791""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""UBERON:0000092"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000092""},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/GO_0009791","","","","","http://purl.obolibrary.org/obo/UBERON_0000105|||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000066|http://purl.obolibrary.org/obo/UBERON_0000068","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000104","","http://purl.obolibrary.org/obo/UBERON_0000092","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104","false","post-embryonic stage","gitIssue502","UBERON:0000092","UBERON_0000092","post-embryonic stage","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000104","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000000"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""life cycle""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000000"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002230"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""life cycle""},""numDescendants"":0.0,""numHierarchicalDescendants"":11.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002229"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002229"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002223"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000106"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002223"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002230"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002230"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000104""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""UBERON:0000104"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000104""},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""post-embryonic stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000092""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002229"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002229""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000106"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""zygote stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000106""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002223"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002223""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""death stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000071""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","11.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000071","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000000||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/UBERON_0000071|http://purl.obolibrary.org/obo/UBERON_0000071|http://purl.obolibrary.org/obo/UBERON_0000092|http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000106","0.0","http://purl.obolibrary.org/obo/UBERON_0000000","","","http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000000","","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","false","life cycle","gitIssue502","UBERON:0000104","UBERON_0000104","life cycle","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000105","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000000"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""this class represents a proper part of the life cycle of an organism. The class \u0027life cycle\u0027 should not be placed here""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""life cycle stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000000"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""numDescendants"":10.0,""numHierarchicalDescendants"":10.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""this class represents a proper part of the life cycle of an organism. The class \u0027life cycle\u0027 should not be placed here""},false],""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000105""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""UBERON:0000105"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000105""},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","10.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000000|","","true","this class represents a proper part of the life cycle of an organism. The class 'life cycle' should not be placed here","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000104","10.0","http://purl.obolibrary.org/obo/UBERON_0000000","","","http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/UBERON_0000104","","http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104","false","life cycle stage","gitIssue502","UBERON:0000105","UBERON_0000105","life cycle stage","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000106","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000106"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000106""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104"",""http://purl.obolibrary.org/obo/UBERON_0000068""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""zygote stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002223"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""zygote stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002087"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002087"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000106"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002223"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002223"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000106""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002087"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002087""},""type"":[""property"",""objectProperty"",""entity""]},""UBERON:0000106"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000106"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000106""},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cleavage stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002223"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002223""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/UBERON_0000104","","","","","http://purl.obolibrary.org/obo/UBERON_0000105||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000107","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000068","","http://purl.obolibrary.org/obo/UBERON_0000106","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000068","false","zygote stage","gitIssue502","UBERON:0000106","UBERON_0000106","zygote stage","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000107","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000107"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000107""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104"",""http://purl.obolibrary.org/obo/UBERON_0000068""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cleavage stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0040016"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002087"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000106"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cleavage stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000108"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000107"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/GO_0040016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0040016"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002087"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000106"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002087"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000106"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000107""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002087"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002087""},""type"":[""property"",""objectProperty"",""entity""]},""UBERON:0000107"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000107"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000107""},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000106"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""zygote stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000106""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000108"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blastula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000108""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0040016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic cleavage""},""curie"":{""type"":[""literal""],""value"":""GO:0040016""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/GO_0040016|http://purl.obolibrary.org/obo/UBERON_0000106","","","","","http://purl.obolibrary.org/obo/UBERON_0000105|||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000108","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000068","","http://purl.obolibrary.org/obo/UBERON_0000107","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000068","false","cleavage stage","gitIssue502","UBERON:0000107","UBERON_0000107","cleavage stage","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000108","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000108"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000108""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104"",""http://purl.obolibrary.org/obo/UBERON_0000068""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""consider adding a preceding stage \u0027morula stage\u0027 as part of cleavage""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""blastula stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000107"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""blastula stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000108"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000107"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""consider adding a preceding stage \u0027morula stage\u0027 as part of cleavage""},false],""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000108""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""UBERON:0000108"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000108"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000108""},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cleavage stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000107""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/UBERON_0000107","","","","","http://purl.obolibrary.org/obo/UBERON_0000105||","","true","consider adding a preceding stage 'morula stage' as part of cleavage","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000109","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000068","","http://purl.obolibrary.org/obo/UBERON_0000108","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000068","false","blastula stage","gitIssue502","UBERON:0000108","UBERON_0000108","blastula stage","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000109","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000109""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104"",""http://purl.obolibrary.org/obo/UBERON_0000068""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gastrula stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000108"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007369"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gastrula stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000110"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000108"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000108"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/GO_0007369"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007369"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000109""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrulation""},""curie"":{""type"":[""literal""],""value"":""GO:0007369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""UBERON:0000109"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000109""},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000108"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blastula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000108""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000110"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neurula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000110""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/UBERON_0000108|http://purl.obolibrary.org/obo/GO_0007369|http://purl.obolibrary.org/obo/NCBITaxon_6072","","","","","http://purl.obolibrary.org/obo/UBERON_0000105||||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000110","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000068","","http://purl.obolibrary.org/obo/UBERON_0000109","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000068","false","gastrula stage","gitIssue502","UBERON:0000109","UBERON_0000109","gastrula stage","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000110","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000110"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000110""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104"",""http://purl.obolibrary.org/obo/UBERON_0000068""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""neurula stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001841"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""neurula stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/GO_0001841"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001841"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000110""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""UBERON:0000110"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000110"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000110""},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001841"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neural tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001841""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/UBERON_0000109|http://purl.obolibrary.org/obo/GO_0001841|http://purl.obolibrary.org/obo/NCBITaxon_6072","","","","","http://purl.obolibrary.org/obo/UBERON_0000105||||","","true","","","","","","","","","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000068","","http://purl.obolibrary.org/obo/UBERON_0000110","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000068","false","neurula stage","gitIssue502","UBERON:0000110","UBERON_0000110","neurula stage","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000111","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000111""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104"",""http://purl.obolibrary.org/obo/UBERON_0000068""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""organogenesis stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048513"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""organogenesis stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002496"",""value"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002496"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/GO_0048513"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048513"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000111""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0016880"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""future nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0016880""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002496"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence starts during or after""},""curie"":{""type"":[""literal""],""value"":""RO:0002496""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""UBERON:0000111"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000111""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fully formed stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000066""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048513"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""animal organ development""},""curie"":{""type"":[""literal""],""value"":""GO:0048513""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/GO_0048513|http://purl.obolibrary.org/obo/NCBITaxon_6072","","","","","http://purl.obolibrary.org/obo/UBERON_0000105|||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000066|http://purl.obolibrary.org/obo/UBERON_0016880","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000068","","http://purl.obolibrary.org/obo/UBERON_0000111","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000068","false","organogenesis stage","gitIssue502","UBERON:0000111","UBERON_0000111","organogenesis stage","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000463","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000463"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000463""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000465"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""organism substance""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0002198"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""organism substance""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0003000"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0003000"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000463"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000086"",""value"":""http://purl.obolibrary.org/obo/PATO_0002198"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0002198"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000463""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0002198"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality of a substance""},""curie"":{""type"":[""literal""],""value"":""PATO:0002198""},""type"":[""class"",""entity""]},""UBERON:0000463"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000463"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000463""},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0003000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""produces"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0003000""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/PATO_0002198","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000465||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0002530","0.0","http://purl.obolibrary.org/obo/UBERON_0000465","","","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0000463","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061","false","organism substance","gitIssue502","UBERON:0000463","UBERON_0000463","organism substance","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000465","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000465"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""material anatomical entity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/UBERON_0000466"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""numDescendants"":38.0,""numHierarchicalDescendants"":38.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000465""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000466"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""immaterial anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000466""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""UBERON:0000465"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000465"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000465""},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","38.0","class|entity","","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/UBERON_0001062","","true","","","","","","","","","38.0","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/UBERON_0001062","","","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","http://purl.obolibrary.org/obo/UBERON_0000466","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/UBERON_0001062","","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","material anatomical entity","gitIssue502","UBERON:0000465","UBERON_0000465","material anatomical entity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000466","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000466"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000466""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""immaterial anatomical entity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""immaterial anatomical entity""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000466""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""UBERON:0000466"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000466"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000466""},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/UBERON_0001062","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/UBERON_0001062","","","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/UBERON_0001062","","http://purl.obolibrary.org/obo/UBERON_0000466","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","immaterial anatomical entity","gitIssue502","UBERON:0000466","UBERON_0000466","immaterial anatomical entity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000467","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anatomical system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anatomical system""},""numDescendants"":3.0,""numHierarchicalDescendants"":12.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000467""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""UBERON:0000467"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000467""},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","12.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000061||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000062","3.0","http://purl.obolibrary.org/obo/UBERON_0000061","","","http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000","false","anatomical system","gitIssue502","UBERON:0000467","UBERON_0000467","anatomical system","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000468","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0010000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0010000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""TODO - split body and mc organism? body continues after death stage""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multicellular organism""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0010000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""numDescendants"":2.0,""numHierarchicalDescendants"":20.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000463"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001048"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""TODO - split body and mc organism? body continues after death stage""},false],""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000468""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000463"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organism substance""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000463""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""UBERON:0000468"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000468""},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001048"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""primordium""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001048""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","20.0","class|entity","","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0010000","","true","TODO - split body and mc organism? body continues after death stage","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000463|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0001048","2.0","http://purl.obolibrary.org/obo/UBERON_0010000","","","http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0010000","","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","multicellular organism","gitIssue502","UBERON:0000468","UBERON_0000468","multicellular organism","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000474","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000474"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000474""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000990"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000990"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0003100""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000990"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0003100"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""female reproductive system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000990"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0003100"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""female reproductive system""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/MONDO_0002263"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000474"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0003100"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0003100"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000474""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""UBERON:0000474"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000474"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000474""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002263""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0003100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""female organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0003100""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0003100","","","","","http://purl.obolibrary.org/obo/UBERON_0000990|","","true","","","","","","","","http://purl.obolibrary.org/obo/MONDO_0002263","0.0","http://purl.obolibrary.org/obo/UBERON_0000990","","","http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0003100","","http://purl.obolibrary.org/obo/UBERON_0000474","http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0003100","false","female reproductive system","gitIssue502","UBERON:0000474","UBERON_0000474","female reproductive system","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000922","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000922""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""embryo""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000468"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002489"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002493"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""embryo""},""numDescendants"":0.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002050"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0006598"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/RO_0002489"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002489"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002493"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002493"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000922""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0016880"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""future nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0016880""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002493"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends with""},""curie"":{""type"":[""literal""],""value"":""RO:0002493""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002489"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence starts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002489""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0006598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""presumptive structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0006598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002050""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""UBERON:0000922"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000922""}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/UBERON_0000068","","","","","http://purl.obolibrary.org/obo/UBERON_0000468||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0002050|http://purl.obolibrary.org/obo/UBERON_0006598|http://purl.obolibrary.org/obo/UBERON_0016880","0.0","http://purl.obolibrary.org/obo/UBERON_0000468","","","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0000922","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","embryo","gitIssue502","UBERON:0000922","UBERON_0000922","embryo","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000949","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0015204"",""http://purl.obolibrary.org/obo/UBERON_0015203"",""http://purl.obolibrary.org/obo/UBERON_0034923"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0015204"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0015204"",""http://purl.obolibrary.org/obo/UBERON_0015203"",""http://purl.obolibrary.org/obo/UBERON_0034923"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0015204"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""endocrine system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0015204"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/UBERON_0000990"",""http://purl.obolibrary.org/obo/UBERON_0001016""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""endocrine system""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002473"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002492"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000949""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002492"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during""},""curie"":{""type"":[""literal""],""value"":""RO:0002492""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fully formed stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000066""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""UBERON:0000949"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000949""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002473"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0034923"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disconnected anatomical group""},""curie"":{""type"":[""literal""],""value"":""UBERON:0034923""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0015204"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""glandular system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0015204""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0015203"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""non-connected functional system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0015203""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0000066","","","","","http://purl.obolibrary.org/obo/UBERON_0015204|||","","true","","","","","","","","http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/UBERON_0002368","0.0","http://purl.obolibrary.org/obo/UBERON_0015204","","","http://purl.obolibrary.org/obo/UBERON_0015204|http://purl.obolibrary.org/obo/UBERON_0015203|http://purl.obolibrary.org/obo/UBERON_0034923|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0001016","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0015204","","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0015204|http://purl.obolibrary.org/obo/UBERON_0015203|http://purl.obolibrary.org/obo/UBERON_0034923|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","endocrine system","gitIssue502","UBERON:0000949","UBERON_0000949","endocrine system","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000990","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""consider splitting genitalia from reproductive system""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""reproductive system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""reproductive system""},""numDescendants"":1.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/MONDO_0005039"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0003133"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0005156"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0005564"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002216"",""value"":""http://purl.obolibrary.org/obo/GO_0000003"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002492"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""consider splitting genitalia from reproductive system""},false],""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000990""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""type"":[""class"",""entity""]},""UBERON:0000990"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000990""},""http://purl.obolibrary.org/obo/RO_0002492"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during""},""curie"":{""type"":[""literal""],""value"":""RO:0002492""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005156"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005156""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fully formed stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000066""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0003133"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0003133""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002216"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002216""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000991"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonad""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000991""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005564"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonad primordium""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005564""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000991|http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/UBERON_0000066","","","","","http://purl.obolibrary.org/obo/UBERON_0000467|||","","true","consider splitting genitalia from reproductive system","","","","","","","http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/UBERON_0000991|http://purl.obolibrary.org/obo/UBERON_0003133|http://purl.obolibrary.org/obo/UBERON_0005156|http://purl.obolibrary.org/obo/UBERON_0005564","1.0","http://purl.obolibrary.org/obo/UBERON_0000467","","","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","http://purl.obolibrary.org/obo/UBERON_0001016","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000467","","http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000","false","reproductive system","gitIssue502","UBERON:0000990","UBERON_0000990","reproductive system","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000991","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000991""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0003133"",""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0005156""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0003133"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0003133"",""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0005156"",""http://purl.obolibrary.org/obo/UBERON_0000990""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0003133"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gonad""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0003133"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000586"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000067"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007276"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002202"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0005564"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gonad""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/MONDO_0002259"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002387"",""value"":""http://purl.obolibrary.org/obo/UBERON_0005564"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/CL_0000586"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000586"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000067"",""value"":""http://purl.obolibrary.org/obo/GO_0007276"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000067"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007276"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002202"",""value"":""http://purl.obolibrary.org/obo/UBERON_0005564"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002202"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0005564"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000991""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/MONDO_0002259"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonadal disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002259""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007276"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gamete generation""},""curie"":{""type"":[""literal""],""value"":""GO:0007276""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005156"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005156""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""UBERON:0000991"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000991""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0003133"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0003133""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000586"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""germ cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000586""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000067"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contains process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000067""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005564"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonad primordium""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005564""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/CL_0000586|http://purl.obolibrary.org/obo/GO_0007276|http://purl.obolibrary.org/obo/UBERON_0005564","","","","","http://purl.obolibrary.org/obo/UBERON_0003133||||","","true","","","","","","","","http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0005564","0.0","http://purl.obolibrary.org/obo/UBERON_0003133","","","http://purl.obolibrary.org/obo/UBERON_0003133|http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0005156","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0003133|http://purl.obolibrary.org/obo/UBERON_0000990","","http://purl.obolibrary.org/obo/UBERON_0000991","http://purl.obolibrary.org/obo/UBERON_0003133|http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0005156|http://purl.obolibrary.org/obo/UBERON_0000990","false","gonad","gitIssue502","UBERON:0000991","UBERON_0000991","gonad","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0001016","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""nervous system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000540"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002162"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#complementOf"":""http://purl.obolibrary.org/obo/NCBITaxon_6040""},""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002202"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0050877"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0002319"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002495"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#disjointWith"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002162"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6040"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""nervous system""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/CL_0002319"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/MONDO_0005071"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002387"",""value"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/CL_0000540"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000540"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002202"",""value"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002202"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/GO_0050877"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0050877"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002473"",""value"":""http://purl.obolibrary.org/obo/CL_0002319"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0002319"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002492"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002495"",""value"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002495"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001016""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0016880"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""future nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0016880""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002495"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""immediate transformation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002495""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002492"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during""},""curie"":{""type"":[""literal""],""value"":""RO:0002492""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Porifera""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fully formed stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000066""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050877"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system process""},""curie"":{""type"":[""literal""],""value"":""GO:0050877""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0002319"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neural cell""},""curie"":{""type"":[""literal""],""value"":""CL:0002319""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002162"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002162""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002473"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000540"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neuron""},""curie"":{""type"":[""literal""],""value"":""CL:0000540""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005071""},""type"":[""class"",""entity""]},""UBERON:0001016"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0001016""},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/CL_0000540|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/UBERON_0016880|http://purl.obolibrary.org/obo/GO_0050877|http://purl.obolibrary.org/obo/CL_0002319|http://purl.obolibrary.org/obo/UBERON_0000066|http://purl.obolibrary.org/obo/UBERON_0016880","","","","","http://purl.obolibrary.org/obo/UBERON_0000467||||||||","","true","","","","","","","","http://purl.obolibrary.org/obo/CL_0002319|http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/UBERON_0016880","0.0","http://purl.obolibrary.org/obo/UBERON_0000467","","","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000467","","http://purl.obolibrary.org/obo/UBERON_0001016","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000","false","nervous system","gitIssue502","UBERON:0001016","UBERON_0001016","nervous system","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0001048","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001048"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001048""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0005423"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0005423"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""primordium""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0005423"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""primordium""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001048""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""UBERON:0001048"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0001048"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0001048""},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developing anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000468","","","","","http://purl.obolibrary.org/obo/UBERON_0005423|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/UBERON_0005423","","","http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0001048","http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061","false","primordium","gitIssue502","UBERON:0001048","UBERON_0001048","primordium","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0001062","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001062"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anatomical entity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000004"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""numDescendants"":42.0,""numHierarchicalDescendants"":42.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001062""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""UBERON:0001062"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0001062"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0001062""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","42.0","class|entity","","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/BFO_0000004","","true","","","","","","","","","42.0","http://purl.obolibrary.org/obo/BFO_0000004","","","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000004","","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002","false","anatomical entity","gitIssue502","UBERON:0001062","UBERON_0001062","anatomical entity","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0002050","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002050"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002050""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0005423"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000922"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0005423"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""embryonic structure""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0005423"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""embryonic structure""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002050""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""UBERON:0002050"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0002050"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0002050""},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000922"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000922""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developing anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000922","","","","","http://purl.obolibrary.org/obo/UBERON_0005423|","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/UBERON_0005423","","","http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000922","","http://purl.obolibrary.org/obo/UBERON_0002050","http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000922|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061","false","embryonic structure","gitIssue502","UBERON:0002050","UBERON_0002050","embryonic structure","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0002368","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0000949"",""http://purl.obolibrary.org/obo/UBERON_0015204"",""http://purl.obolibrary.org/obo/UBERON_0015203"",""http://purl.obolibrary.org/obo/UBERON_0034923""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0002530"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""endocrine gland""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0002530"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0046879"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002473"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/GO_0046879"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0046879"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002368""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""UBERON:0002368"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0002368""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002473"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0034923"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disconnected anatomical group""},""curie"":{""type"":[""literal""],""value"":""UBERON:0034923""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0015204"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""glandular system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0015204""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0015203"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""non-connected functional system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0015203""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0046879"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hormone secretion""},""curie"":{""type"":[""literal""],""value"":""GO:0046879""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/GO_0046879","","","","","http://purl.obolibrary.org/obo/UBERON_0002530||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000949","0.0","http://purl.obolibrary.org/obo/UBERON_0002530","","","http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000949","","http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0015204|http://purl.obolibrary.org/obo/UBERON_0015203|http://purl.obolibrary.org/obo/UBERON_0034923","false","endocrine gland","gitIssue502","UBERON:0002368","UBERON_0002368","endocrine gland","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0002530","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gland""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000062"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0046903"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0003000"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000463"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gland""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002473"",""value"":""http://purl.obolibrary.org/obo/UBERON_0015204"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/GO_0046903"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0046903"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0003000"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000463"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0003000"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000463"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002530""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""UBERON:0002530"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0002530""},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000062""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000463"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organism substance""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000463""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002473"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0003000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""produces"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0003000""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0046903"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""secretion""},""curie"":{""type"":[""literal""],""value"":""GO:0046903""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0015204"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""glandular system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0015204""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/UBERON_0000463","","","","","http://purl.obolibrary.org/obo/UBERON_0000062|||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0015204","1.0","http://purl.obolibrary.org/obo/UBERON_0000062","","","http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000062","","http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468","false","gland","gitIssue502","UBERON:0002530","UBERON_0002530","gland","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0003100","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0003100"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0003100""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""female organism""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""female organism""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000474"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0003100"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0003100""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""UBERON:0003100"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0003100"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0003100""},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000474"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""female reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000474""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/UBERON_0000468","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000474","0.0","http://purl.obolibrary.org/obo/UBERON_0000468","","","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0003100","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","female organism","gitIssue502","UBERON:0003100","UBERON_0003100","female organism","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0003133","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0003133"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0003133""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0005156""],""directParent"":[""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0005156""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0005156"",""http://purl.obolibrary.org/obo/UBERON_0000990""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0005156"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""reproductive organ""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0005156"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""reproductive organ""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002216"",""value"":""http://purl.obolibrary.org/obo/GO_0000003"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0003133""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005156"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005156""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""UBERON:0003133"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0003133"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0003133""},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002216"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002216""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/GO_0000003","","","","","http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0005156||","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0005156","","","http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0005156","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0005156|http://purl.obolibrary.org/obo/UBERON_0000990","","http://purl.obolibrary.org/obo/UBERON_0003133","http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0005156|http://purl.obolibrary.org/obo/UBERON_0000990","false","reproductive organ","gitIssue502","UBERON:0003133","UBERON_0003133","reproductive organ","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0005156","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0005156"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0005156""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0010000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000990"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""reproductive structure""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""reproductive structure""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0005156""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""UBERON:0005156"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0005156"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0005156""},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000990","","","","","http://purl.obolibrary.org/obo/UBERON_0010000|","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/UBERON_0010000","","","http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000990","","http://purl.obolibrary.org/obo/UBERON_0005156","http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468","false","reproductive structure","gitIssue502","UBERON:0005156","UBERON_0005156","reproductive structure","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0005423","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0005423"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0005423""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000465"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000465"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""developing anatomical structure""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032502"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""developing anatomical structure""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/GO_0032502"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032502"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0005423""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""UBERON:0005423"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0005423"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0005423""},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000465|","","true","","","","","","","","","5.0","http://purl.obolibrary.org/obo/UBERON_0000465","","","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000465","","http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","developing anatomical structure","gitIssue502","UBERON:0005423","UBERON_0005423","developing anatomical structure","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0005564","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0005564"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0005564""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001048"",""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0001048"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001048"",""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000990"",""http://purl.obolibrary.org/obo/UBERON_0000467""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0001048"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gonad primordium""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0001048"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gonad primordium""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002202"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002202"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0005564"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002387"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0005564""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""UBERON:0005564"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0005564"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0005564""},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developing anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001048"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""primordium""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001048""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000991"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonad""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000991""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0000991","","","","","http://purl.obolibrary.org/obo/UBERON_0001048||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000991","0.0","http://purl.obolibrary.org/obo/UBERON_0001048","","","http://purl.obolibrary.org/obo/UBERON_0001048|http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0001048|http://purl.obolibrary.org/obo/UBERON_0000990","","http://purl.obolibrary.org/obo/UBERON_0005564","http://purl.obolibrary.org/obo/UBERON_0001048|http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0000467","false","gonad primordium","gitIssue502","UBERON:0005564","UBERON_0005564","gonad primordium","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0006598","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0006598"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0006598""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0002050"",""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0002050"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0002050"",""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000922"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0002050"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""Consider merging with anlage""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""presumptive structure""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0002050"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""presumptive structure""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002387"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Consider merging with anlage""},false],""shortForm"":{""type"":[""literal""],""value"":""UBERON_0006598""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000922"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000922""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developing anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""UBERON:0006598"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0006598"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0006598""},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002050""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000922|http://purl.obolibrary.org/obo/UBERON_0000061","","","","","http://purl.obolibrary.org/obo/UBERON_0002050||","","true","Consider merging with anlage","","","","","","","","1.0","http://purl.obolibrary.org/obo/UBERON_0002050","","","http://purl.obolibrary.org/obo/UBERON_0002050|http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0002050|http://purl.obolibrary.org/obo/UBERON_0000922","","http://purl.obolibrary.org/obo/UBERON_0006598","http://purl.obolibrary.org/obo/UBERON_0002050|http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000922|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061","false","presumptive structure","gitIssue502","UBERON:0006598","UBERON_0006598","presumptive structure","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0006984","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0006984"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0006984""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0010199"",""http://purl.obolibrary.org/obo/UBERON_0000466"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0010199"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0010199"",""http://purl.obolibrary.org/obo/UBERON_0000466"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0010199"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anatomical surface""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0010199"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anatomical surface""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002002"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002002"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0006984"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0006984""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000062""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000466"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""immaterial anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000466""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has 2D boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002002""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""UBERON:0006984"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0006984"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0006984""},""http://purl.obolibrary.org/obo/UBERON_0010199"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""bona-fide anatomical boundary""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010199""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/UBERON_0010199","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000062","0.0","http://purl.obolibrary.org/obo/UBERON_0010199","","","http://purl.obolibrary.org/obo/UBERON_0010199|http://purl.obolibrary.org/obo/UBERON_0000466|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0010199","","http://purl.obolibrary.org/obo/UBERON_0006984","http://purl.obolibrary.org/obo/UBERON_0010199|http://purl.obolibrary.org/obo/UBERON_0000466|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","anatomical surface","gitIssue502","UBERON:0006984","UBERON_0006984","anatomical surface","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0010000","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0010000"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000000"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0001993"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""numDescendants"":9.0,""numHierarchicalDescendants"":21.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/CL_0000000"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000000"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000086"",""value"":""http://purl.obolibrary.org/obo/PATO_0001993"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0001993"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0010000""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/PATO_0001993"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular""},""curie"":{""type"":[""literal""],""value"":""PATO:0001993""},""type"":[""class"",""entity""]},""UBERON:0010000"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0010000"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0010000""},""http://purl.obolibrary.org/obo/RO_0000086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","21.0","class|entity","http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/PATO_0001993","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000061||","","true","","","","","","","","","9.0","http://purl.obolibrary.org/obo/UBERON_0000061","","","http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000061","","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","multicellular anatomical structure","gitIssue502","UBERON:0010000","UBERON_0010000","multicellular anatomical structure","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0010199","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0010199"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0010199""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000466"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000466"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000466"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000466"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""bona-fide anatomical boundary""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0000466"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""bona-fide anatomical boundary""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0010199""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""UBERON:0010199"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0010199"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0010199""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000466"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""immaterial anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000466""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/UBERON_0000466","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/UBERON_0000466","","","http://purl.obolibrary.org/obo/UBERON_0000466|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000466","","http://purl.obolibrary.org/obo/UBERON_0010199","http://purl.obolibrary.org/obo/UBERON_0000466|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","bona-fide anatomical boundary","gitIssue502","UBERON:0010199","UBERON_0010199","bona-fide anatomical boundary","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0015203","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0015203"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0015203""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0034923"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0034923"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0034923"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0034923"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""non-connected functional system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0034923"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""non-connected functional system""},""numDescendants"":2.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0015203""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""UBERON:0015203"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0015203"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0015203""},""http://purl.obolibrary.org/obo/UBERON_0034923"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disconnected anatomical group""},""curie"":{""type"":[""literal""],""value"":""UBERON:0034923""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/UBERON_0034923","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/UBERON_0034923","","","http://purl.obolibrary.org/obo/UBERON_0034923|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0034923","","http://purl.obolibrary.org/obo/UBERON_0015203","http://purl.obolibrary.org/obo/UBERON_0034923|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","non-connected functional system","gitIssue502","UBERON:0015203","UBERON_0015203","non-connected functional system","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0015204","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0015204"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0015204""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0015203"",""http://purl.obolibrary.org/obo/UBERON_0034923"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0015203"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0015203"",""http://purl.obolibrary.org/obo/UBERON_0034923"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0015203"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""glandular system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0015203"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""glandular system""},""numDescendants"":1.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002473"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0015204""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""UBERON:0015204"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0015204"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0015204""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002473"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0034923"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disconnected anatomical group""},""curie"":{""type"":[""literal""],""value"":""UBERON:0034923""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0015203"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""non-connected functional system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0015203""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0002530","","","","","http://purl.obolibrary.org/obo/UBERON_0015203|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/UBERON_0015203","","","http://purl.obolibrary.org/obo/UBERON_0015203|http://purl.obolibrary.org/obo/UBERON_0034923|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0015203","","http://purl.obolibrary.org/obo/UBERON_0015204","http://purl.obolibrary.org/obo/UBERON_0015203|http://purl.obolibrary.org/obo/UBERON_0034923|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","glandular system","gitIssue502","UBERON:0015204","UBERON_0015204","glandular system","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0016880","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0016880""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0006598"",""http://purl.obolibrary.org/obo/UBERON_0002050"",""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0006598"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0006598"",""http://purl.obolibrary.org/obo/UBERON_0002050"",""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000922"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0006598"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""future nervous system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0006598"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002496"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""future nervous system""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0002202"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002202"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002495"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002495"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002387"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002496"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002496"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0016880""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002495"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""immediate transformation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002495""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002496"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence starts during or after""},""curie"":{""type"":[""literal""],""value"":""RO:0002496""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000922"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000922""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developing anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005423""},""type"":[""class"",""entity""]},""UBERON:0016880"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0016880""},""http://purl.obolibrary.org/obo/UBERON_0006598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""presumptive structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0006598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002050""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organogenesis stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000111""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000922|http://purl.obolibrary.org/obo/UBERON_0001016|http://purl.obolibrary.org/obo/UBERON_0000111","","","","","http://purl.obolibrary.org/obo/UBERON_0006598|||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0001016|http://purl.obolibrary.org/obo/UBERON_0001016","0.0","http://purl.obolibrary.org/obo/UBERON_0006598","","","http://purl.obolibrary.org/obo/UBERON_0006598|http://purl.obolibrary.org/obo/UBERON_0002050|http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0006598|http://purl.obolibrary.org/obo/UBERON_0000922","","http://purl.obolibrary.org/obo/UBERON_0016880","http://purl.obolibrary.org/obo/UBERON_0006598|http://purl.obolibrary.org/obo/UBERON_0002050|http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000922|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061","false","future nervous system","gitIssue502","UBERON:0016880","UBERON_0016880","future nervous system","gitissue502" -"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0034923","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0034923"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0034923""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000465"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000465"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disconnected anatomical group""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0010001"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#minQualifiedCardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""2""},""http://www.w3.org/2002/07/owl#onClass"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002180"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disconnected anatomical group""},""numDescendants"":3.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/RO_0000086"",""value"":""http://purl.obolibrary.org/obo/PATO_0010001"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0010001"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002473"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0034923""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""UBERON:0034923"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0034923"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0034923""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0010001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disconnected""},""curie"":{""type"":[""literal""],""value"":""PATO:0010001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/RO_0002473"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002180""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","http://purl.obolibrary.org/obo/PATO_0010001|http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000465|||","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/UBERON_0000465","","","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000465","","http://purl.obolibrary.org/obo/UBERON_0034923","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","disconnected anatomical group","gitIssue502","UBERON:0034923","UBERON_0034923","disconnected anatomical group","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000002","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000002"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""isObsolete"":false},""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/BFO_0000003"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000003"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""numDescendants"":105.0,""numHierarchicalDescendants"":105.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000002""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","105.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000115","","","false","BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240","An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","","","","","","","105.0","","","","","","http://purl.obolibrary.org/obo/BFO_0000003|","","","","","http://www.w3.org/2002/07/owl#Class","true","false","","","","false","","An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/BFO_0000002","","false","continuant","gitIssue502","BFO:0000002","BFO_0000002","continuant","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000003","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that has temporal parts and that happens, unfolds or develops through time."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that has temporal parts and that happens, unfolds or develops through time."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players."",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""isObsolete"":false},""http://www.w3.org/2002/07/owl#disjointWith"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000002"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""numDescendants"":14.0,""numHierarchicalDescendants"":14.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that has temporal parts and that happens, unfolds or develops through time."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000003""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","14.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000115","","","false","BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region|BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.","An entity that has temporal parts and that happens, unfolds or develops through time.","","","","","","","14.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","true","false","","","","false","","An entity that has temporal parts and that happens, unfolds or develops through time.","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/BFO_0000003","","false","occurrent","gitIssue502","BFO:0000003","BFO_0000003","occurrent","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000004","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000004"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000002"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/BFO_0000002"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000020"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""numDescendants"":45.0,""numHierarchicalDescendants"":45.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""BFO_0000004""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","45.0","class|entity","","","","","","http://purl.obolibrary.org/obo/BFO_0000002|","","true","","","","","","","","","45.0","http://purl.obolibrary.org/obo/BFO_0000002","","","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000020","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","false","independent continuant","gitIssue502","BFO:0000004","BFO_0000004","independent continuant","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000015","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000015"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000003"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000015""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/BFO_0000003","","true","BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)","","","","","","","","0.0","http://purl.obolibrary.org/obo/BFO_0000003","","","http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","false","process","gitIssue502","BFO:0000015","BFO_0000015","process","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000016","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000016"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000017"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000017"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000017"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000023"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""numDescendants"":35.0,""numHierarchicalDescendants"":35.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000016""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000023""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","35.0","class|entity","","","","","","http://purl.obolibrary.org/obo/BFO_0000017","","true","BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.","","","","","","","","35.0","http://purl.obolibrary.org/obo/BFO_0000017","","","http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000023","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000017","","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","disposition","gitIssue502","BFO:0000016","BFO_0000016","disposition","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000017","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000017"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/BFO_0000020"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000017"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000019"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""numDescendants"":37.0,""numHierarchicalDescendants"":37.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000017""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","37.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000020|","","true","","A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","","","","","","","37.0","http://purl.obolibrary.org/obo/BFO_0000020","","","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000019","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000020","","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","realizable entity","gitIssue502","BFO:0000017","BFO_0000017","realizable entity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000019","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000019"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/BFO_0000020"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000019"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""BFO_0000019""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/BFO_0000020|","","true","","","","","","","","","0.0","http://purl.obolibrary.org/obo/BFO_0000020","","","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000020","","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","quality","gitIssue502","BFO:0000019","BFO_0000019","quality","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000020","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000020"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000002"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/BFO_0000002"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000020"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""numDescendants"":58.0,""numHierarchicalDescendants"":58.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""BFO_0000020""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","58.0","class|entity","","","","","","http://purl.obolibrary.org/obo/BFO_0000002|","","true","","","","","","","","","58.0","http://purl.obolibrary.org/obo/BFO_0000002","","","http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","false","specifically dependent continuant","gitIssue502","BFO:0000020","BFO_0000020","specifically dependent continuant","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000023","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000023"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000023""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000017"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000017"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \u003dDef. there is some c, c instance_of professor role \u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000017"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \u003dDef. there is some c, c instance_of professor role \u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000023""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000017","","true","BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t =Def. there is some c, c instance_of professor role & c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.","A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","","","","","","","0.0","http://purl.obolibrary.org/obo/BFO_0000017","","","http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000017","","http://purl.obolibrary.org/obo/BFO_0000023","http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","role","gitIssue502","BFO:0000023","BFO_0000023","role","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000034","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000034"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000034""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000016"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000034""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:function"":{""url"":""http://purl.obolibrary.org/obo/BFO_function"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:function""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/BFO_0000016","","true","BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.","","","","","","","","0.0","http://purl.obolibrary.org/obo/BFO_0000016","","","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000016","","http://purl.obolibrary.org/obo/BFO_0000034","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","function","gitIssue502","BFO:0000034","BFO_0000034","function","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000040","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000040"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here."",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/BFO_0000141"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000141"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""numDescendants"":39.0,""numHierarchicalDescendants"":39.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000040""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","39.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000004","","true","BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60|BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.|BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here.","An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","","","","","","","39.0","http://purl.obolibrary.org/obo/BFO_0000004","","","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000141|","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000004","","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002","false","material entity","gitIssue502","BFO:0000040","BFO_0000040","material entity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/BFO_0000141","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000141"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2002/07/owl#disjointWith"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000040"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000141""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/BFO_0000004","","true","BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10","","","","","","","","3.0","http://purl.obolibrary.org/obo/BFO_0000004","","","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000004","","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002","false","immaterial entity","gitIssue502","BFO:0000141","BFO_0000141","immaterial entity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000000","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000000"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cell""},""numDescendants"":11.0,""numHierarchicalDescendants"":11.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0010000"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000000"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000000""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","11.0","class|entity","http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","http://purl.obolibrary.org/obo/UBERON_0000061|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0010000","11.0","http://purl.obolibrary.org/obo/UBERON_0000061","","","http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000061","","http://purl.obolibrary.org/obo/CL_0000000","http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","cell","gitIssue502","CL:0000000","CL_0000000","cell","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000003","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""native cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/CL_0000000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""native cell""},""numDescendants"":10.0,""numHierarchicalDescendants"":10.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000003""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","10.0","class|entity","","","","","","http://purl.obolibrary.org/obo/CL_0000000","","true","","","","","","","","","10.0","http://purl.obolibrary.org/obo/CL_0000000","","","http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000000","","http://purl.obolibrary.org/obo/CL_0000003","http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","native cell","gitIssue502","CL:0000003","CL_0000003","native cell","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000039","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000039"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000039""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000003"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""germ line cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/CL_0000003"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0022414"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/CL_0002371"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""germ line cell""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/GO_0022414"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0022414"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000039""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0022414"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive process""},""curie"":{""type"":[""literal""],""value"":""GO:0022414""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/CL_0002371"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""somatic cell""},""curie"":{""type"":[""literal""],""value"":""CL:0002371""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/GO_0022414","","","","","http://purl.obolibrary.org/obo/CL_0000003|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/CL_0000003","","","http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","http://purl.obolibrary.org/obo/CL_0002371","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000003","","http://purl.obolibrary.org/obo/CL_0000039","http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","germ line cell","gitIssue502","CL:0000039","CL_0000039","germ line cell","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000211","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000211"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000211""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000003"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""electrically active cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/CL_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""electrically active cell""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000211""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/CL_0000003","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/CL_0000003","","","http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000003","","http://purl.obolibrary.org/obo/CL_0000211","http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","electrically active cell","gitIssue502","CL:0000211","CL_0000211","electrically active cell","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000255","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000255"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000255""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000003"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""eukaryotic cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/CL_0000003"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""eukaryotic cell""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000255""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","http://purl.obolibrary.org/obo/NCBITaxon_2759","","","","","http://purl.obolibrary.org/obo/CL_0000003|","","true","","","","","","","","","4.0","http://purl.obolibrary.org/obo/CL_0000003","","","http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000003","","http://purl.obolibrary.org/obo/CL_0000255","http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","eukaryotic cell","gitIssue502","CL:0000255","CL_0000255","eukaryotic cell","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000393","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000393"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000393""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000211"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000211"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000211"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000211"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""electrically responsive cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/CL_0000211"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""electrically responsive cell""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000393""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""electrically active cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000211""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/CL_0000211","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/CL_0000211","","","http://purl.obolibrary.org/obo/CL_0000211|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000211","","http://purl.obolibrary.org/obo/CL_0000393","http://purl.obolibrary.org/obo/CL_0000211|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","electrically responsive cell","gitIssue502","CL:0000393","CL_0000393","electrically responsive cell","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000404","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000404"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000404""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000211"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000211"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000211"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000211"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""electrically signaling cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/CL_0000211"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""electrically signaling cell""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000404""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""electrically active cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000211""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/CL_0000211","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/CL_0000211","","","http://purl.obolibrary.org/obo/CL_0000211|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000211","","http://purl.obolibrary.org/obo/CL_0000404","http://purl.obolibrary.org/obo/CL_0000211|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","electrically signaling cell","gitIssue502","CL:0000404","CL_0000404","electrically signaling cell","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000540","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000540"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000540""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000393"",""http://purl.obolibrary.org/obo/CL_0000211"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/CL_0000404"",""http://purl.obolibrary.org/obo/CL_0002319"",""http://purl.obolibrary.org/obo/CL_0002371"",""http://purl.obolibrary.org/obo/CL_0000548"",""http://purl.obolibrary.org/obo/CL_0000255""],""directParent"":[""http://purl.obolibrary.org/obo/CL_0000393"",""http://purl.obolibrary.org/obo/CL_0000404"",""http://purl.obolibrary.org/obo/CL_0002319""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000393"",""http://purl.obolibrary.org/obo/CL_0000211"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/CL_0000404"",""http://purl.obolibrary.org/obo/CL_0002319"",""http://purl.obolibrary.org/obo/CL_0002371"",""http://purl.obolibrary.org/obo/CL_0000548"",""http://purl.obolibrary.org/obo/CL_0000255"",""http://purl.obolibrary.org/obo/UBERON_0001016"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/CL_0000393"",""http://purl.obolibrary.org/obo/CL_0000404"",""http://purl.obolibrary.org/obo/CL_0002319""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":""http://purl.obolibrary.org/obo/NCBITaxon_9606"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""neuron""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/CL_0000393"",""http://purl.obolibrary.org/obo/CL_0000404"",""http://purl.obolibrary.org/obo/CL_0002319"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019226"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""neuron""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000540"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/GO_0019226"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019226"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000540""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/CL_0000404"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""electrically signaling cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000404""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0002319"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neural cell""},""curie"":{""type"":[""literal""],""value"":""CL:0002319""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""electrically active cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000211""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000255"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""eukaryotic cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000255""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0019226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transmission of nerve impulse""},""curie"":{""type"":[""literal""],""value"":""GO:0019226""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000548"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""animal cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000548""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9606"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Homo sapiens""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9606""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/CL_0002371"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""somatic cell""},""curie"":{""type"":[""literal""],""value"":""CL:0002371""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000393"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""electrically responsive cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000393""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0019226","http://purl.obolibrary.org/obo/NCBITaxon_9606","","","","http://purl.obolibrary.org/obo/CL_0000393|http://purl.obolibrary.org/obo/CL_0000404|http://purl.obolibrary.org/obo/CL_0002319|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0001016","0.0","http://purl.obolibrary.org/obo/CL_0000393|http://purl.obolibrary.org/obo/CL_0000404|http://purl.obolibrary.org/obo/CL_0002319","","","http://purl.obolibrary.org/obo/CL_0000393|http://purl.obolibrary.org/obo/CL_0000211|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/CL_0000404|http://purl.obolibrary.org/obo/CL_0002319|http://purl.obolibrary.org/obo/CL_0002371|http://purl.obolibrary.org/obo/CL_0000548|http://purl.obolibrary.org/obo/CL_0000255","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000393|http://purl.obolibrary.org/obo/CL_0000404|http://purl.obolibrary.org/obo/CL_0002319","","http://purl.obolibrary.org/obo/CL_0000540","http://purl.obolibrary.org/obo/CL_0000393|http://purl.obolibrary.org/obo/CL_0000211|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/CL_0000404|http://purl.obolibrary.org/obo/CL_0002319|http://purl.obolibrary.org/obo/CL_0002371|http://purl.obolibrary.org/obo/CL_0000548|http://purl.obolibrary.org/obo/CL_0000255|http://purl.obolibrary.org/obo/UBERON_0001016|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000","false","neuron","gitIssue502","CL:0000540","CL_0000540","neuron","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000548","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000548"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000548""},""definition"":{""type"":[""literal""],""value"":""A native cell that is part of some Metazoa.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000255"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000255"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000255"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000255"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A native cell that is part of some Metazoa.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""animal cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/CL_0000255"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""animal cell""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A native cell that is part of some Metazoa.""},false],""shortForm"":{""type"":[""literal""],""value"":""CL_0000548""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000255"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""eukaryotic cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000255""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/NCBITaxon_33208","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/CL_0000255|","","true","","A native cell that is part of some Metazoa.","","","","","","","3.0","http://purl.obolibrary.org/obo/CL_0000255","","","http://purl.obolibrary.org/obo/CL_0000255|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","A native cell that is part of some Metazoa.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000255","","http://purl.obolibrary.org/obo/CL_0000548","http://purl.obolibrary.org/obo/CL_0000255|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","animal cell","gitIssue502","CL:0000548","CL_0000548","animal cell","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/CL_0000586","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0000586"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0000586""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000039"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000039"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000039"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000039"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""germ cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/CL_0000039"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009566"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""germ cell""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000586"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002216"",""value"":""http://purl.obolibrary.org/obo/GO_0009566"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009566"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0000586""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""germ line cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000039""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009566"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fertilization""},""curie"":{""type"":[""literal""],""value"":""GO:0009566""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002216"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002216""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000991"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonad""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000991""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0009566","","","","","http://purl.obolibrary.org/obo/CL_0000039|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000991","0.0","http://purl.obolibrary.org/obo/CL_0000039","","","http://purl.obolibrary.org/obo/CL_0000039|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000039","","http://purl.obolibrary.org/obo/CL_0000586","http://purl.obolibrary.org/obo/CL_0000039|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","germ cell","gitIssue502","CL:0000586","CL_0000586","germ cell","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/CL_0002319","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0002319"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0002319""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0002371"",""http://purl.obolibrary.org/obo/CL_0000548"",""http://purl.obolibrary.org/obo/CL_0000255"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0002371"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0002371"",""http://purl.obolibrary.org/obo/CL_0000548"",""http://purl.obolibrary.org/obo/CL_0000255"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0001016"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/CL_0002371"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""neural cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/CL_0002371"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""neural cell""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002473"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0002319"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0002319""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000255"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""eukaryotic cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000255""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002473"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000548"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""animal cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000548""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/CL_0002371"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""somatic cell""},""curie"":{""type"":[""literal""],""value"":""CL:0002371""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0001016","","","","","http://purl.obolibrary.org/obo/CL_0002371|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0001016","1.0","http://purl.obolibrary.org/obo/CL_0002371","","","http://purl.obolibrary.org/obo/CL_0002371|http://purl.obolibrary.org/obo/CL_0000548|http://purl.obolibrary.org/obo/CL_0000255|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0002371|http://purl.obolibrary.org/obo/UBERON_0001016","","http://purl.obolibrary.org/obo/CL_0002319","http://purl.obolibrary.org/obo/CL_0002371|http://purl.obolibrary.org/obo/CL_0000548|http://purl.obolibrary.org/obo/CL_0000255|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0001016|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000","false","neural cell","gitIssue502","CL:0002319","CL_0002319","neural cell","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/CL_0002371","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/CL_0002371"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""CL:0002371""},""directAncestor"":[""http://purl.obolibrary.org/obo/CL_0000548"",""http://purl.obolibrary.org/obo/CL_0000255"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/CL_0000548"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/CL_0000548"",""http://purl.obolibrary.org/obo/CL_0000255"",""http://purl.obolibrary.org/obo/CL_0000003"",""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/CL_0000548"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""somatic cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/CL_0000548"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""somatic cell""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""CL_0002371""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/CL_0000548"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""animal cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000548""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""native cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000255"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""eukaryotic cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000255""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/CL_0000548","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/CL_0000548","","","http://purl.obolibrary.org/obo/CL_0000548|http://purl.obolibrary.org/obo/CL_0000255|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/CL_0000548","","http://purl.obolibrary.org/obo/CL_0002371","http://purl.obolibrary.org/obo/CL_0000548|http://purl.obolibrary.org/obo/CL_0000255|http://purl.obolibrary.org/obo/CL_0000003|http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","somatic cell","gitIssue502","CL:0002371","CL_0002371","somatic cell","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0000003","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0000003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""reproduction""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0008150"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""reproduction""},""numDescendants"":2.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0022414"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002216"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002216"",""value"":""http://purl.obolibrary.org/obo/UBERON_0003133"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0000003""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0022414"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive process""},""curie"":{""type"":[""literal""],""value"":""GO:0022414""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0003133"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0003133""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002216"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002216""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0008150","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0003133","2.0","http://purl.obolibrary.org/obo/GO_0008150","","","http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0008150","","http://purl.obolibrary.org/obo/GO_0000003","http://purl.obolibrary.org/obo/GO_0008150","false","reproduction","gitIssue502","GO:0000003","GO_0000003","reproduction","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001508","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0001508"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0001508""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0042391"",""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0042391"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0042391"",""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0042391"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""action potential""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0042391"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""action potential""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0019226"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001508"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0001508""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0065008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological quality""},""curie"":{""type"":[""literal""],""value"":""GO:0065008""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0042391"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of membrane potential""},""curie"":{""type"":[""literal""],""value"":""GO:0042391""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0019226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transmission of nerve impulse""},""curie"":{""type"":[""literal""],""value"":""GO:0019226""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0042391","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0019226","0.0","http://purl.obolibrary.org/obo/GO_0042391","","","http://purl.obolibrary.org/obo/GO_0042391|http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0042391","","http://purl.obolibrary.org/obo/GO_0001508","http://purl.obolibrary.org/obo/GO_0042391|http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","false","action potential","gitIssue502","GO:0001508","GO_0001508","action potential","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001704","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0001704"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0001704""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048646"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0007369"",""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0048646"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007369"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""formation of primary germ layer""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0048646"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007369"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""formation of primary germ layer""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007369"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007369"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0001704""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrulation""},""curie"":{""type"":[""literal""],""value"":""GO:0007369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/GO_0007369","","","","","http://purl.obolibrary.org/obo/GO_0048646|","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/GO_0048646","","","http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0007369","","http://purl.obolibrary.org/obo/GO_0001704","http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0007369|http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","formation of primary germ layer","gitIssue502","GO:0001704","GO_0001704","formation of primary germ layer","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001705","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0001705"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0001705""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0001704"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0001704"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0001704"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0007369"",""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0007398"",""http://purl.obolibrary.org/obo/GO_0009888""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0001704"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007398"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""ectoderm formation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0001704"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007398"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""ectoderm formation""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0007369"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001705"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007398"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007398"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0001705""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007398"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ectoderm development""},""curie"":{""type"":[""literal""],""value"":""GO:0007398""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrulation""},""curie"":{""type"":[""literal""],""value"":""GO:0007369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001704"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""formation of primary germ layer""},""curie"":{""type"":[""literal""],""value"":""GO:0001704""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0007398","","","","","http://purl.obolibrary.org/obo/GO_0001704|","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0007369","0.0","http://purl.obolibrary.org/obo/GO_0001704","","","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0007398","","http://purl.obolibrary.org/obo/GO_0001705","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0007369|http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0007398|http://purl.obolibrary.org/obo/GO_0009888","false","ectoderm formation","gitIssue502","GO:0001705","GO_0001705","ectoderm formation","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001706","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0001706"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0001706""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0001704"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0001704"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0001704"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0007369"",""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0007492"",""http://purl.obolibrary.org/obo/GO_0009888""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0001704"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007492"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""endoderm formation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0001704"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007492"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""endoderm formation""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0007369"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001706"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007492"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007492"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0001706""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrulation""},""curie"":{""type"":[""literal""],""value"":""GO:0007369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007492"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endoderm development""},""curie"":{""type"":[""literal""],""value"":""GO:0007492""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001704"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""formation of primary germ layer""},""curie"":{""type"":[""literal""],""value"":""GO:0001704""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0007492","","","","","http://purl.obolibrary.org/obo/GO_0001704|","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0007369","0.0","http://purl.obolibrary.org/obo/GO_0001704","","","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0007492","","http://purl.obolibrary.org/obo/GO_0001706","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0007369|http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0007492|http://purl.obolibrary.org/obo/GO_0009888","false","endoderm formation","gitIssue502","GO:0001706","GO_0001706","endoderm formation","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001707","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0001707"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0001707""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0001704"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0001704"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0001704"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0007369"",""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0048332"",""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0007498""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0001704"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0048332"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""mesoderm formation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0001704"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048332"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""mesoderm formation""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0007369"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001707"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048332"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048332"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0001707""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrulation""},""curie"":{""type"":[""literal""],""value"":""GO:0007369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001704"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""formation of primary germ layer""},""curie"":{""type"":[""literal""],""value"":""GO:0001704""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007498"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""mesoderm development""},""curie"":{""type"":[""literal""],""value"":""GO:0007498""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048332"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""mesoderm morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048332""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0048332","","","","","http://purl.obolibrary.org/obo/GO_0001704|","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0007369","0.0","http://purl.obolibrary.org/obo/GO_0001704","","","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0048332","","http://purl.obolibrary.org/obo/GO_0001707","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0007369|http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0048332|http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0007498","false","mesoderm formation","gitIssue502","GO:0001707","GO_0001707","mesoderm formation","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001838","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0001838"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0001838""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0072175"",""http://purl.obolibrary.org/obo/GO_0035148"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0072175"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0072175"",""http://purl.obolibrary.org/obo/GO_0035148"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0035239"",""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0060562"",""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0060429"",""http://purl.obolibrary.org/obo/GO_0016331"",""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009790""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0072175"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0016331"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""embryonic epithelial tube formation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0072175"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0016331"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""embryonic epithelial tube formation""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0016331"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0016331"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0001838""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0072175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelial tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0072175""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035148"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0035148""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0060429"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium development""},""curie"":{""type"":[""literal""],""value"":""GO:0060429""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0002009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphogenesis of an epithelium""},""curie"":{""type"":[""literal""],""value"":""GO:0002009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0060562"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelial tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0060562""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035239"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0035239""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0016331"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphogenesis of embryonic epithelium""},""curie"":{""type"":[""literal""],""value"":""GO:0016331""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/GO_0016331","","","","","http://purl.obolibrary.org/obo/GO_0072175|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0072175","","","http://purl.obolibrary.org/obo/GO_0072175|http://purl.obolibrary.org/obo/GO_0035148|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0072175|http://purl.obolibrary.org/obo/GO_0016331","","http://purl.obolibrary.org/obo/GO_0001838","http://purl.obolibrary.org/obo/GO_0072175|http://purl.obolibrary.org/obo/GO_0035148|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0035239|http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0060562|http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0060429|http://purl.obolibrary.org/obo/GO_0016331|http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009790","false","embryonic epithelial tube formation","gitIssue502","GO:0001838","GO_0001838","embryonic epithelial tube formation","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0001841","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0001841"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0001841""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0001838"",""http://purl.obolibrary.org/obo/GO_0072175"",""http://purl.obolibrary.org/obo/GO_0035148"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0001838"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0001838"",""http://purl.obolibrary.org/obo/GO_0072175"",""http://purl.obolibrary.org/obo/GO_0035148"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0035239"",""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0060562"",""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0060429"",""http://purl.obolibrary.org/obo/GO_0016331"",""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0021915"",""http://purl.obolibrary.org/obo/GO_0007399"",""http://purl.obolibrary.org/obo/GO_0048731"",""http://purl.obolibrary.org/obo/GO_0043009"",""http://purl.obolibrary.org/obo/GO_0009792""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0001838"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0021915"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""neural tube formation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0001838"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0021915"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""neural tube formation""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000110"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001841"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0021915"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0021915"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0001841""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0072175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelial tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0072175""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007399"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system development""},""curie"":{""type"":[""literal""],""value"":""GO:0007399""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035148"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0035148""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0060429"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium development""},""curie"":{""type"":[""literal""],""value"":""GO:0060429""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009792"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development ending in birth or egg hatching""},""curie"":{""type"":[""literal""],""value"":""GO:0009792""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001838"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic epithelial tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001838""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0002009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphogenesis of an epithelium""},""curie"":{""type"":[""literal""],""value"":""GO:0002009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048731"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""system development""},""curie"":{""type"":[""literal""],""value"":""GO:0048731""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0060562"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelial tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0060562""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0043009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""chordate embryonic development""},""curie"":{""type"":[""literal""],""value"":""GO:0043009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035239"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0035239""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0016331"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphogenesis of embryonic epithelium""},""curie"":{""type"":[""literal""],""value"":""GO:0016331""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000110"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neurula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000110""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0021915"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neural tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0021915""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0021915","","","","","http://purl.obolibrary.org/obo/GO_0001838|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000110","0.0","http://purl.obolibrary.org/obo/GO_0001838","","","http://purl.obolibrary.org/obo/GO_0001838|http://purl.obolibrary.org/obo/GO_0072175|http://purl.obolibrary.org/obo/GO_0035148|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0001838|http://purl.obolibrary.org/obo/GO_0021915","","http://purl.obolibrary.org/obo/GO_0001841","http://purl.obolibrary.org/obo/GO_0001838|http://purl.obolibrary.org/obo/GO_0072175|http://purl.obolibrary.org/obo/GO_0035148|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0035239|http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0060562|http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0060429|http://purl.obolibrary.org/obo/GO_0016331|http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0021915|http://purl.obolibrary.org/obo/GO_0007399|http://purl.obolibrary.org/obo/GO_0048731|http://purl.obolibrary.org/obo/GO_0043009|http://purl.obolibrary.org/obo/GO_0009792","false","neural tube formation","gitIssue502","GO:0001841","GO_0001841","neural tube formation","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0002009","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0002009"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0002009""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048729"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0060429""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0048729"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0060429"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""morphogenesis of an epithelium""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0048729"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0060429"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""morphogenesis of an epithelium""},""numDescendants"":2.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0060429"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0060429"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0002009""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0060429"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium development""},""curie"":{""type"":[""literal""],""value"":""GO:0060429""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","http://purl.obolibrary.org/obo/GO_0060429","","","","","http://purl.obolibrary.org/obo/GO_0048729|","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/GO_0048729","","","http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0060429","","http://purl.obolibrary.org/obo/GO_0002009","http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0060429","false","morphogenesis of an epithelium","gitIssue502","GO:0002009","GO_0002009","morphogenesis of an epithelium","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0003008","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0003008"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0003008""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0032501"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0032501"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""system process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0032501"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""system process""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0003008""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0032501","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/GO_0032501","","","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0032501","","http://purl.obolibrary.org/obo/GO_0003008","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150","false","system process","gitIssue502","GO:0003008","GO_0003008","system process","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0005102","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0005102"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0005102""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0005515"",""directParent"":""http://purl.obolibrary.org/obo/GO_0005515"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0005515"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0005515"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""signaling receptor binding""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0005515"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""signaling receptor binding""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0005102""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0005515"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""protein binding""},""curie"":{""type"":[""literal""],""value"":""GO:0005515""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0005515","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/GO_0005515","","","http://purl.obolibrary.org/obo/GO_0005515","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0005515","","http://purl.obolibrary.org/obo/GO_0005102","http://purl.obolibrary.org/obo/GO_0005515","false","signaling receptor binding","gitIssue502","GO:0005102","GO_0005102","signaling receptor binding","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0005179","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0005179"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0005179""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048018"",""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0005515"",""http://purl.obolibrary.org/obo/GO_0030546"",""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0098772"",""http://purl.obolibrary.org/obo/GO_0140677""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048018"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048018"",""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0005515"",""http://purl.obolibrary.org/obo/GO_0030546"",""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0098772"",""http://purl.obolibrary.org/obo/GO_0140677"",""http://purl.obolibrary.org/obo/GO_0007165"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0050794"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0051716"",""http://purl.obolibrary.org/obo/GO_0050896""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0048018"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hormone activity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0048018"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hormone activity""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0005179""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051716"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0051716""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0098772"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0098772""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050794"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0050794""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0005102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor binding""},""curie"":{""type"":[""literal""],""value"":""GO:0005102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007165"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signal transduction""},""curie"":{""type"":[""literal""],""value"":""GO:0007165""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0005515"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""protein binding""},""curie"":{""type"":[""literal""],""value"":""GO:0005515""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050896"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0050896""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0030545"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0030545""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0030546"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor activator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0030546""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""receptor ligand activity""},""curie"":{""type"":[""literal""],""value"":""GO:0048018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0140677"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function activator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0140677""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0048018","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0048018","","","http://purl.obolibrary.org/obo/GO_0048018|http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0005515|http://purl.obolibrary.org/obo/GO_0030546|http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0098772|http://purl.obolibrary.org/obo/GO_0140677","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048018","","http://purl.obolibrary.org/obo/GO_0005179","http://purl.obolibrary.org/obo/GO_0048018|http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0005515|http://purl.obolibrary.org/obo/GO_0030546|http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0098772|http://purl.obolibrary.org/obo/GO_0140677|http://purl.obolibrary.org/obo/GO_0007165|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0050794|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0051716|http://purl.obolibrary.org/obo/GO_0050896","false","hormone activity","gitIssue502","GO:0005179","GO_0005179","hormone activity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0005183","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0005183"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0005183""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0005179"",""http://purl.obolibrary.org/obo/GO_0048018"",""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0005515"",""http://purl.obolibrary.org/obo/GO_0030546"",""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0098772"",""http://purl.obolibrary.org/obo/GO_0140677""],""directParent"":""http://purl.obolibrary.org/obo/GO_0005179"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0005179"",""http://purl.obolibrary.org/obo/GO_0048018"",""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0005515"",""http://purl.obolibrary.org/obo/GO_0030546"",""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0098772"",""http://purl.obolibrary.org/obo/GO_0140677"",""http://purl.obolibrary.org/obo/GO_0007165"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0050794"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0051716"",""http://purl.obolibrary.org/obo/GO_0050896""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0005179"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gonadotropin hormone-releasing hormone activity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0005179"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gonadotropin hormone-releasing hormone activity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0004021"",""value"":""http://purl.obolibrary.org/obo/MONDO_0018555"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004021"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0005183"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0005183""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0005179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hormone activity""},""curie"":{""type"":[""literal""],""value"":""GO:0005179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051716"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0051716""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0098772"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0098772""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050794"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0050794""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0005102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor binding""},""curie"":{""type"":[""literal""],""value"":""GO:0005102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004021"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""disease caused by disruption of""},{""type"":[""literal""],""value"":""disease has basis in disruption of""}],""curie"":{""type"":[""literal""],""value"":""RO:0004021""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007165"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signal transduction""},""curie"":{""type"":[""literal""],""value"":""GO:0007165""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0018555"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism""},""curie"":{""type"":[""literal""],""value"":""MONDO:0018555""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0005515"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""protein binding""},""curie"":{""type"":[""literal""],""value"":""GO:0005515""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050896"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0050896""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0030545"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0030545""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0030546"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor activator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0030546""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""receptor ligand activity""},""curie"":{""type"":[""literal""],""value"":""GO:0048018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0140677"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function activator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0140677""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0005179","","true","","","","","","","","http://purl.obolibrary.org/obo/MONDO_0018555","0.0","http://purl.obolibrary.org/obo/GO_0005179","","","http://purl.obolibrary.org/obo/GO_0005179|http://purl.obolibrary.org/obo/GO_0048018|http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0005515|http://purl.obolibrary.org/obo/GO_0030546|http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0098772|http://purl.obolibrary.org/obo/GO_0140677","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0005179","","http://purl.obolibrary.org/obo/GO_0005183","http://purl.obolibrary.org/obo/GO_0005179|http://purl.obolibrary.org/obo/GO_0048018|http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0005515|http://purl.obolibrary.org/obo/GO_0030546|http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0098772|http://purl.obolibrary.org/obo/GO_0140677|http://purl.obolibrary.org/obo/GO_0007165|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0050794|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0051716|http://purl.obolibrary.org/obo/GO_0050896","false","gonadotropin hormone-releasing hormone activity","gitIssue502","GO:0005183","GO_0005183","gonadotropin hormone-releasing hormone activity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0005515","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0005515"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0005515""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""protein binding""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""protein binding""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0098772"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0005515"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0005515""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0098772"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0098772""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","","4.0","class|entity","","","","","","","","false","","","","","","","","http://purl.obolibrary.org/obo/GO_0098772","4.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","true","false","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/GO_0005515","","false","protein binding","gitIssue502","GO:0005515","GO_0005515","protein binding","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0006810","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0006810"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0051234"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0051234"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""transport""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0051234"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""transport""},""numDescendants"":9.0,""numHierarchicalDescendants"":9.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0006810""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","9.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0051234","","true","","","","","","","","","9.0","http://purl.obolibrary.org/obo/GO_0051234","","","http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0051234","","http://purl.obolibrary.org/obo/GO_0006810","http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150","false","transport","gitIssue502","GO:0006810","GO_0006810","transport","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0006811","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0006811"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0006811""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0006810"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0006810"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""monoatomic ion transport""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0006810"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""monoatomic ion transport""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0006811""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0006810","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0006810","","","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0006810","","http://purl.obolibrary.org/obo/GO_0006811","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150","false","monoatomic ion transport","gitIssue502","GO:0006811","GO_0006811","monoatomic ion transport","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007154","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007154"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009987"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0009987"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cell communication""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0009987"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cell communication""},""numDescendants"":5.0,""numHierarchicalDescendants"":12.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007165"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007154"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0019226"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007154"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007154""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007165"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signal transduction""},""curie"":{""type"":[""literal""],""value"":""GO:0007165""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0019226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transmission of nerve impulse""},""curie"":{""type"":[""literal""],""value"":""GO:0019226""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","12.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009987","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0007165|http://purl.obolibrary.org/obo/GO_0019226","5.0","http://purl.obolibrary.org/obo/GO_0009987","","","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009987","","http://purl.obolibrary.org/obo/GO_0007154","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150","false","cell communication","gitIssue502","GO:0007154","GO_0007154","cell communication","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007165","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007165"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007165""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0050794"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0050794""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0050794"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0051716"",""http://purl.obolibrary.org/obo/GO_0050896""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0050794"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007154"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0023052"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0051716"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""signal transduction""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0050794"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007154"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0023052"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0051716"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""signal transduction""},""numDescendants"":0.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048018"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007165"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007154"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007154"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0023052"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0023052"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0051716"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0051716"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007165""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051716"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0051716""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050794"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0050794""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050896"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0050896""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""receptor ligand activity""},""curie"":{""type"":[""literal""],""value"":""GO:0048018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0051716","","","","","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0050794|||","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0048018","0.0","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0050794","","","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0050794|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0050794|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0051716","","http://purl.obolibrary.org/obo/GO_0007165","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0050794|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0051716|http://purl.obolibrary.org/obo/GO_0050896","false","signal transduction","gitIssue502","GO:0007165","GO_0007165","signal transduction","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007267","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007267"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007267""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cell-cell signaling""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cell-cell signaling""},""numDescendants"":4.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0023061"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007267"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007267""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signal release""},""curie"":{""type"":[""literal""],""value"":""GO:0023061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0023061","4.0","http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052","","","http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052","","http://purl.obolibrary.org/obo/GO_0007267","http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","false","cell-cell signaling","gitIssue502","GO:0007267","GO_0007267","cell-cell signaling","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007268","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007268"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007268""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0098916"",""http://purl.obolibrary.org/obo/GO_0099537"",""http://purl.obolibrary.org/obo/GO_0099536"",""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""directParent"":""http://purl.obolibrary.org/obo/GO_0098916"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0098916"",""http://purl.obolibrary.org/obo/GO_0099537"",""http://purl.obolibrary.org/obo/GO_0099536"",""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0098916"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""chemical synaptic transmission""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0098916"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""chemical synaptic transmission""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0019226"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007268"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007268""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0099537"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trans-synaptic signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0099537""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0099536"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""synaptic signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0099536""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0019226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transmission of nerve impulse""},""curie"":{""type"":[""literal""],""value"":""GO:0019226""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007267"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell-cell signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0007267""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0098916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anterograde trans-synaptic signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0098916""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0098916","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0019226","0.0","http://purl.obolibrary.org/obo/GO_0098916","","","http://purl.obolibrary.org/obo/GO_0098916|http://purl.obolibrary.org/obo/GO_0099537|http://purl.obolibrary.org/obo/GO_0099536|http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0098916","","http://purl.obolibrary.org/obo/GO_0007268","http://purl.obolibrary.org/obo/GO_0098916|http://purl.obolibrary.org/obo/GO_0099537|http://purl.obolibrary.org/obo/GO_0099536|http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","false","chemical synaptic transmission","gitIssue502","GO:0007268","GO_0007268","chemical synaptic transmission","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007275","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007275"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0048856""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0048856""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multicellular organism development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0048856""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""numDescendants"":3.0,""numHierarchicalDescendants"":22.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0009791"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0035295"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048731"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007275""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009791"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""post-embryonic development""},""curie"":{""type"":[""literal""],""value"":""GO:0009791""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048731"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""system development""},""curie"":{""type"":[""literal""],""value"":""GO:0048731""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","22.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0048856","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0009791|http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0048731","3.0","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0048856","","","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0048856","","http://purl.obolibrary.org/obo/GO_0007275","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","false","multicellular organism development","gitIssue502","GO:0007275","GO_0007275","multicellular organism development","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007276","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007276"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007276""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048609"",""http://purl.obolibrary.org/obo/GO_0022414"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048609"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048609"",""http://purl.obolibrary.org/obo/GO_0022414"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0032504"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0019953""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0048609"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0019953"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gamete generation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0048609"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019953"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gamete generation""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000067"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000067"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007276"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0019953"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019953"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007276""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032504"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0032504""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048609"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal reproductive process""},""curie"":{""type"":[""literal""],""value"":""GO:0048609""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0019953"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""sexual reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0019953""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0022414"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive process""},""curie"":{""type"":[""literal""],""value"":""GO:0022414""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000067"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contains process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000067""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000991"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonad""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000991""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0019953","","","","","http://purl.obolibrary.org/obo/GO_0048609|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000991","0.0","http://purl.obolibrary.org/obo/GO_0048609","","","http://purl.obolibrary.org/obo/GO_0048609|http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048609|http://purl.obolibrary.org/obo/GO_0019953","","http://purl.obolibrary.org/obo/GO_0007276","http://purl.obolibrary.org/obo/GO_0048609|http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0032504|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0019953","false","gamete generation","gitIssue502","GO:0007276","GO_0007276","gamete generation","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007369","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007369"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007369""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048598"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0048598"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gastrulation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0048598"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001705"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001706"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001707"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gastrulation""},""numDescendants"":0.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0001704"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007369"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007369"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0001705"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001705"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0001706"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001706"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0001707"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001707"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007369""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001705"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ectoderm formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001705""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001706"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endoderm formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001706""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001707"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""mesoderm formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001707""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001704"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""formation of primary germ layer""},""curie"":{""type"":[""literal""],""value"":""GO:0001704""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","http://purl.obolibrary.org/obo/GO_0001705|http://purl.obolibrary.org/obo/GO_0001706|http://purl.obolibrary.org/obo/GO_0001707","","","","","http://purl.obolibrary.org/obo/GO_0048598|||","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0001704|http://purl.obolibrary.org/obo/UBERON_0000109","0.0","http://purl.obolibrary.org/obo/GO_0048598","","","http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048598","","http://purl.obolibrary.org/obo/GO_0007369","http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","gastrulation","gitIssue502","GO:0007369","GO_0007369","gastrulation","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007398","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007398"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007398""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009888"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0009888"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""ectoderm development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0009888"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""ectoderm development""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0001705"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007398"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007398""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001705"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ectoderm formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001705""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009888","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0001705","0.0","http://purl.obolibrary.org/obo/GO_0009888","","","http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009888","","http://purl.obolibrary.org/obo/GO_0007398","http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","false","ectoderm development","gitIssue502","GO:0007398","GO_0007398","ectoderm development","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007399","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007399"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007399""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048731"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048731"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048731"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0048731"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""nervous system development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0048731"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""nervous system development""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0021915"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007399"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007399""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048731"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""system development""},""curie"":{""type"":[""literal""],""value"":""GO:0048731""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0021915"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neural tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0021915""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0048731","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0021915","0.0","http://purl.obolibrary.org/obo/GO_0048731","","","http://purl.obolibrary.org/obo/GO_0048731|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048731","","http://purl.obolibrary.org/obo/GO_0007399","http://purl.obolibrary.org/obo/GO_0048731|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","nervous system development","gitIssue502","GO:0007399","GO_0007399","nervous system development","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007492","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007492"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007492""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009888"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0009888"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""endoderm development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0009888"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""endoderm development""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0001706"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007492"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007492""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001706"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endoderm formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001706""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009888","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0001706","0.0","http://purl.obolibrary.org/obo/GO_0009888","","","http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009888","","http://purl.obolibrary.org/obo/GO_0007492","http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","false","endoderm development","gitIssue502","GO:0007492","GO_0007492","endoderm development","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0007498","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0007498"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0007498""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009888"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0009888"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""mesoderm development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0009888"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""mesoderm development""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048332"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007498"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0007498""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048332"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""mesoderm morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048332""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009888","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0048332","0.0","http://purl.obolibrary.org/obo/GO_0009888","","","http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009888","","http://purl.obolibrary.org/obo/GO_0007498","http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","false","mesoderm development","gitIssue502","GO:0007498","GO_0007498","mesoderm development","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0008150","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0008150"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""biological_process""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""biological_process""},""numDescendants"":78.0,""numHierarchicalDescendants"":81.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0002211"",""value"":""http://purl.obolibrary.org/obo/GO_0050789"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002211"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008150"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008150"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0008150""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","","81.0","class|entity","","","","","","","","false","","","","","","","","http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/UBERON_0000062","78.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","true","false","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/GO_0008150","","false","biological_process","gitIssue502","GO:0008150","GO_0008150","biological_process","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009566","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0009566"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0009566""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0022414"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0022414"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0022414"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0019953""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0022414"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0019953"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""fertilization""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0022414"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019953"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""fertilization""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002216"",""value"":""http://purl.obolibrary.org/obo/CL_0000586"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009566"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0019953"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019953"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0009566""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000586"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""germ cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000586""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0019953"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""sexual reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0019953""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0022414"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive process""},""curie"":{""type"":[""literal""],""value"":""GO:0022414""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002216"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002216""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0019953","","","","","http://purl.obolibrary.org/obo/GO_0022414|","","true","","","","","","","","http://purl.obolibrary.org/obo/CL_0000586","0.0","http://purl.obolibrary.org/obo/GO_0022414","","","http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/GO_0019953","","http://purl.obolibrary.org/obo/GO_0009566","http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0019953","false","fertilization","gitIssue502","GO:0009566","GO_0009566","fertilization","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009653","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0009653"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0032502"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0032502"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0048856"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0032502"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048856"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""numDescendants"":8.0,""numHierarchicalDescendants"":17.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048646"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009653"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048856"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048856"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0009653""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","17.0","class|entity","http://purl.obolibrary.org/obo/GO_0048856","","","","","http://purl.obolibrary.org/obo/GO_0032502|","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0048646","8.0","http://purl.obolibrary.org/obo/GO_0032502","","","http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0048856","","http://purl.obolibrary.org/obo/GO_0009653","http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856","false","anatomical structure morphogenesis","gitIssue502","GO:0009653","GO_0009653","anatomical structure morphogenesis","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009790","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0009790"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""directParent"":""http://purl.obolibrary.org/obo/GO_0007275"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0007275"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""embryo development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0007275"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""embryo development""},""numDescendants"":2.0,""numHierarchicalDescendants"":13.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0040016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048598"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0009790""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0040016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic cleavage""},""curie"":{""type"":[""literal""],""value"":""GO:0040016""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","13.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0007275","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0040016|http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/UBERON_0000068","2.0","http://purl.obolibrary.org/obo/GO_0007275","","","http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0007275","","http://purl.obolibrary.org/obo/GO_0009790","http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","false","embryo development","gitIssue502","GO:0009790","GO_0009790","embryo development","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009791","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0009791"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0009791""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0032501"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0032501"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007275"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""post-embryonic development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0032501"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""post-embryonic development""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009791"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007275"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0009791""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""post-embryonic stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000092""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0007275","","","","","http://purl.obolibrary.org/obo/GO_0032501|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000092","0.0","http://purl.obolibrary.org/obo/GO_0032501","","","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0007275","","http://purl.obolibrary.org/obo/GO_0009791","http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","false","post-embryonic development","gitIssue502","GO:0009791","GO_0009791","post-embryonic development","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009792","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0009792"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0009792""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009790"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0009790"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""embryo development ending in birth or egg hatching""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0009790"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""embryo development ending in birth or egg hatching""},""numDescendants"":1.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0009792""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009790","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0009790","","","http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009790","","http://purl.obolibrary.org/obo/GO_0009792","http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","false","embryo development ending in birth or egg hatching","gitIssue502","GO:0009792","GO_0009792","embryo development ending in birth or egg hatching","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009888","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0009888"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048856"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0048856"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""tissue development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0048856"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""tissue development""},""numDescendants"":5.0,""numHierarchicalDescendants"":16.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048729"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009888"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0009888""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","16.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0048856","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0048729","5.0","http://purl.obolibrary.org/obo/GO_0048856","","","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048856","","http://purl.obolibrary.org/obo/GO_0009888","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","false","tissue development","gitIssue502","GO:0009888","GO_0009888","tissue development","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009914","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0009914"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0009914""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0010817"",""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0010817""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0010817"",""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0010817""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hormone transport""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0010817""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hormone transport""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0009914""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological quality""},""curie"":{""type"":[""literal""],""value"":""GO:0065008""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0010817"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of hormone levels""},""curie"":{""type"":[""literal""],""value"":""GO:0010817""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0010817","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0010817","","","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0010817|http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0010817","","http://purl.obolibrary.org/obo/GO_0009914","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0010817|http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007","false","hormone transport","gitIssue502","GO:0009914","GO_0009914","hormone transport","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0009987","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0009987"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cellular process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0008150"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cellular process""},""numDescendants"":16.0,""numHierarchicalDescendants"":20.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002211"",""value"":""http://purl.obolibrary.org/obo/GO_0050794"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002211"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009987"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0009987""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050794"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0050794""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","20.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0008150","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0050794","16.0","http://purl.obolibrary.org/obo/GO_0008150","","","http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0008150","","http://purl.obolibrary.org/obo/GO_0009987","http://purl.obolibrary.org/obo/GO_0008150","false","cellular process","gitIssue502","GO:0009987","GO_0009987","cellular process","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0010817","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0010817"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0010817""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0065008"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0065008"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""regulation of hormone levels""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0065008"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""regulation of hormone levels""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0010817""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0065008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological quality""},""curie"":{""type"":[""literal""],""value"":""GO:0065008""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0065008","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/GO_0065008","","","http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0065008","","http://purl.obolibrary.org/obo/GO_0010817","http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","false","regulation of hormone levels","gitIssue502","GO:0010817","GO_0010817","regulation of hormone levels","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0016301","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0016301"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0016301""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""kinase activity""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""kinase activity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0016301""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","","0.0","class|entity","","","","","","","","false","","","","","","","","","0.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","false","false","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/GO_0016301","","false","kinase activity","gitIssue502","GO:0016301","GO_0016301","kinase activity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0016331","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0016331"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0016331""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048598""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048598""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0060429"",""http://purl.obolibrary.org/obo/GO_0048598"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048598""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""morphogenesis of embryonic epithelium""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048598""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""morphogenesis of embryonic epithelium""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0001838"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0016331"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0016331""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0060429"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium development""},""curie"":{""type"":[""literal""],""value"":""GO:0060429""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001838"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic epithelial tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001838""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0002009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphogenesis of an epithelium""},""curie"":{""type"":[""literal""],""value"":""GO:0002009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048598","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0001838","0.0","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048598","","","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048598","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048598","","http://purl.obolibrary.org/obo/GO_0016331","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0060429|http://purl.obolibrary.org/obo/GO_0048598|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","morphogenesis of embryonic epithelium","gitIssue502","GO:0016331","GO_0016331","morphogenesis of embryonic epithelium","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0019226","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0019226"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0019226""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0050877"",""http://purl.obolibrary.org/obo/GO_0003008"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0050877"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0050877"",""http://purl.obolibrary.org/obo/GO_0003008"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0050877"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007154"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""transmission of nerve impulse""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0050877"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007154"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001508"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007268"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""transmission of nerve impulse""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/CL_0000540"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019226"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007154"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007154"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0001508"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001508"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0007268"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007268"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0019226""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0003008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""system process""},""curie"":{""type"":[""literal""],""value"":""GO:0003008""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050877"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system process""},""curie"":{""type"":[""literal""],""value"":""GO:0050877""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001508"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""action potential""},""curie"":{""type"":[""literal""],""value"":""GO:0001508""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000540"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neuron""},""curie"":{""type"":[""literal""],""value"":""CL:0000540""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007268"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""chemical synaptic transmission""},""curie"":{""type"":[""literal""],""value"":""GO:0007268""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0001508|http://purl.obolibrary.org/obo/GO_0007268","","","","","http://purl.obolibrary.org/obo/GO_0050877|||","","true","","","","","","","","http://purl.obolibrary.org/obo/CL_0000540","0.0","http://purl.obolibrary.org/obo/GO_0050877","","","http://purl.obolibrary.org/obo/GO_0050877|http://purl.obolibrary.org/obo/GO_0003008|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0050877|http://purl.obolibrary.org/obo/GO_0007154","","http://purl.obolibrary.org/obo/GO_0019226","http://purl.obolibrary.org/obo/GO_0050877|http://purl.obolibrary.org/obo/GO_0003008|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987","false","transmission of nerve impulse","gitIssue502","GO:0019226","GO_0019226","transmission of nerve impulse","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0019953","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0019953"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0019953""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0000003"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""sexual reproduction""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""sexual reproduction""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007276"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019953"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0009566"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0019953"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0019953""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007276"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gamete generation""},""curie"":{""type"":[""literal""],""value"":""GO:0007276""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009566"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fertilization""},""curie"":{""type"":[""literal""],""value"":""GO:0009566""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0000003","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0007276|http://purl.obolibrary.org/obo/GO_0009566","0.0","http://purl.obolibrary.org/obo/GO_0000003","","","http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0000003","","http://purl.obolibrary.org/obo/GO_0019953","http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0008150","false","sexual reproduction","gitIssue502","GO:0019953","GO_0019953","sexual reproduction","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0021915","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0021915"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0021915""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0060429"",""http://purl.obolibrary.org/obo/GO_0009888""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0060429""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0060429"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0007399"",""http://purl.obolibrary.org/obo/GO_0048731"",""http://purl.obolibrary.org/obo/GO_0043009"",""http://purl.obolibrary.org/obo/GO_0009792"",""http://purl.obolibrary.org/obo/GO_0009790""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0060429"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007399"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0043009"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""neural tube development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0060429"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007399"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0043009"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""neural tube development""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0001841"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0021915"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007399"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007399"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0043009"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0043009"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0021915""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007399"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system development""},""curie"":{""type"":[""literal""],""value"":""GO:0007399""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0060429"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium development""},""curie"":{""type"":[""literal""],""value"":""GO:0060429""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009792"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development ending in birth or egg hatching""},""curie"":{""type"":[""literal""],""value"":""GO:0009792""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001841"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neural tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001841""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048731"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""system development""},""curie"":{""type"":[""literal""],""value"":""GO:0048731""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0043009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""chordate embryonic development""},""curie"":{""type"":[""literal""],""value"":""GO:0043009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/GO_0007399|http://purl.obolibrary.org/obo/GO_0043009","","","","","http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0060429||","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0001841","0.0","http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0060429","","","http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0060429|http://purl.obolibrary.org/obo/GO_0009888","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0060429|http://purl.obolibrary.org/obo/GO_0007399|http://purl.obolibrary.org/obo/GO_0043009","","http://purl.obolibrary.org/obo/GO_0021915","http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0060429|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0007399|http://purl.obolibrary.org/obo/GO_0048731|http://purl.obolibrary.org/obo/GO_0043009|http://purl.obolibrary.org/obo/GO_0009792|http://purl.obolibrary.org/obo/GO_0009790","false","neural tube development","gitIssue502","GO:0021915","GO_0021915","neural tube development","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0022414","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0022414"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0022414""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0000003""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0008150"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0000003"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""reproductive process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0008150"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""reproductive process""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/CL_0000039"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0022414"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0000003"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0022414""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""germ line cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000039""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/GO_0000003","","","","","http://purl.obolibrary.org/obo/GO_0008150|","","true","","","","","","","","http://purl.obolibrary.org/obo/CL_0000039","3.0","http://purl.obolibrary.org/obo/GO_0008150","","","http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0000003","","http://purl.obolibrary.org/obo/GO_0022414","http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0000003","false","reproductive process","gitIssue502","GO:0022414","GO_0022414","reproductive process","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0023052","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0023052"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0050789"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0050789"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""signaling""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0050789"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""signaling""},""numDescendants"":5.0,""numHierarchicalDescendants"":11.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007165"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0023052"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0023052""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007165"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signal transduction""},""curie"":{""type"":[""literal""],""value"":""GO:0007165""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","11.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0050789","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0007165","5.0","http://purl.obolibrary.org/obo/GO_0050789","","","http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0050789","","http://purl.obolibrary.org/obo/GO_0023052","http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","false","signaling","gitIssue502","GO:0023052","GO_0023052","signaling","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0023061","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0023061"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0023061""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0032940"",""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0140352"",""http://purl.obolibrary.org/obo/GO_0009987""],""directParent"":""http://purl.obolibrary.org/obo/GO_0032940"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0032940"",""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0140352"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0032940"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007267"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""signal release""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0032940"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007267"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""signal release""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007267"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007267"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0023061""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032940"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""secretion by cell""},""curie"":{""type"":[""literal""],""value"":""GO:0032940""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0046903"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""secretion""},""curie"":{""type"":[""literal""],""value"":""GO:0046903""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007267"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell-cell signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0007267""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0140352"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""export from cell""},""curie"":{""type"":[""literal""],""value"":""GO:0140352""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/GO_0007267","","","","","http://purl.obolibrary.org/obo/GO_0032940|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0032940","","","http://purl.obolibrary.org/obo/GO_0032940|http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0140352|http://purl.obolibrary.org/obo/GO_0009987","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0032940|http://purl.obolibrary.org/obo/GO_0007267","","http://purl.obolibrary.org/obo/GO_0023061","http://purl.obolibrary.org/obo/GO_0032940|http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0140352|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","false","signal release","gitIssue502","GO:0023061","GO_0023061","signal release","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0030545","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0030545"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0030545""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0098772"",""directParent"":""http://purl.obolibrary.org/obo/GO_0098772"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0098772"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0098772"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""signaling receptor regulator activity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0098772"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""signaling receptor regulator activity""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0030545""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0098772"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0098772""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0098772","","true","","","","","","","","","4.0","http://purl.obolibrary.org/obo/GO_0098772","","","http://purl.obolibrary.org/obo/GO_0098772","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0098772","","http://purl.obolibrary.org/obo/GO_0030545","http://purl.obolibrary.org/obo/GO_0098772","false","signaling receptor regulator activity","gitIssue502","GO:0030545","GO_0030545","signaling receptor regulator activity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0030546","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0030546"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0030546""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0098772"",""http://purl.obolibrary.org/obo/GO_0140677""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0140677""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0098772"",""http://purl.obolibrary.org/obo/GO_0140677""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0140677""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""signaling receptor activator activity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0140677""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""signaling receptor activator activity""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0030546""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0098772"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0098772""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0030545"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0030545""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0140677"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function activator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0140677""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0140677","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0140677","","","http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0098772|http://purl.obolibrary.org/obo/GO_0140677","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0140677","","http://purl.obolibrary.org/obo/GO_0030546","http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0098772|http://purl.obolibrary.org/obo/GO_0140677","false","signaling receptor activator activity","gitIssue502","GO:0030546","GO_0030546","signaling receptor activator activity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0032501","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0032501"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0008150"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""numDescendants"":9.0,""numHierarchicalDescendants"":29.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0032501""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","29.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0008150","","true","","","","","","","","","9.0","http://purl.obolibrary.org/obo/GO_0008150","","","http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0008150","","http://purl.obolibrary.org/obo/GO_0032501","http://purl.obolibrary.org/obo/GO_0008150","false","multicellular organismal process","gitIssue502","GO:0032501","GO_0032501","multicellular organismal process","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0032502","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0032502"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""developmental process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0008150"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""developmental process""},""numDescendants"":33.0,""numHierarchicalDescendants"":35.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0004024"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021147"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004024"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032502"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/UBERON_0005423"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032502"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0032502""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004024"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""disease causes disruption of""},{""type"":[""literal""],""value"":""disease disrupts""}],""curie"":{""type"":[""literal""],""value"":""RO:0004024""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021147"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021147""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developing anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005423""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","35.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0008150","","true","","","","","","","","http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/UBERON_0005423","33.0","http://purl.obolibrary.org/obo/GO_0008150","","","http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0008150","","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/GO_0008150","false","developmental process","gitIssue502","GO:0032502","GO_0032502","developmental process","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0032504","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0032504"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0032504""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0032501""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0032501""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multicellular organism reproduction""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0032501""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multicellular organism reproduction""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0048609"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032504"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0032504""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048609"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal reproductive process""},""curie"":{""type"":[""literal""],""value"":""GO:0048609""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0032501","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0048609","0.0","http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0032501","","","http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0032501","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0032501","","http://purl.obolibrary.org/obo/GO_0032504","http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0032501","false","multicellular organism reproduction","gitIssue502","GO:0032504","GO_0032504","multicellular organism reproduction","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0032940","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0032940"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0032940""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0140352"",""http://purl.obolibrary.org/obo/GO_0009987""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0140352""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0140352"",""http://purl.obolibrary.org/obo/GO_0009987""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0140352""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""secretion by cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0140352""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""secretion by cell""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0032940""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0046903"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""secretion""},""curie"":{""type"":[""literal""],""value"":""GO:0046903""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0140352"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""export from cell""},""curie"":{""type"":[""literal""],""value"":""GO:0140352""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0140352","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0140352","","","http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0140352|http://purl.obolibrary.org/obo/GO_0009987","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0140352","","http://purl.obolibrary.org/obo/GO_0032940","http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0140352|http://purl.obolibrary.org/obo/GO_0009987","false","secretion by cell","gitIssue502","GO:0032940","GO_0032940","secretion by cell","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0034220","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0034220"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0034220""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0006811"",""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0055085"",""http://purl.obolibrary.org/obo/GO_0009987""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0006811"",""http://purl.obolibrary.org/obo/GO_0055085""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0006811"",""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0055085"",""http://purl.obolibrary.org/obo/GO_0009987""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0006811"",""http://purl.obolibrary.org/obo/GO_0055085""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""monoatomic ion transmembrane transport""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0006811"",""http://purl.obolibrary.org/obo/GO_0055085""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""monoatomic ion transmembrane transport""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0042391"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0034220"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0034220""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0055085"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transmembrane transport""},""curie"":{""type"":[""literal""],""value"":""GO:0055085""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0042391"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of membrane potential""},""curie"":{""type"":[""literal""],""value"":""GO:0042391""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0006811"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""monoatomic ion transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006811""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0006811|http://purl.obolibrary.org/obo/GO_0055085","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0042391","0.0","http://purl.obolibrary.org/obo/GO_0006811|http://purl.obolibrary.org/obo/GO_0055085","","","http://purl.obolibrary.org/obo/GO_0006811|http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0055085|http://purl.obolibrary.org/obo/GO_0009987","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0006811|http://purl.obolibrary.org/obo/GO_0055085","","http://purl.obolibrary.org/obo/GO_0034220","http://purl.obolibrary.org/obo/GO_0006811|http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0055085|http://purl.obolibrary.org/obo/GO_0009987","false","monoatomic ion transmembrane transport","gitIssue502","GO:0034220","GO_0034220","monoatomic ion transmembrane transport","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0035148","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0035148"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0035148""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048646"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0035239"",""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0048646"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0035239"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""tube formation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0048646"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0035239"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""tube formation""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0035239"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0035239"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0035148""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035239"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0035239""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/GO_0035239","","","","","http://purl.obolibrary.org/obo/GO_0048646|","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/GO_0048646","","","http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0035239","","http://purl.obolibrary.org/obo/GO_0035148","http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0035239|http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","tube formation","gitIssue502","GO:0035148","GO_0035148","tube formation","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0035239","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0035239"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0035239""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009653"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0009653"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0035295"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""tube morphogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0009653"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0035295"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""tube morphogenesis""},""numDescendants"":1.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0035148"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0035239"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0035295"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0035295"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0035239""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035148"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0035148""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","http://purl.obolibrary.org/obo/GO_0035295","","","","","http://purl.obolibrary.org/obo/GO_0009653|","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0035148","1.0","http://purl.obolibrary.org/obo/GO_0009653","","","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0035295","","http://purl.obolibrary.org/obo/GO_0035239","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","tube morphogenesis","gitIssue502","GO:0035239","GO_0035239","tube morphogenesis","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0035295","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0035295"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048856"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0048856"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007275"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""tube development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0048856"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""tube development""},""numDescendants"":1.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0035239"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0035295"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007275"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0035295""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035239"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0035239""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","http://purl.obolibrary.org/obo/GO_0007275","","","","","http://purl.obolibrary.org/obo/GO_0048856|","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0035239","1.0","http://purl.obolibrary.org/obo/GO_0048856","","","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0007275","","http://purl.obolibrary.org/obo/GO_0035295","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","tube development","gitIssue502","GO:0035295","GO_0035295","tube development","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0038023","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0038023"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0038023""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""signaling receptor activity""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""signaling receptor activity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002213"",""value"":""http://purl.obolibrary.org/obo/GO_0048018"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002213"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0038023"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0038023""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0048018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""receptor ligand activity""},""curie"":{""type"":[""literal""],""value"":""GO:0048018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","","0.0","class|entity","","","","","","","","false","","","","","","","","http://purl.obolibrary.org/obo/GO_0048018","0.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","false","false","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/GO_0038023","","false","signaling receptor activity","gitIssue502","GO:0038023","GO_0038023","signaling receptor activity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0040016","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0040016"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0040016""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0051301"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0051301"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0051301"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0051301"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0009790"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""embryonic cleavage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0051301"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""embryonic cleavage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0040016"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0009790"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0040016""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051301"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell division""},""curie"":{""type"":[""literal""],""value"":""GO:0051301""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cleavage stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000107""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/GO_0009790","","","","","http://purl.obolibrary.org/obo/GO_0051301|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000107","0.0","http://purl.obolibrary.org/obo/GO_0051301","","","http://purl.obolibrary.org/obo/GO_0051301|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0051301|http://purl.obolibrary.org/obo/GO_0009790","","http://purl.obolibrary.org/obo/GO_0040016","http://purl.obolibrary.org/obo/GO_0051301|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","false","embryonic cleavage","gitIssue502","GO:0040016","GO_0040016","embryonic cleavage","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0042391","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0042391"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0042391""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0065008"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0065008"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""regulation of membrane potential""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0065008"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0034220"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""regulation of membrane potential""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0034220"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0034220"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0042391""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0065008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological quality""},""curie"":{""type"":[""literal""],""value"":""GO:0065008""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0034220"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""monoatomic ion transmembrane transport""},""curie"":{""type"":[""literal""],""value"":""GO:0034220""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/GO_0034220","","","","","http://purl.obolibrary.org/obo/GO_0065008|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0065008","","","http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0065008","","http://purl.obolibrary.org/obo/GO_0042391","http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","false","regulation of membrane potential","gitIssue502","GO:0042391","GO_0042391","regulation of membrane potential","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0043009","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0043009"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0043009""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009792"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009792"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009792"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0009792"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""chordate embryonic development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0009792"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""chordate embryonic development""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0021915"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0043009"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0043009""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009792"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development ending in birth or egg hatching""},""curie"":{""type"":[""literal""],""value"":""GO:0009792""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0021915"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neural tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0021915""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009792","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0021915","0.0","http://purl.obolibrary.org/obo/GO_0009792","","","http://purl.obolibrary.org/obo/GO_0009792|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009792","","http://purl.obolibrary.org/obo/GO_0043009","http://purl.obolibrary.org/obo/GO_0009792|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502","false","chordate embryonic development","gitIssue502","GO:0043009","GO_0043009","chordate embryonic development","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0045202","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0045202"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0045202""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""synapse""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""synapse""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000066"",""value"":""http://purl.obolibrary.org/obo/GO_0099536"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000066"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0045202"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0045202""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0099536"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""synaptic signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0099536""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000066""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","","0.0","class|entity","","","","","","","","false","","","","","","","","http://purl.obolibrary.org/obo/GO_0099536","0.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","false","false","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/GO_0045202","","false","synapse","gitIssue502","GO:0045202","GO_0045202","synapse","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0046879","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0046879"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0046879""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009914"",""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0010817"",""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0023061"",""http://purl.obolibrary.org/obo/GO_0032940"",""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0140352"",""http://purl.obolibrary.org/obo/GO_0009987""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0009914"",""http://purl.obolibrary.org/obo/GO_0023061""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009914"",""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0010817"",""http://purl.obolibrary.org/obo/GO_0065008"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0023061"",""http://purl.obolibrary.org/obo/GO_0032940"",""http://purl.obolibrary.org/obo/GO_0046903"",""http://purl.obolibrary.org/obo/GO_0140352"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0009914"",""http://purl.obolibrary.org/obo/GO_0023061""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hormone secretion""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0009914"",""http://purl.obolibrary.org/obo/GO_0023061""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hormone secretion""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0046879"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0046879""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological quality""},""curie"":{""type"":[""literal""],""value"":""GO:0065008""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0010817"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of hormone levels""},""curie"":{""type"":[""literal""],""value"":""GO:0010817""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032940"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""secretion by cell""},""curie"":{""type"":[""literal""],""value"":""GO:0032940""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signal release""},""curie"":{""type"":[""literal""],""value"":""GO:0023061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0046903"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""secretion""},""curie"":{""type"":[""literal""],""value"":""GO:0046903""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009914"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hormone transport""},""curie"":{""type"":[""literal""],""value"":""GO:0009914""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007267"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell-cell signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0007267""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0140352"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""export from cell""},""curie"":{""type"":[""literal""],""value"":""GO:0140352""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009914|http://purl.obolibrary.org/obo/GO_0023061","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0002368","0.0","http://purl.obolibrary.org/obo/GO_0009914|http://purl.obolibrary.org/obo/GO_0023061","","","http://purl.obolibrary.org/obo/GO_0009914|http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0010817|http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0023061|http://purl.obolibrary.org/obo/GO_0032940|http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0140352|http://purl.obolibrary.org/obo/GO_0009987","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009914|http://purl.obolibrary.org/obo/GO_0023061","","http://purl.obolibrary.org/obo/GO_0046879","http://purl.obolibrary.org/obo/GO_0009914|http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0010817|http://purl.obolibrary.org/obo/GO_0065008|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0023061|http://purl.obolibrary.org/obo/GO_0032940|http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/GO_0140352|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789","false","hormone secretion","gitIssue502","GO:0046879","GO_0046879","hormone secretion","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0046903","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0046903"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0046903""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0006810"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0006810"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""secretion""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0006810"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""secretion""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0046903"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0046903""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0006810","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0002530","3.0","http://purl.obolibrary.org/obo/GO_0006810","","","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0006810","","http://purl.obolibrary.org/obo/GO_0046903","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150","false","secretion","gitIssue502","GO:0046903","GO_0046903","secretion","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048018","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048018"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048018""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0005515"",""http://purl.obolibrary.org/obo/GO_0030546"",""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0098772"",""http://purl.obolibrary.org/obo/GO_0140677""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0030546""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0005515"",""http://purl.obolibrary.org/obo/GO_0030546"",""http://purl.obolibrary.org/obo/GO_0030545"",""http://purl.obolibrary.org/obo/GO_0098772"",""http://purl.obolibrary.org/obo/GO_0140677"",""http://purl.obolibrary.org/obo/GO_0007165"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0050794"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0051716"",""http://purl.obolibrary.org/obo/GO_0050896""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0030546"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007165"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""receptor ligand activity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0005102"",""http://purl.obolibrary.org/obo/GO_0030546"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007165"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002213"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0038023"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""receptor ligand activity""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007165"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007165"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002213"",""value"":""http://purl.obolibrary.org/obo/GO_0038023"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002213"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0038023"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048018""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051716"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0051716""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0098772"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0098772""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050794"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0050794""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0005102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor binding""},""curie"":{""type"":[""literal""],""value"":""GO:0005102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007165"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signal transduction""},""curie"":{""type"":[""literal""],""value"":""GO:0007165""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0005515"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""protein binding""},""curie"":{""type"":[""literal""],""value"":""GO:0005515""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050896"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0050896""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0030545"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0030545""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0030546"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor activator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0030546""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0140677"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function activator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0140677""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0038023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling receptor activity""},""curie"":{""type"":[""literal""],""value"":""GO:0038023""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/GO_0007165|http://purl.obolibrary.org/obo/GO_0038023","","","","","http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0030546||","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0030546","","","http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0005515|http://purl.obolibrary.org/obo/GO_0030546|http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0098772|http://purl.obolibrary.org/obo/GO_0140677","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0030546|http://purl.obolibrary.org/obo/GO_0007165","","http://purl.obolibrary.org/obo/GO_0048018","http://purl.obolibrary.org/obo/GO_0005102|http://purl.obolibrary.org/obo/GO_0005515|http://purl.obolibrary.org/obo/GO_0030546|http://purl.obolibrary.org/obo/GO_0030545|http://purl.obolibrary.org/obo/GO_0098772|http://purl.obolibrary.org/obo/GO_0140677|http://purl.obolibrary.org/obo/GO_0007165|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0050794|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0051716|http://purl.obolibrary.org/obo/GO_0050896","false","receptor ligand activity","gitIssue502","GO:0048018","GO_0048018","receptor ligand activity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048332","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048332"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048332""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048729"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0007498""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0048729"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007498"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""mesoderm morphogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0048729"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007498"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""mesoderm morphogenesis""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0001707"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048332"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007498"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007498"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048332""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001707"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""mesoderm formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001707""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007498"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""mesoderm development""},""curie"":{""type"":[""literal""],""value"":""GO:0007498""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/GO_0007498","","","","","http://purl.obolibrary.org/obo/GO_0048729|","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0001707","0.0","http://purl.obolibrary.org/obo/GO_0048729","","","http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0007498","","http://purl.obolibrary.org/obo/GO_0048332","http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0007498","false","mesoderm morphogenesis","gitIssue502","GO:0048332","GO_0048332","mesoderm morphogenesis","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048513","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048513"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048513""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048856"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0048856"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""animal organ development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0048856"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""animal organ development""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048513"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048513""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organogenesis stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000111""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0048856","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000111","0.0","http://purl.obolibrary.org/obo/GO_0048856","","","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048856","","http://purl.obolibrary.org/obo/GO_0048513","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","false","animal organ development","gitIssue502","GO:0048513","GO_0048513","animal organ development","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048598","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048598"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009653"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0009790"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0009653"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0009790"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0009653"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""numDescendants"":2.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0004021"",""value"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004021"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048598"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0009790"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048598""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004021"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""disease caused by disruption of""},{""type"":[""literal""],""value"":""disease has basis in disruption of""}],""curie"":{""type"":[""literal""],""value"":""RO:0004021""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019755"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019755""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","http://purl.obolibrary.org/obo/GO_0009790","","","","","http://purl.obolibrary.org/obo/GO_0009653|","","true","","","","","","","","http://purl.obolibrary.org/obo/MONDO_0019755","2.0","http://purl.obolibrary.org/obo/GO_0009653","","","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0009790","","http://purl.obolibrary.org/obo/GO_0048598","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0009790|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","embryonic morphogenesis","gitIssue502","GO:0048598","GO_0048598","embryonic morphogenesis","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048609","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048609"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048609""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0022414"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0022414"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0022414"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0000003"",""http://purl.obolibrary.org/obo/GO_0032504"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0022414"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0032504"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multicellular organismal reproductive process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0022414"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032504"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multicellular organismal reproductive process""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0032504"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032504"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048609""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032504"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0032504""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0022414"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive process""},""curie"":{""type"":[""literal""],""value"":""GO:0022414""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/GO_0032504","","","","","http://purl.obolibrary.org/obo/GO_0022414|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0022414","","","http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/GO_0032504","","http://purl.obolibrary.org/obo/GO_0048609","http://purl.obolibrary.org/obo/GO_0022414|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/GO_0032504|http://purl.obolibrary.org/obo/GO_0032501","false","multicellular organismal reproductive process","gitIssue502","GO:0048609","GO_0048609","multicellular organismal reproductive process","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048646","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048646"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0032502"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0032502"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0009653"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0032502"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009653"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""numDescendants"":8.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0009653"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009653"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048646""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","http://purl.obolibrary.org/obo/GO_0009653","","","","","http://purl.obolibrary.org/obo/GO_0032502|","","true","","","","","","","","","8.0","http://purl.obolibrary.org/obo/GO_0032502","","","http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0009653","","http://purl.obolibrary.org/obo/GO_0048646","http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856","false","anatomical structure formation involved in morphogenesis","gitIssue502","GO:0048646","GO_0048646","anatomical structure formation involved in morphogenesis","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048729","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048729"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009653"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0009888""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0009653"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0009888"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0009653"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009888"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""numDescendants"":4.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0009888"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009888"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048729""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","http://purl.obolibrary.org/obo/GO_0009888","","","","","http://purl.obolibrary.org/obo/GO_0009653|","","true","","","","","","","","","4.0","http://purl.obolibrary.org/obo/GO_0009653","","","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0009888","","http://purl.obolibrary.org/obo/GO_0048729","http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0009888","false","tissue morphogenesis","gitIssue502","GO:0048729","GO_0048729","tissue morphogenesis","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048731","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048731"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048731""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0048856"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0048856"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0007275"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""system development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0048856"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""system development""},""numDescendants"":1.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007275"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007275"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048731""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/GO_0007275","","","","","http://purl.obolibrary.org/obo/GO_0048856|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0048856","","","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0007275","","http://purl.obolibrary.org/obo/GO_0048731","http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","system development","gitIssue502","GO:0048731","GO_0048731","system development","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0048856","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0048856"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0032502"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0032502"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anatomical structure development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0032502"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""numDescendants"":14.0,""numHierarchicalDescendants"":34.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0009653"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048856"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0048856""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","34.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0032502","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0009653","14.0","http://purl.obolibrary.org/obo/GO_0032502","","","http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0032502","","http://purl.obolibrary.org/obo/GO_0048856","http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","false","anatomical structure development","gitIssue502","GO:0048856","GO_0048856","anatomical structure development","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0050789","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0050789"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0065007"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0065007"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""regulation of biological process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0065007"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002211"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008150"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""numDescendants"":8.0,""numHierarchicalDescendants"":13.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002211"",""value"":""http://purl.obolibrary.org/obo/GO_0008150"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002211"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008150"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0050789""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","13.0","class|entity","http://purl.obolibrary.org/obo/GO_0008150","","","","","http://purl.obolibrary.org/obo/GO_0065007|","","true","","","","","","","","","8.0","http://purl.obolibrary.org/obo/GO_0065007","","","http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0065007","","http://purl.obolibrary.org/obo/GO_0050789","http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","false","regulation of biological process","gitIssue502","GO:0050789","GO_0050789","regulation of biological process","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0050794","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0050794"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0050794""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0050789"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0050789"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""regulation of cellular process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0050789"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002211"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009987"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""regulation of cellular process""},""numDescendants"":1.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002211"",""value"":""http://purl.obolibrary.org/obo/GO_0009987"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002211"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009987"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0050794""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","http://purl.obolibrary.org/obo/GO_0009987","","","","","http://purl.obolibrary.org/obo/GO_0050789|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0050789","","","http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0050789","","http://purl.obolibrary.org/obo/GO_0050794","http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","false","regulation of cellular process","gitIssue502","GO:0050794","GO_0050794","regulation of cellular process","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0050877","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0050877"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0050877""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0003008"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0003008"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0003008"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0003008"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""nervous system process""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0003008"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""nervous system process""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0050877"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0050877""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0003008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""system process""},""curie"":{""type"":[""literal""],""value"":""GO:0003008""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0003008","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0001016","1.0","http://purl.obolibrary.org/obo/GO_0003008","","","http://purl.obolibrary.org/obo/GO_0003008|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0003008","","http://purl.obolibrary.org/obo/GO_0050877","http://purl.obolibrary.org/obo/GO_0003008|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0008150","false","nervous system process","gitIssue502","GO:0050877","GO_0050877","nervous system process","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0050896","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0050896"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0050896""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""response to stimulus""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0008150"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""response to stimulus""},""numDescendants"":1.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0050896""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0008150","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0008150","","","http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0008150","","http://purl.obolibrary.org/obo/GO_0050896","http://purl.obolibrary.org/obo/GO_0008150","false","response to stimulus","gitIssue502","GO:0050896","GO_0050896","response to stimulus","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0051179","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0051179"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""localization""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0008150"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""localization""},""numDescendants"":11.0,""numHierarchicalDescendants"":11.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0051179""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","11.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0008150","","true","","","","","","","","","11.0","http://purl.obolibrary.org/obo/GO_0008150","","","http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0008150","","http://purl.obolibrary.org/obo/GO_0051179","http://purl.obolibrary.org/obo/GO_0008150","false","localization","gitIssue502","GO:0051179","GO_0051179","localization","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0051234","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0051234"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0051179"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0051179"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""establishment of localization""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0051179"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""numDescendants"":10.0,""numHierarchicalDescendants"":10.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0051234""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","10.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0051179","","true","","","","","","","","","10.0","http://purl.obolibrary.org/obo/GO_0051179","","","http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0051179","","http://purl.obolibrary.org/obo/GO_0051234","http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150","false","establishment of localization","gitIssue502","GO:0051234","GO_0051234","establishment of localization","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0051301","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0051301"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0051301""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009987"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0009987"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cell division""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0009987"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cell division""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0051301""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009987","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0009987","","","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009987","","http://purl.obolibrary.org/obo/GO_0051301","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150","false","cell division","gitIssue502","GO:0051301","GO_0051301","cell division","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0051716","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0051716"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0051716""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0050896""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0050896""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0050896""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0050896""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cellular response to stimulus""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0050896""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cellular response to stimulus""},""numDescendants"":0.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0007165"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0051716"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0051716""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050896"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""response to stimulus""},""curie"":{""type"":[""literal""],""value"":""GO:0050896""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007165"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signal transduction""},""curie"":{""type"":[""literal""],""value"":""GO:0007165""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0050896","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0007165","0.0","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0050896","","","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0050896","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0050896","","http://purl.obolibrary.org/obo/GO_0051716","http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0050896","false","cellular response to stimulus","gitIssue502","GO:0051716","GO_0051716","cellular response to stimulus","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0055085","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0055085"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0055085""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009987""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0009987""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009987""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0009987""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""transmembrane transport""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0009987""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""transmembrane transport""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0055085""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0009987","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0009987","","","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009987","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0009987","","http://purl.obolibrary.org/obo/GO_0055085","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009987","false","transmembrane transport","gitIssue502","GO:0055085","GO_0055085","transmembrane transport","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0060429","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0060429"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0060429""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0009888"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0009888"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""epithelium development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0009888"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""epithelium development""},""numDescendants"":1.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0002009"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0060429"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0060429""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0002009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphogenesis of an epithelium""},""curie"":{""type"":[""literal""],""value"":""GO:0002009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0009888","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0002009","1.0","http://purl.obolibrary.org/obo/GO_0009888","","","http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0009888","","http://purl.obolibrary.org/obo/GO_0060429","http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","false","epithelium development","gitIssue502","GO:0060429","GO_0060429","epithelium development","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0060562","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0060562"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0060562""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0035239""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0035239""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0060429"",""http://purl.obolibrary.org/obo/GO_0035239"",""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0035239""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""epithelial tube morphogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0035239""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""epithelial tube morphogenesis""},""numDescendants"":0.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0072175"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0060562"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0060562""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0072175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelial tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0072175""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0060429"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium development""},""curie"":{""type"":[""literal""],""value"":""GO:0060429""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0002009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphogenesis of an epithelium""},""curie"":{""type"":[""literal""],""value"":""GO:0002009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035239"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0035239""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0035239","","true","","","","","","","","http://purl.obolibrary.org/obo/GO_0072175","0.0","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0035239","","","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0035239","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0035239","","http://purl.obolibrary.org/obo/GO_0060562","http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0060429|http://purl.obolibrary.org/obo/GO_0035239|http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501","false","epithelial tube morphogenesis","gitIssue502","GO:0060562","GO_0060562","epithelial tube morphogenesis","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0065007","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0065007"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""biological regulation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0008150"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""biological regulation""},""numDescendants"":15.0,""numHierarchicalDescendants"":19.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0065007""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","19.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0008150","","true","","","","","","","","","15.0","http://purl.obolibrary.org/obo/GO_0008150","","","http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0008150","","http://purl.obolibrary.org/obo/GO_0065007","http://purl.obolibrary.org/obo/GO_0008150","false","biological regulation","gitIssue502","GO:0065007","GO_0065007","biological regulation","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0065008","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0065008"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0065008""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0065007"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0065007"",""http://purl.obolibrary.org/obo/GO_0008150""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0065007"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""regulation of biological quality""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0065007"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""regulation of biological quality""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0065008""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0065007","","true","","","","","","","","","5.0","http://purl.obolibrary.org/obo/GO_0065007","","","http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0065007","","http://purl.obolibrary.org/obo/GO_0065008","http://purl.obolibrary.org/obo/GO_0065007|http://purl.obolibrary.org/obo/GO_0008150","false","regulation of biological quality","gitIssue502","GO:0065008","GO_0065008","regulation of biological quality","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0072175","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0072175"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0072175""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0035148"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150""],""directParent"":""http://purl.obolibrary.org/obo/GO_0035148"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0035148"",""http://purl.obolibrary.org/obo/GO_0048646"",""http://purl.obolibrary.org/obo/GO_0032502"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009653"",""http://purl.obolibrary.org/obo/GO_0048856"",""http://purl.obolibrary.org/obo/GO_0035239"",""http://purl.obolibrary.org/obo/GO_0035295"",""http://purl.obolibrary.org/obo/GO_0007275"",""http://purl.obolibrary.org/obo/GO_0032501"",""http://purl.obolibrary.org/obo/GO_0060562"",""http://purl.obolibrary.org/obo/GO_0002009"",""http://purl.obolibrary.org/obo/GO_0048729"",""http://purl.obolibrary.org/obo/GO_0009888"",""http://purl.obolibrary.org/obo/GO_0060429""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0035148"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/GO_0060562"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""epithelial tube formation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0035148"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0060562"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""epithelial tube formation""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/GO_0060562"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0060562"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0072175""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0007275"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism development""},""curie"":{""type"":[""literal""],""value"":""GO:0007275""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035148"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0035148""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009653"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0009653""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organismal process""},""curie"":{""type"":[""literal""],""value"":""GO:0032501""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0060429"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium development""},""curie"":{""type"":[""literal""],""value"":""GO:0060429""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube development""},""curie"":{""type"":[""literal""],""value"":""GO:0035295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure formation involved in morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048729"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048729""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0002009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphogenesis of an epithelium""},""curie"":{""type"":[""literal""],""value"":""GO:0002009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048856"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure development""},""curie"":{""type"":[""literal""],""value"":""GO:0048856""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0060562"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelial tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0060562""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0035239"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tube morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0035239""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009888"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""tissue development""},""curie"":{""type"":[""literal""],""value"":""GO:0009888""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/GO_0060562","","","","","http://purl.obolibrary.org/obo/GO_0035148|","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/GO_0035148","","","http://purl.obolibrary.org/obo/GO_0035148|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0035148|http://purl.obolibrary.org/obo/GO_0060562","","http://purl.obolibrary.org/obo/GO_0072175","http://purl.obolibrary.org/obo/GO_0035148|http://purl.obolibrary.org/obo/GO_0048646|http://purl.obolibrary.org/obo/GO_0032502|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009653|http://purl.obolibrary.org/obo/GO_0048856|http://purl.obolibrary.org/obo/GO_0035239|http://purl.obolibrary.org/obo/GO_0035295|http://purl.obolibrary.org/obo/GO_0007275|http://purl.obolibrary.org/obo/GO_0032501|http://purl.obolibrary.org/obo/GO_0060562|http://purl.obolibrary.org/obo/GO_0002009|http://purl.obolibrary.org/obo/GO_0048729|http://purl.obolibrary.org/obo/GO_0009888|http://purl.obolibrary.org/obo/GO_0060429","false","epithelial tube formation","gitIssue502","GO:0072175","GO_0072175","epithelial tube formation","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0098772","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0098772"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0098772""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0005515"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""numDescendants"":6.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/GO_0005515"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0005515"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0098772""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0005515"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""protein binding""},""curie"":{""type"":[""literal""],""value"":""GO:0005515""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","http://purl.obolibrary.org/obo/GO_0005515","","","","","","","false","","","","","","","","","6.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","true","false","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/GO_0098772","","false","molecular function regulator activity","gitIssue502","GO:0098772","GO_0098772","molecular function regulator activity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0098916","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0098916"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0098916""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0099537"",""http://purl.obolibrary.org/obo/GO_0099536"",""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""directParent"":""http://purl.obolibrary.org/obo/GO_0099537"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0099537"",""http://purl.obolibrary.org/obo/GO_0099536"",""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0099537"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anterograde trans-synaptic signaling""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0099537"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anterograde trans-synaptic signaling""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0098916""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0099537"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trans-synaptic signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0099537""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0099536"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""synaptic signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0099536""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007267"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell-cell signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0007267""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0099537","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/GO_0099537","","","http://purl.obolibrary.org/obo/GO_0099537|http://purl.obolibrary.org/obo/GO_0099536|http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0099537","","http://purl.obolibrary.org/obo/GO_0098916","http://purl.obolibrary.org/obo/GO_0099537|http://purl.obolibrary.org/obo/GO_0099536|http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","false","anterograde trans-synaptic signaling","gitIssue502","GO:0098916","GO_0098916","anterograde trans-synaptic signaling","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0099536","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0099536"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0099536""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""directParent"":""http://purl.obolibrary.org/obo/GO_0007267"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0007267"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""synaptic signaling""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0007267"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000066"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0045202"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""synaptic signaling""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000066"",""value"":""http://purl.obolibrary.org/obo/GO_0045202"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000066"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0045202"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0099536""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0045202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""synapse""},""curie"":{""type"":[""literal""],""value"":""GO:0045202""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007267"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell-cell signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0007267""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000066""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/GO_0045202","","","","","http://purl.obolibrary.org/obo/GO_0007267|","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/GO_0007267","","","http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0007267","","http://purl.obolibrary.org/obo/GO_0099536","http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","false","synaptic signaling","gitIssue502","GO:0099536","GO_0099536","synaptic signaling","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0099537","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0099537"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0099537""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0099536"",""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""directParent"":""http://purl.obolibrary.org/obo/GO_0099536"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0099536"",""http://purl.obolibrary.org/obo/GO_0007267"",""http://purl.obolibrary.org/obo/GO_0007154"",""http://purl.obolibrary.org/obo/GO_0009987"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0023052"",""http://purl.obolibrary.org/obo/GO_0050789"",""http://purl.obolibrary.org/obo/GO_0065007""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0099536"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""trans-synaptic signaling""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0099536"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""trans-synaptic signaling""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0099537""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0050789"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulation of biological process""},""curie"":{""type"":[""literal""],""value"":""GO:0050789""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell communication""},""curie"":{""type"":[""literal""],""value"":""GO:0007154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0065007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological regulation""},""curie"":{""type"":[""literal""],""value"":""GO:0065007""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0099536"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""synaptic signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0099536""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007267"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell-cell signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0007267""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0023052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""signaling""},""curie"":{""type"":[""literal""],""value"":""GO:0023052""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0099536","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/GO_0099536","","","http://purl.obolibrary.org/obo/GO_0099536|http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0099536","","http://purl.obolibrary.org/obo/GO_0099537","http://purl.obolibrary.org/obo/GO_0099536|http://purl.obolibrary.org/obo/GO_0007267|http://purl.obolibrary.org/obo/GO_0007154|http://purl.obolibrary.org/obo/GO_0009987|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0023052|http://purl.obolibrary.org/obo/GO_0050789|http://purl.obolibrary.org/obo/GO_0065007","false","trans-synaptic signaling","gitIssue502","GO:0099537","GO_0099537","trans-synaptic signaling","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0140352","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0140352"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0140352""},""directAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009987""],""directParent"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0009987""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0051234"",""http://purl.obolibrary.org/obo/GO_0051179"",""http://purl.obolibrary.org/obo/GO_0008150"",""http://purl.obolibrary.org/obo/GO_0009987""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0009987""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""export from cell""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/GO_0006810"",""http://purl.obolibrary.org/obo/GO_0009987""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""export from cell""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0140352""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0051234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""establishment of localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051234""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0051179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""localization""},""curie"":{""type"":[""literal""],""value"":""GO:0051179""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0006810"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transport""},""curie"":{""type"":[""literal""],""value"":""GO:0006810""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009987"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular process""},""curie"":{""type"":[""literal""],""value"":""GO:0009987""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0009987","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0009987","","","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009987","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0009987","","http://purl.obolibrary.org/obo/GO_0140352","http://purl.obolibrary.org/obo/GO_0006810|http://purl.obolibrary.org/obo/GO_0051234|http://purl.obolibrary.org/obo/GO_0051179|http://purl.obolibrary.org/obo/GO_0008150|http://purl.obolibrary.org/obo/GO_0009987","false","export from cell","gitIssue502","GO:0140352","GO_0140352","export from cell","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/GO_0140677","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0140677"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0140677""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0098772"",""directParent"":""http://purl.obolibrary.org/obo/GO_0098772"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0098772"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0098772"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""molecular function activator activity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0098772"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""molecular function activator activity""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0140677""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/GO_0098772"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecular function regulator activity""},""curie"":{""type"":[""literal""],""value"":""GO:0098772""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","","","","","","http://purl.obolibrary.org/obo/GO_0098772","","true","","","","","","","","","4.0","http://purl.obolibrary.org/obo/GO_0098772","","","http://purl.obolibrary.org/obo/GO_0098772","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/GO_0098772","","http://purl.obolibrary.org/obo/GO_0140677","http://purl.obolibrary.org/obo/GO_0098772","false","molecular function activator activity","gitIssue502","GO:0140677","GO_0140677","molecular function activator activity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/HP_0001513","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/HP_0001513"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""HP:0001513""},""definition"":{""type"":[""literal""],""value"":""Accumulation of substantial excess body fat.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Accumulation of substantial excess body fat.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Obesity""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Obesity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0004029"",""value"":""http://purl.obolibrary.org/obo/MONDO_0011122"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004029"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/HP_0001513"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Accumulation of substantial excess body fat.""},false],""shortForm"":{""type"":[""literal""],""value"":""HP_0001513""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0004029"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has feature""},""curie"":{""type"":[""literal""],""value"":""RO:0004029""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0011122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""obesity disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0011122""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000115","","","false","","Accumulation of substantial excess body fat.","","","","","","http://purl.obolibrary.org/obo/MONDO_0011122","0.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","false","false","","","","false","","Accumulation of substantial excess body fat.","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/HP_0001513","","false","Obesity","gitIssue502","HP:0001513","HP_0001513","Obesity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0000001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0000001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OGMS:0000031""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OGMS:0000031""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:4""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0000408""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0000408""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:799.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D004194""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""EFO:0000408""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C2991""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OGMS:0000031""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:377788""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:64572001""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""EFO:0000408""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0012634""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C2991""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""condition""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease or disorder, non-neoplastic""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""diseases""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""diseases and disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""literal""],""value"":""medical condition""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""other disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0000001""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disease""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000016"",""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D004194"",""http://identifiers.org/snomedct/64572001"",""http://linkedlifedata.com/resource/umls/id/C0012634"",""http://purl.obolibrary.org/obo/DOID_4"",""http://purl.obolibrary.org/obo/NCIT_C2991"",""http://www.orpha.net/ORDO/Orphanet_377788""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disease""},""numDescendants"":32.0,""numHierarchicalDescendants"":32.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OGMS:0000031""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:4""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0000408""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0000408""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:799.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D004194""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""EFO:0000408""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C2991""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OGMS:0000031""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:377788""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:64572001""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""EFO:0000408""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0012634""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C2991""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""condition""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease or disorder, non-neoplastic""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""diseases""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""diseases and disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""literal""],""value"":""medical condition""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""other disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""literal""],""value"":""MONDO:0000001""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0000001""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""condition""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease or disorder, non-neoplastic""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""diseases""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""diseases and disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]},{""type"":[""literal""],""value"":""medical condition""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""other disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C2991""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DOID_4"":{""url"":""http://purl.obolibrary.org/obo/DOID_4"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:4""},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""SCTID:64572001"":{""url"":""http://snomed.info/id/64572001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:64572001""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""DOID:4"":{""url"":""http://purl.obolibrary.org/obo/DOID_4"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:4""},""http://purl.obolibrary.org/obo/NCIT_C2991"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C2991"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C2991""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""EFO:0000408"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0000408"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0000408""},""Orphanet:377788"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d377788"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:377788""},""NCIT:C2991"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C2991"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C2991""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""OGMS:0000031"":{""url"":""http://purl.obolibrary.org/obo/OGMS_0000031"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OGMS:0000031""},""UMLS:C0012634"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0012634"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0012634""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0000001"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0000001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0000001""},""http://www.orpha.net/ORDO/Orphanet_377788"":{""url"":""http://www.orpha.net/ORDO/Orphanet_377788"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:377788""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""MESH:D004194"":{""url"":""http://id.nlm.nih.gov/mesh/D004194"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D004194""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D004194|http://identifiers.org/snomedct/64572001|http://linkedlifedata.com/resource/umls/id/C0012634|http://purl.obolibrary.org/obo/DOID_4|http://purl.obolibrary.org/obo/NCIT_C2991|http://www.orpha.net/ORDO/Orphanet_377788","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","32.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0000001","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000016","","true","","A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.","","","","","","","32.0","http://purl.obolibrary.org/obo/BFO_0000016","","","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","condition|disease|disease or disorder|disease or disorder, non-neoplastic|diseases|diseases and disorders|disorder|disorders|medical condition|other disease","DOID:4|EFO:0000408|ICD9:799.9|MESH:D004194|NCIT:C2991|OGMS:0000031|Orphanet:377788|SCTID:64572001|UMLS:C0012634","condition|disease|disease or disorder|disease or disorder, non-neoplastic|diseases|diseases and disorders|disorder|disorders|medical condition|other disease","false","","A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000016","","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","disease","gitIssue502","MONDO:0000001","MONDO_0000001","disease","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002146","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0002146"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0002146""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:P378""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002259"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0005151""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002259"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MESH:D007006""},{""type"":[""literal""],""value"":""NCIT:C9227/inferred""}]}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002259"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0005151""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002259"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MESH:D007006""},{""type"":[""literal""],""value"":""NCIT:C9227/inferred""}]}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:P378""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:1924""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:253.4""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D007006""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C9227""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:48130008""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0020619""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C9227""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadotropin deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C9227""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C9227""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0002146""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hypogonadism""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002259"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MESH:D007006""},{""type"":[""literal""],""value"":""NCIT:C9227/inferred""}]}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D007006"",""http://identifiers.org/snomedct/48130008"",""http://linkedlifedata.com/resource/umls/id/C0020619"",""http://purl.obolibrary.org/obo/DOID_1924"",""http://purl.obolibrary.org/obo/NCIT_C9227""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hypogonadism""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:P378""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:1924""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:253.4""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D007006""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C9227""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:48130008""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0020619""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:1924""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C9227""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadotropin deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C9227""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C9227""}}]},{""type"":[""literal""],""value"":""MONDO:0002146""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0002146""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadotropin deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C9227""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C9227""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/MONDO_0002259"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonadal disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002259""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C9227"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C9227"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C9227""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DOID_1924"":{""url"":""http://purl.obolibrary.org/obo/DOID_1924"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:1924""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""MESH:D007006"":{""url"":""http://id.nlm.nih.gov/mesh/D007006"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D007006""},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""UMLS:C0020619"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0020619"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0020619""},""NCIT:C9227"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C9227"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C9227""},""DOID:1924"":{""url"":""http://purl.obolibrary.org/obo/DOID_1924"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:1924""},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0002146"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0002146"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0002146""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""SCTID:48130008"":{""url"":""http://snomed.info/id/48130008"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:48130008""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D007006|http://identifiers.org/snomedct/48130008|http://linkedlifedata.com/resource/umls/id/C0020619|http://purl.obolibrary.org/obo/DOID_1924|http://purl.obolibrary.org/obo/NCIT_C9227","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0002146","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0002259","","true","","A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.","","","","","","","3.0","http://purl.obolibrary.org/obo/MONDO_0002259","","","http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0005151","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","gonadotropin deficiency|hypogonadotropism","DOID:1924|ICD9:253.4|MESH:D007006|NCIT:C9227|SCTID:48130008|UMLS:C0020619","gonadotropin deficiency|hypogonadotropism","false","","A disorder characterized by decreased function of the gonads. Clinical manifestations in both males and females include poor libido, infertility, and osteoporosis. Additional signs in males include erectile dysfunction, muscle atrophy, gynecomastia and increased abdominal fat. In females, additional signs include shrinking of the breasts and loss of, or failure to develop menstruation.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0002259","","http://purl.obolibrary.org/obo/MONDO_0002146","http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0005151","false","hypogonadism","gitIssue502","MONDO:0002146","MONDO_0002146","hypogonadism","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002254","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0002254"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0002254""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C28193""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C28193""}}]},""http://purl.org/dc/terms/conformsTo"":""http://purl.obolibrary.org/obo/mondo/patterns/syndromic.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:225""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D013577""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:225""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C28193""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:225""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OGMS:0000086""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0039082""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:225""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C28193""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""cluster, symptom""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""clusters, symptom""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""symptom cluster""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""symptom clusters""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""NCIT:C28193""},{""type"":[""literal""],""value"":""OGMS:0000086""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome associated with disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromes""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0002254""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#harrisons_view"",""http://purl.obolibrary.org/obo/mondo#rare_grouping""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""syndromic disease""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021127"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021127"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D013577"",""http://linkedlifedata.com/resource/umls/id/C0039082"",""http://purl.obolibrary.org/obo/DOID_225"",""http://purl.obolibrary.org/obo/NCIT_C28193""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""syndromic disease""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021127"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021127"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C28193""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:225""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D013577""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:225""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C28193""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:225""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OGMS:0000086""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0039082""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:225""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C28193""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""cluster, symptom""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""clusters, symptom""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""symptom cluster""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""symptom clusters""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""NCIT:C28193""},{""type"":[""literal""],""value"":""OGMS:0000086""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome associated with disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromes""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""literal""],""value"":""MONDO:0002254""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0002254""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""cluster, symptom""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""clusters, symptom""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""symptom cluster""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""symptom clusters""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""NCIT:C28193""},{""type"":[""literal""],""value"":""OGMS:0000086""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome associated with disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromes""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D013577""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""NCIT:C28193"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C28193"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C28193""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DOID_225"":{""url"":""http://purl.obolibrary.org/obo/DOID_225"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:225""},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""DOID:225"":{""url"":""http://purl.obolibrary.org/obo/DOID_225"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:225""},""http://purl.obolibrary.org/obo/MONDO_0021127"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has a syndromic presentation""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021127""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C28193"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C28193"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C28193""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""UMLS:C0039082"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0039082"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0039082""},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""MONDO:0002254"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0002254"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0002254""},""OGMS:0000086"":{""url"":""http://purl.obolibrary.org/obo/OGMS_0000086"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OGMS:0000086""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""MESH:D013577"":{""url"":""http://id.nlm.nih.gov/mesh/D013577"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D013577""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D013577|http://linkedlifedata.com/resource/umls/id/C0039082|http://purl.obolibrary.org/obo/DOID_225|http://purl.obolibrary.org/obo/NCIT_C28193","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/MONDO_0021127","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0002254","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0700096|","http://purl.obolibrary.org/obo/mondo#harrisons_view|http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.","","","","","http://purl.obolibrary.org/obo/mondo/patterns/syndromic.yaml","","2.0","http://purl.obolibrary.org/obo/MONDO_0700096","","","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","cluster, symptom|clusters, symptom|symptom cluster|symptom clusters|syndrome|syndrome associated with disease or disorder|syndromes|syndromic disease|syndromic disease or disorder","DOID:225|MESH:D013577|NCIT:C28193|OGMS:0000086|UMLS:C0039082","cluster, symptom|clusters, symptom|symptom cluster|symptom clusters|syndrome|syndrome associated with disease or disorder|syndromes|syndromic disease|syndromic disease or disorder","false","","A group of signs, symptoms, and clinicopathological characteristics that may or may not have a genetic basis and collectively define an abnormal condition.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700096","","http://purl.obolibrary.org/obo/MONDO_0002254","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","syndromic disease","gitIssue502","MONDO:0002254","MONDO_0002254","syndromic disease","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002259","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0002259"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0002259""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A non-neoplastic or neoplastic disorder that affects the testis or the ovary.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:P378""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0005151""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0005039"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MESH:D006058""}]}]}],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0005151""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0005039"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MESH:D006058""}]}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A non-neoplastic or neoplastic disorder that affects the testis or the ovary.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:P378""}}]},""http://purl.org/dc/terms/conformsTo"":[""http://purl.obolibrary.org/obo/mondo/patterns/location.yaml"",""http://purl.obolibrary.org/obo/mondo/patterns/location_top.yaml""],""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:2277""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D006058""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C26786""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0018050""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of gonad""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of gonad""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of gonad""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of gonads""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonad disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonad disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadal disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadal disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0002259""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gonadal disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0005039"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MESH:D006058""}]}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0000001"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D006058"",""http://linkedlifedata.com/resource/umls/id/C0018050"",""http://purl.obolibrary.org/obo/DOID_2277"",""http://purl.obolibrary.org/obo/NCIT_C26786""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gonadal disorder""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A non-neoplastic or neoplastic disorder that affects the testis or the ovary.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:P378""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:2277""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D006058""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C26786""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0018050""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:2277""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of gonad""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of gonad""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of gonad""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of gonads""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonad disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonad disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadal disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadal disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]},{""type"":[""literal""],""value"":""MONDO:0002259""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0002259""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of gonad""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of gonad""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of gonad""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of gonads""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonad disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonad disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadal disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadal disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26786""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""DOID:2277"":{""url"":""http://purl.obolibrary.org/obo/DOID_2277"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:2277""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DOID_2277"":{""url"":""http://purl.obolibrary.org/obo/DOID_2277"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:2277""},""http://purl.obolibrary.org/obo/NCIT_C26786"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C26786"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C26786""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0002259"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0002259"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0002259""},""NCIT:C26786"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C26786"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C26786""},""MESH:D006058"":{""url"":""http://id.nlm.nih.gov/mesh/D006058"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D006058""},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""UMLS:C0018050"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0018050"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0018050""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000991"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonad""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000991""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D006058|http://linkedlifedata.com/resource/umls/id/C0018050|http://purl.obolibrary.org/obo/DOID_2277|http://purl.obolibrary.org/obo/NCIT_C26786","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000991","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0002259","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0005151|","","true","","A non-neoplastic or neoplastic disorder that affects the testis or the ovary.","","","","","http://purl.obolibrary.org/obo/mondo/patterns/location.yaml|http://purl.obolibrary.org/obo/mondo/patterns/location_top.yaml","","4.0","http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0005151","","","http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0005151","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","disease of gonad|disease or disorder of gonad|disorder of gonad|disorder of gonads|gonad disease|gonad disease or disorder|gonadal disorder|gonadal disorders","DOID:2277|MESH:D006058|NCIT:C26786|UMLS:C0018050","disease of gonad|disease or disorder of gonad|disorder of gonad|disorder of gonads|gonad disease|gonad disease or disorder|gonadal disorder|gonadal disorders","false","","A non-neoplastic or neoplastic disorder that affects the testis or the ovary.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0005151","","http://purl.obolibrary.org/obo/MONDO_0002259","http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0005151","false","gonadal disorder","gitIssue502","MONDO:0002259","MONDO_0002259","gonadal disorder","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002263","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0002263"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0002263""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the female reproductive system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005039"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:229""},{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""NCIT:C27020""}]}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005039"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:229""},{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""NCIT:C27020""}]}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the female reproductive system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},""http://purl.org/dc/terms/conformsTo"":[""http://purl.obolibrary.org/obo/mondo/patterns/location.yaml"",""http://purl.obolibrary.org/obo/mondo/patterns/location_top.yaml""],""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:229""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:629.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:229""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D005831""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:229""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C27020""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:310789003""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:229""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of female reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of female reproductive system""},{""type"":[""literal""],""value"":""disorder of female genital system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of female reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:229""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location""},{""type"":[""literal""],""value"":""NCIT:C27020""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C27020""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":[{""type"":[""literal""],""value"":""disease of female genital system""},{""type"":[""literal""],""value"":""disorder of female genital tract""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gynaecological disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/OMO_0003005""}]},{""type"":[""literal""],""value"":""gynecological disease""}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0002263""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005039"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:229""},{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""NCIT:C27020""}]}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000474"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0000001"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000474"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D005831"",""http://identifiers.org/snomedct/310789003"",""http://purl.obolibrary.org/obo/DOID_229"",""http://purl.obolibrary.org/obo/NCIT_C27020""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000474"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000474"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the female reproductive system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:229""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:629.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:229""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D005831""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:229""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C27020""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:310789003""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:229""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of female reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of female reproductive system""},{""type"":[""literal""],""value"":""disorder of female genital system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of female reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:229""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location""},{""type"":[""literal""],""value"":""NCIT:C27020""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C27020""}}]},{""type"":[""literal""],""value"":""disease of female genital system""},{""type"":[""literal""],""value"":""disorder of female genital tract""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gynaecological disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/OMO_0003005""}]},{""type"":[""literal""],""value"":""gynecological disease""},{""type"":[""literal""],""value"":""MONDO:0002263""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0002263""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of female reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of female reproductive system""},{""type"":[""literal""],""value"":""disorder of female genital system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of female reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:229""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location""},{""type"":[""literal""],""value"":""NCIT:C27020""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C27020""}}]},{""type"":[""literal""],""value"":""disease of female genital system""},{""type"":[""literal""],""value"":""disorder of female genital tract""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gynaecological disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/OMO_0003005""}]},{""type"":[""literal""],""value"":""gynecological disease""}],""synonymProperty"":[{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym""}],""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/DOID_229"":{""url"":""http://purl.obolibrary.org/obo/DOID_229"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:229""},""MESH:D005831"":{""url"":""http://id.nlm.nih.gov/mesh/D005831"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D005831""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""SCTID:310789003"":{""url"":""http://snomed.info/id/310789003"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:310789003""},""DOID:229"":{""url"":""http://purl.obolibrary.org/obo/DOID_229"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:229""},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_related_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasRelatedSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0002-6601-2165"":{""url"":""https://orcid.org/0000-0002-6601-2165"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-6601-2165""},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""NCIT:C27020"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C27020"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C27020""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""MONDO:0002263"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0002263"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0002263""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/OMO_0003005"":{""url"":""http://purl.obolibrary.org/obo/OMO_0003005"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""omo:0003005""},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_synonym_type"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasSynonymType""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C27020"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C27020"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C27020""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000474"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""female reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000474""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D005831|http://identifiers.org/snomedct/310789003|http://purl.obolibrary.org/obo/DOID_229|http://purl.obolibrary.org/obo/NCIT_C27020","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000474","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym|http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","MONDO:0002263","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0005039|","","true","","A disease involving the female reproductive system.","","","","","http://purl.obolibrary.org/obo/mondo/patterns/location.yaml|http://purl.obolibrary.org/obo/mondo/patterns/location_top.yaml","","4.0","http://purl.obolibrary.org/obo/MONDO_0005039","","","http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","disease of female genital system|disorder of female genital tract|gynaecological disease|gynecological disease","","","","http://www.w3.org/2002/07/owl#Class","true","true","disease of female reproductive system|disease or disorder of female reproductive system|disorder of female genital system|disorder of female reproductive system|female reproductive disease|female reproductive system disease|female reproductive system disease or disorder|female reproductive system disorder","DOID:229|ICD9:629.9|MESH:D005831|NCIT:C27020|SCTID:310789003","disease of female reproductive system|disease or disorder of female reproductive system|disorder of female genital system|disorder of female reproductive system|female reproductive disease|female reproductive system disease|female reproductive system disease or disorder|female reproductive system disorder|disease of female genital system|disorder of female genital tract|gynaecological disease|gynecological disease","false","","A disease involving the female reproductive system.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0005039","","http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","female reproductive system disorder","gitIssue502","MONDO:0002263","MONDO_0002263","female reproductive system disorder","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0002320","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0002320"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0002320""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An abnormality of the nervous system that is present at birth or detected in the neonatal period.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0005071"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0005071"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An abnormality of the nervous system that is present at birth or detected in the neonatal period.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0000839"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:2490""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:2490""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:742""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:2490""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C97172""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital abnormality of the nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital nervous system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital neurologic anomaly""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:2490""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0002320""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""congenital nervous system disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0005071"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://purl.obolibrary.org/obo/DOID_2490"",""http://purl.obolibrary.org/obo/NCIT_C97172""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""congenital nervous system disorder""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An abnormality of the nervous system that is present at birth or detected in the neonatal period.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:2490""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:742""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:2490""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C97172""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital abnormality of the nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital nervous system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital neurologic anomaly""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:2490""}}]},{""type"":[""literal""],""value"":""MONDO:0002320""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0002320""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital abnormality of the nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital nervous system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C97172""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital neurologic anomaly""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:2490""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DOID_2490"":{""url"":""http://purl.obolibrary.org/obo/DOID_2490"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:2490""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""NCIT:C97172"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C97172"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C97172""},""MONDO:0002320"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0002320"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0002320""},""ICD9:742"":{""url"":""http://www.icd9data.com/getICD9Code.ashx?icd9\u003d742"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ICD9:742""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000839"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0000839"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""mondo:0000839""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""DOID:2490"":{""url"":""http://purl.obolibrary.org/obo/DOID_2490"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:2490""},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""excluded_subClassOf""},""curie"":{""type"":[""literal""],""value"":""excluded:subClassOf""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021140"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""congenital""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021140""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C97172"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C97172"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C97172""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005071""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://purl.obolibrary.org/obo/DOID_2490|http://purl.obolibrary.org/obo/NCIT_C97172","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/MONDO_0021140","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0002320","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0005071|","","true","","An abnormality of the nervous system that is present at birth or detected in the neonatal period.","","","","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0005071","","","http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","congenital abnormality of the nervous system|congenital nervous system disorder|congenital neurologic anomaly","DOID:2490|ICD9:742|NCIT:C97172","congenital abnormality of the nervous system|congenital nervous system disorder|congenital neurologic anomaly","false","","An abnormality of the nervous system that is present at birth or detected in the neonatal period.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0000839","http://purl.obolibrary.org/obo/MONDO_0002320","http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","congenital nervous system disorder","gitIssue502","MONDO:0002320","MONDO_0002320","congenital nervous system disorder","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0003847","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0003847"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""definition"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""literal""],""value"":""Usage note: this is intended only for diseases with an inherited genetic etiology. Somatic genetic mutations are excluded. Some ontologies use the term \u0027genetic disease\u0027 in the sense of inherited disorders only, we are here careful to distinguish.""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""http://purl.org/dc/terms/conformsTo"":""http://purl.obolibrary.org/obo/mondo/patterns/hereditary.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic condition""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""literal""],""value"":""genetic disease""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:630""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0000508""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:799.89""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D030342""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:630""},{""type"":[""literal""],""value"":""EFO:0000508""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C3101""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:630""},{""type"":[""literal""],""value"":""EFO:0000508""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:32895009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:630""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0019247""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:630""},{""type"":[""literal""],""value"":""EFO:0000508""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C3101""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""},{""type"":[""literal""],""value"":""NCIT:C3101""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary diseases""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""inherited disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""inherited genetic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/1758""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""molecular disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Mendelian disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0050177""}}]},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":[{""type"":[""literal""],""value"":""familial disorder""},{""type"":[""literal""],""value"":""inborn disorder""}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0003847""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#harrisons_view"",""http://purl.obolibrary.org/obo/mondo#rare_grouping""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Usage note: this is intended only for diseases with an inherited genetic etiology. Somatic genetic mutations are excluded. Some ontologies use the term \u0027genetic disease\u0027 in the sense of inherited disorders only, we are here careful to distinguish.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hereditary disease""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D030342"",""http://identifiers.org/snomedct/32895009"",""http://linkedlifedata.com/resource/umls/id/C0019247"",""http://purl.obolibrary.org/obo/DOID_630"",""http://purl.obolibrary.org/obo/NCIT_C3101""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""numDescendants"":7.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic condition""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""literal""],""value"":""genetic disease""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:630""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0000508""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:799.89""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D030342""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:630""},{""type"":[""literal""],""value"":""EFO:0000508""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C3101""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:630""},{""type"":[""literal""],""value"":""EFO:0000508""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:32895009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:630""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0019247""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:630""},{""type"":[""literal""],""value"":""EFO:0000508""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C3101""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""},{""type"":[""literal""],""value"":""NCIT:C3101""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary diseases""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""inherited disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""inherited genetic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/1758""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""molecular disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Mendelian disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0050177""}}]},{""type"":[""literal""],""value"":""familial disorder""},{""type"":[""literal""],""value"":""inborn disorder""},{""type"":[""literal""],""value"":""MONDO:0003847""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0003847""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic condition""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""literal""],""value"":""genetic disease""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""},{""type"":[""literal""],""value"":""NCIT:C3101""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hereditary diseases""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""inherited disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""inherited genetic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/1758""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""molecular disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3101""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Mendelian disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0050177""}}]},{""type"":[""literal""],""value"":""familial disorder""},{""type"":[""literal""],""value"":""inborn disorder""}],""synonymProperty"":[{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym""}],""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""SCTID:32895009"":{""url"":""http://snomed.info/id/32895009"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:32895009""},""DOID:630"":{""url"":""http://purl.obolibrary.org/obo/DOID_630"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:630""},""http://purl.obolibrary.org/obo/DOID_630"":{""url"":""http://purl.obolibrary.org/obo/DOID_630"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:630""},""DOID:0050177"":{""url"":""http://purl.obolibrary.org/obo/DOID_0050177"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:0050177""},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_related_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasRelatedSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_narrow_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasNarrowSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C3101"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C3101"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C3101""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""NCIT:C3101"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C3101"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C3101""},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""MONDO:0003847"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0003847"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0003847""},""UMLS:C0019247"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0019247"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0019247""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_broad_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasBroadSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021152"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inherited""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021152""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""MESH:D030342"":{""url"":""http://id.nlm.nih.gov/mesh/D030342"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D030342""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""EFO:0000508"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0000508"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0000508""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D030342|http://identifiers.org/snomedct/32895009|http://linkedlifedata.com/resource/umls/id/C0019247|http://purl.obolibrary.org/obo/DOID_630|http://purl.obolibrary.org/obo/NCIT_C3101","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","http://purl.obolibrary.org/obo/MONDO_0021152","","http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym|http://www.geneontology.org/formats/oboInOwl#hasExactSynonym|http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym|http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","MONDO:0003847","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/MONDO_0700096|","http://purl.obolibrary.org/obo/mondo#harrisons_view|http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","A disease that is caused by genetic modifications where those modifications are inherited from a parent's genome.","","","","","http://purl.obolibrary.org/obo/mondo/patterns/hereditary.yaml","","7.0","http://purl.obolibrary.org/obo/MONDO_0700096","","","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","familial disorder|inborn disorder","genetic condition|genetic disease|genetic disorder","Mendelian disease","","http://www.w3.org/2002/07/owl#Class","true","true","hereditary disease|hereditary disease or disorder|hereditary diseases|inherited disease|inherited genetic disease|molecular disease","DOID:630|EFO:0000508|ICD9:799.89|MESH:D030342|NCIT:C3101|SCTID:32895009|UMLS:C0019247","genetic condition|genetic disease|genetic disorder|hereditary disease|hereditary disease or disorder|hereditary diseases|inherited disease|inherited genetic disease|molecular disease|Mendelian disease|familial disorder|inborn disorder","false","Usage note: this is intended only for diseases with an inherited genetic etiology. Somatic genetic mutations are excluded. Some ontologies use the term 'genetic disease' in the sense of inherited disorders only, we are here careful to distinguish.","A disease that is caused by genetic modifications where those modifications are inherited from a parent's genome.|Usage note: this is intended only for diseases with an inherited genetic etiology. Somatic genetic mutations are excluded. Some ontologies use the term 'genetic disease' in the sense of inherited disorders only, we are here careful to distinguish.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700096","","http://purl.obolibrary.org/obo/MONDO_0003847","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","hereditary disease","gitIssue502","MONDO:0003847","MONDO_0003847","hereditary disease","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0003916","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0003916"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0003916""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D044343""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005137"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005137"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MESH:D044343""}]}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005137"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005137"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MESH:D044343""}]}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D044343""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:654""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:278.8""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D044343""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:302872003""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C1257763""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0003916""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""overnutrition""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005137"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MESH:D044343""}]}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D044343"",""http://identifiers.org/snomedct/302872003"",""http://linkedlifedata.com/resource/umls/id/C1257763"",""http://purl.obolibrary.org/obo/DOID_654""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""overnutrition""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D044343""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:654""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:278.8""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D044343""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:302872003""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C1257763""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:654""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""literal""],""value"":""MONDO:0003916""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0003916""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""DOID:654"":{""url"":""http://purl.obolibrary.org/obo/DOID_654"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:654""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005137"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nutritional disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005137""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""MESH:D044343"":{""url"":""http://id.nlm.nih.gov/mesh/D044343"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D044343""},""UMLS:C1257763"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C1257763"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C1257763""},""SCTID:302872003"":{""url"":""http://snomed.info/id/302872003"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:302872003""},""MONDO:0003916"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0003916"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0003916""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DOID_654"":{""url"":""http://purl.obolibrary.org/obo/DOID_654"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:654""}}}","false","true","http://identifiers.org/mesh/D044343|http://identifiers.org/snomedct/302872003|http://linkedlifedata.com/resource/umls/id/C1257763|http://purl.obolibrary.org/obo/DOID_654","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","","","","MONDO:0003916","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0005137","","true","","An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.","","","","","","","4.0","http://purl.obolibrary.org/obo/MONDO_0005137","","","http://purl.obolibrary.org/obo/MONDO_0005137|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","DOID:654|ICD9:278.8|MESH:D044343|SCTID:302872003|UMLS:C1257763","","false","","An imbalanced nutritional status resulting from excessive intake of nutrients. Generally, overnutrition generates an energy imbalance between food consumption and energy expenditure leading to disorders such as obesity.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0005137","","http://purl.obolibrary.org/obo/MONDO_0003916","http://purl.obolibrary.org/obo/MONDO_0005137|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","overnutrition","gitIssue502","MONDO:0003916","MONDO_0003916","overnutrition","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0005039","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0005039"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the reproductive system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the reproductive system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},""http://purl.org/dc/terms/conformsTo"":""http://purl.obolibrary.org/obo/mondo/patterns/location.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:15""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0000512""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0000512""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C4875""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:362968007""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0000512""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0178829""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C4875""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Wikipedia:Reproductive_system_disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""EFO:0000512""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of reproductive system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C4875""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genital disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C4875""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genital system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:15""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:15""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location""},{""type"":[""literal""],""value"":""NCIT:C4875""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C4875""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0005039""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":""http://purl.obolibrary.org/obo/mondo#rare_grouping"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/snomedct/362968007"",""http://linkedlifedata.com/resource/umls/id/C0178829"",""http://purl.obolibrary.org/obo/DOID_15"",""http://purl.obolibrary.org/obo/NCIT_C4875""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""numDescendants"":8.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the reproductive system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:15""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0000512""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0000512""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C4875""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:362968007""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0000512""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0178829""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C4875""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Wikipedia:Reproductive_system_disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""EFO:0000512""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of reproductive system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C4875""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genital disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C4875""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genital system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:15""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:15""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location""},{""type"":[""literal""],""value"":""NCIT:C4875""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C4875""}}]},{""type"":[""literal""],""value"":""MONDO:0005039""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0005039""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of reproductive system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of reproductive system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C4875""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genital disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C4875""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genital system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:15""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:15""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location""},{""type"":[""literal""],""value"":""NCIT:C4875""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""reproductive system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C4875""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""NCIT:C4875"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C4875"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C4875""},""UMLS:C0178829"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0178829"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0178829""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""DOID:15"":{""url"":""http://purl.obolibrary.org/obo/DOID_15"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:15""},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""MONDO:0005039"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0005039"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0005039""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""EFO:0000512"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0000512"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0000512""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""Wikipedia:Reproductive_system_disease"":{""url"":""http://en.wikipedia.org/wiki/Reproductive_system_disease"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""Wikipedia:Reproductive_system_disease""},""http://purl.obolibrary.org/obo/NCIT_C4875"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C4875"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C4875""},""https://orcid.org/0000-0002-6601-2165"":{""url"":""https://orcid.org/0000-0002-6601-2165"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-6601-2165""},""SCTID:362968007"":{""url"":""http://snomed.info/id/362968007"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:362968007""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DOID_15"":{""url"":""http://purl.obolibrary.org/obo/DOID_15"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:15""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/snomedct/362968007|http://linkedlifedata.com/resource/umls/id/C0178829|http://purl.obolibrary.org/obo/DOID_15|http://purl.obolibrary.org/obo/NCIT_C4875","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000990","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0005039","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031|","http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","A disease involving the reproductive system.","","","","","http://purl.obolibrary.org/obo/mondo/patterns/location.yaml","","8.0","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031","","","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","disease of reproductive system|disease or disorder of reproductive system|disorder of reproductive system|genital disorders|genital system disease|reproductive disease|reproductive system disease|reproductive system disease or disorder|reproductive system disorder","DOID:15|EFO:0000512|NCIT:C4875|SCTID:362968007|UMLS:C0178829|Wikipedia:Reproductive_system_disease","disease of reproductive system|disease or disorder of reproductive system|disorder of reproductive system|genital disorders|genital system disease|reproductive disease|reproductive system disease|reproductive system disease or disorder|reproductive system disorder","false","","A disease involving the reproductive system.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031","","http://purl.obolibrary.org/obo/MONDO_0005039","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","reproductive system disorder","gitIssue502","MONDO:0005039","MONDO_0005039","reproductive system disorder","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0005071","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0005071"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0005071""},""definition"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26835""}}]},{""type"":[""literal""],""value"":""\u0027psychiatric disorder\u0027 is not classified as a \u0027nervous system disorder\u0027 in Mondo (though it is often as such): the hallmarks of psychiatric disorders are based in behavior and emotional state, and the relation with nervous system malfunction or damage is not always clearly determined.""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26835""}}]},""http://purl.org/dc/terms/conformsTo"":""http://purl.obolibrary.org/obo/mondo/patterns/location.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:863""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0000618""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0000618""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:G00-G99""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/4536""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:349.89""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:349.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D009422""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C26835""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:118940003""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0027765""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Wikipedia:Nervous_system_disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""EFO:0000618""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of nervous system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26835""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurologic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurologic disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""ISBN-13:978-1-259-64403-0""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurological disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurological disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0005071""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":""http://purl.obolibrary.org/obo/mondo#rare_grouping"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""\u0027psychiatric disorder\u0027 is not classified as a \u0027nervous system disorder\u0027 in Mondo (though it is often as such): the hallmarks of psychiatric disorders are based in behavior and emotional state, and the relation with nervous system malfunction or damage is not always clearly determined.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""nervous system disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D009422"",""http://identifiers.org/snomedct/118940003"",""http://linkedlifedata.com/resource/umls/id/C0027765"",""http://purl.bioontology.org/ontology/ICD10CM/G00-G99"",""http://purl.obolibrary.org/obo/DOID_863"",""http://purl.obolibrary.org/obo/NCIT_C26835""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""nervous system disorder""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26835""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:863""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0000618""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0000618""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:G00-G99""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/4536""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:349.89""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:349.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D009422""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C26835""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:118940003""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0027765""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Wikipedia:Nervous_system_disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""EFO:0000618""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of nervous system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26835""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurologic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurologic disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""ISBN-13:978-1-259-64403-0""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurological disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurological disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]},{""type"":[""literal""],""value"":""MONDO:0005071""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0005071""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of nervous system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of nervous system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nervous system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26835""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurologic disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurologic disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:863""},{""type"":[""literal""],""value"":""ISBN-13:978-1-259-64403-0""},{""type"":[""literal""],""value"":""NCIT:C26835""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurological disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""neurological disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:863""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DOID_863"":{""url"":""http://purl.obolibrary.org/obo/DOID_863"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:863""},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""DOID:863"":{""url"":""http://purl.obolibrary.org/obo/DOID_863"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:863""},""NCIT:C26835"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C26835"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C26835""},""UMLS:C0027765"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0027765"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0027765""},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C26835"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C26835"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C26835""},""EFO:0000618"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0000618"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0000618""},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""MESH:D009422"":{""url"":""http://id.nlm.nih.gov/mesh/D009422"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D009422""},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""https://orcid.org/0000-0002-4142-7153"":{""url"":""https://orcid.org/0000-0002-4142-7153"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-4142-7153""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""MONDO:0005071"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0005071"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0005071""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""SCTID:118940003"":{""url"":""http://snomed.info/id/118940003"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:118940003""},""Wikipedia:Nervous_system_disease"":{""url"":""http://en.wikipedia.org/wiki/Nervous_system_disease"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""Wikipedia:Nervous_system_disease""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0001-5208-3432"":{""url"":""https://orcid.org/0000-0001-5208-3432"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0001-5208-3432""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D009422|http://identifiers.org/snomedct/118940003|http://linkedlifedata.com/resource/umls/id/C0027765|http://purl.bioontology.org/ontology/ICD10CM/G00-G99|http://purl.obolibrary.org/obo/DOID_863|http://purl.obolibrary.org/obo/NCIT_C26835","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0001016","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0005071","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031|","http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.","","","","","http://purl.obolibrary.org/obo/mondo/patterns/location.yaml","","5.0","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031","","","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","disease of nervous system|disease or disorder of nervous system|disorder of nervous system|nervous system disease|nervous system disease or disorder|nervous system disorder|neurologic disease|neurologic disorder|neurological disease|neurological disorder","DOID:863|EFO:0000618|ICD10CM:G00-G99|ICD9:349.89|ICD9:349.9|MESH:D009422|NCIT:C26835|SCTID:118940003|UMLS:C0027765|Wikipedia:Nervous_system_disease","disease of nervous system|disease or disorder of nervous system|disorder of nervous system|nervous system disease|nervous system disease or disorder|nervous system disorder|neurologic disease|neurologic disorder|neurological disease|neurological disorder","false","'psychiatric disorder' is not classified as a 'nervous system disorder' in Mondo (though it is often as such): the hallmarks of psychiatric disorders are based in behavior and emotional state, and the relation with nervous system malfunction or damage is not always clearly determined.","A non-neoplastic or neoplastic disorder that affects the brain, spinal cord, or peripheral nerves.|'psychiatric disorder' is not classified as a 'nervous system disorder' in Mondo (though it is often as such): the hallmarks of psychiatric disorders are based in behavior and emotional state, and the relation with nervous system malfunction or damage is not always clearly determined.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031","","http://purl.obolibrary.org/obo/MONDO_0005071","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","nervous system disorder","gitIssue502","MONDO:0005071","MONDO_0005071","nervous system disorder","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0005137","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0005137"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0005137""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Any condition related to a disturbance between proper intake and utilization of nourishment.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26836""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Any condition related to a disturbance between proper intake and utilization of nourishment.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26836""}}]},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005066"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""NCIT:C26836""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0006504"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:374""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:374""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0001069""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0001069""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:783.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D009748""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""EFO:0001069""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C26836""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""EFO:0001069""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:exact-label-match""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:2492009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""EFO:0001069""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C3714509""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C26836""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nutritional disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""NCIT:C26836""}]}]},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nutrition disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:374""}}]},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0005137""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#harrisons_view"",""http://purl.obolibrary.org/obo/mondo#rare_grouping""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""nutritional disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""}}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D009748"",""http://identifiers.org/snomedct/2492009"",""http://linkedlifedata.com/resource/umls/id/C3714509"",""http://purl.obolibrary.org/obo/DOID_374"",""http://purl.obolibrary.org/obo/NCIT_C26836""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""nutritional disorder""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Any condition related to a disturbance between proper intake and utilization of nourishment.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C26836""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:374""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0001069""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0001069""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:783.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D009748""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""EFO:0001069""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C26836""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""EFO:0001069""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:exact-label-match""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:2492009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""EFO:0001069""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C3714509""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C26836""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nutritional disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""NCIT:C26836""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nutrition disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:374""}}]},{""type"":[""literal""],""value"":""MONDO:0005137""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0005137""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nutritional disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:374""},{""type"":[""literal""],""value"":""NCIT:C26836""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nutrition disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:374""}}]}],""synonymProperty"":[{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym""}],""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""EFO:0001069"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0001069"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0001069""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C26836"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C26836"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C26836""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0006504"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0006504"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""mondo:0006504""},""NCIT:C26836"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C26836"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C26836""},""MESH:D009748"":{""url"":""http://id.nlm.nih.gov/mesh/D009748"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D009748""},""SCTID:2492009"":{""url"":""http://snomed.info/id/2492009"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:2492009""},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_related_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasRelatedSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005066"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0005066"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""mondo:0005066""},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""excluded_subClassOf""},""curie"":{""type"":[""literal""],""value"":""excluded:subClassOf""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0001-5208-3432"":{""url"":""https://orcid.org/0000-0001-5208-3432"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0001-5208-3432""},""MONDO:0005137"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0005137"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0005137""},""http://purl.obolibrary.org/obo/DOID_374"":{""url"":""http://purl.obolibrary.org/obo/DOID_374"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:374""},""UMLS:C3714509"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C3714509"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C3714509""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""DOID:374"":{""url"":""http://purl.obolibrary.org/obo/DOID_374"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:374""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D009748|http://identifiers.org/snomedct/2492009|http://linkedlifedata.com/resource/umls/id/C3714509|http://purl.obolibrary.org/obo/DOID_374|http://purl.obolibrary.org/obo/NCIT_C26836","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym|http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","MONDO:0005137","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/mondo#harrisons_view|http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","Any condition related to a disturbance between proper intake and utilization of nourishment.","","","","","","","5.0","http://purl.obolibrary.org/obo/MONDO_0700096","","","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","nutrition disease","","","","http://www.w3.org/2002/07/owl#Class","true","true","nutritional disorder","DOID:374|EFO:0001069|ICD9:783.9|MESH:D009748|NCIT:C26836|SCTID:2492009|UMLS:C3714509","nutritional disorder|nutrition disease","false","","Any condition related to a disturbance between proper intake and utilization of nourishment.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0005066|http://purl.obolibrary.org/obo/MONDO_0006504","http://purl.obolibrary.org/obo/MONDO_0005137","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","nutritional disorder","gitIssue502","MONDO:0005137","MONDO_0005137","nutritional disorder","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0005151","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the endocrine system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the endocrine system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0021199"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""MONDO:Entailed""},{""type"":[""literal""],""value"":""MONDO:metaclass""}]}]},""http://purl.org/dc/terms/conformsTo"":""http://purl.obolibrary.org/obo/mondo/patterns/location.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:28""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0001379""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:259.8""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:259.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D004700""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C3009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:362969004""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0014130""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C3009""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of endocrine system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of endocrine system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of endocrine system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C3009""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""NCIT:C3009""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrinopathy""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""thyroid or other glandular disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0005151""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#harrisons_view"",""http://purl.obolibrary.org/obo/mondo#rare_grouping""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D004700"",""http://identifiers.org/snomedct/362969004"",""http://linkedlifedata.com/resource/umls/id/C0014130"",""http://purl.obolibrary.org/obo/DOID_28"",""http://purl.obolibrary.org/obo/NCIT_C3009""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""numDescendants"":10.0,""numHierarchicalDescendants"":10.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease involving the endocrine system.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6601-2165""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:28""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0001379""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:259.8""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:259.9""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D004700""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C3009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:362969004""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""EFO:0001379""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0014130""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C3009""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of endocrine system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of endocrine system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of endocrine system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C3009""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""NCIT:C3009""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrinopathy""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""thyroid or other glandular disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""literal""],""value"":""MONDO:0005151""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0005151""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disease of endocrine system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location_top""}}]},{""type"":[""literal""],""value"":""disease or disorder of endocrine system""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of endocrine system""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/location_top""},{""type"":[""literal""],""value"":""NCIT:C3009""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:28""},{""type"":[""literal""],""value"":""NCIT:C3009""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/location""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/location""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrine system disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""endocrinopathy""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""thyroid or other glandular disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C3009""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCIT_C3009"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C3009"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C3009""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""MONDO:0005151"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0005151""},""DOID:28"":{""url"":""http://purl.obolibrary.org/obo/DOID_28"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:28""},""NCIT:C3009"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C3009"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C3009""},""http://purl.obolibrary.org/obo/MONDO_0021199"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021199"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""mondo:0021199""},""UMLS:C0014130"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0014130"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0014130""},""https://orcid.org/0000-0002-6601-2165"":{""url"":""https://orcid.org/0000-0002-6601-2165"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-6601-2165""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""MESH:D004700"":{""url"":""http://id.nlm.nih.gov/mesh/D004700"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D004700""},""http://purl.obolibrary.org/obo/DOID_28"":{""url"":""http://purl.obolibrary.org/obo/DOID_28"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:28""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""EFO:0001379"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0001379"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0001379""},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""excluded_subClassOf""},""curie"":{""type"":[""literal""],""value"":""excluded:subClassOf""},""type"":[""property"",""annotationProperty"",""entity""]},""SCTID:362969004"":{""url"":""http://snomed.info/id/362969004"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:362969004""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D004700|http://identifiers.org/snomedct/362969004|http://linkedlifedata.com/resource/umls/id/C0014130|http://purl.obolibrary.org/obo/DOID_28|http://purl.obolibrary.org/obo/NCIT_C3009","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","10.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000949","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0005151","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031|","http://purl.obolibrary.org/obo/mondo#harrisons_view|http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","A disease involving the endocrine system.","","","","","http://purl.obolibrary.org/obo/mondo/patterns/location.yaml","","10.0","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031","","","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","disease of endocrine system|disease or disorder of endocrine system|disorder of endocrine system|endocrine disease|endocrine disorder|endocrine system disease|endocrine system disease or disorder|endocrine system disorder|endocrinopathy|thyroid or other glandular disorders","DOID:28|EFO:0001379|ICD9:259.8|ICD9:259.9|MESH:D004700|NCIT:C3009|SCTID:362969004|UMLS:C0014130","disease of endocrine system|disease or disorder of endocrine system|disorder of endocrine system|endocrine disease|endocrine disorder|endocrine system disease|endocrine system disease or disorder|endocrine system disorder|endocrinopathy|thyroid or other glandular disorders","false","","A disease involving the endocrine system.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/MONDO_0021199","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","endocrine system disorder","gitIssue502","MONDO:0005151","MONDO_0005151","endocrine system disorder","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0008300","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0008300"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0008300""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002320"",""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0015160"",""http://purl.obolibrary.org/obo/MONDO_0019042"",""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0015770"",""http://purl.obolibrary.org/obo/MONDO_0016072"",""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0015860"",""http://purl.obolibrary.org/obo/MONDO_0002263"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0018555"",""http://purl.obolibrary.org/obo/MONDO_0002146"",""http://purl.obolibrary.org/obo/MONDO_0002259"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0019824"",""http://purl.obolibrary.org/obo/MONDO_0015127"",""http://purl.obolibrary.org/obo/MONDO_0015514"",""http://purl.obolibrary.org/obo/MONDO_0016565"",""http://purl.obolibrary.org/obo/MONDO_0002254"",""http://purl.obolibrary.org/obo/MONDO_0015330"",""http://purl.obolibrary.org/obo/MONDO_0019182"",""http://purl.obolibrary.org/obo/MONDO_0011122"",""http://purl.obolibrary.org/obo/MONDO_0003916"",""http://purl.obolibrary.org/obo/MONDO_0005137"",""http://purl.obolibrary.org/obo/MONDO_0019040"",""http://purl.obolibrary.org/obo/MONDO_0100038"",""http://purl.obolibrary.org/obo/MONDO_0700092"",""http://purl.obolibrary.org/obo/MONDO_0100500""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0002320"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015160"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015770"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015890-obsoleted""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0016565"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019040"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MESH:D011218""}]}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0100038"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6733-369X""}}]},""http://purl.obolibrary.org/obo/MONDO_0100500""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002320"",""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0015160"",""http://purl.obolibrary.org/obo/MONDO_0019042"",""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0015770"",""http://purl.obolibrary.org/obo/MONDO_0016072"",""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0015860"",""http://purl.obolibrary.org/obo/MONDO_0002263"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0018555"",""http://purl.obolibrary.org/obo/MONDO_0002146"",""http://purl.obolibrary.org/obo/MONDO_0002259"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0019824"",""http://purl.obolibrary.org/obo/MONDO_0015127"",""http://purl.obolibrary.org/obo/MONDO_0015514"",""http://purl.obolibrary.org/obo/MONDO_0016565"",""http://purl.obolibrary.org/obo/MONDO_0002254"",""http://purl.obolibrary.org/obo/MONDO_0015330"",""http://purl.obolibrary.org/obo/MONDO_0019182"",""http://purl.obolibrary.org/obo/MONDO_0011122"",""http://purl.obolibrary.org/obo/MONDO_0003916"",""http://purl.obolibrary.org/obo/MONDO_0005137"",""http://purl.obolibrary.org/obo/MONDO_0019040"",""http://purl.obolibrary.org/obo/MONDO_0100038"",""http://purl.obolibrary.org/obo/MONDO_0700092"",""http://purl.obolibrary.org/obo/MONDO_0100500""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0002320"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015160"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015770"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015890-obsoleted""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0016565"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019040"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MESH:D011218""}]}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0100038"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6733-369X""}}]},""http://purl.obolibrary.org/obo/MONDO_0100500""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:11983""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""GARD:5575""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:759.81""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D011218""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""Orphanet:739""},{""type"":[""literal""],""value"":""Orphanet:739/e""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MedDRA:10036476""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""Orphanet:739""},{""type"":[""literal""],""value"":""Orphanet:739/e""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C75463""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OMIM:176270""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""Orphanet:739""},{""type"":[""literal""],""value"":""Orphanet:739/e""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:739""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""OMIM:176270""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:89392001""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0032897""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:ncbi_mim2gene_medline""},{""type"":[""literal""],""value"":""NCIT:C75463""},{""type"":[""literal""],""value"":""OMIM:176270""},{""type"":[""literal""],""value"":""Orphanet:739""},{""type"":[""literal""],""value"":""Orphanet:739/e""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:11983""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Labhart-Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:176270""},{""type"":[""literal""],""value"":""Orphanet:739""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:Lexical""},{""type"":[""literal""],""value"":""OMIM:176270""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi-Labhart syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C75463""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Willi-Prader syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:739""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""PWS""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:Lexical""},{""type"":[""literal""],""value"":""OMIM:176270""}],""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#ABBREVIATION""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome chromosome region""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIM:176270""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi-like syndrome associated with chromosome 6""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIM:176270""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""GARD:0005575""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""GARD:0005575""},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#DEPRECATED""}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0008300""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#gard_rare"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""GARD:0005575""}}]},""http://purl.obolibrary.org/obo/mondo#nord_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_disease"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Prader-Willi syndrome""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://rarediseases.info.nih.gov/diseases/5575/prader-willi-syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""GARD:0005575""}}]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0002320"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015160"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015770"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015890-obsoleted""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0016565"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019040"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MESH:D011218""}]}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0100038"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6733-369X""}}]},""http://purl.obolibrary.org/obo/MONDO_0100500""],""http://www.w3.org/2004/02/skos/core#closeMatch"":""http://identifiers.org/meddra/10036476"",""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D011218"",""http://identifiers.org/snomedct/89392001"",""http://linkedlifedata.com/resource/umls/id/C0032897"",""http://purl.obolibrary.org/obo/DOID_11983"",""http://purl.obolibrary.org/obo/NCIT_C75463"",""http://www.orpha.net/ORDO/Orphanet_739"",""https://omim.org/entry/176270""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Prader-Willi syndrome""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:11983""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""GARD:5575""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:759.81""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D011218""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""Orphanet:739""},{""type"":[""literal""],""value"":""Orphanet:739/e""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MedDRA:10036476""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""Orphanet:739""},{""type"":[""literal""],""value"":""Orphanet:739/e""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C75463""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OMIM:176270""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""Orphanet:739""},{""type"":[""literal""],""value"":""Orphanet:739/e""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:739""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""OMIM:176270""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:89392001""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0032897""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:11983""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:ncbi_mim2gene_medline""},{""type"":[""literal""],""value"":""NCIT:C75463""},{""type"":[""literal""],""value"":""OMIM:176270""},{""type"":[""literal""],""value"":""Orphanet:739""},{""type"":[""literal""],""value"":""Orphanet:739/e""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:11983""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Labhart-Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:176270""},{""type"":[""literal""],""value"":""Orphanet:739""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:Lexical""},{""type"":[""literal""],""value"":""OMIM:176270""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi-Labhart syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C75463""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Willi-Prader syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""PWS""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:Lexical""},{""type"":[""literal""],""value"":""OMIM:176270""}],""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#ABBREVIATION""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome chromosome region""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIM:176270""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi-like syndrome associated with chromosome 6""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIM:176270""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""GARD:0005575""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""GARD:0005575""},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#DEPRECATED""}]},{""type"":[""literal""],""value"":""MONDO:0008300""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0008300""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:11983""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Labhart-Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:176270""},{""type"":[""literal""],""value"":""Orphanet:739""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:Lexical""},{""type"":[""literal""],""value"":""OMIM:176270""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi-Labhart syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C75463""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Willi-Prader syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:739""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""PWS""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:Lexical""},{""type"":[""literal""],""value"":""OMIM:176270""}],""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#ABBREVIATION""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi syndrome chromosome region""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIM:176270""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Prader-Willi-like syndrome associated with chromosome 6""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIM:176270""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""GARD:0005575""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""GARD:0005575""},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#DEPRECATED""}]}],""synonymProperty"":[{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym""}],""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""MONDO:0008300"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0008300"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0008300""},""MedDRA:10036476"":{""url"":""http://bioportal.bioontology.org/ontologies/MEDDRA?p\u003dclasses\u0026conceptid\u003d10036476"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MedDRA:10036476""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015770"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""congenital hypogonadotropic hypogonadism""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015770""},""type"":[""class"",""entity""]},""SCTID:89392001"":{""url"":""http://snomed.info/id/89392001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:89392001""},""GARD:0005575"":{""url"":""https://rarediseases.info.nih.gov/diseases/0005575/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:0005575""},""http://purl.obolibrary.org/obo/MONDO_0019040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""chromosomal disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019042"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multiple congenital anomalies/dysmorphic syndrome""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019042""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neurodevelopmental disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700092""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#closeMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has close match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:closeMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015127"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""pituitary deficiency""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015127""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_related_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasRelatedSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0100500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mendelian neurodevelopmental disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0100500""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015514"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary endocrine growth disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015514""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0016565"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""syndromic genetic obesity""},""curie"":{""type"":[""literal""],""value"":""MONDO:0016565""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0003916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""overnutrition""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002320"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""congenital nervous system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002320""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019824"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""non-acquired pituitary hormone deficiency""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019824""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""OMIM:176270"":{""url"":""https://omim.org/entry/176270"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""OMIM:176270""},""http://purl.obolibrary.org/obo/MONDO_0015860"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015860""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DOID_11983"":{""url"":""http://purl.obolibrary.org/obo/DOID_11983"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:11983""},""http://purl.obolibrary.org/obo/MONDO_0002259"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonadal disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002259""},""type"":[""class"",""entity""]},""DOID:11983"":{""url"":""http://purl.obolibrary.org/obo/DOID_11983"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:11983""},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_synonym_type"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasSynonymType""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002254"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""syndromic disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002254""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""Orphanet:739"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d739"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:739""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""GARD:5575"":{""url"":""https://rarediseases.info.nih.gov/diseases/5575/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:5575""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015330"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""overgrowth/obesity syndrome""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015330""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C75463"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C75463"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C75463""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015160""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hypogonadism""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005137"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nutritional disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005137""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002263""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0011122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""obesity disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0011122""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0018555"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism""},""curie"":{""type"":[""literal""],""value"":""MONDO:0018555""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""RDFS:seeAlso""},""type"":[""property"",""entity""]},""MESH:D011218"":{""url"":""http://id.nlm.nih.gov/mesh/D011218"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D011218""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0015890"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015890"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015890""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019755"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019755""},""type"":[""class"",""entity""]},""NCIT:C75463"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C75463"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C75463""},""UMLS:C0032897"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0032897"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0032897""},""http://purl.obolibrary.org/obo/MONDO_0016072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle of genetic origin""},""curie"":{""type"":[""literal""],""value"":""MONDO:0016072""},""type"":[""class"",""entity""]},""https://orcid.org/0000-0002-6733-369X"":{""url"":""https://orcid.org/0000-0002-6733-369X"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-6733-369X""},""http://purl.obolibrary.org/obo/MONDO_0019182"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inherited obesity""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019182""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021147"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021147""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0100038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""complex neurodevelopmental disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0100038""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005071""},""type"":[""class"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_739"":{""url"":""http://www.orpha.net/ORDO/Orphanet_739"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:739""},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","http://identifiers.org/mesh/D011218|http://identifiers.org/snomedct/89392001|http://linkedlifedata.com/resource/umls/id/C0032897|http://purl.obolibrary.org/obo/DOID_11983|http://purl.obolibrary.org/obo/NCIT_C75463|http://www.orpha.net/ORDO/Orphanet_739|https://omim.org/entry/176270","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym|http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","MONDO:0008300","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0002320|http://purl.obolibrary.org/obo/MONDO_0015160|http://purl.obolibrary.org/obo/MONDO_0015770|http://purl.obolibrary.org/obo/MONDO_0016565|http://purl.obolibrary.org/obo/MONDO_0019040|http://purl.obolibrary.org/obo/MONDO_0100038|http://purl.obolibrary.org/obo/MONDO_0100500","http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#nord_rare|http://purl.obolibrary.org/obo/mondo#ordo_disease|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.","","","","","","","0.0","http://purl.obolibrary.org/obo/MONDO_0002320|http://purl.obolibrary.org/obo/MONDO_0015160|http://purl.obolibrary.org/obo/MONDO_0015770|http://purl.obolibrary.org/obo/MONDO_0016565|http://purl.obolibrary.org/obo/MONDO_0019040|http://purl.obolibrary.org/obo/MONDO_0100038|http://purl.obolibrary.org/obo/MONDO_0100500","http://identifiers.org/meddra/10036476","","http://purl.obolibrary.org/obo/MONDO_0002320|http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0015160|http://purl.obolibrary.org/obo/MONDO_0019042|http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0015770|http://purl.obolibrary.org/obo/MONDO_0016072|http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0015860|http://purl.obolibrary.org/obo/MONDO_0002263|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0018555|http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0019824|http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0015514|http://purl.obolibrary.org/obo/MONDO_0016565|http://purl.obolibrary.org/obo/MONDO_0002254|http://purl.obolibrary.org/obo/MONDO_0015330|http://purl.obolibrary.org/obo/MONDO_0019182|http://purl.obolibrary.org/obo/MONDO_0011122|http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/MONDO_0005137|http://purl.obolibrary.org/obo/MONDO_0019040|http://purl.obolibrary.org/obo/MONDO_0100038|http://purl.obolibrary.org/obo/MONDO_0700092|http://purl.obolibrary.org/obo/MONDO_0100500","","","PWS|Prader-Willi syndrome chromosome region|Prader-Willi-like syndrome associated with chromosome 6|obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet|obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet","","","https://rarediseases.info.nih.gov/diseases/5575/prader-willi-syndrome","http://www.w3.org/2002/07/owl#Class","false","true","Prader Willi syndrome|Prader-Labhart-Willi syndrome|Prader-Willi syndrome|Prader-Willi-Labhart syndrome|Willi-Prader syndrome","DOID:11983|GARD:5575|ICD9:759.81|MESH:D011218|MedDRA:10036476|NCIT:C75463|OMIM:176270|Orphanet:739|SCTID:89392001|UMLS:C0032897","Prader Willi syndrome|Prader-Labhart-Willi syndrome|Prader-Willi syndrome|Prader-Willi-Labhart syndrome|Willi-Prader syndrome|PWS|Prader-Willi syndrome chromosome region|Prader-Willi-like syndrome associated with chromosome 6|obesity, muscular hypotonia, intellectual disability, short stature, hypogonadotropic hypogonadism, and small hands and feet|obesity, muscular hypotonia, mental retardation, short stature, hypogonadotropic hypogonadism, and small hands and feet","false","","Prader-Willi syndrome is a rare genetic disorder characterized by hypothalamic-pituitary abnormalities with severe hypotonia during the neonatal period and first two years of life and the onset of hyperphagia with a risk of morbid obesity during infancy and adulthood, learning difficulties and behavioral problems or severe psychiatric problems.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0002320|http://purl.obolibrary.org/obo/MONDO_0015160|http://purl.obolibrary.org/obo/MONDO_0015770|http://purl.obolibrary.org/obo/MONDO_0016565|http://purl.obolibrary.org/obo/MONDO_0019040|http://purl.obolibrary.org/obo/MONDO_0100038|http://purl.obolibrary.org/obo/MONDO_0100500","","http://purl.obolibrary.org/obo/MONDO_0008300","http://purl.obolibrary.org/obo/MONDO_0002320|http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0015160|http://purl.obolibrary.org/obo/MONDO_0019042|http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0015770|http://purl.obolibrary.org/obo/MONDO_0016072|http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0015860|http://purl.obolibrary.org/obo/MONDO_0002263|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0018555|http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0019824|http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0015514|http://purl.obolibrary.org/obo/MONDO_0016565|http://purl.obolibrary.org/obo/MONDO_0002254|http://purl.obolibrary.org/obo/MONDO_0015330|http://purl.obolibrary.org/obo/MONDO_0019182|http://purl.obolibrary.org/obo/MONDO_0011122|http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/MONDO_0005137|http://purl.obolibrary.org/obo/MONDO_0019040|http://purl.obolibrary.org/obo/MONDO_0100038|http://purl.obolibrary.org/obo/MONDO_0700092|http://purl.obolibrary.org/obo/MONDO_0100500","false","Prader-Willi syndrome","gitIssue502","MONDO:0008300","MONDO_0008300","Prader-Willi syndrome","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0011122","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0011122"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0011122""},""definition"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder involving an excessive amount of body fat.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""https://www.ama-assn.org/sites/default/files/media-browser/public/about-ama/councils/Council%20Reports/council-on-science-public-health/a13csaph3.pdf""},{""type"":[""literal""],""value"":""https://www.mayoclinic.org/diseases-conditions/obesity/symptoms-causes/syc-20375742""}]}]},{""type"":[""literal""],""value"":""Obesity is a complex disease that may involve multiple environmental and genetic causes. See the subclass monogenic disease for genetic subtypes""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0003916"",""http://purl.obolibrary.org/obo/MONDO_0005137"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0003916"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:9970""}}]},""http://purl.obolibrary.org/obo/OGMS_0000031""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0003916"",""http://purl.obolibrary.org/obo/MONDO_0005137"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0003916"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:9970""}}]},""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder involving an excessive amount of body fat.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""https://www.ama-assn.org/sites/default/files/media-browser/public/about-ama/councils/Council%20Reports/council-on-science-public-health/a13csaph3.pdf""},{""type"":[""literal""],""value"":""https://www.mayoclinic.org/diseases-conditions/obesity/symptoms-causes/syc-20375742""}]}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:9970""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0001073""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""HP:0001513""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:otherHierarchy""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:278.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:278.00""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C3283""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:otherHierarchy""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NIFSTD:nlx_dys_20090302""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""EFO:0001073""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:521399""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentObsolete""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:414916001""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0028754""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:ncbi_mim2gene_medline""},{""type"":[""literal""],""value"":""OMIM:601665""}]}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:ambiguous""},{""type"":[""literal""],""value"":""OMIM:601665""}]}]},{""type"":[""literal""],""value"":""obesity disease""}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0011122""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Obesity is a complex disease that may involve multiple environmental and genetic causes. See the subclass monogenic disease for genetic subtypes""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obesity disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0003916"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""DOID:9970""}}]},""http://purl.obolibrary.org/obo/OGMS_0000031"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004029"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/HP_0001513"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0000001"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004029"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/HP_0001513"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/snomedct/414916001"",""http://linkedlifedata.com/resource/umls/id/C0028754"",""http://purl.obolibrary.org/obo/DOID_9970"",""http://purl.obolibrary.org/obo/NCIT_C3283""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obesity disorder""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004029"",""value"":""http://purl.obolibrary.org/obo/HP_0001513"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004029"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/HP_0001513"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder involving an excessive amount of body fat.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""https://www.ama-assn.org/sites/default/files/media-browser/public/about-ama/councils/Council%20Reports/council-on-science-public-health/a13csaph3.pdf""},{""type"":[""literal""],""value"":""https://www.mayoclinic.org/diseases-conditions/obesity/symptoms-causes/syc-20375742""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:9970""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0001073""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""HP:0001513""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:otherHierarchy""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:278.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:278.00""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:i2s""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C3283""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:otherHierarchy""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NIFSTD:nlx_dys_20090302""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""EFO:0001073""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:521399""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentObsolete""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:414916001""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""EFO:0001073""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0028754""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:9970""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""MONDO:ncbi_mim2gene_medline""},{""type"":[""literal""],""value"":""OMIM:601665""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:ambiguous""},{""type"":[""literal""],""value"":""OMIM:601665""}]}]},{""type"":[""literal""],""value"":""obesity disease""},{""type"":[""literal""],""value"":""MONDO:0011122""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0011122""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:ambiguous""},{""type"":[""literal""],""value"":""OMIM:601665""}]}]},{""type"":[""literal""],""value"":""obesity disease""}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""EFO:0001073"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0001073"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0001073""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0003916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""overnutrition""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003916""},""type"":[""class"",""entity""]},""MONDO:0011122"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0011122"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0011122""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""UMLS:C0028754"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0028754"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0028754""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C3283"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C3283"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C3283""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004029"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has feature""},""curie"":{""type"":[""literal""],""value"":""RO:0004029""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""OMIM:601665"":{""url"":""https://omim.org/entry/601665"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""OMIM:601665""},""http://purl.obolibrary.org/obo/MONDO_0005137"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nutritional disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005137""},""type"":[""class"",""entity""]},""DOID:9970"":{""url"":""http://purl.obolibrary.org/obo/DOID_9970"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:9970""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""SCTID:414916001"":{""url"":""http://snomed.info/id/414916001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:414916001""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""Orphanet:521399"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d521399"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:521399""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""NCIT:C3283"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C3283"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C3283""},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""HP:0001513"":{""url"":""http://purl.obolibrary.org/obo/HP_0001513"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""HP:0001513""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DOID_9970"":{""url"":""http://purl.obolibrary.org/obo/DOID_9970"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:9970""},""http://purl.obolibrary.org/obo/HP_0001513"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Obesity""},""curie"":{""type"":[""literal""],""value"":""HP:0001513""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/snomedct/414916001|http://linkedlifedata.com/resource/umls/id/C0028754|http://purl.obolibrary.org/obo/DOID_9970|http://purl.obolibrary.org/obo/NCIT_C3283","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/HP_0001513","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0011122","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/OGMS_0000031|","http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","A disorder involving an excessive amount of body fat.","","","","","","","3.0","http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/OGMS_0000031","","","http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/MONDO_0005137|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","obesity|obesity disease","DOID:9970|EFO:0001073|HP:0001513|ICD9:278.0|ICD9:278.00|NCIT:C3283|NIFSTD:nlx_dys_20090302|Orphanet:521399|SCTID:414916001|UMLS:C0028754","obesity|obesity disease","false","Obesity is a complex disease that may involve multiple environmental and genetic causes. See the subclass monogenic disease for genetic subtypes","A disorder involving an excessive amount of body fat.|Obesity is a complex disease that may involve multiple environmental and genetic causes. See the subclass monogenic disease for genetic subtypes","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/OGMS_0000031","","http://purl.obolibrary.org/obo/MONDO_0011122","http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/MONDO_0005137|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","obesity disorder","gitIssue502","MONDO:0011122","MONDO_0011122","obesity disorder","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015127","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0015127"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0015127""},""definition"":{""type"":[""literal""],""value"":""Editor note: in ORDO, Orphanet:101957 is classified as genetic, yet has acquired subtypes""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015889-obsoleted""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015889-obsoleted""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015968"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:101957""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:19801""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:E23.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:101957""},{""type"":[""literal""],""value"":""Orphanet:101957/e""},{""type"":[""literal""],""value"":""Orphanet:101957/specific""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:101957""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0020635""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:101957""}]}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0015127""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:101957""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Editor note: in ORDO, Orphanet:101957 is classified as genetic, yet has acquired subtypes""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""pituitary deficiency""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015889-obsoleted""}}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":""http://www.orpha.net/ORDO/Orphanet_101957"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""pituitary deficiency""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""GARD:19801""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:E23.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:101957""},{""type"":[""literal""],""value"":""Orphanet:101957/e""},{""type"":[""literal""],""value"":""Orphanet:101957/specific""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:101957""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C0020635""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:101957""}]}]},{""type"":[""literal""],""value"":""MONDO:0015127""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0015127""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""UMLS:C0020635"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0020635"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0020635""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_101957"":{""url"":""http://www.orpha.net/ORDO/Orphanet_101957"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:101957""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015968"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015968"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""mondo:0015968""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""Orphanet:101957"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d101957"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:101957""},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""excluded_subClassOf""},""curie"":{""type"":[""literal""],""value"":""excluded:subClassOf""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0015127"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015127"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015127""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""GARD:19801"":{""url"":""https://rarediseases.info.nih.gov/diseases/19801/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:19801""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]},""MONDO:0015889"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015889"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015889""}}}","false","true","http://www.orpha.net/ORDO/Orphanet_101957","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","MONDO:0015127","http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/MONDO_0005151","","","http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","GARD:19801|ICD10CM:E23.0|Orphanet:101957|UMLS:C0020635","","false","Editor note: in ORDO, Orphanet:101957 is classified as genetic, yet has acquired subtypes","Editor note: in ORDO, Orphanet:101957 is classified as genetic, yet has acquired subtypes","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0005151","http://purl.obolibrary.org/obo/MONDO_0015968","http://purl.obolibrary.org/obo/MONDO_0015127","http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","pituitary deficiency","gitIssue502","MONDO:0015127","MONDO_0015127","pituitary deficiency","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015160","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0015160"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0015160""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0019042"",""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019042"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0019042"",""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019042"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4069""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:102284""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentObsolete""}}]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MCA/variable MR""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0015160""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019042"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4069""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:102284""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentObsolete""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MCA/variable MR""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]},{""type"":[""literal""],""value"":""MONDO:0015160""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0015160""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MCA/variable MR""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:102284""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019042"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multiple congenital anomalies/dysmorphic syndrome""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019042""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019755"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019755""},""type"":[""class"",""entity""]},""Orphanet:102284"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d102284"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:102284""},""MONDO:0015160"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015160"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015160""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021147"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021147""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0015160","","http://purl.obolibrary.org/obo/MONDO_0019042","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","","","https://github.com/monarch-initiative/mondo/issues/4069","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0019042","","","http://purl.obolibrary.org/obo/MONDO_0019042|http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","MCA/variable MR|multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome","Orphanet:102284","MCA/variable MR|multiple congenital anomalies-variable intellectual disability with or without dysmorphism syndrome","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0019042","","http://purl.obolibrary.org/obo/MONDO_0015160","http://purl.obolibrary.org/obo/MONDO_0019042|http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome","gitIssue502","MONDO:0015160","MONDO_0015160","multiple congenital anomalies/dysmorphic syndrome-variable intellectual disability syndrome","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015330","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0015330"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0015330""},""definition"":{""type"":[""literal""],""value"":""Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletion effort for ORDO terms.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:139024""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:139024""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5114""},""http://purl.obolibrary.org/obo/IAO_0006012"":{""type"":[""literal""],""value"":""2023-10-01""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:19903""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:139024""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN199360""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0015330""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",""http://purl.obolibrary.org/obo/mondo#obsoletion_candidate"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:139024""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletion effort for ORDO terms.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""overgrowth/obesity syndrome""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:139024""}}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://linkedlifedata.com/resource/umls/id/CN199360"",""http://www.orpha.net/ORDO/Orphanet_139024""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""overgrowth/obesity syndrome""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5114""},{""type"":[""literal""],""value"":""2023-10-01""},{""type"":[""literal""],""value"":""GARD:19903""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:139024""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN199360""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""MONDO:0015330""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0015330""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0006012"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0006012""},""curie"":{""type"":[""literal""],""value"":""IAO:0006012""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""GARD:19903"":{""url"":""https://rarediseases.info.nih.gov/diseases/19903/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:19903""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""MONDO:0015330"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015330"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015330""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""Orphanet:139024"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d139024"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:139024""},""http://purl.obolibrary.org/obo/MONDO_0019755"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019755""},""type"":[""class"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_139024"":{""url"":""http://www.orpha.net/ORDO/Orphanet_139024"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:139024""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021147"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021147""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://linkedlifedata.com/resource/umls/id/CN199360|http://www.orpha.net/ORDO/Orphanet_139024","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","MONDO:0015330","http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#obsoletion_candidate|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","2023-10-01","","https://github.com/monarch-initiative/mondo/issues/5114","","","","2.0","http://purl.obolibrary.org/obo/MONDO_0019755","","","http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","GARD:19903|Orphanet:139024|UMLS:CN199360","","false","Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletion effort for ORDO terms.","Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletion effort for ORDO terms.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0019755","","http://purl.obolibrary.org/obo/MONDO_0015330","http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","overgrowth/obesity syndrome","gitIssue502","MONDO:0015330","MONDO_0015330","overgrowth/obesity syndrome","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015514","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0015514"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0015514""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:156643""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:156643""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:20012""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D006130""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:156643""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN237424""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic endocrine growth disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:156643""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""growth disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0015514""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:156643""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hereditary endocrine growth disease""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:156643""}}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},{""type"":[""reification""],""value"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015513""}}]}],""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D006130"",""http://linkedlifedata.com/resource/umls/id/CN237424"",""http://www.orpha.net/ORDO/Orphanet_156643""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hereditary endocrine growth disease""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""GARD:20012""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D006130""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:156643""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN237424""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic endocrine growth disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:156643""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""growth disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""literal""],""value"":""MONDO:0015514""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0015514""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic endocrine growth disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:156643""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""growth disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""rare""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021136""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0015514"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015514"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015514""},""MONDO:0015513"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015513"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015513""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""GARD:20012"":{""url"":""https://rarediseases.info.nih.gov/diseases/20012/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:20012""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_156643"":{""url"":""http://www.orpha.net/ORDO/Orphanet_156643"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:156643""},""Orphanet:156643"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d156643"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:156643""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""MESH:D006130"":{""url"":""http://id.nlm.nih.gov/mesh/D006130"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D006130""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D006130|http://linkedlifedata.com/resource/umls/id/CN237424|http://www.orpha.net/ORDO/Orphanet_156643","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/MONDO_0021136","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0015514","","http://purl.obolibrary.org/obo/MONDO_0005151||","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/MONDO_0005151","","","http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","genetic endocrine growth disease|growth disorder","GARD:20012|MESH:D006130|Orphanet:156643|UMLS:CN237424","genetic endocrine growth disease|growth disorder","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0005151","","http://purl.obolibrary.org/obo/MONDO_0015514","http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","hereditary endocrine growth disease","gitIssue502","MONDO:0015514","MONDO_0015514","hereditary endocrine growth disease","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015770","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0015770"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0015770""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:174590""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0016072"",""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0015860"",""http://purl.obolibrary.org/obo/MONDO_0002263"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0018555"",""http://purl.obolibrary.org/obo/MONDO_0002146"",""http://purl.obolibrary.org/obo/MONDO_0002259"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0019824"",""http://purl.obolibrary.org/obo/MONDO_0015127"",""http://purl.obolibrary.org/obo/MONDO_0015514""],""directParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0016072"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""Orphanet:174590""}]}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0018555"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""NCIT:C120162""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019824"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:174590""}}]}],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0016072"",""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0015860"",""http://purl.obolibrary.org/obo/MONDO_0002263"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0018555"",""http://purl.obolibrary.org/obo/MONDO_0002146"",""http://purl.obolibrary.org/obo/MONDO_0002259"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0019824"",""http://purl.obolibrary.org/obo/MONDO_0015127"",""http://purl.obolibrary.org/obo/MONDO_0015514""],""hierarchicalParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0016072"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""Orphanet:174590""}]}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0018555"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""NCIT:C120162""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019824"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:174590""}}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:174590""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:20135""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:E23.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:174590""},{""type"":[""literal""],""value"":""Orphanet:174590/attributed""},{""type"":[""literal""],""value"":""Orphanet:174590/ntbt""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C120162""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:174590""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:722944006""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C3899503""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C120162""}]}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0015770""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:174590""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""congenital hypogonadotropic hypogonadism""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0016072"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""Orphanet:174590""}]}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0018555"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""NCIT:C120162""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019824"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:174590""}}]}],""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/snomedct/722944006"",""http://linkedlifedata.com/resource/umls/id/C3899503"",""http://purl.obolibrary.org/obo/NCIT_C120162"",""http://www.orpha.net/ORDO/Orphanet_174590""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""congenital hypogonadotropic hypogonadism""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:174590""}}]},{""type"":[""literal""],""value"":""GARD:20135""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:E23.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:174590""},{""type"":[""literal""],""value"":""Orphanet:174590/attributed""},{""type"":[""literal""],""value"":""Orphanet:174590/ntbt""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C120162""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:174590""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:722944006""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C3899503""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""NCIT:C120162""}]}]},{""type"":[""literal""],""value"":""MONDO:0015770""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0015770""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/MONDO_0002259"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonadal disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002259""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""Orphanet:174590"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d174590"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:174590""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hypogonadism""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002263""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015127"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""pituitary deficiency""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015127""},""type"":[""class"",""entity""]},""GARD:20135"":{""url"":""https://rarediseases.info.nih.gov/diseases/20135/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:20135""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0018555"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism""},""curie"":{""type"":[""literal""],""value"":""MONDO:0018555""},""type"":[""class"",""entity""]},""MONDO:0015770"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015770"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015770""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""UMLS:C3899503"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C3899503"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C3899503""},""http://purl.obolibrary.org/obo/MONDO_0015514"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary endocrine growth disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015514""},""type"":[""class"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_174590"":{""url"":""http://www.orpha.net/ORDO/Orphanet_174590"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:174590""},""NCIT:C120162"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C120162"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C120162""},""SCTID:722944006"":{""url"":""http://snomed.info/id/722944006"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:722944006""},""http://purl.obolibrary.org/obo/MONDO_0016072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle of genetic origin""},""curie"":{""type"":[""literal""],""value"":""MONDO:0016072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C120162"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C120162"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C120162""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019824"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""non-acquired pituitary hormone deficiency""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019824""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015860"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015860""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/snomedct/722944006|http://linkedlifedata.com/resource/umls/id/C3899503|http://purl.obolibrary.org/obo/NCIT_C120162|http://www.orpha.net/ORDO/Orphanet_174590","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","MONDO:0015770","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0016072|http://purl.obolibrary.org/obo/MONDO_0018555|http://purl.obolibrary.org/obo/MONDO_0019824","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).","","","","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0016072|http://purl.obolibrary.org/obo/MONDO_0018555|http://purl.obolibrary.org/obo/MONDO_0019824","","","http://purl.obolibrary.org/obo/MONDO_0016072|http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0015860|http://purl.obolibrary.org/obo/MONDO_0002263|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0018555|http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0019824|http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0015514","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","GARD:20135|ICD10CM:E23.0|NCIT:C120162|Orphanet:174590|SCTID:722944006|UMLS:C3899503","","false","","Congenital hypogonadotropic hypogonadism (CHH) is a rare disorder of sexual maturation characterized by gonadotropin (Gn) deficiency with low sex steroid levels associated with low levels of follicle stimulating hormone (FSH) and luteinizing hormone (LH).","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0016072|http://purl.obolibrary.org/obo/MONDO_0018555|http://purl.obolibrary.org/obo/MONDO_0019824","","http://purl.obolibrary.org/obo/MONDO_0015770","http://purl.obolibrary.org/obo/MONDO_0016072|http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0015860|http://purl.obolibrary.org/obo/MONDO_0002263|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0018555|http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0019824|http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0015514","false","congenital hypogonadotropic hypogonadism","gitIssue502","MONDO:0015770","MONDO_0015770","congenital hypogonadotropic hypogonadism","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0015860","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0015860"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0015860""},""definition"":{""type"":[""literal""],""value"":""Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002263"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002263"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0019937-obsoleted""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002263"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002263"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0019937-obsoleted""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5114""},""http://purl.obolibrary.org/obo/IAO_0006012"":{""type"":[""literal""],""value"":""2023-09-01""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:20200""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:180208""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0015860""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",""http://purl.obolibrary.org/obo/mondo#obsoletion_candidate"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:180208""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002263"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0019937-obsoleted""}}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":""http://www.orpha.net/ORDO/Orphanet_180208"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5114""},{""type"":[""literal""],""value"":""2023-09-01""},{""type"":[""literal""],""value"":""GARD:20200""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:180208""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""MONDO:0015860""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0015860""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""GARD:20200"":{""url"":""https://rarediseases.info.nih.gov/diseases/20200/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:20200""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0006012"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0006012""},""curie"":{""type"":[""literal""],""value"":""IAO:0006012""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""Orphanet:180208"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d180208"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:180208""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""MONDO:0015860"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015860"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015860""},""http://purl.obolibrary.org/obo/MONDO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002263""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""MONDO:0019937"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0019937"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0019937""},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_180208"":{""url"":""http://www.orpha.net/ORDO/Orphanet_180208"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:180208""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://www.orpha.net/ORDO/Orphanet_180208","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","MONDO:0015860","http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/MONDO_0002263","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#obsoletion_candidate|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","2023-09-01","","https://github.com/monarch-initiative/mondo/issues/5114","","","","3.0","http://purl.obolibrary.org/obo/MONDO_0002263","","","http://purl.obolibrary.org/obo/MONDO_0002263|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","GARD:20200|Orphanet:180208","","false","Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0002263","","http://purl.obolibrary.org/obo/MONDO_0015860","http://purl.obolibrary.org/obo/MONDO_0002263|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","anomaly of puberty or/and menstrual cycle","gitIssue502","MONDO:0015860","MONDO_0015860","anomaly of puberty or/and menstrual cycle","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0016072","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0016072"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0016072""},""definition"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/genetic""}}]},{""type"":[""literal""],""value"":""Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0015860"",""http://purl.obolibrary.org/obo/MONDO_0002263"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0015860""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0015860"",""http://purl.obolibrary.org/obo/MONDO_0002263"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0015860""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/genetic""}}]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5114""},""http://purl.obolibrary.org/obo/IAO_0006012"":{""type"":[""literal""],""value"":""2023-09-01""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:20341""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:202940""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic anomaly of puberty or/and menstrual cycle""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/genetic""}}]},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0016072""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",""http://purl.obolibrary.org/obo/mondo#obsoletion_candidate"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:202940""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle of genetic origin""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0015860"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},{""type"":[""reification""],""value"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015980""}}]}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0015860"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":""http://www.orpha.net/ORDO/Orphanet_202940"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle of genetic origin""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/genetic""}}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5114""},{""type"":[""literal""],""value"":""2023-09-01""},{""type"":[""literal""],""value"":""GARD:20341""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:202940""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic anomaly of puberty or/and menstrual cycle""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/genetic""}}]},{""type"":[""literal""],""value"":""MONDO:0016072""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0016072""},""synonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic anomaly of puberty or/and menstrual cycle""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/genetic""}}]},""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""rare""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021136""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0006012"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0006012""},""curie"":{""type"":[""literal""],""value"":""IAO:0006012""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""MONDO:0015980"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015980"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015980""},""http://purl.obolibrary.org/obo/MONDO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002263""},""type"":[""class"",""entity""]},""Orphanet:202940"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d202940"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:202940""},""MONDO:0016072"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0016072"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0016072""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021152"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inherited""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021152""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""GARD:20341"":{""url"":""https://rarediseases.info.nih.gov/diseases/20341/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:20341""},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_202940"":{""url"":""http://www.orpha.net/ORDO/Orphanet_202940"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:202940""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015860"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015860""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://www.orpha.net/ORDO/Orphanet_202940","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/MONDO_0021136","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0016072","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0015860||","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#obsoletion_candidate|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual's genome.","2023-09-01","","https://github.com/monarch-initiative/mondo/issues/5114","","","","2.0","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0015860","","","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0015860|http://purl.obolibrary.org/obo/MONDO_0002263|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","genetic anomaly of puberty or/and menstrual cycle","GARD:20341|Orphanet:202940","genetic anomaly of puberty or/and menstrual cycle","false","Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","An instance of anomaly of puberty or/and menstrual cycle that is caused by a modification of the individual's genome.|Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0015860","","http://purl.obolibrary.org/obo/MONDO_0016072","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0015860|http://purl.obolibrary.org/obo/MONDO_0002263|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/OGMS_0000031","false","anomaly of puberty or/and menstrual cycle of genetic origin","gitIssue502","MONDO:0016072","MONDO_0016072","anomaly of puberty or/and menstrual cycle of genetic origin","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0016565","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0016565"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0016565""},""definition"":{""type"":[""literal""],""value"":""Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002254"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0015330"",""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0019182"",""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0011122"",""http://purl.obolibrary.org/obo/MONDO_0003916"",""http://purl.obolibrary.org/obo/MONDO_0005137""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0002254"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015330"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:240371""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019182"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Entailed""},{""type"":[""literal""],""value"":""Orphanet:240371""}]}]}],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002254"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0015330"",""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0019182"",""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0011122"",""http://purl.obolibrary.org/obo/MONDO_0003916"",""http://purl.obolibrary.org/obo/MONDO_0005137""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0002254"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015330"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:240371""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019182"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Entailed""},{""type"":[""literal""],""value"":""Orphanet:240371""}]}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5114""},""http://purl.obolibrary.org/obo/IAO_0006012"":{""type"":[""literal""],""value"":""2023-09-01""},""http://purl.org/dc/terms/conformsTo"":""http://purl.obolibrary.org/obo/mondo/patterns/syndromic.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:20650""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:240371""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN226963""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome associated with obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0016565""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",""http://purl.obolibrary.org/obo/mondo#obsoletion_candidate"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:240371""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""syndromic genetic obesity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0002254"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015330"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:240371""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019182"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Entailed""},{""type"":[""literal""],""value"":""Orphanet:240371""}]}]}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0019182"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021127"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://linkedlifedata.com/resource/umls/id/CN226963"",""http://www.orpha.net/ORDO/Orphanet_240371""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""syndromic genetic obesity""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5114""},{""type"":[""literal""],""value"":""2023-09-01""},{""type"":[""literal""],""value"":""GARD:20650""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:240371""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN226963""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome associated with obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""literal""],""value"":""MONDO:0016565""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0016565""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndrome associated with obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""syndromic obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/syndromic""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""MONDO:0016565"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0016565"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0016565""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021127"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has a syndromic presentation""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021127""},""type"":[""class"",""entity""]},""GARD:20650"":{""url"":""https://rarediseases.info.nih.gov/diseases/20650/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:20650""},""http://www.orpha.net/ORDO/Orphanet_240371"":{""url"":""http://www.orpha.net/ORDO/Orphanet_240371"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:240371""},""Orphanet:240371"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d240371"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:240371""},""http://purl.obolibrary.org/obo/MONDO_0003916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""overnutrition""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002254"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""syndromic disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002254""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0006012"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0006012""},""curie"":{""type"":[""literal""],""value"":""IAO:0006012""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015330"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""overgrowth/obesity syndrome""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015330""},""type"":[""class"",""entity""]},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005137"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nutritional disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005137""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0011122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""obesity disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0011122""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019755"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019755""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019182"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inherited obesity""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019182""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021147"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021147""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://linkedlifedata.com/resource/umls/id/CN226963|http://www.orpha.net/ORDO/Orphanet_240371","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0016565","http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/MONDO_0002254|http://purl.obolibrary.org/obo/MONDO_0015330|http://purl.obolibrary.org/obo/MONDO_0019182","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#obsoletion_candidate|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","2023-09-01","","https://github.com/monarch-initiative/mondo/issues/5114","","http://purl.obolibrary.org/obo/mondo/patterns/syndromic.yaml","","1.0","http://purl.obolibrary.org/obo/MONDO_0002254|http://purl.obolibrary.org/obo/MONDO_0015330|http://purl.obolibrary.org/obo/MONDO_0019182","","","http://purl.obolibrary.org/obo/MONDO_0002254|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0015330|http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0019182|http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0011122|http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/MONDO_0005137","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","syndrome associated with obesity (disease)|syndromic obesity (disease)","GARD:20650|Orphanet:240371|UMLS:CN226963","syndrome associated with obesity (disease)|syndromic obesity (disease)","false","Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","Reason of obsoletion: out of scope - MONDO:excludeGroupingClass. This is part of a large mass-obsoletione effort for ORDO terms.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0002254|http://purl.obolibrary.org/obo/MONDO_0015330|http://purl.obolibrary.org/obo/MONDO_0019182","","http://purl.obolibrary.org/obo/MONDO_0016565","http://purl.obolibrary.org/obo/MONDO_0002254|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0015330|http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0019182|http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0011122|http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/MONDO_0005137","false","syndromic genetic obesity","gitIssue502","MONDO:0016565","MONDO_0016565","syndromic genetic obesity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0018555","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0018555"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0018555""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002146"",""http://purl.obolibrary.org/obo/MONDO_0002259"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0003847""],""directParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002146"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""NCIT:C113347""}]}]},""http://purl.obolibrary.org/obo/MONDO_0003847""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0002146"",""http://purl.obolibrary.org/obo/MONDO_0002259"",""http://purl.obolibrary.org/obo/MONDO_0005039"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0003847""],""hierarchicalParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002146"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""NCIT:C113347""}]}]},""http://purl.obolibrary.org/obo/MONDO_0003847""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},""http://purl.obolibrary.org/obo/mondo#should_conform_to"":""http://purl.obolibrary.org/obo/mondo/patterns/OMIM_phenotypic_series.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:0090070""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:7455""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentObsolete""}}]},{""type"":[""literal""],""value"":""GARD:16533""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""HP:0000044""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:otherHierarchy""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:E23.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:432""},{""type"":[""literal""],""value"":""Orphanet:432/inclusion""},{""type"":[""literal""],""value"":""Orphanet:432/ntbt""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:253.4""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C113347""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OMIMPS:147950""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:432""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:33927004""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN235466""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Normosmic idiopathic hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""central hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadotropic deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""literal""],""value"":""hypogonadism, hypogonadotropic""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism with or without anosmia""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIMPS:147950""}}]},{""type"":[""literal""],""value"":""low gonadotropins (secondary hypogonadism)""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nIHH""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""normosmic congenital hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""secondary hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital idiopathic hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0090070""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""isolated congenital gonadotropin deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0090070""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:0004228""}}]},{""type"":[""literal""],""value"":""isolated hypogonadotropic hypogonadism""}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0018555""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#gard_rare"",""http://purl.obolibrary.org/obo/mondo#nord_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_disease"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0002146"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""NCIT:C113347""}]}]},""http://purl.obolibrary.org/obo/MONDO_0003847"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004021"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0005183"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0002146"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004021"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0005183"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/snomedct/33927004"",""http://linkedlifedata.com/resource/umls/id/CN235466"",""http://purl.obolibrary.org/obo/DOID_0090070"",""http://purl.obolibrary.org/obo/NCIT_C113347"",""http://www.orpha.net/ORDO/Orphanet_432"",""https://omim.org/phenotypicSeries/PS147950""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004021"",""value"":""http://purl.obolibrary.org/obo/GO_0005183"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004021"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0005183"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:0090070""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:7455""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentObsolete""}}]},{""type"":[""literal""],""value"":""GARD:16533""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""HP:0000044""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:otherHierarchy""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:E23.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:432""},{""type"":[""literal""],""value"":""Orphanet:432/inclusion""},{""type"":[""literal""],""value"":""Orphanet:432/ntbt""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:253.4""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C113347""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OMIMPS:147950""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:432""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0090070""},{""type"":[""literal""],""value"":""MONDO:equivalentTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:33927004""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN235466""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Normosmic idiopathic hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""central hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadotropic deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""literal""],""value"":""hypogonadism, hypogonadotropic""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism with or without anosmia""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIMPS:147950""}}]},{""type"":[""literal""],""value"":""low gonadotropins (secondary hypogonadism)""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nIHH""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""normosmic congenital hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""secondary hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital idiopathic hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0090070""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""isolated congenital gonadotropin deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0090070""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:0004228""}}]},{""type"":[""literal""],""value"":""isolated hypogonadotropic hypogonadism""},{""type"":[""literal""],""value"":""MONDO:0018555""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0018555""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Normosmic idiopathic hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""central hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""gonadotropic deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""literal""],""value"":""hypogonadism, hypogonadotropic""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropic hypogonadism with or without anosmia""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""OMIMPS:147950""}}]},{""type"":[""literal""],""value"":""low gonadotropins (secondary hypogonadism)""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""nIHH""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""normosmic congenital hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:432""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""secondary hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C113347""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""congenital idiopathic hypogonadotropic hypogonadism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0090070""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""isolated congenital gonadotropin deficiency""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""DOID:0090070""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""hypogonadotropism""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:0004228""}}]},{""type"":[""literal""],""value"":""isolated hypogonadotropic hypogonadism""}],""synonymProperty"":[{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym""}],""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""SCTID:33927004"":{""url"":""http://snomed.info/id/33927004"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:33927004""},""NCIT:C113347"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C113347"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C113347""},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0005183"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonadotropin hormone-releasing hormone activity""},""curie"":{""type"":[""literal""],""value"":""GO:0005183""},""type"":[""class"",""entity""]},""MONDO:0004228"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0004228"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0004228""},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_related_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasRelatedSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_narrow_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasNarrowSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""Orphanet:432"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d432"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:432""},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""MONDO:0018555"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0018555"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0018555""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""GARD:16533"":{""url"":""https://rarediseases.info.nih.gov/diseases/16533/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:16533""},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002259"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonadal disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002259""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DOID_0090070"":{""url"":""http://purl.obolibrary.org/obo/DOID_0090070"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:0090070""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_432"":{""url"":""http://www.orpha.net/ORDO/Orphanet_432"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:432""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hypogonadism""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004021"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""disease caused by disruption of""},{""type"":[""literal""],""value"":""disease has basis in disruption of""}],""curie"":{""type"":[""literal""],""value"":""RO:0004021""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/mondo#should_conform_to"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""should_conform_to""},""curie"":{""type"":[""literal""],""value"":""should:conform_to""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""DOID:0090070"":{""url"":""http://purl.obolibrary.org/obo/DOID_0090070"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:0090070""},""http://purl.obolibrary.org/obo/NCIT_C113347"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C113347"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C113347""},""HP:0000044"":{""url"":""http://purl.obolibrary.org/obo/HP_0000044"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""HP:0000044""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""DOID:7455"":{""url"":""http://purl.obolibrary.org/obo/DOID_7455"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:7455""},""OMIMPS:147950"":{""url"":""https://omim.org/MIM:PS147950"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OMIMPS:147950""},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/snomedct/33927004|http://linkedlifedata.com/resource/umls/id/CN235466|http://purl.obolibrary.org/obo/DOID_0090070|http://purl.obolibrary.org/obo/NCIT_C113347|http://www.orpha.net/ORDO/Orphanet_432|https://omim.org/phenotypicSeries/PS147950","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/GO_0005183","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym|http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym|http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","MONDO:0018555","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0003847|","http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#nord_rare|http://purl.obolibrary.org/obo/mondo#ordo_disease|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.","","","","","","","2.0","http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0003847","","http://purl.obolibrary.org/obo/mondo/patterns/OMIM_phenotypic_series.yaml","http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0003847","","","hypogonadotropism|isolated hypogonadotropic hypogonadism","","congenital idiopathic hypogonadotropic hypogonadism|isolated congenital gonadotropin deficiency","","http://www.w3.org/2002/07/owl#Class","true","true","Normosmic idiopathic hypogonadotropic hypogonadism|central hypogonadism|gonadotropic deficiency|hypogonadism, hypogonadotropic|hypogonadotropic hypogonadism|hypogonadotropic hypogonadism with or without anosmia|low gonadotropins (secondary hypogonadism)|nIHH|normosmic congenital hypogonadotropic hypogonadism|secondary hypogonadism","DOID:0090070|DOID:7455|GARD:16533|HP:0000044|ICD10CM:E23.0|ICD9:253.4|NCIT:C113347|OMIMPS:147950|Orphanet:432|SCTID:33927004|UMLS:CN235466","Normosmic idiopathic hypogonadotropic hypogonadism|central hypogonadism|gonadotropic deficiency|hypogonadism, hypogonadotropic|hypogonadotropic hypogonadism|hypogonadotropic hypogonadism with or without anosmia|low gonadotropins (secondary hypogonadism)|nIHH|normosmic congenital hypogonadotropic hypogonadism|secondary hypogonadism|congenital idiopathic hypogonadotropic hypogonadism|isolated congenital gonadotropin deficiency|hypogonadotropism|isolated hypogonadotropic hypogonadism","false","","Abnormal ovarian or testicular function due to insufficient hormonal stimulation from the hypothalamic-pituitary axis.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0003847","","http://purl.obolibrary.org/obo/MONDO_0018555","http://purl.obolibrary.org/obo/MONDO_0002146|http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0003847","false","hypogonadotropic hypogonadism","gitIssue502","MONDO:0018555","MONDO_0018555","hypogonadotropic hypogonadism","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019040","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0019040"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0019040""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-0736-9199""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}]}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-0736-9199""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}]}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0003847"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""DOID:0080014""},{""type"":[""literal""],""value"":""MESH:D025063""},{""type"":[""literal""],""value"":""NCIT:C34470""},{""type"":[""literal""],""value"":""Orphanet:68335""}]}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:68335""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:0080014""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""GARD:18874""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:Q90-Q99""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/4536""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:758.89""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D025063""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C34470""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:68335""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:409709004""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:0000838""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders, chromosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders, chromosome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""autosomal chromosome disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""autosomal chromosome disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome abnormality disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome abnormality disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorder, autosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorders, autosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosome abnormality""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0019040""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:68335""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare"",""http://purl.obolibrary.org/obo/mondo#rare_grouping""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""chromosomal disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-0736-9199""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}]}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},{""type"":[""reification""],""value"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0021198""}}]}],""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D025063"",""http://identifiers.org/snomedct/409709004"",""http://purl.bioontology.org/ontology/ICD10CM/Q90-Q99"",""http://purl.obolibrary.org/obo/DOID_0080014"",""http://purl.obolibrary.org/obo/NCIT_C34470"",""http://www.orpha.net/ORDO/Orphanet_68335""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""chromosomal disorder""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""DOID:0080014""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""GARD:18874""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:Q90-Q99""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/4536""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD9:758.89""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:i2s""},{""type"":[""literal""],""value"":""MONDO:relatedTo""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D025063""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C34470""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:68335""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:409709004""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:0000838""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders, chromosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders, chromosome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""autosomal chromosome disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""autosomal chromosome disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome abnormality disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome abnormality disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorder, autosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorders, autosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosome abnormality""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""literal""],""value"":""MONDO:0019040""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0019040""},""synonym"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:0000838""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosomal disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders, chromosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorders, chromosome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""autosomal chromosome disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""autosomal chromosome disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome abnormality disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome abnormality disorders""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorder, autosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""chromosome disorders, autosomal""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder, chromosome abnormality""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MESH:D025063""}}]}],""synonymProperty"":[{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym""}],""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/MONDO_0021136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""rare""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021136""},""type"":[""class"",""entity""]},""MONDO:0021198"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021198"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021198""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0002-0736-9199"":{""url"":""https://orcid.org/0000-0002-0736-9199"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-0736-9199""},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""Orphanet:68335"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d68335"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:68335""},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_related_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasRelatedSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""MESH:D025063"":{""url"":""http://id.nlm.nih.gov/mesh/D025063"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D025063""},""http://purl.obolibrary.org/obo/DOID_0080014"":{""url"":""http://purl.obolibrary.org/obo/DOID_0080014"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:0080014""},""NCIT:C34470"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C34470"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C34470""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""https://orcid.org/0000-0002-1780-5230"":{""url"":""https://orcid.org/0000-0002-1780-5230"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-1780-5230""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C34470"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C34470"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C34470""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""SCTID:409709004"":{""url"":""http://snomed.info/id/409709004"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:409709004""},""https://orcid.org/0000-0002-4142-7153"":{""url"":""https://orcid.org/0000-0002-4142-7153"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-4142-7153""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0000838"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0000838"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0000838""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019755"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019755""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""excluded_subClassOf""},""curie"":{""type"":[""literal""],""value"":""excluded:subClassOf""},""type"":[""property"",""annotationProperty"",""entity""]},""DOID:0080014"":{""url"":""http://purl.obolibrary.org/obo/DOID_0080014"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:0080014""},""GARD:18874"":{""url"":""https://rarediseases.info.nih.gov/diseases/18874/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:18874""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0019040"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0019040"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0019040""},""https://orcid.org/0000-0001-5208-3432"":{""url"":""https://orcid.org/0000-0001-5208-3432"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0001-5208-3432""},""http://www.orpha.net/ORDO/Orphanet_68335"":{""url"":""http://www.orpha.net/ORDO/Orphanet_68335"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:68335""},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D025063|http://identifiers.org/snomedct/409709004|http://purl.bioontology.org/ontology/ICD10CM/Q90-Q99|http://purl.obolibrary.org/obo/DOID_0080014|http://purl.obolibrary.org/obo/NCIT_C34470|http://www.orpha.net/ORDO/Orphanet_68335","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/MONDO_0021136","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym|http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","MONDO:0019040","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0700096||","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare|http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)","","","","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0700096","","","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","autosomal chromosome disorder|autosomal chromosome disorders|chromosome abnormality disorder|chromosome abnormality disorders|chromosome disorder, autosomal|chromosome disorders, autosomal|disorder, chromosome abnormality","","","","http://www.w3.org/2002/07/owl#Class","true","true","chromosomal disease|chromosomal disorder|chromosomal disorders|chromosome disorder|disorder, chromosomal|disorder, chromosome|disorders, chromosomal|disorders, chromosome","DOID:0080014|GARD:18874|ICD10CM:Q90-Q99|ICD9:758.89|MESH:D025063|NCIT:C34470|Orphanet:68335|SCTID:409709004","chromosomal disease|chromosomal disorder|chromosomal disorders|chromosome disorder|disorder, chromosomal|disorder, chromosome|disorders, chromosomal|disorders, chromosome|autosomal chromosome disorder|autosomal chromosome disorders|chromosome abnormality disorder|chromosome abnormality disorders|chromosome disorder, autosomal|chromosome disorders, autosomal|disorder, chromosome abnormality","false","","Clinical conditions caused by an abnormal chromosome constitution in which there is extra or missing chromosome material (either a whole chromosome or a chromosome segment). (from Thompson et al., Genetics in Medicine, 5th ed, p429)","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0019040","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","chromosomal disorder","gitIssue502","MONDO:0019040","MONDO_0019040","chromosomal disorder","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019042","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0019042"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0019042""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:68341""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0019755"",""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:68341""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4069""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:18876""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:68341""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MCAHS""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:Lexical""},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#ABBREVIATION""}]},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0019042""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:68341""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multiple congenital anomalies/dysmorphic syndrome""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:68341""}}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false},{""type"":[""reification""],""value"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}}]}],""http://www.w3.org/2004/02/skos/core#exactMatch"":""http://www.orpha.net/ORDO/Orphanet_68341"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multiple congenital anomalies/dysmorphic syndrome""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4069""},{""type"":[""literal""],""value"":""GARD:18876""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:68341""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MCAHS""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:Lexical""},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#ABBREVIATION""}]},{""type"":[""literal""],""value"":""MONDO:0019042""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0019042""},""synonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MCAHS""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:Lexical""},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":""http://purl.obolibrary.org/obo/mondo#ABBREVIATION""}]},""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_synonym_type"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasSynonymType""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""https://orcid.org/0000-0002-4142-7153"":{""url"":""https://orcid.org/0000-0002-4142-7153"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-4142-7153""},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_related_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasRelatedSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""Orphanet:68341"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d68341"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:68341""},""http://purl.obolibrary.org/obo/MONDO_0019755"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019755""},""type"":[""class"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_68341"":{""url"":""http://www.orpha.net/ORDO/Orphanet_68341"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:68341""},""http://purl.obolibrary.org/obo/MONDO_0021140"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""congenital""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021140""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021147"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021147""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0019042"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0019042"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0019042""},""GARD:18876"":{""url"":""https://rarediseases.info.nih.gov/diseases/18876/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:18876""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://www.orpha.net/ORDO/Orphanet_68341","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/MONDO_0021140","","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","MONDO:0019042","","http://purl.obolibrary.org/obo/MONDO_0019755||","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","","","https://github.com/monarch-initiative/mondo/issues/4069","","","","2.0","http://purl.obolibrary.org/obo/MONDO_0019755","","","http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","MCAHS","","","","http://www.w3.org/2002/07/owl#Class","true","true","","GARD:18876|Orphanet:68341","MCAHS","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0019755","","http://purl.obolibrary.org/obo/MONDO_0019042","http://purl.obolibrary.org/obo/MONDO_0019755|http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","multiple congenital anomalies/dysmorphic syndrome","gitIssue502","MONDO:0019042","MONDO_0019042","multiple congenital anomalies/dysmorphic syndrome","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019182","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0019182"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0019182""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0011122"",""http://purl.obolibrary.org/obo/MONDO_0003916"",""http://purl.obolibrary.org/obo/MONDO_0005137""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:77828""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0011122"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""Orphanet:77828""}]}]}],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0011122"",""http://purl.obolibrary.org/obo/MONDO_0003916"",""http://purl.obolibrary.org/obo/MONDO_0005137""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:77828""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0011122"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""Orphanet:77828""}]}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4521""},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015960"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:77828""}}]},""http://purl.org/dc/terms/conformsTo"":""http://purl.obolibrary.org/obo/mondo/patterns/hereditary.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:18935""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OMIM:601665""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:77828""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""literal""],""value"":""genetic obesity""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/genetic""},{""type"":[""literal""],""value"":""Orphanet:77828""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""leanness, inherited, autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""literal""],""value"":""monogenic obesity""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, association with, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, early-onset, susceptibility to, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, late-onset, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, mild, early-onset, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, severe, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, severe, and type II diabetes, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, susceptibility to, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0019182""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:77828""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""inherited obesity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:77828""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0011122"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:Redundant""},{""type"":[""literal""],""value"":""Orphanet:77828""}]}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},{""type"":[""reification""],""value"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:0015513""}}]}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0011122"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://www.orpha.net/ORDO/Orphanet_77828"",""https://omim.org/entry/601665""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""inherited obesity""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4521""},{""type"":[""literal""],""value"":""GARD:18935""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""OMIM:601665""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:77828""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""genetic obesity""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/genetic""},{""type"":[""literal""],""value"":""Orphanet:77828""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""leanness, inherited, autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""literal""],""value"":""monogenic obesity""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, association with, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, early-onset, susceptibility to, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, late-onset, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, mild, early-onset, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, severe, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, severe, and type II diabetes, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, susceptibility to, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""literal""],""value"":""MONDO:0019182""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0019182""},""synonym"":[{""type"":[""literal""],""value"":""genetic obesity""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""genetic obesity (disease)""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:patterns/genetic""},{""type"":[""literal""],""value"":""Orphanet:77828""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""leanness, inherited, autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""literal""],""value"":""monogenic obesity""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, association with, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, early-onset, susceptibility to, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, late-onset, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, mild, early-onset, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, severe, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, severe, and type II diabetes, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""obesity, susceptibility to, Autosomal recessive""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""OMIM:601665""},{""type"":[""literal""],""value"":""OMIM:genemap2""}]}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/MONDO_0021136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""rare""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021136""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0015513"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015513"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0015513""},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""Orphanet:77828"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d77828"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:77828""},""http://purl.obolibrary.org/obo/MONDO_0003916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""overnutrition""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""OMIM:genemap2"":{""url"":""https://omim.org/entry/genemap2"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""OMIM:genemap2""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""OMIM:601665"":{""url"":""https://omim.org/entry/601665"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""OMIM:601665""},""http://purl.obolibrary.org/obo/MONDO_0005137"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nutritional disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005137""},""type"":[""class"",""entity""]},""GARD:18935"":{""url"":""https://rarediseases.info.nih.gov/diseases/18935/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:18935""},""MONDO:0019182"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0019182"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0019182""},""http://purl.obolibrary.org/obo/MONDO_0011122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""obesity disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0011122""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015960"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0015960"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""mondo:0015960""},""http://purl.obolibrary.org/obo/MONDO_0021152"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inherited""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021152""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_77828"":{""url"":""http://www.orpha.net/ORDO/Orphanet_77828"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:77828""},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""excluded_subClassOf""},""curie"":{""type"":[""literal""],""value"":""excluded:subClassOf""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://www.orpha.net/ORDO/Orphanet_77828|https://omim.org/entry/601665","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/MONDO_0021136","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0019182","","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0011122||","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","","","https://github.com/monarch-initiative/mondo/issues/4521","","http://purl.obolibrary.org/obo/mondo/patterns/hereditary.yaml","","2.0","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0011122","","","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0011122|http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/MONDO_0005137","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","genetic obesity|genetic obesity (disease)|leanness, inherited, autosomal recessive|monogenic obesity|obesity, association with, Autosomal recessive|obesity, early-onset, susceptibility to, Autosomal recessive|obesity, late-onset, Autosomal recessive|obesity, mild, early-onset, Autosomal recessive|obesity, severe, Autosomal recessive|obesity, severe, and type II diabetes, Autosomal recessive|obesity, susceptibility to, Autosomal recessive","GARD:18935|OMIM:601665|Orphanet:77828","genetic obesity|genetic obesity (disease)|leanness, inherited, autosomal recessive|monogenic obesity|obesity, association with, Autosomal recessive|obesity, early-onset, susceptibility to, Autosomal recessive|obesity, late-onset, Autosomal recessive|obesity, mild, early-onset, Autosomal recessive|obesity, severe, Autosomal recessive|obesity, severe, and type II diabetes, Autosomal recessive|obesity, susceptibility to, Autosomal recessive","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0011122","http://purl.obolibrary.org/obo/MONDO_0015960","http://purl.obolibrary.org/obo/MONDO_0019182","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0011122|http://purl.obolibrary.org/obo/MONDO_0003916|http://purl.obolibrary.org/obo/MONDO_0005137","false","inherited obesity","gitIssue502","MONDO:0019182","MONDO_0019182","inherited obesity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019755","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0019755""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease that has its basis in the disruption of embryonic morphogenesis.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:design_pattern""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021147"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021147"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021147"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease that has its basis in the disruption of embryonic morphogenesis.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:design_pattern""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:22513""},{""type"":[""literal""],""value"":""ICD9:759.7""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C99267""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:93890""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:400038003""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C1302790""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN206687""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""literal""],""value"":""congenital malformation syndrome""},{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of embryonic morphogenesis""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/basis_in_disruption_of_process""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""embryonic morphogenesis disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:design_pattern""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""malformation syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:93890""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""rare developmental defect during embryogenesis""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:93890""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0019755""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:93890""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0021147"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004021"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048598"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004021"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048598"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/snomedct/400038003"",""http://linkedlifedata.com/resource/umls/id/C1302790"",""http://linkedlifedata.com/resource/umls/id/CN206687"",""http://purl.obolibrary.org/obo/NCIT_C99267"",""http://www.orpha.net/ORDO/Orphanet_93890""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004021"",""value"":""http://purl.obolibrary.org/obo/GO_0048598"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004021"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048598"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease that has its basis in the disruption of embryonic morphogenesis.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:design_pattern""}}]},{""type"":[""literal""],""value"":""GARD:22513""},{""type"":[""literal""],""value"":""ICD9:759.7""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C99267""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:93890""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:400038003""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C1302790""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:CN206687""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""congenital malformation syndrome""},{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of embryonic morphogenesis""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/basis_in_disruption_of_process""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""embryonic morphogenesis disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:design_pattern""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""malformation syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:93890""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""rare developmental defect during embryogenesis""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:93890""}}]},{""type"":[""literal""],""value"":""MONDO:0019755""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0019755""},""synonym"":[{""type"":[""literal""],""value"":""congenital malformation syndrome""},{""type"":[""literal""],""value"":""developmental defect during embryogenesis""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""disorder of embryonic morphogenesis""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""MONDO:design_pattern""},{""type"":[""literal""],""value"":""MONDO:patterns/basis_in_disruption_of_process""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""embryonic morphogenesis disease""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:design_pattern""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""malformation syndrome""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:93890""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""rare developmental defect during embryogenesis""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Orphanet:93890""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""MONDO:0019755"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0019755"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0019755""},""NCIT:C99267"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C99267"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C99267""},""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C99267"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C99267"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C99267""},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_93890"":{""url"":""http://www.orpha.net/ORDO/Orphanet_93890"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:93890""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""Orphanet:93890"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d93890"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:93890""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""UMLS:C1302790"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C1302790"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C1302790""},""http://purl.obolibrary.org/obo/RO_0004021"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""disease caused by disruption of""},{""type"":[""literal""],""value"":""disease has basis in disruption of""}],""curie"":{""type"":[""literal""],""value"":""RO:0004021""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic morphogenesis""},""curie"":{""type"":[""literal""],""value"":""GO:0048598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""GARD:22513"":{""url"":""https://rarediseases.info.nih.gov/diseases/22513/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:22513""},""SCTID:400038003"":{""url"":""http://snomed.info/id/400038003"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:400038003""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021147"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021147""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/snomedct/400038003|http://linkedlifedata.com/resource/umls/id/C1302790|http://linkedlifedata.com/resource/umls/id/CN206687|http://purl.obolibrary.org/obo/NCIT_C99267|http://www.orpha.net/ORDO/Orphanet_93890","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","http://purl.obolibrary.org/obo/GO_0048598","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0019755","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0021147|","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","A disease that has its basis in the disruption of embryonic morphogenesis.","","","","","","","5.0","http://purl.obolibrary.org/obo/MONDO_0021147","","","http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","congenital malformation syndrome|developmental defect during embryogenesis|disorder of embryonic morphogenesis|embryonic morphogenesis disease|malformation syndrome|rare developmental defect during embryogenesis","GARD:22513|ICD9:759.7|NCIT:C99267|Orphanet:93890|SCTID:400038003|UMLS:C1302790|UMLS:CN206687","congenital malformation syndrome|developmental defect during embryogenesis|disorder of embryonic morphogenesis|embryonic morphogenesis disease|malformation syndrome|rare developmental defect during embryogenesis","false","","A disease that has its basis in the disruption of embryonic morphogenesis.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021147","","http://purl.obolibrary.org/obo/MONDO_0019755","http://purl.obolibrary.org/obo/MONDO_0021147|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","developmental defect during embryogenesis","gitIssue502","MONDO:0019755","MONDO_0019755","developmental defect during embryogenesis","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0019824","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0019824"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0019824""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0015127"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0015514""],""directParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015127"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:95488""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015514"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:95488""}}]}],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0015127"",""http://purl.obolibrary.org/obo/MONDO_0005151"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://purl.obolibrary.org/obo/MONDO_0015514""],""hierarchicalParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015127"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:95488""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015514"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:95488""}}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""GARD:19272""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:E23.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:95488""},{""type"":[""literal""],""value"":""Orphanet:95488/attributed""},{""type"":[""literal""],""value"":""Orphanet:95488/ntbt""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:95488""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0019824""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#disease_grouping"",""http://purl.obolibrary.org/obo/mondo#gard_rare"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:95488""}}]},""http://purl.obolibrary.org/obo/mondo#orphanet_rare"",""http://purl.obolibrary.org/obo/mondo#rare""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""non-acquired pituitary hormone deficiency""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015127"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:95488""}}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0015514"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""Orphanet:95488""}}]}],""http://www.w3.org/2004/02/skos/core#exactMatch"":""http://www.orpha.net/ORDO/Orphanet_95488"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""non-acquired pituitary hormone deficiency""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""GARD:19272""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:E23.0""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:relatedTo""},{""type"":[""literal""],""value"":""Orphanet:95488""},{""type"":[""literal""],""value"":""Orphanet:95488/attributed""},{""type"":[""literal""],""value"":""Orphanet:95488/ntbt""}]}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Orphanet:95488""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""MONDO:0019824""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0019824""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0019824"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0019824"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0019824""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""Orphanet:95488"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d95488"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:95488""},""http://purl.obolibrary.org/obo/MONDO_0015127"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""pituitary deficiency""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015127""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""GARD:19272"":{""url"":""https://rarediseases.info.nih.gov/diseases/19272/index"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GARD:19272""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015514"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary endocrine growth disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015514""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.orpha.net/ORDO/Orphanet_95488"":{""url"":""http://www.orpha.net/ORDO/Orphanet_95488"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:95488""},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://www.orpha.net/ORDO/Orphanet_95488","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","MONDO:0019824","","http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0015514","http://purl.obolibrary.org/obo/mondo#disease_grouping|http://purl.obolibrary.org/obo/mondo#gard_rare|http://purl.obolibrary.org/obo/mondo#ordo_group_of_disorders|http://purl.obolibrary.org/obo/mondo#orphanet_rare|http://purl.obolibrary.org/obo/mondo#rare","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0015514","","","http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0015514","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","GARD:19272|ICD10CM:E23.0|Orphanet:95488","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0015514","","http://purl.obolibrary.org/obo/MONDO_0019824","http://purl.obolibrary.org/obo/MONDO_0015127|http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031|http://purl.obolibrary.org/obo/MONDO_0015514","false","non-acquired pituitary hormone deficiency","gitIssue502","MONDO:0019824","MONDO_0019824","non-acquired pituitary hormone deficiency","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021125","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An attribute of a disease.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0000001"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0000001"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An attribute of a disease.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C41009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""literal""],""value"":""disease qualifier""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""modifier""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C41009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""qualifier""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C41009""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021125""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disease characteristic""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0000001"",""http://www.w3.org/2004/02/skos/core#exactMatch"":""http://purl.obolibrary.org/obo/NCIT_C41009"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""numDescendants"":8.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An attribute of a disease.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C41009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""disease qualifier""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""modifier""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C41009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""qualifier""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C41009""}}]},{""type"":[""literal""],""value"":""MONDO:0021125""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021125""},""synonym"":[{""type"":[""literal""],""value"":""disease qualifier""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""modifier""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C41009""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""qualifier""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""NCIT:C41009""}}]}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0021125"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021125""},""NCIT:C41009"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C41009"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C41009""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C41009"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C41009"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C41009""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://purl.obolibrary.org/obo/NCIT_C41009","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0021125","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/PATO_0000001","","true","","An attribute of a disease.","","","","","","","8.0","http://purl.obolibrary.org/obo/PATO_0000001","","","http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","disease qualifier|modifier|qualifier","NCIT:C41009","disease qualifier|modifier|qualifier","false","","An attribute of a disease.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0000001","","http://purl.obolibrary.org/obo/MONDO_0021125","http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","disease characteristic","gitIssue502","MONDO:0021125","MONDO_0021125","disease characteristic","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021126","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021126"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021126""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021126""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""syndromic or isolated""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""syndromic or isolated""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""literal""],""value"":""MONDO:0021126""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021126""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0021126"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021126"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021126""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","MONDO:0021126","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0021125","","true","","An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.","","","","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0021125","","","http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","An characteristic of a disease that varies depending on whether the disease appears as an isolated feature or whether the disease is a syndrome consisting of multiple features.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021125","","http://purl.obolibrary.org/obo/MONDO_0021126","http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","syndromic or isolated","gitIssue502","MONDO:0021126","MONDO_0021126","syndromic or isolated","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021127","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021127"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021127""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021126"",""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021126"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021126"",""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021126"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021127""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has a syndromic presentation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/MONDO_0021126"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has a syndromic presentation""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0002254"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021127"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""literal""],""value"":""MONDO:0021127""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021127""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/MONDO_0002254"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""syndromic disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002254""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021126"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""syndromic or isolated""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021126""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""MONDO:0021127"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021127"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021127""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","MONDO:0021127","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0021126","","true","","An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.","","","","","","http://purl.obolibrary.org/obo/MONDO_0002254","0.0","http://purl.obolibrary.org/obo/MONDO_0021126","","","http://purl.obolibrary.org/obo/MONDO_0021126|http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","An characteristic of a disease in which the disease is not manifested as an isolated feature but has multiple distinct features.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021126","","http://purl.obolibrary.org/obo/MONDO_0021127","http://purl.obolibrary.org/obo/MONDO_0021126|http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","has a syndromic presentation","gitIssue502","MONDO:0021127","MONDO_0021127","has a syndromic presentation","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021135","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021135"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021135""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/254""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021135""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""rare or common""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""rare or common""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/254""},{""type"":[""literal""],""value"":""MONDO:0021135""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021135""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""MONDO:0021135"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021135"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021135""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","MONDO:0021135","","http://purl.obolibrary.org/obo/MONDO_0021125","","true","","","","","https://github.com/monarch-initiative/mondo/issues/254","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0021125","","","http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021125","","http://purl.obolibrary.org/obo/MONDO_0021135","http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","rare or common","gitIssue502","MONDO:0021135","MONDO_0021135","rare or common","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021136","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021136""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://www.rarediseaseday.org/article/what-is-a-rare-disease""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021135"",""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021135"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021135"",""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021135"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://www.rarediseaseday.org/article/what-is-a-rare-disease""}}]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""type"":[""literal""],""value"":""rare (European definition)""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021136""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""rare""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/MONDO_0021135"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""rare""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0015514"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0016072"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0019040"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0019182"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://www.rarediseaseday.org/article/what-is-a-rare-disease""}}]},{""type"":[""literal""],""value"":""rare (European definition)""},{""type"":[""literal""],""value"":""MONDO:0021136""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021136""},""synonym"":{""type"":[""literal""],""value"":""rare (European definition)""},""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/MONDO_0021135"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""rare or common""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021135""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""chromosomal disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0021136"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021136"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021136""},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0015514"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary endocrine growth disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0015514""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0016072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anomaly of puberty or/and menstrual cycle of genetic origin""},""curie"":{""type"":[""literal""],""value"":""MONDO:0016072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019182"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inherited obesity""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019182""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0021136","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0021135","","true","","A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.","","","","","","http://purl.obolibrary.org/obo/MONDO_0015514|http://purl.obolibrary.org/obo/MONDO_0016072|http://purl.obolibrary.org/obo/MONDO_0019040|http://purl.obolibrary.org/obo/MONDO_0019182","0.0","http://purl.obolibrary.org/obo/MONDO_0021135","","","http://purl.obolibrary.org/obo/MONDO_0021135|http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","rare (European definition)","","rare (European definition)","false","","A disease or disorder is defined as rare in Europe when it affects fewer than 1 in 2000. A disease or disorder is defined as rare in the USA when it affects fewer than 200,000 persons at any given time. Here we take the European definition to be consistent with Orphanet.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021135","","http://purl.obolibrary.org/obo/MONDO_0021136","http://purl.obolibrary.org/obo/MONDO_0021135|http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","rare","gitIssue502","MONDO:0021136","MONDO_0021136","rare","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021139","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021139"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021139""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021139""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""congenital or acquired""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""congenital or acquired""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""MONDO:0021139""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021139""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""MONDO:0021139"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021139"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021139""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","MONDO:0021139","","http://purl.obolibrary.org/obo/MONDO_0021125","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0021125","","","http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021125","","http://purl.obolibrary.org/obo/MONDO_0021139","http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","congenital or acquired","gitIssue502","MONDO:0021139","MONDO_0021139","congenital or acquired","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021140","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021140""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A characteristic of a disease in which the disease is present at birth, regardless of cause.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Wikipedia:Birth_defect""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021139"",""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021139"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021139"",""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021139"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A characteristic of a disease in which the disease is present at birth, regardless of cause.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Wikipedia:Birth_defect""}}]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4069""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""type"":[""literal""],""value"":""inborn""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021140""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""congenital""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0021139"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false},{""type"":[""reification""],""value"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}}]}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""congenital""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0002320"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0019042"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A characteristic of a disease in which the disease is present at birth, regardless of cause.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""Wikipedia:Birth_defect""}}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4069""},{""type"":[""literal""],""value"":""inborn""},{""type"":[""literal""],""value"":""MONDO:0021140""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021140""},""synonym"":{""type"":[""literal""],""value"":""inborn""},""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019042"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multiple congenital anomalies/dysmorphic syndrome""},""curie"":{""type"":[""literal""],""value"":""MONDO:0019042""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""type"":[""class"",""entity""]},""MONDO:0021140"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021140"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021140""},""https://orcid.org/0000-0002-4142-7153"":{""url"":""https://orcid.org/0000-0002-4142-7153"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-4142-7153""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""Wikipedia:Birth_defect"":{""url"":""http://en.wikipedia.org/wiki/Birth_defect"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""Wikipedia:Birth_defect""},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002320"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""congenital nervous system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002320""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021139"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""congenital or acquired""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021139""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0021140","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0021139||","","true","","A characteristic of a disease in which the disease is present at birth, regardless of cause.","","","https://github.com/monarch-initiative/mondo/issues/4069","","","http://purl.obolibrary.org/obo/MONDO_0002320|http://purl.obolibrary.org/obo/MONDO_0019042","0.0","http://purl.obolibrary.org/obo/MONDO_0021139","","","http://purl.obolibrary.org/obo/MONDO_0021139|http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","inborn","","inborn","false","","A characteristic of a disease in which the disease is present at birth, regardless of cause.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021139","","http://purl.obolibrary.org/obo/MONDO_0021140","http://purl.obolibrary.org/obo/MONDO_0021139|http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","congenital","gitIssue502","MONDO:0021140","MONDO_0021140","congenital","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021147","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021147"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021147""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""http://purl.org/dc/terms/conformsTo"":""http://purl.obolibrary.org/obo/mondo/patterns/specific_disease_by_disrupted_process.yaml"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:Q00-Q99""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/4536""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}]}]},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021147""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/mondo#harrisons_view"",""http://purl.obolibrary.org/obo/mondo#rare_grouping""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/OGMS_0000031"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004024"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032502"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700096"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004024"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032502"",""isObsolete"":false}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":""http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disorder of development or morphogenesis""},""numDescendants"":6.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0004024"",""value"":""http://purl.obolibrary.org/obo/GO_0032502"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004024"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032502"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ICD10CM:Q00-Q99""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""MONDO:equivalentTo""},{""type"":[""literal""],""value"":""https://github.com/monarch-initiative/mondo/issues/4536""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}]}]},{""type"":[""literal""],""value"":""MONDO:0021147""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021147""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/terms/conformsTo"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""conformsTo""},""curie"":{""type"":[""literal""],""value"":""conformsTo""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004024"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""disease causes disruption of""},{""type"":[""literal""],""value"":""disease disrupts""}],""curie"":{""type"":[""literal""],""value"":""RO:0004024""},""type"":[""property"",""objectProperty"",""entity""]},""MONDO:0021147"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021147"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021147""},""https://orcid.org/0000-0002-4142-7153"":{""url"":""https://orcid.org/0000-0002-4142-7153"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-4142-7153""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0001-5208-3432"":{""url"":""https://orcid.org/0000-0001-5208-3432"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0001-5208-3432""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","http://purl.obolibrary.org/obo/GO_0032502","","","MONDO:0021147","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031|","http://purl.obolibrary.org/obo/mondo#harrisons_view|http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.","","","","","http://purl.obolibrary.org/obo/mondo/patterns/specific_disease_by_disrupted_process.yaml","","6.0","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031","","","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","ICD10CM:Q00-Q99","","false","","Any disease or disorder that disrupts the process development of an anatomical structure. Can be due to genetic or environmental causes. Typically happens during embryogenesis, but also includes post-embryonic development.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/OGMS_0000031","","http://purl.obolibrary.org/obo/MONDO_0021147","http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","disorder of development or morphogenesis","gitIssue502","MONDO:0021147","MONDO_0021147","disorder of development or morphogenesis","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021149","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021149"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021149""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021149""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hereditary vs non-hereditary etiology""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/MONDO_0021125"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hereditary vs non-hereditary etiology""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""MONDO:0021149""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021149""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""type"":[""class"",""entity""]},""MONDO:0021149"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021149"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021149""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","MONDO:0021149","","http://purl.obolibrary.org/obo/MONDO_0021125","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0021125","","","http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021125","","http://purl.obolibrary.org/obo/MONDO_0021149","http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","hereditary vs non-hereditary etiology","gitIssue502","MONDO:0021149","MONDO_0021149","hereditary vs non-hereditary etiology","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0021152","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0021152""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021149"",""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/MONDO_0021149"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0021149"",""http://purl.obolibrary.org/obo/MONDO_0021125"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/MONDO_0021149"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0004420""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":[{""type"":[""literal""],""value"":""constitutitional genetic""},{""type"":[""literal""],""value"":""familial""},{""type"":[""literal""],""value"":""genetic""},{""type"":[""literal""],""value"":""hereditary""},{""type"":[""literal""],""value"":""inherited genetic""}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0021152""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""inherited""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/MONDO_0021149"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""inherited""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0000053"",""value"":""http://purl.obolibrary.org/obo/MONDO_0003847"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:cjm""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""EFO:0004420""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""constitutitional genetic""},{""type"":[""literal""],""value"":""familial""},{""type"":[""literal""],""value"":""genetic""},{""type"":[""literal""],""value"":""hereditary""},{""type"":[""literal""],""value"":""inherited genetic""},{""type"":[""literal""],""value"":""MONDO:0021152""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0021152""},""synonym"":[{""type"":[""literal""],""value"":""constitutitional genetic""},{""type"":[""literal""],""value"":""familial""},{""type"":[""literal""],""value"":""genetic""},{""type"":[""literal""],""value"":""hereditary""},{""type"":[""literal""],""value"":""inherited genetic""}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""MONDO:0021152"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0021152""},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease characteristic""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021125""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_related_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasRelatedSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021149"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary vs non-hereditary etiology""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021149""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""EFO:0004420"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0004420"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0004420""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","MONDO:0021152","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0021149","","true","","A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.","","","","","","http://purl.obolibrary.org/obo/MONDO_0003847","0.0","http://purl.obolibrary.org/obo/MONDO_0021149","","","http://purl.obolibrary.org/obo/MONDO_0021149|http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","constitutitional genetic|familial|genetic|hereditary|inherited genetic","","","","http://www.w3.org/2002/07/owl#Class","false","true","","EFO:0004420","constitutitional genetic|familial|genetic|hereditary|inherited genetic","false","","A characteristic of a disease in which the cause of the disease is a genetic problem inherited from either or both parents.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0021149","","http://purl.obolibrary.org/obo/MONDO_0021152","http://purl.obolibrary.org/obo/MONDO_0021149|http://purl.obolibrary.org/obo/MONDO_0021125|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","inherited","gitIssue502","MONDO:0021152","MONDO_0021152","inherited","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0100038","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0100038"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0100038""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6733-369X""},{""type"":[""literal""],""value"":""https://www.clinicalgenome.org/working-groups/clinical-domain/neurodevelopmental-disorders/""}]}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700092"",""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700092"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0700092"",""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700092"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6733-369X""},{""type"":[""literal""],""value"":""https://www.clinicalgenome.org/working-groups/clinical-domain/neurodevelopmental-disorders/""}]}]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/3680""},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0019117"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6733-369X""}}]},""http://purl.org/dc/elements/1.1/date"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#dateTime"",""value"":""2018-06-29T18:21:11Z""},""http://purl.org/dc/terms/creator"":""https://orcid.org/0000-0001-5208-3432"",""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""type"":[""literal""],""value"":""complex neurodevelopmental disorder""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0100038""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""complex neurodevelopmental disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0700092"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-4142-7153""}}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""complex neurodevelopmental disorder""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-6733-369X""},{""type"":[""literal""],""value"":""https://www.clinicalgenome.org/working-groups/clinical-domain/neurodevelopmental-disorders/""}]}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/3680""},{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#dateTime"",""value"":""2018-06-29T18:21:11Z""},{""type"":[""literal""],""value"":""complex neurodevelopmental disorder""},{""type"":[""literal""],""value"":""MONDO:0100038""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0100038""},""synonym"":{""type"":[""literal""],""value"":""complex neurodevelopmental disorder""},""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/elements/1.1/date"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""date""},""curie"":{""type"":[""literal""],""value"":""date""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0100038"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0100038"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0100038""},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neurodevelopmental disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700092""},""type"":[""class"",""entity""]},""http://purl.org/dc/terms/creator"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""creator""},""curie"":{""type"":[""literal""],""value"":""creator""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0002-4142-7153"":{""url"":""https://orcid.org/0000-0002-4142-7153"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-4142-7153""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0019117"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0019117"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""mondo:0019117""},""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""excluded_subClassOf""},""curie"":{""type"":[""literal""],""value"":""excluded:subClassOf""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0002-6733-369X"":{""url"":""https://orcid.org/0000-0002-6733-369X"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-6733-369X""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005071""},""type"":[""class"",""entity""]},""https://orcid.org/0000-0001-5208-3432"":{""url"":""https://orcid.org/0000-0001-5208-3432"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0001-5208-3432""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0100038","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0700092","","true","","A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).","","","https://github.com/monarch-initiative/mondo/issues/3680","2018-06-29T18:21:11Z","","","1.0","http://purl.obolibrary.org/obo/MONDO_0700092","","","http://purl.obolibrary.org/obo/MONDO_0700092|http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","https://orcid.org/0000-0001-5208-3432","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","complex neurodevelopmental disorder","","complex neurodevelopmental disorder","false","","A disorder that involves more than one phenotype associated with the central nervous system, including but not limited to intellectual disability, autism, and seizures (epilepsy).","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0700092","http://purl.obolibrary.org/obo/MONDO_0019117","http://purl.obolibrary.org/obo/MONDO_0100038","http://purl.obolibrary.org/obo/MONDO_0700092|http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","complex neurodevelopmental disorder","gitIssue502","MONDO:0100038","MONDO_0100038","complex neurodevelopmental disorder","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0100500","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0100500"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0100500""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0700092"",""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0003847"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-0736-9199""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}]}]},""http://purl.obolibrary.org/obo/MONDO_0700092""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0003847"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/MONDO_0700092"",""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0003847"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-0736-9199""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}]}]},""http://purl.obolibrary.org/obo/MONDO_0700092""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""}}]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4789""},""http://purl.org/dc/terms/creator"":""https://orcid.org/0000-0001-5208-3432"",""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0100500""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Mendelian neurodevelopmental disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0003847"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":[{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-0736-9199""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}]}]},""http://purl.obolibrary.org/obo/MONDO_0700092""],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0700092"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0021152"",""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Mendelian neurodevelopmental disorder""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent\u0027s genome.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""MONDO:patterns/hereditary""}}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/4789""},{""type"":[""literal""],""value"":""MONDO:0100500""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0100500""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""MONDO:0100500"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0100500"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0100500""},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""https://orcid.org/0000-0002-1780-5230"":{""url"":""https://orcid.org/0000-0002-1780-5230"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-1780-5230""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0002-0736-9199"":{""url"":""https://orcid.org/0000-0002-0736-9199"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-0736-9199""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neurodevelopmental disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700092""},""type"":[""class"",""entity""]},""http://purl.org/dc/terms/creator"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""creator""},""curie"":{""type"":[""literal""],""value"":""creator""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0021152"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inherited""},""curie"":{""type"":[""literal""],""value"":""MONDO:0021152""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005071""},""type"":[""class"",""entity""]},""https://orcid.org/0000-0001-5208-3432"":{""url"":""https://orcid.org/0000-0001-5208-3432"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0001-5208-3432""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0003847"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hereditary disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0003847""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","MONDO:0100500","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700092","","true","","A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent's genome.","","","https://github.com/monarch-initiative/mondo/issues/4789","","","","1.0","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700092","","","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0700092|http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/OGMS_0000031","https://orcid.org/0000-0001-5208-3432","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","A neurodevelopmental disorder that is caused by genetic modifications where those modifications are inherited from a parent's genome.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700092","","http://purl.obolibrary.org/obo/MONDO_0100500","http://purl.obolibrary.org/obo/MONDO_0003847|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/MONDO_0700092|http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/OGMS_0000031","false","Mendelian neurodevelopmental disorder","gitIssue502","MONDO:0100500","MONDO_0100500","Mendelian neurodevelopmental disorder","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0700092","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0700092"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0700092""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""SCTID:700364009""}}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005071"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0005071"",""http://purl.obolibrary.org/obo/MONDO_0700096"",""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/OGMS_0000031""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005071"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""SCTID:700364009""}}]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/3410""},""http://purl.org/dc/terms/creator"":""https://orcid.org/0000-0002-4142-7153"",""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D065886""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""MedDRA:C1535926""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C1535926""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C89338""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:700364009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C1535926""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0700092""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""neurodevelopmental disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0005071"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0002-1780-5230""}}]},""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D065886"",""http://identifiers.org/snomedct/700364009"",""http://linkedlifedata.com/resource/umls/id/C1535926"",""http://purl.obolibrary.org/obo/NCIT_C1535926"",""http://purl.obolibrary.org/obo/NCIT_C89338""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""neurodevelopmental disorder""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""SCTID:700364009""}}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/3410""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""MESH:D065886""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""MedDRA:C1535926""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C1535926""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""NCIT:C89338""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""SCTID:700364009""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""UMLS:C1535926""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""MONDO:equivalentTo""}}]},{""type"":[""literal""],""value"":""MONDO:0700092""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0700092""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C89338"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C89338"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C89338""},""https://orcid.org/0000-0002-1780-5230"":{""url"":""https://orcid.org/0000-0002-1780-5230"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-1780-5230""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""NCIT:C89338"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C89338"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C89338""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""UMLS:C1535926"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C1535926"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C1535926""},""http://purl.org/dc/terms/creator"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""creator""},""curie"":{""type"":[""literal""],""value"":""creator""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0002-4142-7153"":{""url"":""https://orcid.org/0000-0002-4142-7153"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-4142-7153""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCIT_C1535926"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C1535926"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C1535926""},""MONDO:0700092"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0700092"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0700092""},""MESH:D065886"":{""url"":""http://id.nlm.nih.gov/mesh/D065886"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D065886""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""SCTID:700364009"":{""url"":""http://snomed.info/id/700364009"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:700364009""},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005071""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""NCIT:C1535926"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C1535926"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C1535926""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","http://identifiers.org/mesh/D065886|http://identifiers.org/snomedct/700364009|http://linkedlifedata.com/resource/umls/id/C1535926|http://purl.obolibrary.org/obo/NCIT_C1535926|http://purl.obolibrary.org/obo/NCIT_C89338","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","MONDO:0700092","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/MONDO_0005071","","true","","A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.","","","https://github.com/monarch-initiative/mondo/issues/3410","","","","3.0","http://purl.obolibrary.org/obo/MONDO_0005071","","","http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","https://orcid.org/0000-0002-4142-7153","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","MESH:D065886|MedDRA:C1535926|NCIT:C1535926|NCIT:C89338|SCTID:700364009|UMLS:C1535926","","false","","A behavioral and cognitive disorder with onset during the developmental period that involves impaired or aberrant development of intellectual, motor, or social functions.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0005071","","http://purl.obolibrary.org/obo/MONDO_0700092","http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/MONDO_0700096|http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/OGMS_0000031","false","neurodevelopmental disorder","gitIssue502","MONDO:0700092","MONDO_0700092","neurodevelopmental disorder","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/MONDO_0700096","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""directAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0000001"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""http://orcid.org/0000-0002-4142-7153""}}]},""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/MONDO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0000001"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""http://orcid.org/0000-0002-4142-7153""}}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5858""},""http://purl.obolibrary.org/obo/RO_0002175"":""http://purl.obolibrary.org/obo/NCBITaxon_9606"",""http://purl.org/dc/terms/creator"":""https://orcid.org/0000-0002-4142-7153"",""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""human disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""}}]},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0700096""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":""http://purl.obolibrary.org/obo/mondo#rare_grouping"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""human disease""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MONDO_0000001"",""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#source"":{""type"":[""literal""],""value"":""http://orcid.org/0000-0002-4142-7153""}}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002162"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_9606"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/MONDO_0000001"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002162"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_9606"",""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""human disease""},""numDescendants"":31.0,""numHierarchicalDescendants"":31.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002162"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_9606"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002162"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_9606"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""https://github.com/monarch-initiative/mondo/issues/5858""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""human disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""}}]},{""type"":[""literal""],""value"":""MONDO:0700096""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0700096""},""synonym"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""human disease or disorder""},""axioms"":[{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""}}]},""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002162"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002162""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.org/dc/terms/creator"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""creator""},""curie"":{""type"":[""literal""],""value"":""creator""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0002-4142-7153"":{""url"":""https://orcid.org/0000-0002-4142-7153"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-4142-7153""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9606"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Homo sapiens""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9606""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]},""MONDO:0700096"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0700096""},""https://orcid.org/0000-0001-5208-3432"":{""url"":""https://orcid.org/0000-0001-5208-3432"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0001-5208-3432""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","31.0","class|entity","http://purl.obolibrary.org/obo/NCBITaxon_9606","http://purl.obolibrary.org/obo/NCBITaxon_9606","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0700096","","http://purl.obolibrary.org/obo/MONDO_0000001|","http://purl.obolibrary.org/obo/mondo#rare_grouping","true","","","","","https://github.com/monarch-initiative/mondo/issues/5858","","","","31.0","http://purl.obolibrary.org/obo/MONDO_0000001","","","http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","https://orcid.org/0000-0002-4142-7153","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","human disease or disorder","","human disease or disorder","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/MONDO_0000001","","http://purl.obolibrary.org/obo/MONDO_0700096","http://purl.obolibrary.org/obo/MONDO_0000001|http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","human disease","gitIssue502","MONDO:0700096","MONDO_0700096","human disease","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_110814","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_110814"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:110814""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Xenoturbellida""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Xenoturbellida""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_110814""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1312402"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Xenacoelomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1312402""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_1312402","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/NCBITaxon_1312402","","","http://purl.obolibrary.org/obo/NCBITaxon_1312402|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_1312402","","http://purl.obolibrary.org/obo/NCBITaxon_110814","http://purl.obolibrary.org/obo/NCBITaxon_1312402|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Xenoturbellida","gitIssue502","NCBITaxon:110814","NCBITaxon_110814","Xenoturbellida","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_110815","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_110815"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:110815""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_1547233"",""http://purl.obolibrary.org/obo/NCBITaxon_110814"",""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_1547233"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_1547233"",""http://purl.obolibrary.org/obo/NCBITaxon_110814"",""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_1547233"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Xenoturbella""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_1547233"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Xenoturbella""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_110815""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1547233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Xenoturbellidae""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1547233""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_110814"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Xenoturbellida""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:110814""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1312402"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Xenacoelomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1312402""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_1547233","","true","","","","","","","","","0.0","http://purl.obolibrary.org/obo/NCBITaxon_1547233","","","http://purl.obolibrary.org/obo/NCBITaxon_1547233|http://purl.obolibrary.org/obo/NCBITaxon_110814|http://purl.obolibrary.org/obo/NCBITaxon_1312402|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_1547233","","http://purl.obolibrary.org/obo/NCBITaxon_110815","http://purl.obolibrary.org/obo/NCBITaxon_1547233|http://purl.obolibrary.org/obo/NCBITaxon_110814|http://purl.obolibrary.org/obo/NCBITaxon_1312402|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Xenoturbella","gitIssue502","NCBITaxon:110815","NCBITaxon_110815","Xenoturbella","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_117570","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Teleostomi""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""numDescendants"":19.0,""numHierarchicalDescendants"":19.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_117570""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","19.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_7776","","true","","","","","","","","","19.0","http://purl.obolibrary.org/obo/NCBITaxon_7776","","","http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_7776","","http://purl.obolibrary.org/obo/NCBITaxon_117570","http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Teleostomi","gitIssue502","NCBITaxon:117570","NCBITaxon_117570","Teleostomi","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_117571","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Euteleostomi""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""numDescendants"":18.0,""numHierarchicalDescendants"":18.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_117571""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","18.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_117570","","true","","","","","","","","","18.0","http://purl.obolibrary.org/obo/NCBITaxon_117570","","","http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_117570","","http://purl.obolibrary.org/obo/NCBITaxon_117571","http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Euteleostomi","gitIssue502","NCBITaxon:117571","NCBITaxon_117571","Euteleostomi","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_1312402","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1312402""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Xenacoelomorpha""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Xenacoelomorpha""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_1312402""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_33213","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/NCBITaxon_33213","","","http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_33213","","http://purl.obolibrary.org/obo/NCBITaxon_1312402","http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Xenacoelomorpha","gitIssue502","NCBITaxon:1312402","NCBITaxon_1312402","Xenacoelomorpha","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_131567","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cellular organisms""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""numDescendants"":35.0,""numHierarchicalDescendants"":35.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/CL_0000000"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_131567""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","","35.0","class|entity","","","","","","","","false","","","","","","","","http://purl.obolibrary.org/obo/CL_0000000","35.0","","","","","","","","","","","http://www.w3.org/2002/07/owl#Class","true","false","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/NCBITaxon_131567","","false","cellular organisms","gitIssue502","NCBITaxon:131567","NCBITaxon_131567","cellular organisms","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_1338369","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""numDescendants"":16.0,""numHierarchicalDescendants"":16.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_1338369""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","16.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_8287","","true","","","","","","","","","16.0","http://purl.obolibrary.org/obo/NCBITaxon_8287","","","http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_8287","","http://purl.obolibrary.org/obo/NCBITaxon_1338369","http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Dipnotetrapodomorpha","gitIssue502","NCBITaxon:1338369","NCBITaxon_1338369","Dipnotetrapodomorpha","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_1437010","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""numDescendants"":10.0,""numHierarchicalDescendants"":10.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_1437010""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","10.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_9347","","true","","","","","","","","","10.0","http://purl.obolibrary.org/obo/NCBITaxon_9347","","","http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_9347","","http://purl.obolibrary.org/obo/NCBITaxon_1437010","http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Boreoeutheria","gitIssue502","NCBITaxon:1437010","NCBITaxon_1437010","Boreoeutheria","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_1547233","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_1547233"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1547233""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_110814"",""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_110814"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_110814"",""http://purl.obolibrary.org/obo/NCBITaxon_1312402"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_110814"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Xenoturbellidae""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_110814"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Xenoturbellidae""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_1547233""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_110814"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Xenoturbellida""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:110814""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1312402"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Xenacoelomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1312402""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_110814","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/NCBITaxon_110814","","","http://purl.obolibrary.org/obo/NCBITaxon_110814|http://purl.obolibrary.org/obo/NCBITaxon_1312402|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_110814","","http://purl.obolibrary.org/obo/NCBITaxon_1547233","http://purl.obolibrary.org/obo/NCBITaxon_110814|http://purl.obolibrary.org/obo/NCBITaxon_1312402|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Xenoturbellidae","gitIssue502","NCBITaxon:1547233","NCBITaxon_1547233","Xenoturbellidae","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_207598","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_207598"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:207598""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Homininae""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Homininae""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_207598""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Primates""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9526"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Catarrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9526""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9604"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Hominidae""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9604""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Hominoidea""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_376913"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Haplorrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:376913""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Simiiformes""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314293""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_9604","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/NCBITaxon_9604","","","http://purl.obolibrary.org/obo/NCBITaxon_9604|http://purl.obolibrary.org/obo/NCBITaxon_314295|http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_9604","","http://purl.obolibrary.org/obo/NCBITaxon_207598","http://purl.obolibrary.org/obo/NCBITaxon_9604|http://purl.obolibrary.org/obo/NCBITaxon_314295|http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Homininae","gitIssue502","NCBITaxon:207598","NCBITaxon_207598","Homininae","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_2759","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""directAncestor"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Eukaryota""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_131567"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""numDescendants"":34.0,""numHierarchicalDescendants"":34.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/CL_0000255"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_2759""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000255"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""eukaryotic cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000255""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","34.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_131567","","true","","","","","","","","http://purl.obolibrary.org/obo/CL_0000255","34.0","http://purl.obolibrary.org/obo/NCBITaxon_131567","","","http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_131567","","http://purl.obolibrary.org/obo/NCBITaxon_2759","http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Eukaryota","gitIssue502","NCBITaxon:2759","NCBITaxon_2759","Eukaryota","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_314146","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""numDescendants"":9.0,""numHierarchicalDescendants"":9.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_314146""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","9.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_1437010","","true","","","","","","","","","9.0","http://purl.obolibrary.org/obo/NCBITaxon_1437010","","","http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_1437010","","http://purl.obolibrary.org/obo/NCBITaxon_314146","http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Euarchontoglires","gitIssue502","NCBITaxon:314146","NCBITaxon_314146","Euarchontoglires","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_314293","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314293""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Simiiformes""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Simiiformes""},""numDescendants"":6.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_314293""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Primates""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_376913"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Haplorrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:376913""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_376913","","true","","","","","","","","","6.0","http://purl.obolibrary.org/obo/NCBITaxon_376913","","","http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_376913","","http://purl.obolibrary.org/obo/NCBITaxon_314293","http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Simiiformes","gitIssue502","NCBITaxon:314293","NCBITaxon_314293","Simiiformes","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_314295","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314295""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Hominoidea""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Hominoidea""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_314295""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Primates""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9526"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Catarrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9526""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_376913"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Haplorrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:376913""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Simiiformes""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314293""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_9526","","true","","","","","","","","","4.0","http://purl.obolibrary.org/obo/NCBITaxon_9526","","","http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_9526","","http://purl.obolibrary.org/obo/NCBITaxon_314295","http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Hominoidea","gitIssue502","NCBITaxon:314295","NCBITaxon_314295","Hominoidea","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_32523","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Tetrapoda""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""numDescendants"":15.0,""numHierarchicalDescendants"":15.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_32523""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","15.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_1338369","","true","","","","","","","","","15.0","http://purl.obolibrary.org/obo/NCBITaxon_1338369","","","http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_1338369","","http://purl.obolibrary.org/obo/NCBITaxon_32523","http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Tetrapoda","gitIssue502","NCBITaxon:32523","NCBITaxon_32523","Tetrapoda","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_32524","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Amniota""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Amniota""},""numDescendants"":14.0,""numHierarchicalDescendants"":14.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_32524""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","14.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_32523","","true","","","","","","","","","14.0","http://purl.obolibrary.org/obo/NCBITaxon_32523","","","http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_32523","","http://purl.obolibrary.org/obo/NCBITaxon_32524","http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Amniota","gitIssue502","NCBITaxon:32524","NCBITaxon_32524","Amniota","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_32525","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""numDescendants"":12.0,""numHierarchicalDescendants"":12.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_32525""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","12.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_40674","","true","","","","","","","","","12.0","http://purl.obolibrary.org/obo/NCBITaxon_40674","","","http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_40674","","http://purl.obolibrary.org/obo/NCBITaxon_32525","http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Theria ","gitIssue502","NCBITaxon:32525","NCBITaxon_32525","Theria ","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_33154","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Opisthokonta""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""numDescendants"":33.0,""numHierarchicalDescendants"":33.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_33154""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","33.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_2759","","true","","","","","","","","","33.0","http://purl.obolibrary.org/obo/NCBITaxon_2759","","","http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_2759","","http://purl.obolibrary.org/obo/NCBITaxon_33154","http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Opisthokonta","gitIssue502","NCBITaxon:33154","NCBITaxon_33154","Opisthokonta","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_33208","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Metazoa""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Metazoa""},""numDescendants"":32.0,""numHierarchicalDescendants"":32.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/CL_0000548"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_33208""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000548"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""animal cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000548""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","32.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_33154","","true","","","","","","","","http://purl.obolibrary.org/obo/CL_0000548","32.0","http://purl.obolibrary.org/obo/NCBITaxon_33154","","","http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_33154","","http://purl.obolibrary.org/obo/NCBITaxon_33208","http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Metazoa","gitIssue502","NCBITaxon:33208","NCBITaxon_33208","Metazoa","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_33213","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Bilateria""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Bilateria""},""numDescendants"":29.0,""numHierarchicalDescendants"":29.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_33213""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","29.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_6072","","true","","","","","","","","","29.0","http://purl.obolibrary.org/obo/NCBITaxon_6072","","","http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_6072","","http://purl.obolibrary.org/obo/NCBITaxon_33213","http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Bilateria","gitIssue502","NCBITaxon:33213","NCBITaxon_33213","Bilateria","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_33511","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Deuterostomia""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""numDescendants"":24.0,""numHierarchicalDescendants"":24.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_33511""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","24.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_33213","","true","","","","","","","","","24.0","http://purl.obolibrary.org/obo/NCBITaxon_33213","","","http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_33213","","http://purl.obolibrary.org/obo/NCBITaxon_33511","http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Deuterostomia","gitIssue502","NCBITaxon:33511","NCBITaxon_33511","Deuterostomia","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_376913","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:376913""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Haplorrhini""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Haplorrhini""},""numDescendants"":7.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_376913""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Primates""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_9443","","true","","","","","","","","","7.0","http://purl.obolibrary.org/obo/NCBITaxon_9443","","","http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_9443","","http://purl.obolibrary.org/obo/NCBITaxon_376913","http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Haplorrhini","gitIssue502","NCBITaxon:376913","NCBITaxon_376913","Haplorrhini","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_40674","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Mammalia""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Mammalia""},""numDescendants"":13.0,""numHierarchicalDescendants"":13.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_40674""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","13.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_32524","","true","","","","","","","","","13.0","http://purl.obolibrary.org/obo/NCBITaxon_32524","","","http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_32524","","http://purl.obolibrary.org/obo/NCBITaxon_40674","http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Mammalia","gitIssue502","NCBITaxon:40674","NCBITaxon_40674","Mammalia","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_6040","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_6040"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6040""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Porifera""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Porifera""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_6040""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_33208","","true","","","","","","","","","0.0","http://purl.obolibrary.org/obo/NCBITaxon_33208","","","http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_33208","","http://purl.obolibrary.org/obo/NCBITaxon_6040","http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Porifera","gitIssue502","NCBITaxon:6040","NCBITaxon_6040","Porifera","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_6072","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Eumetazoa""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""numDescendants"":30.0,""numHierarchicalDescendants"":30.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000110"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_6072""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000110"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neurula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000110""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organogenesis stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000111""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","30.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_33208","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000109|http://purl.obolibrary.org/obo/UBERON_0000110|http://purl.obolibrary.org/obo/UBERON_0000111|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0001016|http://purl.obolibrary.org/obo/UBERON_0002530","30.0","http://purl.obolibrary.org/obo/NCBITaxon_33208","","","http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_33208","","http://purl.obolibrary.org/obo/NCBITaxon_6072","http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Eumetazoa","gitIssue502","NCBITaxon:6072","NCBITaxon_6072","Eumetazoa","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_7711","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Chordata""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Chordata""},""numDescendants"":23.0,""numHierarchicalDescendants"":23.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_7711""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","23.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_33511","","true","","","","","","","","","23.0","http://purl.obolibrary.org/obo/NCBITaxon_33511","","","http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_33511","","http://purl.obolibrary.org/obo/NCBITaxon_7711","http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Chordata","gitIssue502","NCBITaxon:7711","NCBITaxon_7711","Chordata","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_7742","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""numDescendants"":21.0,""numHierarchicalDescendants"":21.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_7742""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","21.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_89593","","true","","","","","","","","","21.0","http://purl.obolibrary.org/obo/NCBITaxon_89593","","","http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_89593","","http://purl.obolibrary.org/obo/NCBITaxon_7742","http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Vertebrata ","gitIssue502","NCBITaxon:7742","NCBITaxon_7742","Vertebrata ","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_7776","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""numDescendants"":20.0,""numHierarchicalDescendants"":20.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_7776""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","20.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_7742","","true","","","","","","","","","20.0","http://purl.obolibrary.org/obo/NCBITaxon_7742","","","http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_7742","","http://purl.obolibrary.org/obo/NCBITaxon_7776","http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Gnathostomata ","gitIssue502","NCBITaxon:7776","NCBITaxon_7776","Gnathostomata ","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_8287","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""numDescendants"":17.0,""numHierarchicalDescendants"":17.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_8287""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","17.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_117571","","true","","","","","","","","","17.0","http://purl.obolibrary.org/obo/NCBITaxon_117571","","","http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_117571","","http://purl.obolibrary.org/obo/NCBITaxon_8287","http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Sarcopterygii","gitIssue502","NCBITaxon:8287","NCBITaxon_8287","Sarcopterygii","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_89593","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""numDescendants"":22.0,""numHierarchicalDescendants"":22.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_89593""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","22.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_7711","","true","","","","","","","","","22.0","http://purl.obolibrary.org/obo/NCBITaxon_7711","","","http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_7711","","http://purl.obolibrary.org/obo/NCBITaxon_89593","http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Craniata ","gitIssue502","NCBITaxon:89593","NCBITaxon_89593","Craniata ","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9347","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Eutheria""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Eutheria""},""numDescendants"":11.0,""numHierarchicalDescendants"":11.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_9347""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","11.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_32525","","true","","","","","","","","","11.0","http://purl.obolibrary.org/obo/NCBITaxon_32525","","","http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_32525","","http://purl.obolibrary.org/obo/NCBITaxon_9347","http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Eutheria","gitIssue502","NCBITaxon:9347","NCBITaxon_9347","Eutheria","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9443","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Primates""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Primates""},""numDescendants"":8.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_9443""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_314146","","true","","","","","","","","","8.0","http://purl.obolibrary.org/obo/NCBITaxon_314146","","","http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_314146","","http://purl.obolibrary.org/obo/NCBITaxon_9443","http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Primates","gitIssue502","NCBITaxon:9443","NCBITaxon_9443","Primates","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9526","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9526""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Catarrhini""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Catarrhini""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_9526""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Primates""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_376913"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Haplorrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:376913""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Simiiformes""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314293""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_314293","","true","","","","","","","","","5.0","http://purl.obolibrary.org/obo/NCBITaxon_314293","","","http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_314293","","http://purl.obolibrary.org/obo/NCBITaxon_9526","http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Catarrhini","gitIssue502","NCBITaxon:9526","NCBITaxon_9526","Catarrhini","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9604","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9604""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Hominidae""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Hominidae""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_9604""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Primates""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9526"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Catarrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9526""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Hominoidea""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_376913"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Haplorrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:376913""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Simiiformes""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314293""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_314295","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/NCBITaxon_314295","","","http://purl.obolibrary.org/obo/NCBITaxon_314295|http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_314295","","http://purl.obolibrary.org/obo/NCBITaxon_9604","http://purl.obolibrary.org/obo/NCBITaxon_314295|http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Hominidae","gitIssue502","NCBITaxon:9604","NCBITaxon_9604","Hominidae","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9605","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_9605"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9605""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_207598"",""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_207598"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_207598"",""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_207598"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Homo""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_207598"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Homo""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_9605""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Primates""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9526"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Catarrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9526""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9604"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Hominidae""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9604""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Hominoidea""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_376913"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Haplorrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:376913""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_207598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Homininae""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:207598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Simiiformes""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314293""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_207598","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/NCBITaxon_207598","","","http://purl.obolibrary.org/obo/NCBITaxon_207598|http://purl.obolibrary.org/obo/NCBITaxon_9604|http://purl.obolibrary.org/obo/NCBITaxon_314295|http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_207598","","http://purl.obolibrary.org/obo/NCBITaxon_9605","http://purl.obolibrary.org/obo/NCBITaxon_207598|http://purl.obolibrary.org/obo/NCBITaxon_9604|http://purl.obolibrary.org/obo/NCBITaxon_314295|http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Homo","gitIssue502","NCBITaxon:9605","NCBITaxon_9605","Homo","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/NCBITaxon_9606","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/NCBITaxon_9606"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9606""},""directAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9605"",""http://purl.obolibrary.org/obo/NCBITaxon_207598"",""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""directParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9605"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/NCBITaxon_9605"",""http://purl.obolibrary.org/obo/NCBITaxon_207598"",""http://purl.obolibrary.org/obo/NCBITaxon_9604"",""http://purl.obolibrary.org/obo/NCBITaxon_314295"",""http://purl.obolibrary.org/obo/NCBITaxon_9526"",""http://purl.obolibrary.org/obo/NCBITaxon_314293"",""http://purl.obolibrary.org/obo/NCBITaxon_376913"",""http://purl.obolibrary.org/obo/NCBITaxon_9443"",""http://purl.obolibrary.org/obo/NCBITaxon_314146"",""http://purl.obolibrary.org/obo/NCBITaxon_1437010"",""http://purl.obolibrary.org/obo/NCBITaxon_9347"",""http://purl.obolibrary.org/obo/NCBITaxon_32525"",""http://purl.obolibrary.org/obo/NCBITaxon_40674"",""http://purl.obolibrary.org/obo/NCBITaxon_32524"",""http://purl.obolibrary.org/obo/NCBITaxon_32523"",""http://purl.obolibrary.org/obo/NCBITaxon_1338369"",""http://purl.obolibrary.org/obo/NCBITaxon_8287"",""http://purl.obolibrary.org/obo/NCBITaxon_117571"",""http://purl.obolibrary.org/obo/NCBITaxon_117570"",""http://purl.obolibrary.org/obo/NCBITaxon_7776"",""http://purl.obolibrary.org/obo/NCBITaxon_7742"",""http://purl.obolibrary.org/obo/NCBITaxon_89593"",""http://purl.obolibrary.org/obo/NCBITaxon_7711"",""http://purl.obolibrary.org/obo/NCBITaxon_33511"",""http://purl.obolibrary.org/obo/NCBITaxon_33213"",""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_33154"",""http://purl.obolibrary.org/obo/NCBITaxon_2759"",""http://purl.obolibrary.org/obo/NCBITaxon_131567""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/NCBITaxon_9605"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Homo sapiens""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/NCBITaxon_9605"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Homo sapiens""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002162"",""value"":""http://purl.obolibrary.org/obo/MONDO_0700096"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002162"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_9606"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NCBITaxon_9606""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_131567"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellular organisms""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:131567""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_2759"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eukaryota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:2759""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32525"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Theria \u003cmammals\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32525""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32524"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Amniota""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32524""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_32523"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Tetrapoda""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:32523""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Bilateria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33213""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0700096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""human disease""},""curie"":{""type"":[""literal""],""value"":""MONDO:0700096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7776"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Gnathostomata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7776""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002162"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002162""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Primates""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7742"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Vertebrata \u003cvertebrates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7742""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33154"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Opisthokonta""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33154""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euarchontoglires""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9526"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Catarrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9526""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9604"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Hominidae""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9604""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9605"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Homo""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9605""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1338369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Dipnotetrapodomorpha""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1338369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_89593"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Craniata \u003cchordates\u003e""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:89593""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33511"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Deuterostomia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33511""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_8287"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Sarcopterygii""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:8287""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Hominoidea""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314295""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_7711"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Chordata""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:7711""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_376913"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Haplorrhini""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:376913""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_207598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Homininae""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:207598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_40674"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Mammalia""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:40674""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_314293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Simiiformes""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:314293""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_9347"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:9347""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117571"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Euteleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117571""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_1437010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Boreoeutheria""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:1437010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_117570"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Teleostomi""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:117570""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/NCBITaxon_9605","","true","","","","","","","","http://purl.obolibrary.org/obo/MONDO_0700096","0.0","http://purl.obolibrary.org/obo/NCBITaxon_9605","","","http://purl.obolibrary.org/obo/NCBITaxon_9605|http://purl.obolibrary.org/obo/NCBITaxon_207598|http://purl.obolibrary.org/obo/NCBITaxon_9604|http://purl.obolibrary.org/obo/NCBITaxon_314295|http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/NCBITaxon_9605","","http://purl.obolibrary.org/obo/NCBITaxon_9606","http://purl.obolibrary.org/obo/NCBITaxon_9605|http://purl.obolibrary.org/obo/NCBITaxon_207598|http://purl.obolibrary.org/obo/NCBITaxon_9604|http://purl.obolibrary.org/obo/NCBITaxon_314295|http://purl.obolibrary.org/obo/NCBITaxon_9526|http://purl.obolibrary.org/obo/NCBITaxon_314293|http://purl.obolibrary.org/obo/NCBITaxon_376913|http://purl.obolibrary.org/obo/NCBITaxon_9443|http://purl.obolibrary.org/obo/NCBITaxon_314146|http://purl.obolibrary.org/obo/NCBITaxon_1437010|http://purl.obolibrary.org/obo/NCBITaxon_9347|http://purl.obolibrary.org/obo/NCBITaxon_32525|http://purl.obolibrary.org/obo/NCBITaxon_40674|http://purl.obolibrary.org/obo/NCBITaxon_32524|http://purl.obolibrary.org/obo/NCBITaxon_32523|http://purl.obolibrary.org/obo/NCBITaxon_1338369|http://purl.obolibrary.org/obo/NCBITaxon_8287|http://purl.obolibrary.org/obo/NCBITaxon_117571|http://purl.obolibrary.org/obo/NCBITaxon_117570|http://purl.obolibrary.org/obo/NCBITaxon_7776|http://purl.obolibrary.org/obo/NCBITaxon_7742|http://purl.obolibrary.org/obo/NCBITaxon_89593|http://purl.obolibrary.org/obo/NCBITaxon_7711|http://purl.obolibrary.org/obo/NCBITaxon_33511|http://purl.obolibrary.org/obo/NCBITaxon_33213|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_33154|http://purl.obolibrary.org/obo/NCBITaxon_2759|http://purl.obolibrary.org/obo/NCBITaxon_131567","false","Homo sapiens","gitIssue502","NCBITaxon:9606","NCBITaxon_9606","Homo sapiens","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/OGMS_0000031","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/OGMS_0000031"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disease""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000016"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disease""},""numDescendants"":26.0,""numHierarchicalDescendants"":26.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""OGMS_0000031""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","26.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000016","","true","","A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism.","","","","","","","26.0","http://purl.obolibrary.org/obo/BFO_0000016","","","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","A disposition (i) to undergo pathological processes that (ii) exists in an organism because of one or more disorders in that organism.","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000016","","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","disease","gitIssue502","OGMS:0000031","OGMS_0000031","disease","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0000001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0000001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""quality""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000020"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""quality""},""numDescendants"":18.0,""numHierarchicalDescendants"":18.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0000001""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","18.0","class|entity","","","","","","http://purl.obolibrary.org/obo/BFO_0000020","","true","","","","","","","","","18.0","http://purl.obolibrary.org/obo/BFO_0000020","","","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000020","","http://purl.obolibrary.org/obo/PATO_0000001","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","quality","gitIssue502","PATO:0000001","PATO_0000001","quality","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0000051","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0000051"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0000051""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""morphology""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001241"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""morphology""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0000051""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0001241","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/PATO_0001241","","","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0001241","","http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","morphology","gitIssue502","PATO:0000051","PATO_0000051","morphology","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0000141","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0000141"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0000141""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000051"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0000051"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000051"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0000051"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""structure""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0000051"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""structure""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0000141""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphology""},""curie"":{""type"":[""literal""],""value"":""PATO:0000051""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0000051","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/PATO_0000051","","","http://purl.obolibrary.org/obo/PATO_0000051|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0000051","","http://purl.obolibrary.org/obo/PATO_0000141","http://purl.obolibrary.org/obo/PATO_0000051|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","structure","gitIssue502","PATO:0000141","PATO_0000141","structure","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001018","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0001018"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0001018""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""physical quality""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001241"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""physical quality""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0001018""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0001241","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/PATO_0001241","","","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0001241","","http://purl.obolibrary.org/obo/PATO_0001018","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","physical quality","gitIssue502","PATO:0001018","PATO_0001018","physical quality","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001241","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0001241"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0000001"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0000001"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""physical object quality""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0000001"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""physical object quality""},""numDescendants"":8.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0001241""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0000001","","true","","","","","","","","","8.0","http://purl.obolibrary.org/obo/PATO_0000001","","","http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0000001","","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","physical object quality","gitIssue502","PATO:0001241","PATO_0001241","physical object quality","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001992","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0001992"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0001992""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001995"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001995"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001995"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001995"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cellularity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001995"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cellularity""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0001992""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/PATO_0001995"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organismal quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001995""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0001995","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/PATO_0001995","","","http://purl.obolibrary.org/obo/PATO_0001995|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0001995","","http://purl.obolibrary.org/obo/PATO_0001992","http://purl.obolibrary.org/obo/PATO_0001995|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","cellularity","gitIssue502","PATO:0001992","PATO_0001992","cellularity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001993","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0001993"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0001993""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001992"",""http://purl.obolibrary.org/obo/PATO_0001995"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001992"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001992"",""http://purl.obolibrary.org/obo/PATO_0001995"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001992"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multicellular""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001992"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multicellular""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0000086"",""value"":""http://purl.obolibrary.org/obo/UBERON_0010000"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0001993"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0001993""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001995"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organismal quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001995""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001992"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cellularity""},""curie"":{""type"":[""literal""],""value"":""PATO:0001992""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0001992","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0010000","0.0","http://purl.obolibrary.org/obo/PATO_0001992","","","http://purl.obolibrary.org/obo/PATO_0001992|http://purl.obolibrary.org/obo/PATO_0001995|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0001992","","http://purl.obolibrary.org/obo/PATO_0001993","http://purl.obolibrary.org/obo/PATO_0001992|http://purl.obolibrary.org/obo/PATO_0001995|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","multicellular","gitIssue502","PATO:0001993","PATO_0001993","multicellular","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0001995","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0001995"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0001995""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""organismal quality""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001241"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""organismal quality""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0001995""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0001241","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/PATO_0001241","","","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0001241","","http://purl.obolibrary.org/obo/PATO_0001995","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","organismal quality","gitIssue502","PATO:0001995","PATO_0001995","organismal quality","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0002198","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0002198"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0002198""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001018"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001018"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001018"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001018"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""quality of a substance""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001018"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""quality of a substance""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0000086"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000463"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0002198"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0002198""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/PATO_0001018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001018""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000463"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organism substance""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000463""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0001018","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000463","0.0","http://purl.obolibrary.org/obo/PATO_0001018","","","http://purl.obolibrary.org/obo/PATO_0001018|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0001018","","http://purl.obolibrary.org/obo/PATO_0002198","http://purl.obolibrary.org/obo/PATO_0001018|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","quality of a substance","gitIssue502","PATO:0002198","PATO_0002198","quality of a substance","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/PATO_0010001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0010001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0010001""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000141"",""http://purl.obolibrary.org/obo/PATO_0000051"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0000141"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000141"",""http://purl.obolibrary.org/obo/PATO_0000051"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/PATO_0000001"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0000141"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disconnected""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0000141"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disconnected""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0000086"",""value"":""http://purl.obolibrary.org/obo/UBERON_0034923"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0010001"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""PATO_0010001""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphology""},""curie"":{""type"":[""literal""],""value"":""PATO:0000051""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""structure""},""curie"":{""type"":[""literal""],""value"":""PATO:0000141""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0034923"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disconnected anatomical group""},""curie"":{""type"":[""literal""],""value"":""UBERON:0034923""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/PATO_0000141","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0034923","0.0","http://purl.obolibrary.org/obo/PATO_0000141","","","http://purl.obolibrary.org/obo/PATO_0000141|http://purl.obolibrary.org/obo/PATO_0000051|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/PATO_0000141","","http://purl.obolibrary.org/obo/PATO_0010001","http://purl.obolibrary.org/obo/PATO_0000141|http://purl.obolibrary.org/obo/PATO_0000051|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/PATO_0000001|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002","false","disconnected","gitIssue502","PATO:0010001","PATO_0010001","disconnected","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000000","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000000"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000003"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""processual entity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/UBERON_0001062"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""processual entity""},""numDescendants"":12.0,""numHierarchicalDescendants"":12.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000000""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","12.0","class|entity","","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/BFO_0000003","","true","","","","","","","","","12.0","http://purl.obolibrary.org/obo/BFO_0000003","","","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/UBERON_0001062","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/UBERON_0000000","http://purl.obolibrary.org/obo/BFO_0000003","false","processual entity","gitIssue502","UBERON:0000000","UBERON_0000000","processual entity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000061","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000465"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000465"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anatomical structure""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002497"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""numDescendants"":26.0,""numHierarchicalDescendants"":32.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0002387"",""value"":""http://purl.obolibrary.org/obo/UBERON_0006598"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002473"",""value"":""http://purl.obolibrary.org/obo/UBERON_0034923"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""isObsolete"":false}],""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002497"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002497"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000061""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002497"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during or before""},""curie"":{""type"":[""literal""],""value"":""RO:0002497""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0006598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""presumptive structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0006598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/RO_0002473"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0034923"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disconnected anatomical group""},""curie"":{""type"":[""literal""],""value"":""UBERON:0034923""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""death stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000071""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","32.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000071","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000465|","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0006598|http://purl.obolibrary.org/obo/UBERON_0034923","26.0","http://purl.obolibrary.org/obo/UBERON_0000465","","","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000465","","http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","anatomical structure","gitIssue502","UBERON:0000061","UBERON_0000061","anatomical structure","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000062","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000062""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0010000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""organ""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002002"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0006984"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002162"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#complementOf"":""http://purl.obolibrary.org/obo/NCBITaxon_110815""},""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008150"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#disjointWith"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002162"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_110815"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""organ""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002002"",""value"":""http://purl.obolibrary.org/obo/UBERON_0006984"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002002"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0006984"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/GO_0008150"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008150"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000062""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has 2D boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002002""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002162"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002162""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biological_process""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0006984"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical surface""},""curie"":{""type"":[""literal""],""value"":""UBERON:0006984""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_110815"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Xenoturbella""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:110815""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0006984|http://purl.obolibrary.org/obo/GO_0008150","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0010000||||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000467","4.0","http://purl.obolibrary.org/obo/UBERON_0010000","","","http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000467","","http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468","false","organ","gitIssue502","UBERON:0000062","UBERON_0000062","organ","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000066","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000066""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104"",""http://purl.obolibrary.org/obo/UBERON_0000092""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""fully formed stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""fully formed stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000063"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002492"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002492"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002492"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000063"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000066""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002492"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during""},""curie"":{""type"":[""literal""],""value"":""RO:0002492""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""post-embryonic stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000092""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""death stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000071""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organogenesis stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000111""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000092|http://purl.obolibrary.org/obo/UBERON_0000111|http://purl.obolibrary.org/obo/UBERON_0000071","","","","","http://purl.obolibrary.org/obo/UBERON_0000105|||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0001016","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000092","","http://purl.obolibrary.org/obo/UBERON_0000066","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000092","false","fully formed stage","gitIssue502","UBERON:0000066","UBERON_0000066","fully formed stage","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000068","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""embryo stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""embryo stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000106"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000108"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000110"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002489"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002489"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002493"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002493"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000063"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000063"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/GO_0009790"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009790"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000068""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002493"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends with""},""curie"":{""type"":[""literal""],""value"":""RO:0002493""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002489"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence starts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002489""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fully formed stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000066""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000922"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000922""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009790"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo development""},""curie"":{""type"":[""literal""],""value"":""GO:0009790""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""post-embryonic stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000092""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000106"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""zygote stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000106""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cleavage stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000108"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blastula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000108""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000110"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neurula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000110""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organogenesis stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000111""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000066|http://purl.obolibrary.org/obo/UBERON_0000092|http://purl.obolibrary.org/obo/GO_0009790","","","","","http://purl.obolibrary.org/obo/UBERON_0000105||||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000092|http://purl.obolibrary.org/obo/UBERON_0000106|http://purl.obolibrary.org/obo/UBERON_0000107|http://purl.obolibrary.org/obo/UBERON_0000108|http://purl.obolibrary.org/obo/UBERON_0000109|http://purl.obolibrary.org/obo/UBERON_0000110|http://purl.obolibrary.org/obo/UBERON_0000111|http://purl.obolibrary.org/obo/UBERON_0000922|http://purl.obolibrary.org/obo/UBERON_0000922","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/UBERON_0000092","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000104","","http://purl.obolibrary.org/obo/UBERON_0000068","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104","false","embryo stage","gitIssue502","UBERON:0000068","UBERON_0000068","embryo stage","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000071","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000071""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""death stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002229"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""death stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0002497"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002497"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000063"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002230"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002230"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002229"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002229"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000071""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002497"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during or before""},""curie"":{""type"":[""literal""],""value"":""RO:0002497""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fully formed stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000066""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002229"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002229""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000105||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000066|http://purl.obolibrary.org/obo/UBERON_0000104","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000104","","http://purl.obolibrary.org/obo/UBERON_0000071","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104","false","death stage","gitIssue502","UBERON:0000071","UBERON_0000071","death stage","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000092","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000092""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""post-embryonic stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009791"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""post-embryonic stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000063"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/GO_0009791"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0009791"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000092""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fully formed stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000066""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0009791"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""post-embryonic development""},""curie"":{""type"":[""literal""],""value"":""GO:0009791""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/GO_0009791","","","","","http://purl.obolibrary.org/obo/UBERON_0000105|||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000066|http://purl.obolibrary.org/obo/UBERON_0000068","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000104","","http://purl.obolibrary.org/obo/UBERON_0000092","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104","false","post-embryonic stage","gitIssue502","UBERON:0000092","UBERON_0000092","post-embryonic stage","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000104","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000000"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""life cycle""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000000"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002230"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""life cycle""},""numDescendants"":0.0,""numHierarchicalDescendants"":11.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002229"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002229"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000092"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002223"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000106"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002223"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002230"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002230"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000071"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000104""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""post-embryonic stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000092""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002229"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002229""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000106"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""zygote stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000106""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002223"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002223""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""death stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000071""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","11.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000071","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000000||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/UBERON_0000071|http://purl.obolibrary.org/obo/UBERON_0000071|http://purl.obolibrary.org/obo/UBERON_0000092|http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000106","0.0","http://purl.obolibrary.org/obo/UBERON_0000000","","","http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000000","","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","false","life cycle","gitIssue502","UBERON:0000104","UBERON_0000104","life cycle","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000105","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000000"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""this class represents a proper part of the life cycle of an organism. The class \u0027life cycle\u0027 should not be placed here""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""life cycle stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000000"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""numDescendants"":10.0,""numHierarchicalDescendants"":10.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""this class represents a proper part of the life cycle of an organism. The class \u0027life cycle\u0027 should not be placed here""},false],""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000105""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","10.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000104","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000000|","","true","this class represents a proper part of the life cycle of an organism. The class 'life cycle' should not be placed here","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000104","10.0","http://purl.obolibrary.org/obo/UBERON_0000000","","","http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/UBERON_0000104","","http://purl.obolibrary.org/obo/UBERON_0000105","http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104","false","life cycle stage","gitIssue502","UBERON:0000105","UBERON_0000105","life cycle stage","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000106","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000106"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000106""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104"",""http://purl.obolibrary.org/obo/UBERON_0000068""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""zygote stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002223"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""zygote stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002087"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002087"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000106"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002223"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002223"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000104"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000106""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002087"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002087""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cleavage stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002223"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002223""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/UBERON_0000104","","","","","http://purl.obolibrary.org/obo/UBERON_0000105||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000107","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000068","","http://purl.obolibrary.org/obo/UBERON_0000106","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000068","false","zygote stage","gitIssue502","UBERON:0000106","UBERON_0000106","zygote stage","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000107","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000107"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000107""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104"",""http://purl.obolibrary.org/obo/UBERON_0000068""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cleavage stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0040016"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002087"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000106"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cleavage stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000108"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000107"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/GO_0040016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0040016"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002087"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000106"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002087"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000106"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000107""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002087"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002087""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000106"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""zygote stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000106""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000108"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blastula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000108""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0040016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic cleavage""},""curie"":{""type"":[""literal""],""value"":""GO:0040016""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/GO_0040016|http://purl.obolibrary.org/obo/UBERON_0000106","","","","","http://purl.obolibrary.org/obo/UBERON_0000105|||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000108","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000068","","http://purl.obolibrary.org/obo/UBERON_0000107","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000068","false","cleavage stage","gitIssue502","UBERON:0000107","UBERON_0000107","cleavage stage","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000108","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000108"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000108""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104"",""http://purl.obolibrary.org/obo/UBERON_0000068""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""consider adding a preceding stage \u0027morula stage\u0027 as part of cleavage""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""blastula stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000107"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""blastula stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000108"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000107"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""consider adding a preceding stage \u0027morula stage\u0027 as part of cleavage""},false],""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000108""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cleavage stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000107""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/UBERON_0000107","","","","","http://purl.obolibrary.org/obo/UBERON_0000105||","","true","consider adding a preceding stage 'morula stage' as part of cleavage","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000109","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000068","","http://purl.obolibrary.org/obo/UBERON_0000108","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000068","false","blastula stage","gitIssue502","UBERON:0000108","UBERON_0000108","blastula stage","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000109","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000109""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104"",""http://purl.obolibrary.org/obo/UBERON_0000068""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gastrula stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000108"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007369"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gastrula stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000110"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000108"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000108"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/GO_0007369"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007369"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000109""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007369"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrulation""},""curie"":{""type"":[""literal""],""value"":""GO:0007369""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000108"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blastula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000108""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000110"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neurula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000110""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/UBERON_0000108|http://purl.obolibrary.org/obo/GO_0007369|http://purl.obolibrary.org/obo/NCBITaxon_6072","","","","","http://purl.obolibrary.org/obo/UBERON_0000105||||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000110","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000068","","http://purl.obolibrary.org/obo/UBERON_0000109","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000068","false","gastrula stage","gitIssue502","UBERON:0000109","UBERON_0000109","gastrula stage","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000110","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000110"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000110""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104"",""http://purl.obolibrary.org/obo/UBERON_0000068""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""neurula stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001841"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""neurula stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000109"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/GO_0001841"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0001841"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000110""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gastrula stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0001841"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neural tube formation""},""curie"":{""type"":[""literal""],""value"":""GO:0001841""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/UBERON_0000109|http://purl.obolibrary.org/obo/GO_0001841|http://purl.obolibrary.org/obo/NCBITaxon_6072","","","","","http://purl.obolibrary.org/obo/UBERON_0000105||||","","true","","","","","","","","","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000068","","http://purl.obolibrary.org/obo/UBERON_0000110","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000068","false","neurula stage","gitIssue502","UBERON:0000110","UBERON_0000110","neurula stage","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000111","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000111""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000105"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",""http://purl.obolibrary.org/obo/UBERON_0000000"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/UBERON_0000104"",""http://purl.obolibrary.org/obo/UBERON_0000068""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""organogenesis stage""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000105"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048513"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""organogenesis stage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000062"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002496"",""value"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002496"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002082"",""value"":""http://purl.obolibrary.org/obo/GO_0048513"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002082"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0048513"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000111""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0016880"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""future nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0016880""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002496"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence starts during or after""},""curie"":{""type"":[""literal""],""value"":""RO:0002496""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fully formed stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000066""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0048513"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""animal organ development""},""curie"":{""type"":[""literal""],""value"":""GO:0048513""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""processual entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000105"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""life cycle stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000105""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/GO_0048513|http://purl.obolibrary.org/obo/NCBITaxon_6072","","","","","http://purl.obolibrary.org/obo/UBERON_0000105|||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000066|http://purl.obolibrary.org/obo/UBERON_0016880","0.0","http://purl.obolibrary.org/obo/UBERON_0000105","","","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000068","","http://purl.obolibrary.org/obo/UBERON_0000111","http://purl.obolibrary.org/obo/UBERON_0000105|http://purl.obolibrary.org/obo/UBERON_0000000|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/UBERON_0000104|http://purl.obolibrary.org/obo/UBERON_0000068","false","organogenesis stage","gitIssue502","UBERON:0000111","UBERON_0000111","organogenesis stage","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000463","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000463"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000463""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000465"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""organism substance""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0002198"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""organism substance""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0003000"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0003000"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000463"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000086"",""value"":""http://purl.obolibrary.org/obo/PATO_0002198"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0002198"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000463""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0002198"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality of a substance""},""curie"":{""type"":[""literal""],""value"":""PATO:0002198""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0003000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""produces"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0003000""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/PATO_0002198","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000465||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0002530","0.0","http://purl.obolibrary.org/obo/UBERON_0000465","","","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0000463","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061","false","organism substance","gitIssue502","UBERON:0000463","UBERON_0000463","organism substance","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000465","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000465"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""material anatomical entity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/UBERON_0000466"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""numDescendants"":38.0,""numHierarchicalDescendants"":38.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000465""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000466"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""immaterial anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000466""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","38.0","class|entity","","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/UBERON_0001062","","true","","","","","","","","","38.0","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/UBERON_0001062","","","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","http://purl.obolibrary.org/obo/UBERON_0000466","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/UBERON_0001062","","http://purl.obolibrary.org/obo/UBERON_0000465","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","material anatomical entity","gitIssue502","UBERON:0000465","UBERON_0000465","material anatomical entity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000466","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000466"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000466""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""immaterial anatomical entity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""immaterial anatomical entity""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000466""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/UBERON_0001062","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/UBERON_0001062","","","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/UBERON_0001062","","http://purl.obolibrary.org/obo/UBERON_0000466","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","immaterial anatomical entity","gitIssue502","UBERON:0000466","UBERON_0000466","immaterial anatomical entity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000467","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anatomical system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anatomical system""},""numDescendants"":3.0,""numHierarchicalDescendants"":12.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000467""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","12.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0000062","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000061||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000062","3.0","http://purl.obolibrary.org/obo/UBERON_0000061","","","http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000","false","anatomical system","gitIssue502","UBERON:0000467","UBERON_0000467","anatomical system","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000468","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0010000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0010000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""TODO - split body and mc organism? body continues after death stage""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multicellular organism""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0010000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""numDescendants"":2.0,""numHierarchicalDescendants"":20.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000463"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001048"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""TODO - split body and mc organism? body continues after death stage""},false],""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000468""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000463"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organism substance""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000463""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001048"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""primordium""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001048""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","20.0","class|entity","","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0010000","","true","TODO - split body and mc organism? body continues after death stage","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000463|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0001048","2.0","http://purl.obolibrary.org/obo/UBERON_0010000","","","http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0010000","","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","multicellular organism","gitIssue502","UBERON:0000468","UBERON_0000468","multicellular organism","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000474","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000474"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000474""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000990"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000990"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0003100""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000990"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0003100"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""female reproductive system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000990"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0003100"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""female reproductive system""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/MONDO_0002263"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000474"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0003100"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0003100"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000474""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""female reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002263""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0003100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""female organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0003100""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0003100","","","","","http://purl.obolibrary.org/obo/UBERON_0000990|","","true","","","","","","","","http://purl.obolibrary.org/obo/MONDO_0002263","0.0","http://purl.obolibrary.org/obo/UBERON_0000990","","","http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0003100","","http://purl.obolibrary.org/obo/UBERON_0000474","http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0003100","false","female reproductive system","gitIssue502","UBERON:0000474","UBERON_0000474","female reproductive system","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000922","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000922""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""embryo""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000468"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002489"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002493"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""embryo""},""numDescendants"":0.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002050"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0006598"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/RO_0002489"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002489"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002493"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002493"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000068"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000922""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0016880"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""future nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0016880""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002493"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends with""},""curie"":{""type"":[""literal""],""value"":""RO:0002493""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002489"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence starts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002489""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000068"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000068""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0006598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""presumptive structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0006598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002050""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000068|http://purl.obolibrary.org/obo/UBERON_0000068","","","","","http://purl.obolibrary.org/obo/UBERON_0000468||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0002050|http://purl.obolibrary.org/obo/UBERON_0006598|http://purl.obolibrary.org/obo/UBERON_0016880","0.0","http://purl.obolibrary.org/obo/UBERON_0000468","","","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0000922","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","embryo","gitIssue502","UBERON:0000922","UBERON_0000922","embryo","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000949","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0015204"",""http://purl.obolibrary.org/obo/UBERON_0015203"",""http://purl.obolibrary.org/obo/UBERON_0034923"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0015204"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0015204"",""http://purl.obolibrary.org/obo/UBERON_0015203"",""http://purl.obolibrary.org/obo/UBERON_0034923"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0015204"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""endocrine system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0015204"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/UBERON_0000990"",""http://purl.obolibrary.org/obo/UBERON_0001016""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""endocrine system""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/MONDO_0005151"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002473"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002492"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000949""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002492"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during""},""curie"":{""type"":[""literal""],""value"":""RO:0002492""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fully formed stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000066""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002473"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0034923"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disconnected anatomical group""},""curie"":{""type"":[""literal""],""value"":""UBERON:0034923""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0015204"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""glandular system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0015204""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005151"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005151""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0015203"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""non-connected functional system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0015203""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0000066","","","","","http://purl.obolibrary.org/obo/UBERON_0015204|||","","true","","","","","","","","http://purl.obolibrary.org/obo/MONDO_0005151|http://purl.obolibrary.org/obo/UBERON_0002368","0.0","http://purl.obolibrary.org/obo/UBERON_0015204","","","http://purl.obolibrary.org/obo/UBERON_0015204|http://purl.obolibrary.org/obo/UBERON_0015203|http://purl.obolibrary.org/obo/UBERON_0034923|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0001016","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0015204","","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0015204|http://purl.obolibrary.org/obo/UBERON_0015203|http://purl.obolibrary.org/obo/UBERON_0034923|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","endocrine system","gitIssue502","UBERON:0000949","UBERON_0000949","endocrine system","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000990","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""consider splitting genitalia from reproductive system""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""reproductive system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""reproductive system""},""numDescendants"":1.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/MONDO_0005039"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0003133"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0005156"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0005564"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002216"",""value"":""http://purl.obolibrary.org/obo/GO_0000003"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002492"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""consider splitting genitalia from reproductive system""},false],""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000990""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002492"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during""},""curie"":{""type"":[""literal""],""value"":""RO:0002492""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005156"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005156""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fully formed stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000066""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0003133"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0003133""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005039""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002216"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002216""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000991"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonad""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000991""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005564"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonad primordium""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005564""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000991|http://purl.obolibrary.org/obo/GO_0000003|http://purl.obolibrary.org/obo/UBERON_0000066","","","","","http://purl.obolibrary.org/obo/UBERON_0000467|||","","true","consider splitting genitalia from reproductive system","","","","","","","http://purl.obolibrary.org/obo/MONDO_0005039|http://purl.obolibrary.org/obo/UBERON_0000991|http://purl.obolibrary.org/obo/UBERON_0003133|http://purl.obolibrary.org/obo/UBERON_0005156|http://purl.obolibrary.org/obo/UBERON_0005564","1.0","http://purl.obolibrary.org/obo/UBERON_0000467","","","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","http://purl.obolibrary.org/obo/UBERON_0001016","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000467","","http://purl.obolibrary.org/obo/UBERON_0000990","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000","false","reproductive system","gitIssue502","UBERON:0000990","UBERON_0000990","reproductive system","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0000991","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000991""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0003133"",""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0005156""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0003133"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0003133"",""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0005156"",""http://purl.obolibrary.org/obo/UBERON_0000990""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0003133"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gonad""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0003133"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000586"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000067"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007276"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002202"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0005564"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gonad""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/MONDO_0002259"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002387"",""value"":""http://purl.obolibrary.org/obo/UBERON_0005564"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/CL_0000586"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000586"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000067"",""value"":""http://purl.obolibrary.org/obo/GO_0007276"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000067"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0007276"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002202"",""value"":""http://purl.obolibrary.org/obo/UBERON_0005564"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002202"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0005564"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000991""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/MONDO_0002259"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonadal disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0002259""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0007276"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gamete generation""},""curie"":{""type"":[""literal""],""value"":""GO:0007276""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005156"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005156""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0003133"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0003133""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000586"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""germ cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000586""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000067"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contains process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000067""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005564"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonad primordium""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005564""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/CL_0000586|http://purl.obolibrary.org/obo/GO_0007276|http://purl.obolibrary.org/obo/UBERON_0005564","","","","","http://purl.obolibrary.org/obo/UBERON_0003133||||","","true","","","","","","","","http://purl.obolibrary.org/obo/MONDO_0002259|http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0005564","0.0","http://purl.obolibrary.org/obo/UBERON_0003133","","","http://purl.obolibrary.org/obo/UBERON_0003133|http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0005156","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0003133|http://purl.obolibrary.org/obo/UBERON_0000990","","http://purl.obolibrary.org/obo/UBERON_0000991","http://purl.obolibrary.org/obo/UBERON_0003133|http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0005156|http://purl.obolibrary.org/obo/UBERON_0000990","false","gonad","gitIssue502","UBERON:0000991","UBERON_0000991","gonad","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0001016","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""nervous system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000540"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002162"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#complementOf"":""http://purl.obolibrary.org/obo/NCBITaxon_6040""},""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002202"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0050877"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0002319"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002495"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#disjointWith"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002162"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6040"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""nervous system""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/CL_0002319"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0004026"",""value"":""http://purl.obolibrary.org/obo/MONDO_0005071"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0004026"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002387"",""value"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/CL_0000540"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000540"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002202"",""value"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002202"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/GO_0050877"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0050877"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002473"",""value"":""http://purl.obolibrary.org/obo/CL_0002319"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0002319"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002492"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002492"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000066"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002495"",""value"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002495"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001016""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0016880"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""future nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0016880""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002495"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""immediate transformation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002495""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002492"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during""},""curie"":{""type"":[""literal""],""value"":""RO:0002492""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Porifera""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""fully formed stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000066""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0050877"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system process""},""curie"":{""type"":[""literal""],""value"":""GO:0050877""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0002319"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neural cell""},""curie"":{""type"":[""literal""],""value"":""CL:0002319""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has location""},""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002162"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002162""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002473"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000540"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""neuron""},""curie"":{""type"":[""literal""],""value"":""CL:0000540""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/MONDO_0005071"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system disorder""},""curie"":{""type"":[""literal""],""value"":""MONDO:0005071""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/CL_0000540|http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/UBERON_0016880|http://purl.obolibrary.org/obo/GO_0050877|http://purl.obolibrary.org/obo/CL_0002319|http://purl.obolibrary.org/obo/UBERON_0000066|http://purl.obolibrary.org/obo/UBERON_0016880","","","","","http://purl.obolibrary.org/obo/UBERON_0000467||||||||","","true","","","","","","","","http://purl.obolibrary.org/obo/CL_0002319|http://purl.obolibrary.org/obo/MONDO_0005071|http://purl.obolibrary.org/obo/UBERON_0016880","0.0","http://purl.obolibrary.org/obo/UBERON_0000467","","","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000467","","http://purl.obolibrary.org/obo/UBERON_0001016","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000","false","nervous system","gitIssue502","UBERON:0001016","UBERON_0001016","nervous system","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0001048","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001048"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001048""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0005423"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0005423"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""primordium""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0005423"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""primordium""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001048""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developing anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000468","","","","","http://purl.obolibrary.org/obo/UBERON_0005423|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/UBERON_0005423","","","http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0001048","http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061","false","primordium","gitIssue502","UBERON:0001048","UBERON_0001048","primordium","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0001062","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001062"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anatomical entity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000004"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""numDescendants"":42.0,""numHierarchicalDescendants"":42.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001062""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","42.0","class|entity","","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/BFO_0000004","","true","","","","","","","","","42.0","http://purl.obolibrary.org/obo/BFO_0000004","","","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/BFO_0000004","","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002","false","anatomical entity","gitIssue502","UBERON:0001062","UBERON_0001062","anatomical entity","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0002050","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002050"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002050""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0005423"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000922"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0005423"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""embryonic structure""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0005423"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""embryonic structure""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002050""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000922"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000922""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developing anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000922","","","","","http://purl.obolibrary.org/obo/UBERON_0005423|","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/UBERON_0005423","","","http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000922","","http://purl.obolibrary.org/obo/UBERON_0002050","http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000922|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061","false","embryonic structure","gitIssue502","UBERON:0002050","UBERON_0002050","embryonic structure","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0002368","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0000949"",""http://purl.obolibrary.org/obo/UBERON_0015204"",""http://purl.obolibrary.org/obo/UBERON_0015203"",""http://purl.obolibrary.org/obo/UBERON_0034923""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0002530"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""endocrine gland""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0002530"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0046879"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002473"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/GO_0046879"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0046879"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002368""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002473"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0034923"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disconnected anatomical group""},""curie"":{""type"":[""literal""],""value"":""UBERON:0034923""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0015204"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""glandular system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0015204""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0015203"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""non-connected functional system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0015203""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0046879"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hormone secretion""},""curie"":{""type"":[""literal""],""value"":""GO:0046879""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/GO_0046879","","","","","http://purl.obolibrary.org/obo/UBERON_0002530||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000949","0.0","http://purl.obolibrary.org/obo/UBERON_0002530","","","http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000949","","http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0015204|http://purl.obolibrary.org/obo/UBERON_0015203|http://purl.obolibrary.org/obo/UBERON_0034923","false","endocrine gland","gitIssue502","UBERON:0002368","UBERON_0002368","endocrine gland","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0002530","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gland""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000062"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0046903"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0003000"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000463"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gland""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002473"",""value"":""http://purl.obolibrary.org/obo/UBERON_0015204"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/RO_0002160"",""value"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002160"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/NCBITaxon_6072"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/GO_0046903"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0046903"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0003000"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000463"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0003000"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000463"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002530""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000062""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000463"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organism substance""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000463""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002160"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""only in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002473"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0003000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""produces"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0003000""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/GO_0046903"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""secretion""},""curie"":{""type"":[""literal""],""value"":""GO:0046903""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0015204"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""glandular system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0015204""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_6072"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Eumetazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:6072""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/NCBITaxon_6072|http://purl.obolibrary.org/obo/GO_0046903|http://purl.obolibrary.org/obo/UBERON_0000463","","","","","http://purl.obolibrary.org/obo/UBERON_0000062|||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0015204","1.0","http://purl.obolibrary.org/obo/UBERON_0000062","","","http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000062","","http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468","false","gland","gitIssue502","UBERON:0002530","UBERON_0002530","gland","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0003100","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0003100"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0003100""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""female organism""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""female organism""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000474"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0003100"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0003100""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000474"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""female reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000474""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/UBERON_0000468","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000474","0.0","http://purl.obolibrary.org/obo/UBERON_0000468","","","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0003100","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","female organism","gitIssue502","UBERON:0003100","UBERON_0003100","female organism","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0003133","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0003133"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0003133""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0005156""],""directParent"":[""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0005156""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0005156"",""http://purl.obolibrary.org/obo/UBERON_0000990""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0005156"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""reproductive organ""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000062"",""http://purl.obolibrary.org/obo/UBERON_0005156"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""reproductive organ""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002216"",""value"":""http://purl.obolibrary.org/obo/GO_0000003"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002216"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0000003"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0003133""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/GO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproduction""},""curie"":{""type"":[""literal""],""value"":""GO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005156"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005156""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002216"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002216""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/GO_0000003","","","","","http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0005156||","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0005156","","","http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0005156","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0005156|http://purl.obolibrary.org/obo/UBERON_0000990","","http://purl.obolibrary.org/obo/UBERON_0003133","http://purl.obolibrary.org/obo/UBERON_0000062|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0005156|http://purl.obolibrary.org/obo/UBERON_0000990","false","reproductive organ","gitIssue502","UBERON:0003133","UBERON_0003133","reproductive organ","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0005156","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0005156"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0005156""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0010000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000990"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""reproductive structure""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0010000"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""reproductive structure""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0005156""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000990","","","","","http://purl.obolibrary.org/obo/UBERON_0010000|","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/UBERON_0010000","","","http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000990","","http://purl.obolibrary.org/obo/UBERON_0005156","http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468","false","reproductive structure","gitIssue502","UBERON:0005156","UBERON_0005156","reproductive structure","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0005423","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0005423"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0005423""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000465"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000465"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""developing anatomical structure""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032502"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""developing anatomical structure""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002215"",""value"":""http://purl.obolibrary.org/obo/GO_0032502"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0032502"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0005423""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0032502"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developmental process""},""curie"":{""type"":[""literal""],""value"":""GO:0032502""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","http://purl.obolibrary.org/obo/GO_0032502","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000465|","","true","","","","","","","","","5.0","http://purl.obolibrary.org/obo/UBERON_0000465","","","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000465","","http://purl.obolibrary.org/obo/UBERON_0005423","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","developing anatomical structure","gitIssue502","UBERON:0005423","UBERON_0005423","developing anatomical structure","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0005564","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0005564"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0005564""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001048"",""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0001048"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001048"",""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000990"",""http://purl.obolibrary.org/obo/UBERON_0000467""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0001048"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gonad primordium""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0001048"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gonad primordium""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002202"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002202"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0005564"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000990"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002387"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000991"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0005564""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developing anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001048"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""primordium""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001048""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000990"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""reproductive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000990""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000991"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gonad""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000991""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0000991","","","","","http://purl.obolibrary.org/obo/UBERON_0001048||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000991","0.0","http://purl.obolibrary.org/obo/UBERON_0001048","","","http://purl.obolibrary.org/obo/UBERON_0001048|http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0001048|http://purl.obolibrary.org/obo/UBERON_0000990","","http://purl.obolibrary.org/obo/UBERON_0005564","http://purl.obolibrary.org/obo/UBERON_0001048|http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000990|http://purl.obolibrary.org/obo/UBERON_0000467","false","gonad primordium","gitIssue502","UBERON:0005564","UBERON_0005564","gonad primordium","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0006598","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0006598"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0006598""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0002050"",""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0002050"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0002050"",""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000922"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0002050"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""Consider merging with anlage""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""presumptive structure""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0002050"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""presumptive structure""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002387"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Consider merging with anlage""},false],""shortForm"":{""type"":[""literal""],""value"":""UBERON_0006598""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000922"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000922""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developing anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002050""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000922|http://purl.obolibrary.org/obo/UBERON_0000061","","","","","http://purl.obolibrary.org/obo/UBERON_0002050||","","true","Consider merging with anlage","","","","","","","","1.0","http://purl.obolibrary.org/obo/UBERON_0002050","","","http://purl.obolibrary.org/obo/UBERON_0002050|http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0002050|http://purl.obolibrary.org/obo/UBERON_0000922","","http://purl.obolibrary.org/obo/UBERON_0006598","http://purl.obolibrary.org/obo/UBERON_0002050|http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000922|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061","false","presumptive structure","gitIssue502","UBERON:0006598","UBERON_0006598","presumptive structure","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0006984","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0006984"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0006984""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0010199"",""http://purl.obolibrary.org/obo/UBERON_0000466"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0010199"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0010199"",""http://purl.obolibrary.org/obo/UBERON_0000466"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0010199"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anatomical surface""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0010199"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anatomical surface""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/RO_0002002"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000062"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002002"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0006984"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0006984""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organ""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000062""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000466"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""immaterial anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000466""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has 2D boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002002""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010199"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""bona-fide anatomical boundary""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010199""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","","http://purl.obolibrary.org/obo/UBERON_0010199","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0000062","0.0","http://purl.obolibrary.org/obo/UBERON_0010199","","","http://purl.obolibrary.org/obo/UBERON_0010199|http://purl.obolibrary.org/obo/UBERON_0000466|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0010199","","http://purl.obolibrary.org/obo/UBERON_0006984","http://purl.obolibrary.org/obo/UBERON_0010199|http://purl.obolibrary.org/obo/UBERON_0000466|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","anatomical surface","gitIssue502","UBERON:0006984","UBERON_0006984","anatomical surface","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0010000","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0010000"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000061"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000000"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0001993"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""numDescendants"":9.0,""numHierarchicalDescendants"":21.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/CL_0000000"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/CL_0000000"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000086"",""value"":""http://purl.obolibrary.org/obo/PATO_0001993"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0001993"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0010000""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/PATO_0001993"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular""},""curie"":{""type"":[""literal""],""value"":""PATO:0001993""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","21.0","class|entity","http://purl.obolibrary.org/obo/CL_0000000|http://purl.obolibrary.org/obo/PATO_0001993","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000061||","","true","","","","","","","","","9.0","http://purl.obolibrary.org/obo/UBERON_0000061","","","http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000061","","http://purl.obolibrary.org/obo/UBERON_0010000","http://purl.obolibrary.org/obo/UBERON_0000061|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","multicellular anatomical structure","gitIssue502","UBERON:0010000","UBERON_0010000","multicellular anatomical structure","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0010199","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0010199"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0010199""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000466"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000466"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000466"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000466"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""bona-fide anatomical boundary""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0000466"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""bona-fide anatomical boundary""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0010199""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000466"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""immaterial anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000466""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","","http://purl.obolibrary.org/obo/UBERON_0000466","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/UBERON_0000466","","","http://purl.obolibrary.org/obo/UBERON_0000466|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000466","","http://purl.obolibrary.org/obo/UBERON_0010199","http://purl.obolibrary.org/obo/UBERON_0000466|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","bona-fide anatomical boundary","gitIssue502","UBERON:0010199","UBERON_0010199","bona-fide anatomical boundary","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0015203","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0015203"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0015203""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0034923"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0034923"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0034923"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0034923"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""non-connected functional system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0034923"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""non-connected functional system""},""numDescendants"":2.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0015203""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0034923"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disconnected anatomical group""},""curie"":{""type"":[""literal""],""value"":""UBERON:0034923""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","","http://purl.obolibrary.org/obo/UBERON_0034923","","true","","","","","","","","","2.0","http://purl.obolibrary.org/obo/UBERON_0034923","","","http://purl.obolibrary.org/obo/UBERON_0034923|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0034923","","http://purl.obolibrary.org/obo/UBERON_0015203","http://purl.obolibrary.org/obo/UBERON_0034923|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","non-connected functional system","gitIssue502","UBERON:0015203","UBERON_0015203","non-connected functional system","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0015204","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0015204"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0015204""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0015203"",""http://purl.obolibrary.org/obo/UBERON_0034923"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0015203"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0015203"",""http://purl.obolibrary.org/obo/UBERON_0034923"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0015203"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""glandular system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0015203"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""glandular system""},""numDescendants"":1.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/RO_0002473"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0015204""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002473"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0034923"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disconnected anatomical group""},""curie"":{""type"":[""literal""],""value"":""UBERON:0034923""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0015203"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""non-connected functional system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0015203""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0002530","","","","","http://purl.obolibrary.org/obo/UBERON_0015203|","","true","","","","","","","","","1.0","http://purl.obolibrary.org/obo/UBERON_0015203","","","http://purl.obolibrary.org/obo/UBERON_0015203|http://purl.obolibrary.org/obo/UBERON_0034923|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0015203","","http://purl.obolibrary.org/obo/UBERON_0015204","http://purl.obolibrary.org/obo/UBERON_0015203|http://purl.obolibrary.org/obo/UBERON_0034923|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","glandular system","gitIssue502","UBERON:0015204","UBERON_0015204","glandular system","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0016880","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0016880""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0006598"",""http://purl.obolibrary.org/obo/UBERON_0002050"",""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0006598"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0006598"",""http://purl.obolibrary.org/obo/UBERON_0002050"",""http://purl.obolibrary.org/obo/UBERON_0005423"",""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://purl.obolibrary.org/obo/UBERON_0000922"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0010000"",""http://purl.obolibrary.org/obo/UBERON_0000061""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0006598"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""future nervous system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0006598"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002496"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""future nervous system""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0002202"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002202"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002495"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002495"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0016880"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000922"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002387"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002387"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001016"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002496"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002496"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000111"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0016880""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002495"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""immediate transformation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002495""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002496"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence starts during or after""},""curie"":{""type"":[""literal""],""value"":""RO:0002496""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000922"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryo""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000922""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0005423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""developing anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0005423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0006598"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""presumptive structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0006598""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""nervous system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""embryonic structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002050""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""organogenesis stage""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000111""},""type"":[""class"",""entity""]}}}","false","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000922|http://purl.obolibrary.org/obo/UBERON_0001016|http://purl.obolibrary.org/obo/UBERON_0000111","","","","","http://purl.obolibrary.org/obo/UBERON_0006598|||","","true","","","","","","","","http://purl.obolibrary.org/obo/UBERON_0001016|http://purl.obolibrary.org/obo/UBERON_0001016","0.0","http://purl.obolibrary.org/obo/UBERON_0006598","","","http://purl.obolibrary.org/obo/UBERON_0006598|http://purl.obolibrary.org/obo/UBERON_0002050|http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0006598|http://purl.obolibrary.org/obo/UBERON_0000922","","http://purl.obolibrary.org/obo/UBERON_0016880","http://purl.obolibrary.org/obo/UBERON_0006598|http://purl.obolibrary.org/obo/UBERON_0002050|http://purl.obolibrary.org/obo/UBERON_0005423|http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062|http://purl.obolibrary.org/obo/UBERON_0000922|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0010000|http://purl.obolibrary.org/obo/UBERON_0000061","false","future nervous system","gitIssue502","UBERON:0016880","UBERON_0016880","future nervous system","gitissue502" +"gitissue502+class+http://purl.obolibrary.org/obo/UBERON_0034923","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0034923"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0034923""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000465"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/UBERON_0001062""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000465"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/RO_0002175"":[""http://purl.obolibrary.org/obo/NCBITaxon_33090"",""http://purl.obolibrary.org/obo/NCBITaxon_33208"",""http://purl.obolibrary.org/obo/NCBITaxon_4751""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disconnected anatomical group""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0010001"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#minQualifiedCardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""2""},""http://www.w3.org/2002/07/owl#onClass"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002180"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disconnected anatomical group""},""numDescendants"":3.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/RO_0000086"",""value"":""http://purl.obolibrary.org/obo/PATO_0010001"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000086"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0010001"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0002473"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0002473"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000061"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0034923""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/NCBITaxon_33090"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d33090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:33090""},""http://purl.obolibrary.org/obo/RO_0002175"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000061"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000061""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0010001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disconnected""},""curie"":{""type"":[""literal""],""value"":""PATO:0010001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_33208"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Metazoa""},""curie"":{""type"":[""literal""],""value"":""NCBITaxon:33208""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/NCBITaxon_4751"":{""url"":""http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id\u003d4751"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ncbitaxon:4751""},""http://purl.obolibrary.org/obo/RO_0002473"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002180""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","http://purl.obolibrary.org/obo/PATO_0010001|http://purl.obolibrary.org/obo/UBERON_0000061","http://purl.obolibrary.org/obo/NCBITaxon_33090|http://purl.obolibrary.org/obo/NCBITaxon_33208|http://purl.obolibrary.org/obo/NCBITaxon_4751","","","","http://purl.obolibrary.org/obo/UBERON_0000465|||","","true","","","","","","","","","3.0","http://purl.obolibrary.org/obo/UBERON_0000465","","","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","","","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","false","","","http://purl.obolibrary.org/obo/mondo.owl","http://purl.obolibrary.org/obo/UBERON_0000465","","http://purl.obolibrary.org/obo/UBERON_0034923","http://purl.obolibrary.org/obo/UBERON_0000465|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/UBERON_0001062","false","disconnected anatomical group","gitIssue502","UBERON:0034923","UBERON_0034923","disconnected anatomical group","gitissue502" diff --git a/testcases_expected_output/annotation-properties/gitIssue502/gitissue502_ontologies.csv b/testcases_expected_output/annotation-properties/gitIssue502/gitissue502_ontologies.csv index 1dd7712b0..5f915f0a5 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/gitissue502_ontologies.csv +++ b/testcases_expected_output/annotation-properties/gitIssue502/gitissue502_ontologies.csv @@ -1,2 +1,2 @@ "id:ID",":LABEL","_json","iri","numberOfIndividuals:string[]","linkedEntities:string[]","ontology_purl:string[]","numDescendants:string[]","numberOfProperties:string[]","numberOfClasses:string[]","language:string[]","numHierarchicalDescendants:string[]","isObsolete:string[]","importsFrom:string[]","type:string[]","preferredPrefix:string[]","directAncestor:string[]","exportsTo:string[]","imported:string[]","numberOfEntities:string[]","ontologyId:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"gitissue502+ontology+http://purl.obolibrary.org/obo/mondo.owl","Ontology","{""ontologyId"":""gitissue502"",""importsFrom"":[""skos"",""rdfs""],""exportsTo"":[],""iri"":""http://purl.obolibrary.org/obo/mondo.owl"",""preferredPrefix"":""gitIssue502"",""ontology_purl"":""./testcases/annotation-properties/gitIssue502.owl"",""type"":[""ontology""],""directAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Ontology"",""imported"":false,""isObsolete"":false,""language"":{""type"":[""literal""],""value"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""numberOfClasses"":{""type"":[""literal""],""value"":""249""},""numberOfEntities"":{""type"":[""literal""],""value"":""412""},""numberOfIndividuals"":{""type"":[""literal""],""value"":""0""},""numberOfProperties"":{""type"":[""literal""],""value"":""163""},""searchableAnnotationValues"":[false,{""type"":[""literal""],""value"":""en""},{""type"":[""literal""],""value"":""249""},{""type"":[""literal""],""value"":""412""},{""type"":[""literal""],""value"":""0""},{""type"":[""literal""],""value"":""163""}],""linkedEntities"":{}}","http://purl.obolibrary.org/obo/mondo.owl","0","","./testcases/annotation-properties/gitIssue502.owl","0.0","163","249","en","0.0","false","skos|rdfs","ontology","gitIssue502","","","false","412","gitissue502","http://www.w3.org/2002/07/owl#Ontology" +"gitissue502+ontology+http://purl.obolibrary.org/obo/mondo.owl","Ontology","{""ontologyId"":""gitissue502"",""importsFrom"":[""oio"",""skos"",""rdfs""],""exportsTo"":[],""iri"":""http://purl.obolibrary.org/obo/mondo.owl"",""preferredPrefix"":""gitIssue502"",""ontology_purl"":""./testcases/annotation-properties/gitIssue502.owl"",""type"":[""ontology""],""directAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Ontology"",""imported"":false,""isObsolete"":false,""language"":{""type"":[""literal""],""value"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""numberOfClasses"":{""type"":[""literal""],""value"":""249""},""numberOfEntities"":{""type"":[""literal""],""value"":""412""},""numberOfIndividuals"":{""type"":[""literal""],""value"":""0""},""numberOfProperties"":{""type"":[""literal""],""value"":""163""},""searchableAnnotationValues"":[false,{""type"":[""literal""],""value"":""en""},{""type"":[""literal""],""value"":""249""},{""type"":[""literal""],""value"":""412""},{""type"":[""literal""],""value"":""0""},{""type"":[""literal""],""value"":""163""}],""linkedEntities"":{}}","http://purl.obolibrary.org/obo/mondo.owl","0","","./testcases/annotation-properties/gitIssue502.owl","0.0","163","249","en","0.0","false","oio|skos|rdfs","ontology","gitIssue502","","","false","412","gitissue502","http://www.w3.org/2002/07/owl#Ontology" diff --git a/testcases_expected_output/annotation-properties/gitIssue502/gitissue502_properties.csv b/testcases_expected_output/annotation-properties/gitIssue502/gitissue502_properties.csv index 5314c8747..5d1b094d7 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/gitissue502_properties.csv +++ b/testcases_expected_output/annotation-properties/gitIssue502/gitissue502_properties.csv @@ -1,178 +1,178 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","http__//www.geneontology.org/formats/oboInOwl#hasDbXref:string[]","numHierarchicalDescendants:string[]","type:string[]","http__//www.w3.org/2002/07/owl#inverseOf:string[]","http__//www.geneontology.org/formats/oboInOwl#id:string[]","http__//www.geneontology.org/formats/oboInOwl#shorthand:string[]","definitionProperty:string[]","hasDirectParents:string[]","imported:string[]","http__//www.w3.org/2000/01/rdf-schema#comment:string[]","http__//purl.obolibrary.org/obo/IAO_0000116:string[]","definition:string[]","ontologyIri:string[]","http__//purl.obolibrary.org/obo/IAO_0000115:string[]","http__//www.w3.org/2000/01/rdf-schema#range:string[]","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf:string[]","iri","numDescendants:string[]","isObsolete:string[]","label:string[]","http__//www.w3.org/2000/01/rdf-schema#domain:string[]","directParent:string[]","http__//www.w3.org/2002/07/owl#propertyChainAxiom:string[]","ontologyPreferredPrefix:string[]","directAncestor:string[]","curie:string[]","shortForm:string[]","definedBy:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000050","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000050"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002131"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002131"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002131"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000050""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""BFO:0000050"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000050"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000050""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000051","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.|Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/|Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.) +"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000050","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000050"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002131"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002131"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002131"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000050""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000051","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.|Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/|Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.) A continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'.","a core relation that holds between a part and its whole","http://purl.obolibrary.org/obo/mondo.owl","a core relation that holds between a part and its whole","","http://purl.obolibrary.org/obo/RO_0002131","http://purl.obolibrary.org/obo/BFO_0000050","2.0","false","part of","","http://purl.obolibrary.org/obo/RO_0002131","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002131","BFO:0000050","BFO_0000050","","part of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000051","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000051"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a whole and its part"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002131"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002131"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a whole and its part"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use \u0027participates in\u0027. An occurrent cannot have a continuant as part: use \u0027has participant\u0027. An immaterial entity cannot have a material entity as part: use \u0027location of\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \u0027bearer of\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \u0027inheres in\u0027."",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002131"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000050"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""numDescendants"":10.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a whole and its part"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use \u0027participates in\u0027. An occurrent cannot have a continuant as part: use \u0027has participant\u0027. An immaterial entity cannot have a material entity as part: use \u0027location of\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \u0027bearer of\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \u0027inheres in\u0027."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000051""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000051"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000051"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000051""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000050","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.|Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/|Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.) +"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000051","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000051"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a whole and its part"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002131"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002131"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a whole and its part"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use \u0027participates in\u0027. An occurrent cannot have a continuant as part: use \u0027has participant\u0027. An immaterial entity cannot have a material entity as part: use \u0027location of\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \u0027bearer of\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \u0027inheres in\u0027."",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002131"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000050"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""numDescendants"":10.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a whole and its part"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use \u0027participates in\u0027. An occurrent cannot have a continuant as part: use \u0027has participant\u0027. An immaterial entity cannot have a material entity as part: use \u0027location of\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \u0027bearer of\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \u0027inheres in\u0027."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000051""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000050","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.|Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/|Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.) A continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'.","a core relation that holds between a whole and its part","http://purl.obolibrary.org/obo/mondo.owl","a core relation that holds between a whole and its part","","http://purl.obolibrary.org/obo/RO_0002131","http://purl.obolibrary.org/obo/BFO_0000051","10.0","false","has part","","http://purl.obolibrary.org/obo/RO_0002131","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002131","BFO:0000051","BFO_0000051","","has part","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000062","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000062"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \u003c\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002086"",""http://purl.obolibrary.org/obo/RO_0002222""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002086"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \u003c\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002086"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/BFO_0000062""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \u003c\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000062""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""BFO:0000062"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000062"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000062""},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends after"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002086""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000063","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other.","x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) <= α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http://purl.obolibrary.org/obo/mondo.owl","x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) <= α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/RO_0002086","http://purl.obolibrary.org/obo/BFO_0000062","3.0","false","preceded by","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/RO_0002086","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/BFO_0000062","gitIssue502","http://purl.obolibrary.org/obo/RO_0002086|http://purl.obolibrary.org/obo/RO_0002222","BFO:0000062","BFO_0000062","","preceded by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000063","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000063"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \u003c\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002222"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002222"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \u003c\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002222"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/BFO_0000063""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""numDescendants"":15.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \u003c\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000063""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""BFO:0000063"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000063"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000063""},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000062","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) <= α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http://purl.obolibrary.org/obo/mondo.owl","x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) <= α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/BFO_0000063","15.0","false","precedes","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/BFO_0000063","gitIssue502","http://purl.obolibrary.org/obo/RO_0002222","BFO:0000063","BFO_0000063","","precedes","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000066","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000066"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000066""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000067"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/BFO_0000066""],[""http://purl.obolibrary.org/obo/BFO_0000066"",""http://purl.obolibrary.org/obo/BFO_0000050""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000066""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000067"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contains process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000067""},""type"":[""property"",""objectProperty"",""entity""]},""BFO:0000066"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000066"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000066""}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000067","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t","http://purl.obolibrary.org/obo/mondo.owl","b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t","http://purl.obolibrary.org/obo/BFO_0000004","","http://purl.obolibrary.org/obo/BFO_0000066","0.0","false","occurs in","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/BFO_0000066|http://purl.obolibrary.org/obo/BFO_0000066|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","","BFO:0000066","BFO_0000066","","occurs in","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000067","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000067"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000067""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contains process"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000066"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contains process"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000067""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000066""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""BFO:0000067"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000067"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000067""}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000066","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","[copied from inverse property 'occurs in'] b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t","http://purl.obolibrary.org/obo/mondo.owl","[copied from inverse property 'occurs in'] b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t","","","http://purl.obolibrary.org/obo/BFO_0000067","0.0","false","contains process","","","","gitIssue502","","BFO:0000067","BFO_0000067","","contains process","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/IAO_0000115","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000115"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000115""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""IAO:0000115"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000115"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000115""}}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000115","0.0","false","IAO_0000115","","","","gitIssue502","","IAO:0000115","IAO_0000115","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/IAO_0000116","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000116"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000116""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""IAO:0000116"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000116"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000116""}}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000116","0.0","false","IAO_0000116","","","","gitIssue502","","IAO:0000116","IAO_0000116","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/IAO_0000233","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000233"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000233""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""IAO:0000233"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000233"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000233""}}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000233","0.0","false","IAO_0000233","","","","gitIssue502","","IAO:0000233","IAO_0000233","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/IAO_0006012","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0006012"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0006012""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0006012""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0006012""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""IAO:0006012"":{""url"":""http://purl.obolibrary.org/obo/IAO_0006012"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0006012""}}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://purl.obolibrary.org/obo/IAO_0006012","0.0","false","IAO_0006012","","","","gitIssue502","","IAO:0006012","IAO_0006012","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000052","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000052"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000052""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0000052"":{""url"":""http://purl.obolibrary.org/obo/RO_0000052"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000052""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000053","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","http://purl.obolibrary.org/obo/mondo.owl","a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","","","http://purl.obolibrary.org/obo/RO_0000052","4.0","false","characteristic of","","","","gitIssue502","","RO:0000052","RO_0000052","","characteristic of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#FunctionalProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000053","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000053"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of characteristic_of"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of characteristic_of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist."",""lang"":""en""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""RO:0000053""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""has_characteristic""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""has_characteristic""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#InverseFunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000020"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of characteristic_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist."",""lang"":""en""},{""type"":[""literal""],""value"":""RO:0000053""},{""type"":[""literal""],""value"":""has_characteristic""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000053""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0000053"":{""url"":""http://purl.obolibrary.org/obo/RO_0000053"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000053""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","RO:0000053","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000052","has_characteristic","has_characteristic","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.","Inverse of characteristic_of","http://purl.obolibrary.org/obo/mondo.owl","Inverse of characteristic_of","http://purl.obolibrary.org/obo/BFO_0000020","","http://purl.obolibrary.org/obo/RO_0000053","4.0","false","has characteristic|has characteristic","","","","gitIssue502","","RO:0000053","RO_0000053","","has characteristic|has characteristic","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#InverseFunctionalProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000056","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000056"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000056""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a continuant and a process, in which the continuant is somehow involved in the process"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a continuant and a process, in which the continuant is somehow involved in the process"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000057"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a continuant and a process, in which the continuant is somehow involved in the process"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000056""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""RO:0000056"":{""url"":""http://purl.obolibrary.org/obo/RO_0000056"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000056""},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000057","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","a relation between a continuant and a process, in which the continuant is somehow involved in the process","http://purl.obolibrary.org/obo/mondo.owl","a relation between a continuant and a process, in which the continuant is somehow involved in the process","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/RO_0000056","2.0","false","participates in","http://purl.obolibrary.org/obo/BFO_0000002","","","gitIssue502","","RO:0000056","RO_0000056","","participates in","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000057","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000057"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a process and a continuant, in which the continuant is somehow involved in the process"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a process and a continuant, in which the continuant is somehow involved in the process"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000056"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0000057""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a process and a continuant, in which the continuant is somehow involved in the process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000057""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000056"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000056""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0000057"":{""url"":""http://purl.obolibrary.org/obo/RO_0000057"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000057""},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000056","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.","a relation between a process and a continuant, in which the continuant is somehow involved in the process","http://purl.obolibrary.org/obo/mondo.owl","a relation between a process and a continuant, in which the continuant is somehow involved in the process","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/RO_0000057","2.0","false","has participant","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0000057","gitIssue502","","RO:0000057","RO_0000057","","has participant","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000079","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000079"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000079""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000052"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000052"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000034"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000085"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000079""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0000079"":{""url"":""http://purl.obolibrary.org/obo/RO_0000079"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000079""},""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000034"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000034""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000085"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has function"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000085""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000085","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.","a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/mondo.owl","a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","","http://purl.obolibrary.org/obo/RO_0000052","http://purl.obolibrary.org/obo/RO_0000079","0.0","false","function of","http://purl.obolibrary.org/obo/BFO_0000034","http://purl.obolibrary.org/obo/RO_0000052","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000052","RO:0000079","RO_0000079","","function of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000080","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000080"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000080""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000052"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000052"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A quality inheres in its bearer at all times for which the quality exists."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000086"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A quality inheres in its bearer at all times for which the quality exists."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000080""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0000080"":{""url"":""http://purl.obolibrary.org/obo/RO_0000080"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000080""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000086","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","A quality inheres in its bearer at all times for which the quality exists.","a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/mondo.owl","a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","","http://purl.obolibrary.org/obo/RO_0000052","http://purl.obolibrary.org/obo/RO_0000080","0.0","false","quality of","","http://purl.obolibrary.org/obo/RO_0000052","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000052","RO:0000080","RO_0000080","","quality of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000081","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000081"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000081""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000052"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000052"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000087"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000081""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0000081"":{""url"":""http://purl.obolibrary.org/obo/RO_0000081"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000081""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000087"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has role"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000087""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000087","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.","a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/mondo.owl","a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","","http://purl.obolibrary.org/obo/RO_0000052","http://purl.obolibrary.org/obo/RO_0000081","0.0","false","role of","","http://purl.obolibrary.org/obo/RO_0000052","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000052","RO:0000081","RO_0000081","","role of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000085","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000085"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000085""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000053"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000053"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has function"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000034"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000079"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has function"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000085""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0000085"":{""url"":""http://purl.obolibrary.org/obo/RO_0000085"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000085""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000034"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000034""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000079"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000079""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000079","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.","a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/mondo.owl","a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/BFO_0000034","http://purl.obolibrary.org/obo/RO_0000053","http://purl.obolibrary.org/obo/RO_0000085","0.0","false","has function","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/RO_0000053","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000053","RO:0000085","RO_0000085","","has function","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000086","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000086"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000053"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000053"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000019"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000080"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000086""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""RO:0000086"":{""url"":""http://purl.obolibrary.org/obo/RO_0000086"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000086""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000080"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000080""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000080","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.","a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/mondo.owl","a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/RO_0000053","http://purl.obolibrary.org/obo/RO_0000086","0.0","false","has quality","","http://purl.obolibrary.org/obo/RO_0000053","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000053","RO:0000086","RO_0000086","","has quality","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000087","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000087"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000087""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000053"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000053"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has role"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000023"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000081"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has role"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000087""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0000087"":{""url"":""http://purl.obolibrary.org/obo/RO_0000087"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000087""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000081"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000081""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000023""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000081","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.","a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/mondo.owl","a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/BFO_0000023","http://purl.obolibrary.org/obo/RO_0000053","http://purl.obolibrary.org/obo/RO_0000087","0.0","false","has role","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/RO_0000053","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000053","RO:0000087","RO_0000087","","has role","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000091","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000091"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000091""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000053"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000053"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has disposition"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000016"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000092"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has disposition"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000091""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000092""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""RO:0000091"":{""url"":""http://purl.obolibrary.org/obo/RO_0000091"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000091""}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000092","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/mondo.owl","a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/RO_0000053","http://purl.obolibrary.org/obo/RO_0000091","0.0","false","has disposition","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/RO_0000053","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000053","RO:0000091","RO_0000091","","has disposition","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000092","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000092"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000092""},""definition"":{""type"":[""literal""],""value"":""inverse of has disposition""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000052"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000052"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of has disposition""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000091"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of has disposition""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000092""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0000091"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000091""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""RO:0000092"":{""url"":""http://purl.obolibrary.org/obo/RO_0000092"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000092""}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000091","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of has disposition","http://purl.obolibrary.org/obo/mondo.owl","inverse of has disposition","","http://purl.obolibrary.org/obo/RO_0000052","http://purl.obolibrary.org/obo/RO_0000092","0.0","false","disposition of","","http://purl.obolibrary.org/obo/RO_0000052","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000052","RO:0000092","RO_0000092","","disposition of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002000","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002000"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002000""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2D boundary of"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002002"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2D boundary of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002000""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002000"":{""url"":""http://purl.obolibrary.org/obo/RO_0002000"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002000""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has 2D boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002002""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002002","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.|Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.","a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","http://purl.obolibrary.org/obo/mondo.owl","a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","","","http://purl.obolibrary.org/obo/RO_0002000","0.0","false","2D boundary of","","","","gitIssue502","","RO:0002000","RO_0002000","","2D boundary of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002002","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002002"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002002""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has 2D boundary"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000141"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has 2D boundary"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002002""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2D boundary of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002000""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""RO:0002002"":{""url"":""http://purl.obolibrary.org/obo/RO_0002002"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002002""},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002000","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.|Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.","a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","http://purl.obolibrary.org/obo/mondo.owl","a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","http://purl.obolibrary.org/obo/BFO_0000141","","http://purl.obolibrary.org/obo/RO_0002002","0.0","false","has 2D boundary","http://purl.obolibrary.org/obo/BFO_0000040","","","gitIssue502","","RO:0002002","RO_0002002","","has 2D boundary","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002013","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002013"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002013""},""definition"":{""type"":[""literal""],""value"":""A \u0027has regulatory component activity\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002017"",""http://purl.obolibrary.org/obo/RO_0002018"",""http://purl.obolibrary.org/obo/RO_0002180"",""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131"",""http://purl.obolibrary.org/obo/RO_0002334"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002017"",""http://purl.obolibrary.org/obo/RO_0002334""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A \u0027has regulatory component activity\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has regulatory component activity""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002017"",""http://purl.obolibrary.org/obo/RO_0002334""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has regulatory component activity""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A \u0027has regulatory component activity\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002013""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002180""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002013"":{""url"":""http://purl.obolibrary.org/obo/RO_0002013"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002013""},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component activity""},""curie"":{""type"":[""literal""],""value"":""RO:0002017""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component process""},""curie"":{""type"":[""literal""],""value"":""RO:0002018""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","A 'has regulatory component activity' B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.","http://purl.obolibrary.org/obo/mondo.owl","A 'has regulatory component activity' B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.","","http://purl.obolibrary.org/obo/RO_0002017|http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002013","2.0","false","has regulatory component activity","","http://purl.obolibrary.org/obo/RO_0002017|http://purl.obolibrary.org/obo/RO_0002334","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002017|http://purl.obolibrary.org/obo/RO_0002018|http://purl.obolibrary.org/obo/RO_0002180|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/RO_0002334|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002013","RO_0002013","","has regulatory component activity","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002014","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002014"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002014""},""definition"":{""type"":[""literal""],""value"":""A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002013"",""http://purl.obolibrary.org/obo/RO_0002017"",""http://purl.obolibrary.org/obo/RO_0002018"",""http://purl.obolibrary.org/obo/RO_0002180"",""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131"",""http://purl.obolibrary.org/obo/RO_0002334"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002335""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002013"",""http://purl.obolibrary.org/obo/RO_0002335""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has negative regulatory component activity""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002013"",""http://purl.obolibrary.org/obo/RO_0002335""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has negative regulatory component activity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002014""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002013"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has regulatory component activity""},""curie"":{""type"":[""literal""],""value"":""RO:0002013""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002014"":{""url"":""http://purl.obolibrary.org/obo/RO_0002014"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002014""},""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002180""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002335"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002335""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component activity""},""curie"":{""type"":[""literal""],""value"":""RO:0002017""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component process""},""curie"":{""type"":[""literal""],""value"":""RO:0002018""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.","http://purl.obolibrary.org/obo/mondo.owl","A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.","","http://purl.obolibrary.org/obo/RO_0002013|http://purl.obolibrary.org/obo/RO_0002335","http://purl.obolibrary.org/obo/RO_0002014","0.0","false","has negative regulatory component activity","","http://purl.obolibrary.org/obo/RO_0002013|http://purl.obolibrary.org/obo/RO_0002335","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002013|http://purl.obolibrary.org/obo/RO_0002017|http://purl.obolibrary.org/obo/RO_0002018|http://purl.obolibrary.org/obo/RO_0002180|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/RO_0002334|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002335","RO:0002014","RO_0002014","","has negative regulatory component activity","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002015","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002015"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002015""},""definition"":{""type"":[""literal""],""value"":""A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002013"",""http://purl.obolibrary.org/obo/RO_0002017"",""http://purl.obolibrary.org/obo/RO_0002018"",""http://purl.obolibrary.org/obo/RO_0002180"",""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131"",""http://purl.obolibrary.org/obo/RO_0002334"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002336""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002013"",""http://purl.obolibrary.org/obo/RO_0002336""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has positive regulatory component activity""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002013"",""http://purl.obolibrary.org/obo/RO_0002336""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has positive regulatory component activity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002015""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002013"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has regulatory component activity""},""curie"":{""type"":[""literal""],""value"":""RO:0002013""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002015"":{""url"":""http://purl.obolibrary.org/obo/RO_0002015"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002015""},""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002180""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component activity""},""curie"":{""type"":[""literal""],""value"":""RO:0002017""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002336"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002336""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component process""},""curie"":{""type"":[""literal""],""value"":""RO:0002018""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.","http://purl.obolibrary.org/obo/mondo.owl","A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.","","http://purl.obolibrary.org/obo/RO_0002013|http://purl.obolibrary.org/obo/RO_0002336","http://purl.obolibrary.org/obo/RO_0002015","0.0","false","has positive regulatory component activity","","http://purl.obolibrary.org/obo/RO_0002013|http://purl.obolibrary.org/obo/RO_0002336","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002013|http://purl.obolibrary.org/obo/RO_0002017|http://purl.obolibrary.org/obo/RO_0002018|http://purl.obolibrary.org/obo/RO_0002180|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/RO_0002334|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002336","RO:0002015","RO_0002015","","has positive regulatory component activity","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002017","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002017"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002017""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002018"",""http://purl.obolibrary.org/obo/RO_0002180"",""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002018"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has component activity""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002018"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has component activity""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002017""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002180""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002017"":{""url"":""http://purl.obolibrary.org/obo/RO_0002017"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002017""},""http://purl.obolibrary.org/obo/RO_0002018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component process""},""curie"":{""type"":[""literal""],""value"":""RO:0002018""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002018","http://purl.obolibrary.org/obo/RO_0002017","4.0","false","has component activity","","http://purl.obolibrary.org/obo/RO_0002018","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002018|http://purl.obolibrary.org/obo/RO_0002180|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131","RO:0002017","RO_0002017","","has component activity","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002018","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002018"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002018""},""definition"":{""type"":[""literal""],""value"":""w \u0027has process component\u0027 p if p and w are processes, w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002180"",""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002180"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""w \u0027has process component\u0027 p if p and w are processes, w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has component process""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002180"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has component process""},""numDescendants"":5.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""w \u0027has process component\u0027 p if p and w are processes, w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002018""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""RO:0002018"":{""url"":""http://purl.obolibrary.org/obo/RO_0002018"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002018""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002180""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","w 'has process component' p if p and w are processes, w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","http://purl.obolibrary.org/obo/mondo.owl","w 'has process component' p if p and w are processes, w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002180","http://purl.obolibrary.org/obo/RO_0002018","5.0","false","has component process","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002180","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002180|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131","RO:0002018","RO_0002018","","has component process","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002022","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002022"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002022""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002334"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002334"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly regulated by""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002334"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002578"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly regulated by""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002022""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002022"":{""url"":""http://purl.obolibrary.org/obo/RO_0002022"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002022""},""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002578"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002578""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002578","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002022","2.0","false","directly regulated by","","http://purl.obolibrary.org/obo/RO_0002334","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002334|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002022","RO_0002022","","directly regulated by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002023","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002023"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002023""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002022"",""http://purl.obolibrary.org/obo/RO_0002334"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002022"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly negatively regulated by""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002022"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002630"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly negatively regulated by""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002023""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002023"":{""url"":""http://purl.obolibrary.org/obo/RO_0002023"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002023""},""http://purl.obolibrary.org/obo/RO_0002630"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly negatively regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002630""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002022"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulated by""},""curie"":{""type"":[""literal""],""value"":""RO:0002022""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002630","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002022","http://purl.obolibrary.org/obo/RO_0002023","0.0","false","directly negatively regulated by","","http://purl.obolibrary.org/obo/RO_0002022","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002022|http://purl.obolibrary.org/obo/RO_0002334|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002023","RO_0002023","","directly negatively regulated by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002024","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002024"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002024""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002022"",""http://purl.obolibrary.org/obo/RO_0002334"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002022"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly positively regulated by""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002022"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002629"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly positively regulated by""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002024""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002024"":{""url"":""http://purl.obolibrary.org/obo/RO_0002024"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002024""},""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002629"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly positively regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002629""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002022"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulated by""},""curie"":{""type"":[""literal""],""value"":""RO:0002022""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002629","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002022","http://purl.obolibrary.org/obo/RO_0002024","0.0","false","directly positively regulated by","","http://purl.obolibrary.org/obo/RO_0002022","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002022|http://purl.obolibrary.org/obo/RO_0002334|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002024","RO_0002024","","directly positively regulated by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002025","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002025"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002025""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002017"",""http://purl.obolibrary.org/obo/RO_0002018"",""http://purl.obolibrary.org/obo/RO_0002180"",""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002017"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has effector activity""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002017"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has effector activity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002025""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002025"":{""url"":""http://purl.obolibrary.org/obo/RO_0002025"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002025""},""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002180""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component activity""},""curie"":{""type"":[""literal""],""value"":""RO:0002017""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component process""},""curie"":{""type"":[""literal""],""value"":""RO:0002018""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002017","http://purl.obolibrary.org/obo/RO_0002025","0.0","false","has effector activity","","http://purl.obolibrary.org/obo/RO_0002017","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002017|http://purl.obolibrary.org/obo/RO_0002018|http://purl.obolibrary.org/obo/RO_0002180|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131","RO:0002025","RO_0002025","","has effector activity","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#FunctionalProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002081","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002081"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002081""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002222"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002222"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""before or simultaneous with"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002222"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""before or simultaneous with"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002081""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002081"":{""url"":""http://purl.obolibrary.org/obo/RO_0002081"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002081""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002081","1.0","false","before or simultaneous with","","http://purl.obolibrary.org/obo/RO_0002222","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002222","RO:0002081","RO_0002081","","before or simultaneous with","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002082","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002082"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""definition"":{""type"":[""literal""],""value"":""x simultaneous with y iff ω(x) \u003d ω(y) and ω(α ) \u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \u0027\u003d\u0027 indicates the same instance in time.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002081"",""http://purl.obolibrary.org/obo/RO_0002222""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002081"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x simultaneous with y iff ω(x) \u003d ω(y) and ω(α ) \u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \u0027\u003d\u0027 indicates the same instance in time.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#SymmetricProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002081"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x simultaneous with y iff ω(x) \u003d ω(y) and ω(α ) \u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \u0027\u003d\u0027 indicates the same instance in time.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002082""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002082"":{""url"":""http://purl.obolibrary.org/obo/RO_0002082"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002082""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002081"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""before or simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002081""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x simultaneous with y iff ω(x) = ω(y) and ω(α ) = ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and '=' indicates the same instance in time.","http://purl.obolibrary.org/obo/mondo.owl","x simultaneous with y iff ω(x) = ω(y) and ω(α ) = ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and '=' indicates the same instance in time.","","http://purl.obolibrary.org/obo/RO_0002081","http://purl.obolibrary.org/obo/RO_0002082","0.0","false","simultaneous with","","http://purl.obolibrary.org/obo/RO_0002081","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002081|http://purl.obolibrary.org/obo/RO_0002222","RO:0002082","RO_0002082","","simultaneous with","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#SymmetricProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002086","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002086"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002086""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002222"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002222"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends after"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002222"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends after"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002086""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002086"":{""url"":""http://purl.obolibrary.org/obo/RO_0002086"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002086""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002086","4.0","false","ends after","","http://purl.obolibrary.org/obo/RO_0002222","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002222","RO:0002086","RO_0002086","","ends after","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002087","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002087"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002087""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000062"",""http://purl.obolibrary.org/obo/RO_0002086"",""http://purl.obolibrary.org/obo/RO_0002222""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000062"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately preceded by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002090"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002224"",""http://purl.obolibrary.org/obo/RO_0002230""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately preceded by"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002087""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002090"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002090""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002087"":{""url"":""http://purl.obolibrary.org/obo/RO_0002087"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002087""},""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002224"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002224""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends after"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002086""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002090","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/BFO_0000062","http://purl.obolibrary.org/obo/RO_0002087","1.0","false","immediately preceded by","","http://purl.obolibrary.org/obo/BFO_0000062","http://purl.obolibrary.org/obo/RO_0002224|http://purl.obolibrary.org/obo/RO_0002230","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000062|http://purl.obolibrary.org/obo/RO_0002086|http://purl.obolibrary.org/obo/RO_0002222","RO:0002087","RO_0002087","","immediately preceded by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002090","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002090"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002090""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000063"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately precedes"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002087"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002230"",""http://purl.obolibrary.org/obo/RO_0002224""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately precedes"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002090""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002224"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002224""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002087"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002087""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002090"":{""url"":""http://purl.obolibrary.org/obo/RO_0002090"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002090""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002087","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002090","4.0","false","immediately precedes","","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002230|http://purl.obolibrary.org/obo/RO_0002224","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222","RO:0002090","RO_0002090","","immediately precedes","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002131","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002131"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""definition"":{""type"":[""literal""],""value"":""x overlaps y if and only if there exists some z such that x has part z and z part of y""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x overlaps y if and only if there exists some z such that x has part z and z part of y""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#SymmetricProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/BFO_0000050""],[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131""],[""http://purl.obolibrary.org/obo/RO_0002131"",""http://purl.obolibrary.org/obo/BFO_0000050""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""numDescendants"":14.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x overlaps y if and only if there exists some z such that x has part z and z part of y""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002131""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002131"":{""url"":""http://purl.obolibrary.org/obo/RO_0002131"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002131""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","x overlaps y if and only if there exists some z such that x has part z and z part of y","http://purl.obolibrary.org/obo/mondo.owl","x overlaps y if and only if there exists some z such that x has part z and z part of y","","","http://purl.obolibrary.org/obo/RO_0002131","14.0","false","overlaps","","","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","","RO:0002131","RO_0002131","","overlaps","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#SymmetricProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002160","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002160"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""definition"":{""type"":[""literal""],""value"":""x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\u003dz a and x is in taxon z.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002162"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002162"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\u003dz a and x is in taxon z.""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""The original intent was to treat this as a macro that expands to \u0027in taxon\u0027 only ?Y - however, this is not necessary if we instead have supplemental axioms that state that each pair of sibling tax have a disjointness axiom using the \u0027in taxon\u0027 property - e.g.\n\n \u0027in taxon\u0027 some Eukaryota DisjointWith \u0027in taxon\u0027 some Eubacteria""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""only in taxon""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002162"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""only in taxon""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\u003dz a and x is in taxon z.""},{""type"":[""literal""],""value"":""The original intent was to treat this as a macro that expands to \u0027in taxon\u0027 only ?Y - however, this is not necessary if we instead have supplemental axioms that state that each pair of sibling tax have a disjointness axiom using the \u0027in taxon\u0027 property - e.g.\n\n \u0027in taxon\u0027 some Eukaryota DisjointWith \u0027in taxon\u0027 some Eubacteria""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002160""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002160"":{""url"":""http://purl.obolibrary.org/obo/RO_0002160"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002160""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002162"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002162""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","The original intent was to treat this as a macro that expands to 'in taxon' only ?Y - however, this is not necessary if we instead have supplemental axioms that state that each pair of sibling tax have a disjointness axiom using the 'in taxon' property - e.g. +"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000062","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000062"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \u003c\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002086"",""http://purl.obolibrary.org/obo/RO_0002222""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002086"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \u003c\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002086"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/BFO_0000062""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \u003c\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000062""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends after"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002086""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000063","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other.","x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) <= α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http://purl.obolibrary.org/obo/mondo.owl","x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) <= α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/RO_0002086","http://purl.obolibrary.org/obo/BFO_0000062","3.0","false","preceded by","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/RO_0002086","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/BFO_0000062","gitIssue502","http://purl.obolibrary.org/obo/RO_0002086|http://purl.obolibrary.org/obo/RO_0002222","BFO:0000062","BFO_0000062","","preceded by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000063","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000063"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \u003c\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002222"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002222"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \u003c\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002222"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/BFO_0000063""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""numDescendants"":15.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \u003c\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000063""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000062","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) <= α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http://purl.obolibrary.org/obo/mondo.owl","x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) <= α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/BFO_0000063","15.0","false","precedes","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/BFO_0000063","gitIssue502","http://purl.obolibrary.org/obo/RO_0002222","BFO:0000063","BFO_0000063","","precedes","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000066","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000066"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000066""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000067"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/BFO_0000066""],[""http://purl.obolibrary.org/obo/BFO_0000066"",""http://purl.obolibrary.org/obo/BFO_0000050""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000066""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000067"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contains process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000067""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000067","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t","http://purl.obolibrary.org/obo/mondo.owl","b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t","http://purl.obolibrary.org/obo/BFO_0000004","","http://purl.obolibrary.org/obo/BFO_0000066","0.0","false","occurs in","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/BFO_0000066|http://purl.obolibrary.org/obo/BFO_0000066|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","","BFO:0000066","BFO_0000066","","occurs in","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000067","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000067"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000067""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contains process"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000066"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contains process"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000067""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000066""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000066","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","[copied from inverse property 'occurs in'] b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t","http://purl.obolibrary.org/obo/mondo.owl","[copied from inverse property 'occurs in'] b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t","","","http://purl.obolibrary.org/obo/BFO_0000067","0.0","false","contains process","","","","gitIssue502","","BFO:0000067","BFO_0000067","","contains process","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/IAO_0000115","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000115"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000115""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000115","0.0","false","IAO_0000115","","","","gitIssue502","","IAO:0000115","IAO_0000115","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/IAO_0000116","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000116"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000116""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000116","0.0","false","IAO_0000116","","","","gitIssue502","","IAO:0000116","IAO_0000116","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/IAO_0000233","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000233"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000233""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000233""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000233","0.0","false","IAO_0000233","","","","gitIssue502","","IAO:0000233","IAO_0000233","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/IAO_0006012","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0006012"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0006012""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0006012""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0006012""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://purl.obolibrary.org/obo/IAO_0006012","0.0","false","IAO_0006012","","","","gitIssue502","","IAO:0006012","IAO_0006012","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000052","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000052"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000052""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000053","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","http://purl.obolibrary.org/obo/mondo.owl","a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","","","http://purl.obolibrary.org/obo/RO_0000052","4.0","false","characteristic of","","","","gitIssue502","","RO:0000052","RO_0000052","","characteristic of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#FunctionalProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000053","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000053"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of characteristic_of"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of characteristic_of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist."",""lang"":""en""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""RO:0000053""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""has_characteristic""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""has_characteristic""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#InverseFunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000020"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of characteristic_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist."",""lang"":""en""},{""type"":[""literal""],""value"":""RO:0000053""},{""type"":[""literal""],""value"":""has_characteristic""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000053""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0000053"":{""url"":""http://purl.obolibrary.org/obo/RO_0000053"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000053""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","RO:0000053","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000052","has_characteristic","has_characteristic","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.","Inverse of characteristic_of","http://purl.obolibrary.org/obo/mondo.owl","Inverse of characteristic_of","http://purl.obolibrary.org/obo/BFO_0000020","","http://purl.obolibrary.org/obo/RO_0000053","4.0","false","has characteristic|has characteristic","","","","gitIssue502","","RO:0000053","RO_0000053","","has characteristic|has characteristic","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#InverseFunctionalProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000056","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000056"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000056""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a continuant and a process, in which the continuant is somehow involved in the process"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a continuant and a process, in which the continuant is somehow involved in the process"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000057"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a continuant and a process, in which the continuant is somehow involved in the process"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000056""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000057","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","a relation between a continuant and a process, in which the continuant is somehow involved in the process","http://purl.obolibrary.org/obo/mondo.owl","a relation between a continuant and a process, in which the continuant is somehow involved in the process","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/RO_0000056","2.0","false","participates in","http://purl.obolibrary.org/obo/BFO_0000002","","","gitIssue502","","RO:0000056","RO_0000056","","participates in","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000057","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000057"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a process and a continuant, in which the continuant is somehow involved in the process"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a process and a continuant, in which the continuant is somehow involved in the process"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000056"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0000057""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a process and a continuant, in which the continuant is somehow involved in the process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000057""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000056"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000056""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000056","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.","a relation between a process and a continuant, in which the continuant is somehow involved in the process","http://purl.obolibrary.org/obo/mondo.owl","a relation between a process and a continuant, in which the continuant is somehow involved in the process","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/RO_0000057","2.0","false","has participant","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0000057","gitIssue502","","RO:0000057","RO_0000057","","has participant","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000079","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000079"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000079""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000052"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000052"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000034"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000085"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000079""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000034"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000034""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000085"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has function"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000085""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000085","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.","a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/mondo.owl","a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","","http://purl.obolibrary.org/obo/RO_0000052","http://purl.obolibrary.org/obo/RO_0000079","0.0","false","function of","http://purl.obolibrary.org/obo/BFO_0000034","http://purl.obolibrary.org/obo/RO_0000052","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000052","RO:0000079","RO_0000079","","function of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000080","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000080"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000080""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000052"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000052"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A quality inheres in its bearer at all times for which the quality exists."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000086"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A quality inheres in its bearer at all times for which the quality exists."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000080""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000086","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","A quality inheres in its bearer at all times for which the quality exists.","a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/mondo.owl","a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","","http://purl.obolibrary.org/obo/RO_0000052","http://purl.obolibrary.org/obo/RO_0000080","0.0","false","quality of","","http://purl.obolibrary.org/obo/RO_0000052","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000052","RO:0000080","RO_0000080","","quality of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000081","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000081"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000081""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000052"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000052"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000087"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000081""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000087"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has role"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000087""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000087","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.","a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/mondo.owl","a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","","http://purl.obolibrary.org/obo/RO_0000052","http://purl.obolibrary.org/obo/RO_0000081","0.0","false","role of","","http://purl.obolibrary.org/obo/RO_0000052","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000052","RO:0000081","RO_0000081","","role of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000085","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000085"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000085""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000053"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000053"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has function"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000034"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000079"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has function"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000085""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000034"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000034""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000079"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000079""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000079","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.","a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/mondo.owl","a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/BFO_0000034","http://purl.obolibrary.org/obo/RO_0000053","http://purl.obolibrary.org/obo/RO_0000085","0.0","false","has function","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/RO_0000053","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000053","RO:0000085","RO_0000085","","has function","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000086","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000086"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000053"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000053"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000019"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000080"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000086""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000080"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000080""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000080","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.","a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/mondo.owl","a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/RO_0000053","http://purl.obolibrary.org/obo/RO_0000086","0.0","false","has quality","","http://purl.obolibrary.org/obo/RO_0000053","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000053","RO:0000086","RO_0000086","","has quality","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000087","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000087"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000087""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000053"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000053"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has role"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000023"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000081"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has role"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000087""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000081"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000081""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000023""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000081","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.","a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/mondo.owl","a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/BFO_0000023","http://purl.obolibrary.org/obo/RO_0000053","http://purl.obolibrary.org/obo/RO_0000087","0.0","false","has role","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/RO_0000053","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000053","RO:0000087","RO_0000087","","has role","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000091","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000091"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000091""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000053"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000053"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has disposition"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000016"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000092"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has disposition"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000091""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0000092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000092""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has characteristic""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000092","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/mondo.owl","a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/RO_0000053","http://purl.obolibrary.org/obo/RO_0000091","0.0","false","has disposition","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/RO_0000053","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000053","RO:0000091","RO_0000091","","has disposition","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000092","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000092"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000092""},""definition"":{""type"":[""literal""],""value"":""inverse of has disposition""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000052"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000052"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of has disposition""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000091"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of has disposition""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0000092""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0000091"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000091""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000091","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of has disposition","http://purl.obolibrary.org/obo/mondo.owl","inverse of has disposition","","http://purl.obolibrary.org/obo/RO_0000052","http://purl.obolibrary.org/obo/RO_0000092","0.0","false","disposition of","","http://purl.obolibrary.org/obo/RO_0000052","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000052","RO:0000092","RO_0000092","","disposition of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002000","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002000"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002000""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2D boundary of"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002002"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2D boundary of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002000""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has 2D boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002002""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002002","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.|Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.","a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","http://purl.obolibrary.org/obo/mondo.owl","a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","","","http://purl.obolibrary.org/obo/RO_0002000","0.0","false","2D boundary of","","","","gitIssue502","","RO:0002000","RO_0002000","","2D boundary of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002002","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002002"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002002""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has 2D boundary"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000141"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has 2D boundary"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002002""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2D boundary of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002000""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002000","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.|Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.","a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","http://purl.obolibrary.org/obo/mondo.owl","a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","http://purl.obolibrary.org/obo/BFO_0000141","","http://purl.obolibrary.org/obo/RO_0002002","0.0","false","has 2D boundary","http://purl.obolibrary.org/obo/BFO_0000040","","","gitIssue502","","RO:0002002","RO_0002002","","has 2D boundary","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002013","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002013"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002013""},""definition"":{""type"":[""literal""],""value"":""A \u0027has regulatory component activity\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002017"",""http://purl.obolibrary.org/obo/RO_0002018"",""http://purl.obolibrary.org/obo/RO_0002180"",""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131"",""http://purl.obolibrary.org/obo/RO_0002334"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002017"",""http://purl.obolibrary.org/obo/RO_0002334""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A \u0027has regulatory component activity\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has regulatory component activity""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002017"",""http://purl.obolibrary.org/obo/RO_0002334""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has regulatory component activity""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A \u0027has regulatory component activity\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002013""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002180""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component activity""},""curie"":{""type"":[""literal""],""value"":""RO:0002017""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component process""},""curie"":{""type"":[""literal""],""value"":""RO:0002018""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","A 'has regulatory component activity' B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.","http://purl.obolibrary.org/obo/mondo.owl","A 'has regulatory component activity' B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.","","http://purl.obolibrary.org/obo/RO_0002017|http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002013","2.0","false","has regulatory component activity","","http://purl.obolibrary.org/obo/RO_0002017|http://purl.obolibrary.org/obo/RO_0002334","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002017|http://purl.obolibrary.org/obo/RO_0002018|http://purl.obolibrary.org/obo/RO_0002180|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/RO_0002334|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002013","RO_0002013","","has regulatory component activity","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002014","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002014"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002014""},""definition"":{""type"":[""literal""],""value"":""A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002013"",""http://purl.obolibrary.org/obo/RO_0002017"",""http://purl.obolibrary.org/obo/RO_0002018"",""http://purl.obolibrary.org/obo/RO_0002180"",""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131"",""http://purl.obolibrary.org/obo/RO_0002334"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002335""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002013"",""http://purl.obolibrary.org/obo/RO_0002335""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has negative regulatory component activity""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002013"",""http://purl.obolibrary.org/obo/RO_0002335""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has negative regulatory component activity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002014""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002013"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has regulatory component activity""},""curie"":{""type"":[""literal""],""value"":""RO:0002013""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002180""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002335"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002335""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component activity""},""curie"":{""type"":[""literal""],""value"":""RO:0002017""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component process""},""curie"":{""type"":[""literal""],""value"":""RO:0002018""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.","http://purl.obolibrary.org/obo/mondo.owl","A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.","","http://purl.obolibrary.org/obo/RO_0002013|http://purl.obolibrary.org/obo/RO_0002335","http://purl.obolibrary.org/obo/RO_0002014","0.0","false","has negative regulatory component activity","","http://purl.obolibrary.org/obo/RO_0002013|http://purl.obolibrary.org/obo/RO_0002335","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002013|http://purl.obolibrary.org/obo/RO_0002017|http://purl.obolibrary.org/obo/RO_0002018|http://purl.obolibrary.org/obo/RO_0002180|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/RO_0002334|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002335","RO:0002014","RO_0002014","","has negative regulatory component activity","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002015","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002015"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002015""},""definition"":{""type"":[""literal""],""value"":""A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002013"",""http://purl.obolibrary.org/obo/RO_0002017"",""http://purl.obolibrary.org/obo/RO_0002018"",""http://purl.obolibrary.org/obo/RO_0002180"",""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131"",""http://purl.obolibrary.org/obo/RO_0002334"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002336""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002013"",""http://purl.obolibrary.org/obo/RO_0002336""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has positive regulatory component activity""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002013"",""http://purl.obolibrary.org/obo/RO_0002336""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has positive regulatory component activity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002015""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002013"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has regulatory component activity""},""curie"":{""type"":[""literal""],""value"":""RO:0002013""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002180""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component activity""},""curie"":{""type"":[""literal""],""value"":""RO:0002017""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002336"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002336""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component process""},""curie"":{""type"":[""literal""],""value"":""RO:0002018""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.","http://purl.obolibrary.org/obo/mondo.owl","A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A 'has regulatory component activity' B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.","","http://purl.obolibrary.org/obo/RO_0002013|http://purl.obolibrary.org/obo/RO_0002336","http://purl.obolibrary.org/obo/RO_0002015","0.0","false","has positive regulatory component activity","","http://purl.obolibrary.org/obo/RO_0002013|http://purl.obolibrary.org/obo/RO_0002336","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002013|http://purl.obolibrary.org/obo/RO_0002017|http://purl.obolibrary.org/obo/RO_0002018|http://purl.obolibrary.org/obo/RO_0002180|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/RO_0002334|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002336","RO:0002015","RO_0002015","","has positive regulatory component activity","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002017","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002017"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002017""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002018"",""http://purl.obolibrary.org/obo/RO_0002180"",""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002018"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has component activity""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002018"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has component activity""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002017""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002180""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component process""},""curie"":{""type"":[""literal""],""value"":""RO:0002018""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002018","http://purl.obolibrary.org/obo/RO_0002017","4.0","false","has component activity","","http://purl.obolibrary.org/obo/RO_0002018","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002018|http://purl.obolibrary.org/obo/RO_0002180|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131","RO:0002017","RO_0002017","","has component activity","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002018","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002018"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002018""},""definition"":{""type"":[""literal""],""value"":""w \u0027has process component\u0027 p if p and w are processes, w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002180"",""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002180"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""w \u0027has process component\u0027 p if p and w are processes, w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has component process""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002180"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has component process""},""numDescendants"":5.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""w \u0027has process component\u0027 p if p and w are processes, w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002018""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002180""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","w 'has process component' p if p and w are processes, w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","http://purl.obolibrary.org/obo/mondo.owl","w 'has process component' p if p and w are processes, w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002180","http://purl.obolibrary.org/obo/RO_0002018","5.0","false","has component process","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002180","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002180|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131","RO:0002018","RO_0002018","","has component process","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002022","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002022"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002022""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002334"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002334"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly regulated by""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002334"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002578"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly regulated by""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002022""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002578"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002578""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002578","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002022","2.0","false","directly regulated by","","http://purl.obolibrary.org/obo/RO_0002334","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002334|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002022","RO_0002022","","directly regulated by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002023","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002023"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002023""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002022"",""http://purl.obolibrary.org/obo/RO_0002334"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002022"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly negatively regulated by""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002022"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002630"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly negatively regulated by""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002023""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002630"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly negatively regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002630""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002022"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulated by""},""curie"":{""type"":[""literal""],""value"":""RO:0002022""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002630","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002022","http://purl.obolibrary.org/obo/RO_0002023","0.0","false","directly negatively regulated by","","http://purl.obolibrary.org/obo/RO_0002022","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002022|http://purl.obolibrary.org/obo/RO_0002334|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002023","RO_0002023","","directly negatively regulated by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002024","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002024"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002024""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002022"",""http://purl.obolibrary.org/obo/RO_0002334"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002022"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly positively regulated by""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002022"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002629"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly positively regulated by""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002024""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002629"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly positively regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002629""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002022"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulated by""},""curie"":{""type"":[""literal""],""value"":""RO:0002022""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002629","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002022","http://purl.obolibrary.org/obo/RO_0002024","0.0","false","directly positively regulated by","","http://purl.obolibrary.org/obo/RO_0002022","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002022|http://purl.obolibrary.org/obo/RO_0002334|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002024","RO_0002024","","directly positively regulated by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002025","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002025"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002025""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002017"",""http://purl.obolibrary.org/obo/RO_0002018"",""http://purl.obolibrary.org/obo/RO_0002180"",""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002017"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has effector activity""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002017"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has effector activity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002025""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002180""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component activity""},""curie"":{""type"":[""literal""],""value"":""RO:0002017""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component process""},""curie"":{""type"":[""literal""],""value"":""RO:0002018""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002017","http://purl.obolibrary.org/obo/RO_0002025","0.0","false","has effector activity","","http://purl.obolibrary.org/obo/RO_0002017","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002017|http://purl.obolibrary.org/obo/RO_0002018|http://purl.obolibrary.org/obo/RO_0002180|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131","RO:0002025","RO_0002025","","has effector activity","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#FunctionalProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002081","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002081"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002081""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002222"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002222"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""before or simultaneous with"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002222"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""before or simultaneous with"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002081""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002081","1.0","false","before or simultaneous with","","http://purl.obolibrary.org/obo/RO_0002222","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002222","RO:0002081","RO_0002081","","before or simultaneous with","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002082","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002082"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""definition"":{""type"":[""literal""],""value"":""x simultaneous with y iff ω(x) \u003d ω(y) and ω(α ) \u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \u0027\u003d\u0027 indicates the same instance in time.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002081"",""http://purl.obolibrary.org/obo/RO_0002222""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002081"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x simultaneous with y iff ω(x) \u003d ω(y) and ω(α ) \u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \u0027\u003d\u0027 indicates the same instance in time.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#SymmetricProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002081"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x simultaneous with y iff ω(x) \u003d ω(y) and ω(α ) \u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \u0027\u003d\u0027 indicates the same instance in time.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002082""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002081"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""before or simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002081""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x simultaneous with y iff ω(x) = ω(y) and ω(α ) = ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and '=' indicates the same instance in time.","http://purl.obolibrary.org/obo/mondo.owl","x simultaneous with y iff ω(x) = ω(y) and ω(α ) = ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and '=' indicates the same instance in time.","","http://purl.obolibrary.org/obo/RO_0002081","http://purl.obolibrary.org/obo/RO_0002082","0.0","false","simultaneous with","","http://purl.obolibrary.org/obo/RO_0002081","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002081|http://purl.obolibrary.org/obo/RO_0002222","RO:0002082","RO_0002082","","simultaneous with","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#SymmetricProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002086","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002086"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002086""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002222"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002222"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends after"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002222"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends after"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002086""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002086","4.0","false","ends after","","http://purl.obolibrary.org/obo/RO_0002222","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002222","RO:0002086","RO_0002086","","ends after","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002087","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002087"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002087""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000062"",""http://purl.obolibrary.org/obo/RO_0002086"",""http://purl.obolibrary.org/obo/RO_0002222""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000062"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately preceded by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000062"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002090"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002224"",""http://purl.obolibrary.org/obo/RO_0002230""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately preceded by"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002087""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002090"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002090""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002224"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002224""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends after"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002086""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002090","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/BFO_0000062","http://purl.obolibrary.org/obo/RO_0002087","1.0","false","immediately preceded by","","http://purl.obolibrary.org/obo/BFO_0000062","http://purl.obolibrary.org/obo/RO_0002224|http://purl.obolibrary.org/obo/RO_0002230","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000062|http://purl.obolibrary.org/obo/RO_0002086|http://purl.obolibrary.org/obo/RO_0002222","RO:0002087","RO_0002087","","immediately preceded by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002090","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002090"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002090""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000063"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately precedes"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000063"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002087"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002230"",""http://purl.obolibrary.org/obo/RO_0002224""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately precedes"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002090""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002224"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002224""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002087"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002087""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002087","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002090","4.0","false","immediately precedes","","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002230|http://purl.obolibrary.org/obo/RO_0002224","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222","RO:0002090","RO_0002090","","immediately precedes","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002131","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002131"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""definition"":{""type"":[""literal""],""value"":""x overlaps y if and only if there exists some z such that x has part z and z part of y""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x overlaps y if and only if there exists some z such that x has part z and z part of y""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#SymmetricProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/BFO_0000050""],[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131""],[""http://purl.obolibrary.org/obo/RO_0002131"",""http://purl.obolibrary.org/obo/BFO_0000050""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""numDescendants"":14.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x overlaps y if and only if there exists some z such that x has part z and z part of y""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002131""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","x overlaps y if and only if there exists some z such that x has part z and z part of y","http://purl.obolibrary.org/obo/mondo.owl","x overlaps y if and only if there exists some z such that x has part z and z part of y","","","http://purl.obolibrary.org/obo/RO_0002131","14.0","false","overlaps","","","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","","RO:0002131","RO_0002131","","overlaps","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#SymmetricProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002160","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002160"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002160""},""definition"":{""type"":[""literal""],""value"":""x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\u003dz a and x is in taxon z.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002162"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002162"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\u003dz a and x is in taxon z.""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""The original intent was to treat this as a macro that expands to \u0027in taxon\u0027 only ?Y - however, this is not necessary if we instead have supplemental axioms that state that each pair of sibling tax have a disjointness axiom using the \u0027in taxon\u0027 property - e.g.\n\n \u0027in taxon\u0027 some Eukaryota DisjointWith \u0027in taxon\u0027 some Eubacteria""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""only in taxon""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002162"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""only in taxon""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\u003dz a and x is in taxon z.""},{""type"":[""literal""],""value"":""The original intent was to treat this as a macro that expands to \u0027in taxon\u0027 only ?Y - however, this is not necessary if we instead have supplemental axioms that state that each pair of sibling tax have a disjointness axiom using the \u0027in taxon\u0027 property - e.g.\n\n \u0027in taxon\u0027 some Eukaryota DisjointWith \u0027in taxon\u0027 some Eubacteria""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002160""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002162"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""in taxon""},""curie"":{""type"":[""literal""],""value"":""RO:0002162""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","The original intent was to treat this as a macro that expands to 'in taxon' only ?Y - however, this is not necessary if we instead have supplemental axioms that state that each pair of sibling tax have a disjointness axiom using the 'in taxon' property - e.g. 'in taxon' some Eukaryota DisjointWith 'in taxon' some Eubacteria","x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!=z a and x is in taxon z.","http://purl.obolibrary.org/obo/mondo.owl","x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!=z a and x is in taxon z.","","http://purl.obolibrary.org/obo/RO_0002162","http://purl.obolibrary.org/obo/RO_0002160","0.0","false","only in taxon","","http://purl.obolibrary.org/obo/RO_0002162","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002162","RO:0002160","RO_0002160","","only in taxon","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002162","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002162"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002162""},""definition"":{""type"":[""literal""],""value"":""x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""RO:0002162""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""in_taxon""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""in_taxon""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""in taxon""},""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002162""],[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002162""],[""http://purl.obolibrary.org/obo/RO_0002202"",""http://purl.obolibrary.org/obo/RO_0002162""],[""http://purl.obolibrary.org/obo/RO_0002215"",""http://purl.obolibrary.org/obo/RO_0002162""],[""http://purl.obolibrary.org/obo/RO_0002225"",""http://purl.obolibrary.org/obo/RO_0002162""],[""http://purl.obolibrary.org/obo/RO_0002254"",""http://purl.obolibrary.org/obo/RO_0002162""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""in taxon""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.""},{""type"":[""literal""],""value"":""RO:0002162""},{""type"":[""literal""],""value"":""in_taxon""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002162""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002254"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental contribution from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002254""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002225"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002225""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002162"":{""url"":""http://purl.obolibrary.org/obo/RO_0002162"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002162""},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","RO:0002162","0.0","property|objectProperty|entity","","in_taxon","in_taxon","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.","http://purl.obolibrary.org/obo/mondo.owl","x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.","","","http://purl.obolibrary.org/obo/RO_0002162","1.0","false","in taxon","","","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002162|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002162|http://purl.obolibrary.org/obo/RO_0002202|http://purl.obolibrary.org/obo/RO_0002162|http://purl.obolibrary.org/obo/RO_0002215|http://purl.obolibrary.org/obo/RO_0002162|http://purl.obolibrary.org/obo/RO_0002225|http://purl.obolibrary.org/obo/RO_0002162|http://purl.obolibrary.org/obo/RO_0002254|http://purl.obolibrary.org/obo/RO_0002162","gitIssue502","","RO:0002162","RO_0002162","","in taxon","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002175","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002175"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002175""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002175"":{""url"":""http://purl.obolibrary.org/obo/RO_0002175"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002175""}}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://purl.obolibrary.org/obo/RO_0002175","0.0","false","RO_0002175","","","","gitIssue502","","RO:0002175","RO_0002175","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002180","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002180"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002180""},""definition"":{""type"":[""literal""],""value"":""w \u0027has component\u0027 p if w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000051"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""w \u0027has component\u0027 p if w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""The definition of \u0027has component\u0027 is still under discussion. The challenge is in providing a definition that does not imply transitivity.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""numDescendants"":6.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""w \u0027has component\u0027 p if w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.""},{""type"":[""literal""],""value"":""The definition of \u0027has component\u0027 is still under discussion. The challenge is in providing a definition that does not imply transitivity.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002180""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002180"":{""url"":""http://purl.obolibrary.org/obo/RO_0002180"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002180""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","The definition of 'has component' is still under discussion. The challenge is in providing a definition that does not imply transitivity.","w 'has component' p if w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","http://purl.obolibrary.org/obo/mondo.owl","w 'has component' p if w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002180","6.0","false","has component","","http://purl.obolibrary.org/obo/BFO_0000051","","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131","RO:0002180","RO_0002180","","has component","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002202","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002202"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""definition"":{""type"":[""literal""],""value"":""x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002258"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002258"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002258"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002203"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002202""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002203"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002203""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""RO:0002202"":{""url"":""http://purl.obolibrary.org/obo/RO_0002202"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002202""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002258"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002203","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y","http://purl.obolibrary.org/obo/mondo.owl","x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/RO_0002258","http://purl.obolibrary.org/obo/RO_0002202","4.0","false","develops from","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/RO_0002258","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002258","RO:0002202","RO_0002202","","develops from","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002203","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002203"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002203""},""definition"":{""type"":[""literal""],""value"":""inverse of develops from""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002384"",""http://purl.obolibrary.org/obo/RO_0002387"",""http://purl.obolibrary.org/obo/RO_0002388""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002387"",""http://purl.obolibrary.org/obo/RO_0002388""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of develops from""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops into"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002387"",""http://purl.obolibrary.org/obo/RO_0002388""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002202"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops into"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of develops from""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002203""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002286"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally succeeded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002286""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002203"":{""url"":""http://purl.obolibrary.org/obo/RO_0002203"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002203""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002388"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to directly develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002388""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002384"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002202","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of develops from","http://purl.obolibrary.org/obo/mondo.owl","inverse of develops from","","http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002387|http://purl.obolibrary.org/obo/RO_0002388","http://purl.obolibrary.org/obo/RO_0002203","1.0","false","develops into","","http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002387|http://purl.obolibrary.org/obo/RO_0002388","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002384|http://purl.obolibrary.org/obo/RO_0002387|http://purl.obolibrary.org/obo/RO_0002388","RO:0002203","RO_0002203","","develops into","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002207","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002207"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002207""},""definition"":{""type"":[""literal""],""value"":""Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002202"",""http://purl.obolibrary.org/obo/RO_0002258""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002202"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#unionOf"":[""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0010000""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops from"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#unionOf"":[""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0010000""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002202"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002210"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops from"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002207""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002210"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002210""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""RO:0002207"":{""url"":""http://purl.obolibrary.org/obo/RO_0002207"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002207""},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""GO:0032502"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0032502"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0032502""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002258"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002210","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.","http://purl.obolibrary.org/obo/mondo.owl","Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.","","http://purl.obolibrary.org/obo/RO_0002202","http://purl.obolibrary.org/obo/RO_0002207","1.0","false","directly develops from","","http://purl.obolibrary.org/obo/RO_0002202","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002202|http://purl.obolibrary.org/obo/RO_0002258","RO:0002207","RO_0002207","","directly develops from","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002210","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002210"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002210""},""definition"":{""type"":[""literal""],""value"":""inverse of directly develops from""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002203"",""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002384"",""http://purl.obolibrary.org/obo/RO_0002387"",""http://purl.obolibrary.org/obo/RO_0002388""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002203"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of directly develops from""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops into"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002203"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002207"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops into"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of directly develops from""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002210""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002207"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002207""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002203"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002203""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002286"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally succeeded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002286""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002210"":{""url"":""http://purl.obolibrary.org/obo/RO_0002210"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002210""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002388"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to directly develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002388""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002384"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002207","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of directly develops from","http://purl.obolibrary.org/obo/mondo.owl","inverse of directly develops from","","http://purl.obolibrary.org/obo/RO_0002203","http://purl.obolibrary.org/obo/RO_0002210","0.0","false","directly develops into","","http://purl.obolibrary.org/obo/RO_0002203","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002203|http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002384|http://purl.obolibrary.org/obo/RO_0002387|http://purl.obolibrary.org/obo/RO_0002388","RO:0002210","RO_0002210","","directly develops into","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002211","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002211"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""definition"":{""type"":[""literal""],""value"":""p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002411"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002411"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002334"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002025""],[""http://purl.obolibrary.org/obo/RO_0002230"",""http://purl.obolibrary.org/obo/RO_0002211""],[""http://purl.obolibrary.org/obo/RO_0002578"",""http://purl.obolibrary.org/obo/RO_0002578""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""numDescendants"":8.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002211""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""RO:0002211"":{""url"":""http://purl.obolibrary.org/obo/RO_0002211"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002211""},""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002025"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has effector activity""},""curie"":{""type"":[""literal""],""value"":""RO:0002025""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002578"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002578""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002334","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.","http://purl.obolibrary.org/obo/mondo.owl","p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0002211","8.0","false","regulates","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002025|http://purl.obolibrary.org/obo/RO_0002230|http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002578|http://purl.obolibrary.org/obo/RO_0002578","gitIssue502","http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501","RO:0002211","RO_0002211","","regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002212","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002212"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002212""},""definition"":{""type"":[""literal""],""value"":""p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002305"",""http://purl.obolibrary.org/obo/RO_0004046""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002305""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002305""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002335"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002230"",""http://purl.obolibrary.org/obo/RO_0002212""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002212""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0002212"":{""url"":""http://purl.obolibrary.org/obo/RO_0002212"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002212""},""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002305"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0002305""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004046"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004046""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002335"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002335""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002335","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.","http://purl.obolibrary.org/obo/mondo.owl","p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002305","http://purl.obolibrary.org/obo/RO_0002212","2.0","false","negatively regulates","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002305","http://purl.obolibrary.org/obo/RO_0002230|http://purl.obolibrary.org/obo/RO_0002212","gitIssue502","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002305|http://purl.obolibrary.org/obo/RO_0004046","RO:0002212","RO_0002212","","negatively regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002213","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002213"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""definition"":{""type"":[""literal""],""value"":""p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002304"",""http://purl.obolibrary.org/obo/RO_0004047""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002304""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002304""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002336"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002212"",""http://purl.obolibrary.org/obo/RO_0002212""],[""http://purl.obolibrary.org/obo/RO_0002230"",""http://purl.obolibrary.org/obo/RO_0002213""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002213""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002212"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002212""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0002213"":{""url"":""http://purl.obolibrary.org/obo/RO_0002213"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002213""},""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002304"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0002304""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004047"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004047""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002336"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002336""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002336","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.","http://purl.obolibrary.org/obo/mondo.owl","p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002304","http://purl.obolibrary.org/obo/RO_0002213","2.0","false","positively regulates","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002304","http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0002230|http://purl.obolibrary.org/obo/RO_0002213","gitIssue502","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002304|http://purl.obolibrary.org/obo/RO_0004047","RO:0002213","RO_0002213","","positively regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002215","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002215"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""definition"":{""type"":[""literal""],""value"":""A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. ""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002216"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002216"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. ""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002216"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. ""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002215""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""RO:0002215"":{""url"":""http://purl.obolibrary.org/obo/RO_0002215"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002215""},""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002216"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002216""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. ","http://purl.obolibrary.org/obo/mondo.owl","A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. ","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002216","http://purl.obolibrary.org/obo/RO_0002215","1.0","false","capable of","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/RO_0002216","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002216|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002215","RO_0002215","","capable of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002216","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002216"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002216""},""definition"":{""type"":[""literal""],""value"":""c stands in this relationship to p if and only if there exists some p\u0027 such that c is capable_of p\u0027, and p\u0027 is part_of p.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002500"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c stands in this relationship to p if and only if there exists some p\u0027 such that c is capable_of p\u0027, and p\u0027 is part_of p.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002500"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c stands in this relationship to p if and only if there exists some p\u0027 such that c is capable_of p\u0027, and p\u0027 is part_of p.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002216""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0002216"":{""url"":""http://purl.obolibrary.org/obo/RO_0002216"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002216""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c stands in this relationship to p if and only if there exists some p' such that c is capable_of p', and p' is part_of p.","http://purl.obolibrary.org/obo/mondo.owl","c stands in this relationship to p if and only if there exists some p' such that c is capable_of p', and p' is part_of p.","","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002216","2.0","false","capable of part of","","http://purl.obolibrary.org/obo/RO_0002500","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002216","RO_0002216","","capable of part of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002222","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002222"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""numDescendants"":27.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002222""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002222"":{""url"":""http://purl.obolibrary.org/obo/RO_0002222"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002222""},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/RO_0002222","27.0","false","temporally related to","http://purl.obolibrary.org/obo/BFO_0000003","","","gitIssue502","","RO:0002222","RO_0002222","","temporally related to","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002223","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002223"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002223""},""definition"":{""type"":[""literal""],""value"":""inverse of starts with""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002131"",""http://purl.obolibrary.org/obo/RO_0002222""],""directParent"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002222""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of starts with""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002222""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002224"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of starts with""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002223""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002223"":{""url"":""http://purl.obolibrary.org/obo/RO_0002223"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002223""},""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002224"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002224""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002224","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of starts with","http://purl.obolibrary.org/obo/mondo.owl","inverse of starts with","","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002223","0.0","false","starts","","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002222","","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/RO_0002222","RO:0002223","RO_0002223","","starts","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002224","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002224"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002224""},""definition"":{""type"":[""literal""],""value"":""x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \u003d α(x) ∧ ω(y) \u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131"",""http://purl.obolibrary.org/obo/RO_0002222""],""directParent"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002222""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \u003d α(x) ∧ ω(y) \u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts with"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002222""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002223"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts with"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \u003d α(x) ∧ ω(y) \u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002224""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002224"":{""url"":""http://purl.obolibrary.org/obo/RO_0002224"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002224""},""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002223"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002223""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002223","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) = α(x) ∧ ω(y) < ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http://purl.obolibrary.org/obo/mondo.owl","x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) = α(x) ∧ ω(y) < ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002224","0.0","false","starts with","","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002222","","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/RO_0002222","RO:0002224","RO_0002224","","starts with","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002225","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002225"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002225""},""definition"":{""type"":[""literal""],""value"":""x develops from part of y if and only if there exists some z such that x develops from z and z is part of y""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002202"",""http://purl.obolibrary.org/obo/RO_0002258""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002202"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x develops from part of y if and only if there exists some z such that x develops from z and z is part of y""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from part of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002202"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002207"",""http://purl.obolibrary.org/obo/BFO_0000050""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from part of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x develops from part of y if and only if there exists some z such that x develops from z and z is part of y""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002225""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002225"":{""url"":""http://purl.obolibrary.org/obo/RO_0002225"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002225""},""http://purl.obolibrary.org/obo/RO_0002207"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002207""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002258"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x develops from part of y if and only if there exists some z such that x develops from z and z is part of y","http://purl.obolibrary.org/obo/mondo.owl","x develops from part of y if and only if there exists some z such that x develops from z and z is part of y","","http://purl.obolibrary.org/obo/RO_0002202","http://purl.obolibrary.org/obo/RO_0002225","0.0","false","develops from part of","","http://purl.obolibrary.org/obo/RO_0002202","http://purl.obolibrary.org/obo/RO_0002207|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","http://purl.obolibrary.org/obo/RO_0002202|http://purl.obolibrary.org/obo/RO_0002258","RO:0002225","RO_0002225","","develops from part of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002229","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002229"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002229""},""definition"":{""type"":[""literal""],""value"":""inverse of ends with""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002131"",""http://purl.obolibrary.org/obo/RO_0002222""],""directParent"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002222""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of ends with""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002222""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002230"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of ends with""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002229""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002229"":{""url"":""http://purl.obolibrary.org/obo/RO_0002229"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002229""},""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002230","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of ends with","http://purl.obolibrary.org/obo/mondo.owl","inverse of ends with","","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002229","0.0","false","ends","","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002222","","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/RO_0002222","RO:0002229","RO_0002229","","ends","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002230","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002230"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""definition"":{""type"":[""literal""],""value"":""x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \u003e α(x) ∧ ω(y) \u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131"",""http://purl.obolibrary.org/obo/RO_0002222""],""directParent"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002222""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \u003e α(x) ∧ ω(y) \u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002222""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002229"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \u003e α(x) ∧ ω(y) \u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002230""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002229"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002229""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""RO:0002230"":{""url"":""http://purl.obolibrary.org/obo/RO_0002230"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002230""},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002229","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) > α(x) ∧ ω(y) = ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http://purl.obolibrary.org/obo/mondo.owl","x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) > α(x) ∧ ω(y) = ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002230","0.0","false","ends with","","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002222","","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/RO_0002222","RO:0002230","RO_0002230","","ends with","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002231","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002231"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002231""},""definition"":{""type"":[""literal""],""value"":""x \u0027has starts location\u0027 y if and only if there exists some process z such that x \u0027starts with\u0027 z and z \u0027occurs in\u0027 y""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002479"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002479"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x \u0027has starts location\u0027 y if and only if there exists some process z such that x \u0027starts with\u0027 z and z \u0027occurs in\u0027 y""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has start location"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002479"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002224"",""http://purl.obolibrary.org/obo/BFO_0000066""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has start location"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x \u0027has starts location\u0027 y if and only if there exists some process z such that x \u0027starts with\u0027 z and z \u0027occurs in\u0027 y""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002231""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002479"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has part that occurs in""},""curie"":{""type"":[""literal""],""value"":""RO:0002479""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002224"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002224""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""RO:0002231"":{""url"":""http://purl.obolibrary.org/obo/RO_0002231"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002231""},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000066""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x 'has starts location' y if and only if there exists some process z such that x 'starts with' z and z 'occurs in' y","http://purl.obolibrary.org/obo/mondo.owl","x 'has starts location' y if and only if there exists some process z such that x 'starts with' z and z 'occurs in' y","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/RO_0002479","http://purl.obolibrary.org/obo/RO_0002231","0.0","false","has start location","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002479","http://purl.obolibrary.org/obo/RO_0002224|http://purl.obolibrary.org/obo/BFO_0000066","gitIssue502","http://purl.obolibrary.org/obo/RO_0002479","RO:0002231","RO_0002231","","has start location","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002232","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002232"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002232""},""definition"":{""type"":[""literal""],""value"":""x \u0027has end location\u0027 y if and only if there exists some process z such that x \u0027ends with\u0027 z and z \u0027occurs in\u0027 y""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002479"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002479"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x \u0027has end location\u0027 y if and only if there exists some process z such that x \u0027ends with\u0027 z and z \u0027occurs in\u0027 y""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has end location"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002479"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002230"",""http://purl.obolibrary.org/obo/BFO_0000066""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has end location"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x \u0027has end location\u0027 y if and only if there exists some process z such that x \u0027ends with\u0027 z and z \u0027occurs in\u0027 y""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002232""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002479"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has part that occurs in""},""curie"":{""type"":[""literal""],""value"":""RO:0002479""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""RO:0002232"":{""url"":""http://purl.obolibrary.org/obo/RO_0002232"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002232""},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000066""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x 'has end location' y if and only if there exists some process z such that x 'ends with' z and z 'occurs in' y","http://purl.obolibrary.org/obo/mondo.owl","x 'has end location' y if and only if there exists some process z such that x 'ends with' z and z 'occurs in' y","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/RO_0002479","http://purl.obolibrary.org/obo/RO_0002232","0.0","false","has end location","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002479","http://purl.obolibrary.org/obo/RO_0002230|http://purl.obolibrary.org/obo/BFO_0000066","gitIssue502","http://purl.obolibrary.org/obo/RO_0002479","RO:0002232","RO_0002232","","has end location","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002233","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002233"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002233""},""definition"":{""type"":[""literal""],""value"":""p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000057"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000057"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has input"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002352"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002224"",""http://purl.obolibrary.org/obo/RO_0002233""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has input"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002233""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002352"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""input of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002352""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002224"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002224""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""RO:0002233"":{""url"":""http://purl.obolibrary.org/obo/RO_0002233"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002233""},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002352","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.","http://purl.obolibrary.org/obo/mondo.owl","p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.","","http://purl.obolibrary.org/obo/RO_0000057","http://purl.obolibrary.org/obo/RO_0002233","0.0","false","has input","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0000057","http://purl.obolibrary.org/obo/RO_0002224|http://purl.obolibrary.org/obo/RO_0002233","gitIssue502","http://purl.obolibrary.org/obo/RO_0000057","RO:0002233","RO_0002233","","has input","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002254","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002254"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002254""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has developmental contribution from y iff x has some part z such that z develops from y"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002258"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002258"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has developmental contribution from y iff x has some part z such that z develops from y"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental contribution from"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002258"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002255"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002202""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental contribution from"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has developmental contribution from y iff x has some part z such that z develops from y"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002254""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002255"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally contributes to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002255""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""RO:0002254"":{""url"":""http://purl.obolibrary.org/obo/RO_0002254"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002254""},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002258"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002255","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x has developmental contribution from y iff x has some part z such that z develops from y","http://purl.obolibrary.org/obo/mondo.owl","x has developmental contribution from y iff x has some part z such that z develops from y","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/RO_0002258","http://purl.obolibrary.org/obo/RO_0002254","0.0","false","has developmental contribution from","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/RO_0002258","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002202","gitIssue502","http://purl.obolibrary.org/obo/RO_0002258","RO:0002254","RO_0002254","","has developmental contribution from","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002255","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002255"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002255""},""definition"":{""type"":[""literal""],""value"":""inverse of has developmental contribution from""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002384"",""http://purl.obolibrary.org/obo/RO_0002385""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002385""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of has developmental contribution from""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally contributes to"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002385""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002254"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002203"",""http://purl.obolibrary.org/obo/BFO_0000050""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally contributes to"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of has developmental contribution from""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002255""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002254"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental contribution from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002254""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002203"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002203""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002286"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally succeeded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002286""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002255"":{""url"":""http://purl.obolibrary.org/obo/RO_0002255"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002255""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002385"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to developmentally contribute to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002385""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002384"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002254","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of has developmental contribution from","http://purl.obolibrary.org/obo/mondo.owl","inverse of has developmental contribution from","","http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002385","http://purl.obolibrary.org/obo/RO_0002255","0.0","false","developmentally contributes to","","http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002385","http://purl.obolibrary.org/obo/RO_0002203|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002384|http://purl.obolibrary.org/obo/RO_0002385","RO:0002255","RO_0002255","","developmentally contributes to","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002258","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002258"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""definition"":{""type"":[""literal""],""value"":""Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p""},""http://purl.obolibrary.org/obo/IAO_0000116"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002286"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""numDescendants"":6.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002258""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""GO:0032502"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0032502"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0032502""},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002286"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally succeeded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002286""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""RO:0002258"":{""url"":""http://purl.obolibrary.org/obo/RO_0002258"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002258""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002286","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","false","Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p","http://purl.obolibrary.org/obo/mondo.owl","Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/RO_0002258","6.0","false","developmentally preceded by","http://purl.obolibrary.org/obo/BFO_0000002","","","gitIssue502","","RO:0002258","RO_0002258","","developmentally preceded by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002263","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002263"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002263""},""definition"":{""type"":[""literal""],""value"":""c acts upstream of p if and only if c enables some f that is involved in p\u0027 and p\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\u0027 are processes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002264"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c acts upstream of p if and only if c enables some f that is involved in p\u0027 and p\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\u0027 are processes.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""acts upstream of""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002264"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002411""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""acts upstream of""},""numDescendants"":5.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c acts upstream of p if and only if c enables some f that is involved in p\u0027 and p\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\u0027 are processes.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002263""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002263"":{""url"":""http://purl.obolibrary.org/obo/RO_0002263"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002263""},""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c acts upstream of p if and only if c enables some f that is involved in p' and p' occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p' are processes.","http://purl.obolibrary.org/obo/mondo.owl","c acts upstream of p if and only if c enables some f that is involved in p' and p' occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p' are processes.","","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002263","5.0","false","acts upstream of","","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002411","gitIssue502","http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002263","RO_0002263","","acts upstream of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002264","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002264"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""definition"":{""type"":[""literal""],""value"":""c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002500"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002500"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002418""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""numDescendants"":10.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002264""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002264"":{""url"":""http://purl.obolibrary.org/obo/RO_0002264"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002264""},""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.","http://purl.obolibrary.org/obo/mondo.owl","c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.","","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002264","10.0","false","acts upstream of or within","","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002418","gitIssue502","http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002264","RO_0002264","","acts upstream of or within","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002286","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002286"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002286""},""definition"":{""type"":[""literal""],""value"":""Inverse of developmentally preceded by""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002384"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002384"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Inverse of developmentally preceded by""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally succeeded by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002384"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002258"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally succeeded by"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Inverse of developmentally preceded by""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002286""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002286"":{""url"":""http://purl.obolibrary.org/obo/RO_0002286"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002286""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002384"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002258"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002258","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","Inverse of developmentally preceded by","http://purl.obolibrary.org/obo/mondo.owl","Inverse of developmentally preceded by","","http://purl.obolibrary.org/obo/RO_0002384","http://purl.obolibrary.org/obo/RO_0002286","4.0","false","developmentally succeeded by","","http://purl.obolibrary.org/obo/RO_0002384","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002384","RO:0002286","RO_0002286","","developmentally succeeded by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002287","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002287"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002287""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002384""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002286"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of developmental precursor of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002286"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002210""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of developmental precursor of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002287""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002210"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002210""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002287"":{""url"":""http://purl.obolibrary.org/obo/RO_0002287"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002287""},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002286"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally succeeded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002286""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002384"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002287","0.0","false","part of developmental precursor of","","http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002210","gitIssue502","http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002384","RO:0002287","RO_0002287","","part of developmental precursor of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002304","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002304"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002304""},""definition"":{""type"":[""literal""],""value"":""p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0004047""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/RO_0004047""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causally upstream of, positive effect""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/RO_0004047""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causally upstream of, positive effect""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002304""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002304"":{""url"":""http://purl.obolibrary.org/obo/RO_0002304"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002304""},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004047"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004047""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.","http://purl.obolibrary.org/obo/mondo.owl","p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.","","http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/RO_0004047","http://purl.obolibrary.org/obo/RO_0002304","3.0","false","causally upstream of, positive effect","","http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/RO_0004047","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0004047","RO:0002304","RO_0002304","","causally upstream of, positive effect","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002305","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002305"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002305""},""definition"":{""type"":[""literal""],""value"":""p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0004046""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/RO_0004046""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causally upstream of, negative effect""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/RO_0004046""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causally upstream of, negative effect""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002305""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002305"":{""url"":""http://purl.obolibrary.org/obo/RO_0002305"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002305""},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004046"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004046""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.","http://purl.obolibrary.org/obo/mondo.owl","p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.","","http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/RO_0004046","http://purl.obolibrary.org/obo/RO_0002305","3.0","false","causally upstream of, negative effect","","http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/RO_0004046","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0004046","RO:0002305","RO_0002305","","causally upstream of, negative effect","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002327","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002327"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""definition"":{""type"":[""literal""],""value"":""c enables p iff c is capable of p and c acts to execute p.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002215"",""http://purl.obolibrary.org/obo/RO_0002216"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002215"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c enables p iff c is capable of p and c acts to execute p.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002333"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/BFO_0000051""],[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002017""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c enables p iff c is capable of p and c acts to execute p.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002327""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002333"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enabled by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002333""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002327"":{""url"":""http://purl.obolibrary.org/obo/RO_0002327"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002327""},""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component activity""},""curie"":{""type"":[""literal""],""value"":""RO:0002017""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002216"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002216""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002333","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c enables p iff c is capable of p and c acts to execute p.","http://purl.obolibrary.org/obo/mondo.owl","c enables p iff c is capable of p and c acts to execute p.","","http://purl.obolibrary.org/obo/RO_0002215","http://purl.obolibrary.org/obo/RO_0002327","0.0","false","enables","","http://purl.obolibrary.org/obo/RO_0002215","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002017","gitIssue502","http://purl.obolibrary.org/obo/RO_0002215|http://purl.obolibrary.org/obo/RO_0002216|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002327","RO_0002327","","enables","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002331","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002331"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002331""},""definition"":{""type"":[""literal""],""value"":""c involved_in p if and only if c enables some process p\u0027, and p\u0027 is part of p""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0000056"",""http://purl.obolibrary.org/obo/RO_0002431"",""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0000056"",""http://purl.obolibrary.org/obo/RO_0002431""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c involved_in p if and only if c enables some process p\u0027, and p\u0027 is part of p""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""involved in"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0000056"",""http://purl.obolibrary.org/obo/RO_0002431""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/BFO_0000050""],[""http://purl.obolibrary.org/obo/RO_0002331"",""http://purl.obolibrary.org/obo/BFO_0000050""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""involved in"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c involved_in p if and only if c enables some process p\u0027, and p\u0027 is part of p""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002331""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0002331"":{""url"":""http://purl.obolibrary.org/obo/RO_0002331"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002331""},""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002431"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""involved in or involved in regulation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002431""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000056"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000056""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c involved_in p if and only if c enables some process p', and p' is part of p","http://purl.obolibrary.org/obo/mondo.owl","c involved_in p if and only if c enables some process p', and p' is part of p","","http://purl.obolibrary.org/obo/RO_0000056|http://purl.obolibrary.org/obo/RO_0002431","http://purl.obolibrary.org/obo/RO_0002331","0.0","false","involved in","","http://purl.obolibrary.org/obo/RO_0000056|http://purl.obolibrary.org/obo/RO_0002431","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002331|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","http://purl.obolibrary.org/obo/RO_0000056|http://purl.obolibrary.org/obo/RO_0002431|http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002331","RO_0002331","","involved in","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002333","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002333"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002333""},""definition"":{""type"":[""literal""],""value"":""inverse of enables""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000057"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000057"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of enables""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enabled by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002327"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enabled by"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of enables""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002333""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""RO:0002333"":{""url"":""http://purl.obolibrary.org/obo/RO_0002333"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002333""},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002327","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of enables","http://purl.obolibrary.org/obo/mondo.owl","inverse of enables","","http://purl.obolibrary.org/obo/RO_0000057","http://purl.obolibrary.org/obo/RO_0002333","0.0","false","enabled by","","http://purl.obolibrary.org/obo/RO_0000057","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000057","RO:0002333","RO_0002333","","enabled by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002334","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002334"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""definition"":{""type"":[""literal""],""value"":""inverse of regulates""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002427"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of regulates""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002427"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002211"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""numDescendants"":8.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of regulates""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002334""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""RO:0002334"":{""url"":""http://purl.obolibrary.org/obo/RO_0002334"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002334""},""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002211","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of regulates","http://purl.obolibrary.org/obo/mondo.owl","inverse of regulates","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002334","8.0","false","regulated by","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002427","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002334","RO_0002334","","regulated by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002335","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002335"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002335""},""definition"":{""type"":[""literal""],""value"":""inverse of negatively regulates""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002334"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002334"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of negatively regulates""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulated by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002334"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002212"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulated by"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of negatively regulates""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002335""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002212"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002212""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""RO:0002335"":{""url"":""http://purl.obolibrary.org/obo/RO_0002335"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002335""},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002212","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of negatively regulates","http://purl.obolibrary.org/obo/mondo.owl","inverse of negatively regulates","","http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002335","1.0","false","negatively regulated by","","http://purl.obolibrary.org/obo/RO_0002334","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002334|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002335","RO_0002335","","negatively regulated by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002336","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002336"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002336""},""definition"":{""type"":[""literal""],""value"":""inverse of positively regulates""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002334"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002334"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of positively regulates""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulated by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002334"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002213"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulated by"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of positively regulates""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002336""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""RO:0002336"":{""url"":""http://purl.obolibrary.org/obo/RO_0002336"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002336""},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002213","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of positively regulates","http://purl.obolibrary.org/obo/mondo.owl","inverse of positively regulates","","http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002336","1.0","false","positively regulated by","","http://purl.obolibrary.org/obo/RO_0002334","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002334|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002336","RO_0002336","","positively regulated by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002352","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002352"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002352""},""definition"":{""type"":[""literal""],""value"":""inverse of has input""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000056"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000056"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of has input""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""input of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000056"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002233"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""input of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of has input""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002352""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002233""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000056"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000056""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""RO:0002352"":{""url"":""http://purl.obolibrary.org/obo/RO_0002352"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002352""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002233","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of has input","http://purl.obolibrary.org/obo/mondo.owl","inverse of has input","","http://purl.obolibrary.org/obo/RO_0000056","http://purl.obolibrary.org/obo/RO_0002352","0.0","false","input of","","http://purl.obolibrary.org/obo/RO_0000056","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000056","RO:0002352","RO_0002352","","input of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002384","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002384"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction)."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/UBERON_0001062"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""numDescendants"":8.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction)."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002384""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002384"":{""url"":""http://purl.obolibrary.org/obo/RO_0002384"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002384""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction).","http://purl.obolibrary.org/obo/mondo.owl","x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction).","http://purl.obolibrary.org/obo/UBERON_0001062","","http://purl.obolibrary.org/obo/RO_0002384","8.0","false","has developmental potential involving","http://purl.obolibrary.org/obo/UBERON_0001062","","","gitIssue502","","RO:0002384","RO_0002384","","has developmental potential involving","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002385","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002385"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002385""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002384"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002384"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to developmentally contribute to"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002384"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to developmentally contribute to"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002385""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002385"":{""url"":""http://purl.obolibrary.org/obo/RO_0002385"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002385""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002384"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y","http://purl.obolibrary.org/obo/mondo.owl","x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y","","http://purl.obolibrary.org/obo/RO_0002384","http://purl.obolibrary.org/obo/RO_0002385","1.0","false","has potential to developmentally contribute to","","http://purl.obolibrary.org/obo/RO_0002384","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002384","RO:0002385","RO_0002385","","has potential to developmentally contribute to","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002387","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002387"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has the potential to develop into y iff x develops into y or if x is capable of developing into y"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002384"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002384"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has the potential to develop into y iff x develops into y or if x is capable of developing into y"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002384"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has the potential to develop into y iff x develops into y or if x is capable of developing into y"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002387""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002387"":{""url"":""http://purl.obolibrary.org/obo/RO_0002387"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002387""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002384"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x has the potential to develop into y iff x develops into y or if x is capable of developing into y","http://purl.obolibrary.org/obo/mondo.owl","x has the potential to develop into y iff x develops into y or if x is capable of developing into y","","http://purl.obolibrary.org/obo/RO_0002384","http://purl.obolibrary.org/obo/RO_0002387","3.0","false","has potential to develop into","","http://purl.obolibrary.org/obo/RO_0002384","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002384","RO:0002387","RO_0002387","","has potential to develop into","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002388","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002388"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002388""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002387"",""http://purl.obolibrary.org/obo/RO_0002384""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002387"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to directly develop into"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002387"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to directly develop into"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002388""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002388"":{""url"":""http://purl.obolibrary.org/obo/RO_0002388"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002388""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002384"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y","http://purl.obolibrary.org/obo/mondo.owl","x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y","","http://purl.obolibrary.org/obo/RO_0002387","http://purl.obolibrary.org/obo/RO_0002388","2.0","false","has potential to directly develop into","","http://purl.obolibrary.org/obo/RO_0002387","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002387|http://purl.obolibrary.org/obo/RO_0002384","RO:0002388","RO_0002388","","has potential to directly develop into","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002404","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002404"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002404""},""definition"":{""type"":[""literal""],""value"":""inverse of upstream of""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000062"",""http://purl.obolibrary.org/obo/RO_0002086"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":[""http://purl.obolibrary.org/obo/BFO_0000062"",""http://purl.obolibrary.org/obo/RO_0002427""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of upstream of""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally downstream of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/BFO_0000062"",""http://purl.obolibrary.org/obo/RO_0002427""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002411"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally downstream of"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of upstream of""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002404""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends after"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002086""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002404"":{""url"":""http://purl.obolibrary.org/obo/RO_0002404"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002404""},""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002411","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of upstream of","http://purl.obolibrary.org/obo/mondo.owl","inverse of upstream of","","http://purl.obolibrary.org/obo/BFO_0000062|http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002404","1.0","false","causally downstream of","","http://purl.obolibrary.org/obo/BFO_0000062|http://purl.obolibrary.org/obo/RO_0002427","","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000062|http://purl.obolibrary.org/obo/RO_0002086|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002404","RO_0002404","","causally downstream of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002405","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002405"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002405""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002087"",""http://purl.obolibrary.org/obo/BFO_0000062"",""http://purl.obolibrary.org/obo/RO_0002086"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002404"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002087"",""http://purl.obolibrary.org/obo/RO_0002404""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally downstream of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002087"",""http://purl.obolibrary.org/obo/RO_0002404""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002412"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally downstream of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002405""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002405"":{""url"":""http://purl.obolibrary.org/obo/RO_0002405"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002405""},""http://purl.obolibrary.org/obo/RO_0002404"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally downstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002404""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends after"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002086""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002087"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002087""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002412""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002412","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002087|http://purl.obolibrary.org/obo/RO_0002404","http://purl.obolibrary.org/obo/RO_0002405","0.0","false","immediately causally downstream of","","http://purl.obolibrary.org/obo/RO_0002087|http://purl.obolibrary.org/obo/RO_0002404","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002087|http://purl.obolibrary.org/obo/BFO_0000062|http://purl.obolibrary.org/obo/RO_0002086|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002404|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002405","RO_0002405","","immediately causally downstream of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002407","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002407"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002407""},""definition"":{""type"":[""literal""],""value"":""p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002213"",""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002304"",""http://purl.obolibrary.org/obo/RO_0004047"",""http://purl.obolibrary.org/obo/RO_0012012"",""http://purl.obolibrary.org/obo/RO_0012011""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002213"",""http://purl.obolibrary.org/obo/RO_0012012""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly positively regulates"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002213"",""http://purl.obolibrary.org/obo/RO_0012012""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002407"",""http://purl.obolibrary.org/obo/RO_0002629""],[""http://purl.obolibrary.org/obo/RO_0002409"",""http://purl.obolibrary.org/obo/RO_0002409""],[""http://purl.obolibrary.org/obo/RO_0002629"",""http://purl.obolibrary.org/obo/RO_0002407""],[""http://purl.obolibrary.org/obo/RO_0002629"",""http://purl.obolibrary.org/obo/RO_0002629""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly positively regulates"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002407""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002409"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly negatively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002409""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002407"":{""url"":""http://purl.obolibrary.org/obo/RO_0002407"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002407""},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002304"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0002304""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002629"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly positively regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002629""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004047"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004047""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0012012"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0012012""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0012011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0012011""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.","http://purl.obolibrary.org/obo/mondo.owl","p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.","","http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0012012","http://purl.obolibrary.org/obo/RO_0002407","0.0","false","indirectly positively regulates","","http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0012012","http://purl.obolibrary.org/obo/RO_0002407|http://purl.obolibrary.org/obo/RO_0002629|http://purl.obolibrary.org/obo/RO_0002409|http://purl.obolibrary.org/obo/RO_0002409|http://purl.obolibrary.org/obo/RO_0002629|http://purl.obolibrary.org/obo/RO_0002407|http://purl.obolibrary.org/obo/RO_0002629|http://purl.obolibrary.org/obo/RO_0002629","gitIssue502","http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002304|http://purl.obolibrary.org/obo/RO_0004047|http://purl.obolibrary.org/obo/RO_0012012|http://purl.obolibrary.org/obo/RO_0012011","RO:0002407","RO_0002407","","indirectly positively regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002409","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002409"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002409""},""definition"":{""type"":[""literal""],""value"":""p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002212"",""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002305"",""http://purl.obolibrary.org/obo/RO_0004046"",""http://purl.obolibrary.org/obo/RO_0012012"",""http://purl.obolibrary.org/obo/RO_0012011""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002212"",""http://purl.obolibrary.org/obo/RO_0012012""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly negatively regulates"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002212"",""http://purl.obolibrary.org/obo/RO_0012012""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002409"",""http://purl.obolibrary.org/obo/RO_0002630""],[""http://purl.obolibrary.org/obo/RO_0002630"",""http://purl.obolibrary.org/obo/RO_0002409""],[""http://purl.obolibrary.org/obo/RO_0002630"",""http://purl.obolibrary.org/obo/RO_0002630""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly negatively regulates"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002409""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002212"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002212""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0002409"":{""url"":""http://purl.obolibrary.org/obo/RO_0002409"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002409""},""http://purl.obolibrary.org/obo/RO_0002630"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly negatively regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002630""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002305"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0002305""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004046"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004046""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0012012"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0012012""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0012011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0012011""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.","http://purl.obolibrary.org/obo/mondo.owl","p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.","","http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0012012","http://purl.obolibrary.org/obo/RO_0002409","0.0","false","indirectly negatively regulates","","http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0012012","http://purl.obolibrary.org/obo/RO_0002409|http://purl.obolibrary.org/obo/RO_0002630|http://purl.obolibrary.org/obo/RO_0002630|http://purl.obolibrary.org/obo/RO_0002409|http://purl.obolibrary.org/obo/RO_0002630|http://purl.obolibrary.org/obo/RO_0002630","gitIssue502","http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002305|http://purl.obolibrary.org/obo/RO_0004046|http://purl.obolibrary.org/obo/RO_0012012|http://purl.obolibrary.org/obo/RO_0012011","RO:0002409","RO_0002409","","indirectly negatively regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002411","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002411"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""definition"":{""type"":[""literal""],""value"":""p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":[""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002418""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002418""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002404"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""numDescendants"":13.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002411""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002404"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally downstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002404""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0002411"":{""url"":""http://purl.obolibrary.org/obo/RO_0002411"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002411""},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002404","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.","http://purl.obolibrary.org/obo/mondo.owl","p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.","","http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002411","13.0","false","causally upstream of","","http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002418","","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501","RO:0002411","RO_0002411","","causally upstream of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002412","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002412"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002412""},""definition"":{""type"":[""literal""],""value"":""p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002090"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002090"",""http://purl.obolibrary.org/obo/RO_0002411""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally upstream of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002090"",""http://purl.obolibrary.org/obo/RO_0002411""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002405"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally upstream of"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002412""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002090"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002090""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002405"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally downstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002405""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0002412"":{""url"":""http://purl.obolibrary.org/obo/RO_0002412"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002412""},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002405","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.","http://purl.obolibrary.org/obo/mondo.owl","p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.","","http://purl.obolibrary.org/obo/RO_0002090|http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0002412","3.0","false","immediately causally upstream of","","http://purl.obolibrary.org/obo/RO_0002090|http://purl.obolibrary.org/obo/RO_0002411","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002090|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501","RO:0002412","RO_0002412","","immediately causally upstream of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002418","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002418"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""definition"":{""type"":[""literal""],""value"":""p is \u0027causally upstream or within\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002501"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002501"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p is \u0027causally upstream or within\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""We would like to make this disjoint with \u0027preceded by\u0027, but this is prohibited in OWL2""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002501"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002427"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""numDescendants"":16.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p is \u0027causally upstream or within\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.""},{""type"":[""literal""],""value"":""We would like to make this disjoint with \u0027preceded by\u0027, but this is prohibited in OWL2""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002418""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""RO:0002418"":{""url"":""http://purl.obolibrary.org/obo/RO_0002418"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002418""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002427","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","We would like to make this disjoint with 'preceded by', but this is prohibited in OWL2","p is 'causally upstream or within' q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.","http://purl.obolibrary.org/obo/mondo.owl","p is 'causally upstream or within' q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.","","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002418","16.0","false","causally upstream of or within","","http://purl.obolibrary.org/obo/RO_0002501","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002501","RO:0002418","RO_0002418","","causally upstream of or within","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002427","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002427"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""definition"":{""type"":[""literal""],""value"":""inverse of causally upstream of or within""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002501"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002501"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of causally upstream of or within""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002501"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002418"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""numDescendants"":11.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of causally upstream of or within""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002427""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002427"":{""url"":""http://purl.obolibrary.org/obo/RO_0002427"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002427""},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002418","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of causally upstream of or within","http://purl.obolibrary.org/obo/mondo.owl","inverse of causally upstream of or within","","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002427","11.0","false","causally downstream of or within","","http://purl.obolibrary.org/obo/RO_0002501","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002501","RO:0002427","RO_0002427","","causally downstream of or within","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002428","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002428"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002428""},""definition"":{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 regulates some p""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595"",""http://purl.obolibrary.org/obo/RO_0002431""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0002431""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 regulates some p""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""involved in regulation of""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0002431""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002211""],[""http://purl.obolibrary.org/obo/RO_0002331"",""http://purl.obolibrary.org/obo/RO_0002211""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""involved in regulation of""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 regulates some p""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002428""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002428"":{""url"":""http://purl.obolibrary.org/obo/RO_0002428"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002428""},""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002331"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""involved in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002331""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002431"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""involved in or involved in regulation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002431""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of""},""curie"":{""type"":[""literal""],""value"":""RO:0002263""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c involved in regulation of p if c is involved in some p' and p' regulates some p","http://purl.obolibrary.org/obo/mondo.owl","c involved in regulation of p if c is involved in some p' and p' regulates some p","","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0002431","http://purl.obolibrary.org/obo/RO_0002428","2.0","false","involved in regulation of","","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0002431","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002331|http://purl.obolibrary.org/obo/RO_0002211","gitIssue502","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595|http://purl.obolibrary.org/obo/RO_0002431","RO:0002428","RO_0002428","","involved in regulation of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002429","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002429"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002429""},""definition"":{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 positively regulates some p""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002428"",""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595"",""http://purl.obolibrary.org/obo/RO_0002431""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002428"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 positively regulates some p""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""involved in positive regulation of""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002428"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002213""],[""http://purl.obolibrary.org/obo/RO_0002331"",""http://purl.obolibrary.org/obo/RO_0002213""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""involved in positive regulation of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 positively regulates some p""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002429""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002429"":{""url"":""http://purl.obolibrary.org/obo/RO_0002429"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002429""},""http://purl.obolibrary.org/obo/RO_0002331"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""involved in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002331""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002431"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""involved in or involved in regulation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002431""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""involved in regulation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002428""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of""},""curie"":{""type"":[""literal""],""value"":""RO:0002263""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c involved in regulation of p if c is involved in some p' and p' positively regulates some p","http://purl.obolibrary.org/obo/mondo.owl","c involved in regulation of p if c is involved in some p' and p' positively regulates some p","","http://purl.obolibrary.org/obo/RO_0002428","http://purl.obolibrary.org/obo/RO_0002429","0.0","false","involved in positive regulation of","","http://purl.obolibrary.org/obo/RO_0002428","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0002331|http://purl.obolibrary.org/obo/RO_0002213","gitIssue502","http://purl.obolibrary.org/obo/RO_0002428|http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595|http://purl.obolibrary.org/obo/RO_0002431","RO:0002429","RO_0002429","","involved in positive regulation of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002430","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002430"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002430""},""definition"":{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 negatively regulates some p""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002428"",""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595"",""http://purl.obolibrary.org/obo/RO_0002431""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002428"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 negatively regulates some p""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""involved in negative regulation of""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002428"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002212""],[""http://purl.obolibrary.org/obo/RO_0002331"",""http://purl.obolibrary.org/obo/RO_0002212""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""involved in negative regulation of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 negatively regulates some p""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002430""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002331"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""involved in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002331""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002212"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002212""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002431"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""involved in or involved in regulation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002431""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""involved in regulation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002428""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002430"":{""url"":""http://purl.obolibrary.org/obo/RO_0002430"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002430""},""http://purl.obolibrary.org/obo/RO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of""},""curie"":{""type"":[""literal""],""value"":""RO:0002263""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c involved in regulation of p if c is involved in some p' and p' negatively regulates some p","http://purl.obolibrary.org/obo/mondo.owl","c involved in regulation of p if c is involved in some p' and p' negatively regulates some p","","http://purl.obolibrary.org/obo/RO_0002428","http://purl.obolibrary.org/obo/RO_0002430","0.0","false","involved in negative regulation of","","http://purl.obolibrary.org/obo/RO_0002428","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0002331|http://purl.obolibrary.org/obo/RO_0002212","gitIssue502","http://purl.obolibrary.org/obo/RO_0002428|http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595|http://purl.obolibrary.org/obo/RO_0002431","RO:0002430","RO_0002430","","involved in negative regulation of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002431","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002431"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002431""},""definition"":{""type"":[""literal""],""value"":""c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""OWL does not allow defining object properties via a Union""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""involved in or involved in regulation of""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""involved in or involved in regulation of""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p""},{""type"":[""literal""],""value"":""OWL does not allow defining object properties via a Union""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002431""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002431"":{""url"":""http://purl.obolibrary.org/obo/RO_0002431"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002431""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","OWL does not allow defining object properties via a Union","c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p","http://purl.obolibrary.org/obo/mondo.owl","c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p","","http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002431","4.0","false","involved in or involved in regulation of","","http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002431","RO_0002431","","involved in or involved in regulation of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002434","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002434"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002434""},""definition"":{""type"":[""literal""],""value"":""A relationship that holds between two entities in which the processes executed by the two entities are causally connected.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship that holds between two entities in which the processes executed by the two entities are causally connected.""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""Considering relabeling as \u0027pairwise interacts with\u0027""},{""type"":[""literal""],""value"":""This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact.""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#SymmetricProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""interacts with""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000040"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""interacts with""},""numDescendants"":5.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship that holds between two entities in which the processes executed by the two entities are causally connected.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""Considering relabeling as \u0027pairwise interacts with\u0027""},{""type"":[""literal""],""value"":""This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002434""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""RO:0002434"":{""url"":""http://purl.obolibrary.org/obo/RO_0002434"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002434""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","Considering relabeling as 'pairwise interacts with'|This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact.","A relationship that holds between two entities in which the processes executed by the two entities are causally connected.","http://purl.obolibrary.org/obo/mondo.owl","A relationship that holds between two entities in which the processes executed by the two entities are causally connected.","http://purl.obolibrary.org/obo/BFO_0000040","","http://purl.obolibrary.org/obo/RO_0002434","5.0","false","interacts with","http://purl.obolibrary.org/obo/BFO_0000040","","","gitIssue502","","RO:0002434","RO_0002434","","interacts with","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#SymmetricProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002436","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002436"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002436""},""definition"":{""type"":[""literal""],""value"":""An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002434"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002434"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#SymmetricProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""molecularly interacts with""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002434"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""molecularly interacts with""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002436""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0002436"":{""url"":""http://purl.obolibrary.org/obo/RO_0002436"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002436""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002434"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002434""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.","http://purl.obolibrary.org/obo/mondo.owl","An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.","","http://purl.obolibrary.org/obo/RO_0002434","http://purl.obolibrary.org/obo/RO_0002436","4.0","false","molecularly interacts with","","http://purl.obolibrary.org/obo/RO_0002434","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002434","RO:0002436","RO_0002436","","molecularly interacts with","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#SymmetricProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002447","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002447"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002447""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002436"",""http://purl.obolibrary.org/obo/RO_0002434""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002436"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""Axiomatization to GO to be added later""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""phosphorylates""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002436"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""phosphorylates""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Axiomatization to GO to be added later""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002447""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002447"":{""url"":""http://purl.obolibrary.org/obo/RO_0002447"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002447""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002434"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002434""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002436"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecularly interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002436""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","Axiomatization to GO to be added later","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002436","http://purl.obolibrary.org/obo/RO_0002447","0.0","false","phosphorylates","","http://purl.obolibrary.org/obo/RO_0002436","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002436|http://purl.obolibrary.org/obo/RO_0002434","RO:0002447","RO_0002447","","phosphorylates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002448","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002448"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002448""},""definition"":{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\n\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002436"",""http://purl.obolibrary.org/obo/RO_0002434"",""http://purl.obolibrary.org/obo/RO_0011002"",""http://purl.obolibrary.org/obo/RO_0002566"",""http://purl.obolibrary.org/obo/RO_0002506""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002436"",""http://purl.obolibrary.org/obo/RO_0011002""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\n\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly regulates activity of""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002436"",""http://purl.obolibrary.org/obo/RO_0011002""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002333""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly regulates activity of""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\n\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002448""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0011002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulates activity of""},""curie"":{""type"":[""literal""],""value"":""RO:0011002""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002333"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enabled by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002333""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002566"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally influences""},""curie"":{""type"":[""literal""],""value"":""RO:0002566""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002434"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002434""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002436"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecularly interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002436""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""RO:0002448"":{""url"":""http://purl.obolibrary.org/obo/RO_0002448"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002448""},""http://purl.obolibrary.org/obo/RO_0002506"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between entities""},""curie"":{""type"":[""literal""],""value"":""RO:0002506""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B. +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002162","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002162"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002162""},""definition"":{""type"":[""literal""],""value"":""x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""RO:0002162""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""in_taxon""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""in_taxon""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""in taxon""},""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002162""],[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002162""],[""http://purl.obolibrary.org/obo/RO_0002202"",""http://purl.obolibrary.org/obo/RO_0002162""],[""http://purl.obolibrary.org/obo/RO_0002215"",""http://purl.obolibrary.org/obo/RO_0002162""],[""http://purl.obolibrary.org/obo/RO_0002225"",""http://purl.obolibrary.org/obo/RO_0002162""],[""http://purl.obolibrary.org/obo/RO_0002254"",""http://purl.obolibrary.org/obo/RO_0002162""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""in taxon""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.""},{""type"":[""literal""],""value"":""RO:0002162""},{""type"":[""literal""],""value"":""in_taxon""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002162""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002254"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental contribution from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002254""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002225"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002225""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002162"":{""url"":""http://purl.obolibrary.org/obo/RO_0002162"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002162""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","RO:0002162","0.0","property|objectProperty|entity","","in_taxon","in_taxon","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.","http://purl.obolibrary.org/obo/mondo.owl","x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.","","","http://purl.obolibrary.org/obo/RO_0002162","1.0","false","in taxon","","","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002162|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002162|http://purl.obolibrary.org/obo/RO_0002202|http://purl.obolibrary.org/obo/RO_0002162|http://purl.obolibrary.org/obo/RO_0002215|http://purl.obolibrary.org/obo/RO_0002162|http://purl.obolibrary.org/obo/RO_0002225|http://purl.obolibrary.org/obo/RO_0002162|http://purl.obolibrary.org/obo/RO_0002254|http://purl.obolibrary.org/obo/RO_0002162","gitIssue502","","RO:0002162","RO_0002162","","in taxon","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002175","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002175"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002175""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""RO_0002175""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002175""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://purl.obolibrary.org/obo/RO_0002175","0.0","false","RO_0002175","","","","gitIssue502","","RO:0002175","RO_0002175","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002180","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002180"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002180""},""definition"":{""type"":[""literal""],""value"":""w \u0027has component\u0027 p if w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000051"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""w \u0027has component\u0027 p if w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""The definition of \u0027has component\u0027 is still under discussion. The challenge is in providing a definition that does not imply transitivity.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has component"",""lang"":""en""},""numDescendants"":6.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""w \u0027has component\u0027 p if w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.""},{""type"":[""literal""],""value"":""The definition of \u0027has component\u0027 is still under discussion. The challenge is in providing a definition that does not imply transitivity.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002180""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","The definition of 'has component' is still under discussion. The challenge is in providing a definition that does not imply transitivity.","w 'has component' p if w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","http://purl.obolibrary.org/obo/mondo.owl","w 'has component' p if w 'has part' p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002180","6.0","false","has component","","http://purl.obolibrary.org/obo/BFO_0000051","","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131","RO:0002180","RO_0002180","","has component","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002202","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002202"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""definition"":{""type"":[""literal""],""value"":""x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002258"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002258"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002258"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002203"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002202""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002203"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002203""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002258"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002203","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y","http://purl.obolibrary.org/obo/mondo.owl","x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/RO_0002258","http://purl.obolibrary.org/obo/RO_0002202","4.0","false","develops from","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/RO_0002258","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002258","RO:0002202","RO_0002202","","develops from","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002203","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002203"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002203""},""definition"":{""type"":[""literal""],""value"":""inverse of develops from""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002384"",""http://purl.obolibrary.org/obo/RO_0002387"",""http://purl.obolibrary.org/obo/RO_0002388""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002387"",""http://purl.obolibrary.org/obo/RO_0002388""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of develops from""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops into"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002387"",""http://purl.obolibrary.org/obo/RO_0002388""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002202"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops into"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of develops from""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002203""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002286"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally succeeded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002286""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002388"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to directly develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002388""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002384"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002202","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of develops from","http://purl.obolibrary.org/obo/mondo.owl","inverse of develops from","","http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002387|http://purl.obolibrary.org/obo/RO_0002388","http://purl.obolibrary.org/obo/RO_0002203","1.0","false","develops into","","http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002387|http://purl.obolibrary.org/obo/RO_0002388","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002384|http://purl.obolibrary.org/obo/RO_0002387|http://purl.obolibrary.org/obo/RO_0002388","RO:0002203","RO_0002203","","develops into","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002207","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002207"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002207""},""definition"":{""type"":[""literal""],""value"":""Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002202"",""http://purl.obolibrary.org/obo/RO_0002258""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002202"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#unionOf"":[""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0010000""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops from"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#unionOf"":[""http://purl.obolibrary.org/obo/CL_0000000"",""http://purl.obolibrary.org/obo/UBERON_0010000""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002202"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002210"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops from"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002207""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002210"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002210""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/CL_0000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cell""},""curie"":{""type"":[""literal""],""value"":""CL:0000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular anatomical structure""},""curie"":{""type"":[""literal""],""value"":""UBERON:0010000""},""type"":[""class"",""entity""]},""GO:0032502"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0032502"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0032502""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002258"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002210","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.","http://purl.obolibrary.org/obo/mondo.owl","Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.","","http://purl.obolibrary.org/obo/RO_0002202","http://purl.obolibrary.org/obo/RO_0002207","1.0","false","directly develops from","","http://purl.obolibrary.org/obo/RO_0002202","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002202|http://purl.obolibrary.org/obo/RO_0002258","RO:0002207","RO_0002207","","directly develops from","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002210","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002210"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002210""},""definition"":{""type"":[""literal""],""value"":""inverse of directly develops from""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002203"",""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002384"",""http://purl.obolibrary.org/obo/RO_0002387"",""http://purl.obolibrary.org/obo/RO_0002388""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002203"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of directly develops from""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops into"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002203"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002207"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops into"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of directly develops from""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002210""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002207"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002207""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002203"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002203""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002286"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally succeeded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002286""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002388"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to directly develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002388""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002384"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002207","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of directly develops from","http://purl.obolibrary.org/obo/mondo.owl","inverse of directly develops from","","http://purl.obolibrary.org/obo/RO_0002203","http://purl.obolibrary.org/obo/RO_0002210","0.0","false","directly develops into","","http://purl.obolibrary.org/obo/RO_0002203","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002203|http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002384|http://purl.obolibrary.org/obo/RO_0002387|http://purl.obolibrary.org/obo/RO_0002388","RO:0002210","RO_0002210","","directly develops into","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002211","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002211"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""definition"":{""type"":[""literal""],""value"":""p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002411"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002411"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002334"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002025""],[""http://purl.obolibrary.org/obo/RO_0002230"",""http://purl.obolibrary.org/obo/RO_0002211""],[""http://purl.obolibrary.org/obo/RO_0002578"",""http://purl.obolibrary.org/obo/RO_0002578""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""numDescendants"":8.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002211""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002025"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has effector activity""},""curie"":{""type"":[""literal""],""value"":""RO:0002025""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002578"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002578""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002334","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.","http://purl.obolibrary.org/obo/mondo.owl","p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0002211","8.0","false","regulates","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002025|http://purl.obolibrary.org/obo/RO_0002230|http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002578|http://purl.obolibrary.org/obo/RO_0002578","gitIssue502","http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501","RO:0002211","RO_0002211","","regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002212","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002212"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002212""},""definition"":{""type"":[""literal""],""value"":""p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002305"",""http://purl.obolibrary.org/obo/RO_0004046""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002305""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002305""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002335"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002230"",""http://purl.obolibrary.org/obo/RO_0002212""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002212""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002305"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0002305""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004046"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004046""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002335"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002335""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002335","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.","http://purl.obolibrary.org/obo/mondo.owl","p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002305","http://purl.obolibrary.org/obo/RO_0002212","2.0","false","negatively regulates","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002305","http://purl.obolibrary.org/obo/RO_0002230|http://purl.obolibrary.org/obo/RO_0002212","gitIssue502","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002305|http://purl.obolibrary.org/obo/RO_0004046","RO:0002212","RO_0002212","","negatively regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002213","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002213"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""definition"":{""type"":[""literal""],""value"":""p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002304"",""http://purl.obolibrary.org/obo/RO_0004047""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002304""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002304""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002336"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002212"",""http://purl.obolibrary.org/obo/RO_0002212""],[""http://purl.obolibrary.org/obo/RO_0002230"",""http://purl.obolibrary.org/obo/RO_0002213""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002213""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002212"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002212""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002304"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0002304""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004047"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004047""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002336"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002336""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002336","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.","http://purl.obolibrary.org/obo/mondo.owl","p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002304","http://purl.obolibrary.org/obo/RO_0002213","2.0","false","positively regulates","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002304","http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0002230|http://purl.obolibrary.org/obo/RO_0002213","gitIssue502","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002304|http://purl.obolibrary.org/obo/RO_0004047","RO:0002213","RO_0002213","","positively regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002215","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002215"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""definition"":{""type"":[""literal""],""value"":""A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. ""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002216"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002216"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. ""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002216"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. ""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002215""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002216"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002216""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. ","http://purl.obolibrary.org/obo/mondo.owl","A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. ","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002216","http://purl.obolibrary.org/obo/RO_0002215","1.0","false","capable of","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/RO_0002216","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002216|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002215","RO_0002215","","capable of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002216","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002216"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002216""},""definition"":{""type"":[""literal""],""value"":""c stands in this relationship to p if and only if there exists some p\u0027 such that c is capable_of p\u0027, and p\u0027 is part_of p.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002500"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c stands in this relationship to p if and only if there exists some p\u0027 such that c is capable_of p\u0027, and p\u0027 is part_of p.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002500"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c stands in this relationship to p if and only if there exists some p\u0027 such that c is capable_of p\u0027, and p\u0027 is part_of p.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002216""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c stands in this relationship to p if and only if there exists some p' such that c is capable_of p', and p' is part_of p.","http://purl.obolibrary.org/obo/mondo.owl","c stands in this relationship to p if and only if there exists some p' such that c is capable_of p', and p' is part_of p.","","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002216","2.0","false","capable of part of","","http://purl.obolibrary.org/obo/RO_0002500","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002216","RO_0002216","","capable of part of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002222","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002222"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""numDescendants"":27.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002222""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/RO_0002222","27.0","false","temporally related to","http://purl.obolibrary.org/obo/BFO_0000003","","","gitIssue502","","RO:0002222","RO_0002222","","temporally related to","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002223","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002223"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002223""},""definition"":{""type"":[""literal""],""value"":""inverse of starts with""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002131"",""http://purl.obolibrary.org/obo/RO_0002222""],""directParent"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002222""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of starts with""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002222""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002224"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of starts with""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002223""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002224"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002224""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002224","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of starts with","http://purl.obolibrary.org/obo/mondo.owl","inverse of starts with","","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002223","0.0","false","starts","","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002222","","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/RO_0002222","RO:0002223","RO_0002223","","starts","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002224","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002224"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002224""},""definition"":{""type"":[""literal""],""value"":""x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \u003d α(x) ∧ ω(y) \u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131"",""http://purl.obolibrary.org/obo/RO_0002222""],""directParent"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002222""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \u003d α(x) ∧ ω(y) \u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts with"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002222""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002223"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts with"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \u003d α(x) ∧ ω(y) \u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002224""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002223"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002223""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002223","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) = α(x) ∧ ω(y) < ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http://purl.obolibrary.org/obo/mondo.owl","x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) = α(x) ∧ ω(y) < ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002224","0.0","false","starts with","","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002222","","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/RO_0002222","RO:0002224","RO_0002224","","starts with","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002225","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002225"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002225""},""definition"":{""type"":[""literal""],""value"":""x develops from part of y if and only if there exists some z such that x develops from z and z is part of y""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002202"",""http://purl.obolibrary.org/obo/RO_0002258""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002202"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x develops from part of y if and only if there exists some z such that x develops from z and z is part of y""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from part of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002202"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002207"",""http://purl.obolibrary.org/obo/BFO_0000050""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from part of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x develops from part of y if and only if there exists some z such that x develops from z and z is part of y""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002225""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002207"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002207""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002258"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x develops from part of y if and only if there exists some z such that x develops from z and z is part of y","http://purl.obolibrary.org/obo/mondo.owl","x develops from part of y if and only if there exists some z such that x develops from z and z is part of y","","http://purl.obolibrary.org/obo/RO_0002202","http://purl.obolibrary.org/obo/RO_0002225","0.0","false","develops from part of","","http://purl.obolibrary.org/obo/RO_0002202","http://purl.obolibrary.org/obo/RO_0002207|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","http://purl.obolibrary.org/obo/RO_0002202|http://purl.obolibrary.org/obo/RO_0002258","RO:0002225","RO_0002225","","develops from part of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002229","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002229"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002229""},""definition"":{""type"":[""literal""],""value"":""inverse of ends with""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002131"",""http://purl.obolibrary.org/obo/RO_0002222""],""directParent"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002222""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of ends with""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002222""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002230"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of ends with""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002229""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002230","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of ends with","http://purl.obolibrary.org/obo/mondo.owl","inverse of ends with","","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002229","0.0","false","ends","","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002222","","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/RO_0002222","RO:0002229","RO_0002229","","ends","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002230","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002230"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""definition"":{""type"":[""literal""],""value"":""x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \u003e α(x) ∧ ω(y) \u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131"",""http://purl.obolibrary.org/obo/RO_0002222""],""directParent"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002222""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \u003e α(x) ∧ ω(y) \u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002222""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002229"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \u003e α(x) ∧ ω(y) \u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002230""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002229"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002229""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002229","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) > α(x) ∧ ω(y) = ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http://purl.obolibrary.org/obo/mondo.owl","x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) > α(x) ∧ ω(y) = ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002230","0.0","false","ends with","","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002222","","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131|http://purl.obolibrary.org/obo/RO_0002222","RO:0002230","RO_0002230","","ends with","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002231","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002231"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002231""},""definition"":{""type"":[""literal""],""value"":""x \u0027has starts location\u0027 y if and only if there exists some process z such that x \u0027starts with\u0027 z and z \u0027occurs in\u0027 y""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002479"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002479"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x \u0027has starts location\u0027 y if and only if there exists some process z such that x \u0027starts with\u0027 z and z \u0027occurs in\u0027 y""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has start location"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002479"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002224"",""http://purl.obolibrary.org/obo/BFO_0000066""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has start location"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x \u0027has starts location\u0027 y if and only if there exists some process z such that x \u0027starts with\u0027 z and z \u0027occurs in\u0027 y""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002231""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002479"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has part that occurs in""},""curie"":{""type"":[""literal""],""value"":""RO:0002479""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002224"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002224""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000066""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x 'has starts location' y if and only if there exists some process z such that x 'starts with' z and z 'occurs in' y","http://purl.obolibrary.org/obo/mondo.owl","x 'has starts location' y if and only if there exists some process z such that x 'starts with' z and z 'occurs in' y","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/RO_0002479","http://purl.obolibrary.org/obo/RO_0002231","0.0","false","has start location","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002479","http://purl.obolibrary.org/obo/RO_0002224|http://purl.obolibrary.org/obo/BFO_0000066","gitIssue502","http://purl.obolibrary.org/obo/RO_0002479","RO:0002231","RO_0002231","","has start location","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002232","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002232"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002232""},""definition"":{""type"":[""literal""],""value"":""x \u0027has end location\u0027 y if and only if there exists some process z such that x \u0027ends with\u0027 z and z \u0027occurs in\u0027 y""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002479"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002479"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x \u0027has end location\u0027 y if and only if there exists some process z such that x \u0027ends with\u0027 z and z \u0027occurs in\u0027 y""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has end location"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002479"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002230"",""http://purl.obolibrary.org/obo/BFO_0000066""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has end location"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x \u0027has end location\u0027 y if and only if there exists some process z such that x \u0027ends with\u0027 z and z \u0027occurs in\u0027 y""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002232""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002479"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has part that occurs in""},""curie"":{""type"":[""literal""],""value"":""RO:0002479""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002230"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002230""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000066""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x 'has end location' y if and only if there exists some process z such that x 'ends with' z and z 'occurs in' y","http://purl.obolibrary.org/obo/mondo.owl","x 'has end location' y if and only if there exists some process z such that x 'ends with' z and z 'occurs in' y","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/RO_0002479","http://purl.obolibrary.org/obo/RO_0002232","0.0","false","has end location","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002479","http://purl.obolibrary.org/obo/RO_0002230|http://purl.obolibrary.org/obo/BFO_0000066","gitIssue502","http://purl.obolibrary.org/obo/RO_0002479","RO:0002232","RO_0002232","","has end location","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002233","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002233"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002233""},""definition"":{""type"":[""literal""],""value"":""p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000057"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000057"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has input"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002352"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002224"",""http://purl.obolibrary.org/obo/RO_0002233""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has input"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002233""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002352"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""input of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002352""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002224"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""starts with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002224""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002352","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.","http://purl.obolibrary.org/obo/mondo.owl","p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.","","http://purl.obolibrary.org/obo/RO_0000057","http://purl.obolibrary.org/obo/RO_0002233","0.0","false","has input","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0000057","http://purl.obolibrary.org/obo/RO_0002224|http://purl.obolibrary.org/obo/RO_0002233","gitIssue502","http://purl.obolibrary.org/obo/RO_0000057","RO:0002233","RO_0002233","","has input","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002254","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002254"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002254""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has developmental contribution from y iff x has some part z such that z develops from y"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002258"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002258"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has developmental contribution from y iff x has some part z such that z develops from y"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental contribution from"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002258"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002255"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002202""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental contribution from"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has developmental contribution from y iff x has some part z such that z develops from y"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002254""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002255"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally contributes to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002255""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002258"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002255","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x has developmental contribution from y iff x has some part z such that z develops from y","http://purl.obolibrary.org/obo/mondo.owl","x has developmental contribution from y iff x has some part z such that z develops from y","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/RO_0002258","http://purl.obolibrary.org/obo/RO_0002254","0.0","false","has developmental contribution from","http://purl.obolibrary.org/obo/UBERON_0001062","http://purl.obolibrary.org/obo/RO_0002258","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002202","gitIssue502","http://purl.obolibrary.org/obo/RO_0002258","RO:0002254","RO_0002254","","has developmental contribution from","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002255","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002255"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002255""},""definition"":{""type"":[""literal""],""value"":""inverse of has developmental contribution from""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002384"",""http://purl.obolibrary.org/obo/RO_0002385""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002385""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of has developmental contribution from""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally contributes to"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002385""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002254"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002203"",""http://purl.obolibrary.org/obo/BFO_0000050""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally contributes to"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of has developmental contribution from""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002255""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002254"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental contribution from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002254""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002203"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002203""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002286"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally succeeded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002286""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002385"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to developmentally contribute to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002385""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002384"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002254","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of has developmental contribution from","http://purl.obolibrary.org/obo/mondo.owl","inverse of has developmental contribution from","","http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002385","http://purl.obolibrary.org/obo/RO_0002255","0.0","false","developmentally contributes to","","http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002385","http://purl.obolibrary.org/obo/RO_0002203|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002384|http://purl.obolibrary.org/obo/RO_0002385","RO:0002255","RO_0002255","","developmentally contributes to","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002258","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002258"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""definition"":{""type"":[""literal""],""value"":""Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p""},""http://purl.obolibrary.org/obo/IAO_0000116"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002286"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""numDescendants"":6.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002258""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""GO:0032502"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0032502"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0032502""},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002286"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally succeeded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002286""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002286","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","false","Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p","http://purl.obolibrary.org/obo/mondo.owl","Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/RO_0002258","6.0","false","developmentally preceded by","http://purl.obolibrary.org/obo/BFO_0000002","","","gitIssue502","","RO:0002258","RO_0002258","","developmentally preceded by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002263","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002263"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002263""},""definition"":{""type"":[""literal""],""value"":""c acts upstream of p if and only if c enables some f that is involved in p\u0027 and p\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\u0027 are processes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002264"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c acts upstream of p if and only if c enables some f that is involved in p\u0027 and p\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\u0027 are processes.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""acts upstream of""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002264"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002411""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""acts upstream of""},""numDescendants"":5.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c acts upstream of p if and only if c enables some f that is involved in p\u0027 and p\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\u0027 are processes.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002263""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c acts upstream of p if and only if c enables some f that is involved in p' and p' occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p' are processes.","http://purl.obolibrary.org/obo/mondo.owl","c acts upstream of p if and only if c enables some f that is involved in p' and p' occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p' are processes.","","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002263","5.0","false","acts upstream of","","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002411","gitIssue502","http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002263","RO_0002263","","acts upstream of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002264","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002264"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""definition"":{""type"":[""literal""],""value"":""c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002500"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002500"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002418""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""numDescendants"":10.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002264""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.","http://purl.obolibrary.org/obo/mondo.owl","c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.","","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002264","10.0","false","acts upstream of or within","","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002418","gitIssue502","http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002264","RO_0002264","","acts upstream of or within","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002286","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002286"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002286""},""definition"":{""type"":[""literal""],""value"":""Inverse of developmentally preceded by""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002384"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002384"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Inverse of developmentally preceded by""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally succeeded by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002384"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002258"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally succeeded by"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Inverse of developmentally preceded by""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002286""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002384"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002258"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002258","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","Inverse of developmentally preceded by","http://purl.obolibrary.org/obo/mondo.owl","Inverse of developmentally preceded by","","http://purl.obolibrary.org/obo/RO_0002384","http://purl.obolibrary.org/obo/RO_0002286","4.0","false","developmentally succeeded by","","http://purl.obolibrary.org/obo/RO_0002384","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002384","RO:0002286","RO_0002286","","developmentally succeeded by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002287","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002287"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002287""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002384""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002286"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of developmental precursor of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002286"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002210""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of developmental precursor of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002287""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002210"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002210""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002286"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally succeeded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002286""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002384"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002287","0.0","false","part of developmental precursor of","","http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002210","gitIssue502","http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002384","RO:0002287","RO_0002287","","part of developmental precursor of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002304","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002304"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002304""},""definition"":{""type"":[""literal""],""value"":""p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0004047""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/RO_0004047""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causally upstream of, positive effect""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/RO_0004047""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causally upstream of, positive effect""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002304""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004047"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004047""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.","http://purl.obolibrary.org/obo/mondo.owl","p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.","","http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/RO_0004047","http://purl.obolibrary.org/obo/RO_0002304","3.0","false","causally upstream of, positive effect","","http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/RO_0004047","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0004047","RO:0002304","RO_0002304","","causally upstream of, positive effect","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002305","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002305"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002305""},""definition"":{""type"":[""literal""],""value"":""p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0004046""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/RO_0004046""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causally upstream of, negative effect""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/RO_0004046""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causally upstream of, negative effect""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002305""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004046"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004046""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.","http://purl.obolibrary.org/obo/mondo.owl","p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.","","http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/RO_0004046","http://purl.obolibrary.org/obo/RO_0002305","3.0","false","causally upstream of, negative effect","","http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/RO_0004046","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0004046","RO:0002305","RO_0002305","","causally upstream of, negative effect","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002327","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002327"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""definition"":{""type"":[""literal""],""value"":""c enables p iff c is capable of p and c acts to execute p.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002215"",""http://purl.obolibrary.org/obo/RO_0002216"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002215"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c enables p iff c is capable of p and c acts to execute p.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002215"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002333"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/BFO_0000051""],[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002017""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c enables p iff c is capable of p and c acts to execute p.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002327""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002333"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enabled by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002333""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""has component activity""},""curie"":{""type"":[""literal""],""value"":""RO:0002017""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002216"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002216""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002333","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c enables p iff c is capable of p and c acts to execute p.","http://purl.obolibrary.org/obo/mondo.owl","c enables p iff c is capable of p and c acts to execute p.","","http://purl.obolibrary.org/obo/RO_0002215","http://purl.obolibrary.org/obo/RO_0002327","0.0","false","enables","","http://purl.obolibrary.org/obo/RO_0002215","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002017","gitIssue502","http://purl.obolibrary.org/obo/RO_0002215|http://purl.obolibrary.org/obo/RO_0002216|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002327","RO_0002327","","enables","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002331","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002331"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002331""},""definition"":{""type"":[""literal""],""value"":""c involved_in p if and only if c enables some process p\u0027, and p\u0027 is part of p""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0000056"",""http://purl.obolibrary.org/obo/RO_0002431"",""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0000056"",""http://purl.obolibrary.org/obo/RO_0002431""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c involved_in p if and only if c enables some process p\u0027, and p\u0027 is part of p""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""involved in"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0000056"",""http://purl.obolibrary.org/obo/RO_0002431""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/BFO_0000050""],[""http://purl.obolibrary.org/obo/RO_0002331"",""http://purl.obolibrary.org/obo/BFO_0000050""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""involved in"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c involved_in p if and only if c enables some process p\u0027, and p\u0027 is part of p""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002331""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002431"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""involved in or involved in regulation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002431""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000056"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000056""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c involved_in p if and only if c enables some process p', and p' is part of p","http://purl.obolibrary.org/obo/mondo.owl","c involved_in p if and only if c enables some process p', and p' is part of p","","http://purl.obolibrary.org/obo/RO_0000056|http://purl.obolibrary.org/obo/RO_0002431","http://purl.obolibrary.org/obo/RO_0002331","0.0","false","involved in","","http://purl.obolibrary.org/obo/RO_0000056|http://purl.obolibrary.org/obo/RO_0002431","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002331|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","http://purl.obolibrary.org/obo/RO_0000056|http://purl.obolibrary.org/obo/RO_0002431|http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002331","RO_0002331","","involved in","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002333","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002333"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002333""},""definition"":{""type"":[""literal""],""value"":""inverse of enables""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000057"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000057"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of enables""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enabled by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002327"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enabled by"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of enables""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002333""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002327","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of enables","http://purl.obolibrary.org/obo/mondo.owl","inverse of enables","","http://purl.obolibrary.org/obo/RO_0000057","http://purl.obolibrary.org/obo/RO_0002333","0.0","false","enabled by","","http://purl.obolibrary.org/obo/RO_0000057","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000057","RO:0002333","RO_0002333","","enabled by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002334","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002334"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""definition"":{""type"":[""literal""],""value"":""inverse of regulates""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002427"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of regulates""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002427"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002211"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""numDescendants"":8.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of regulates""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002334""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002211","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of regulates","http://purl.obolibrary.org/obo/mondo.owl","inverse of regulates","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002334","8.0","false","regulated by","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0002427","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002334","RO_0002334","","regulated by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002335","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002335"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002335""},""definition"":{""type"":[""literal""],""value"":""inverse of negatively regulates""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002334"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002334"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of negatively regulates""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulated by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002334"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002212"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulated by"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of negatively regulates""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002335""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002212"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002212""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002212","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of negatively regulates","http://purl.obolibrary.org/obo/mondo.owl","inverse of negatively regulates","","http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002335","1.0","false","negatively regulated by","","http://purl.obolibrary.org/obo/RO_0002334","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002334|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002335","RO_0002335","","negatively regulated by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002336","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002336"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002336""},""definition"":{""type"":[""literal""],""value"":""inverse of positively regulates""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002334"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002334"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of positively regulates""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulated by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002334"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002213"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulated by"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of positively regulates""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002336""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002334"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulated by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002334""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002213","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of positively regulates","http://purl.obolibrary.org/obo/mondo.owl","inverse of positively regulates","","http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002336","1.0","false","positively regulated by","","http://purl.obolibrary.org/obo/RO_0002334","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002334|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002336","RO_0002336","","positively regulated by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002352","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002352"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002352""},""definition"":{""type"":[""literal""],""value"":""inverse of has input""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000056"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000056"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of has input""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""input of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000056"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002233"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""input of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of has input""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002352""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002233""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000056"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000056""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002233","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of has input","http://purl.obolibrary.org/obo/mondo.owl","inverse of has input","","http://purl.obolibrary.org/obo/RO_0000056","http://purl.obolibrary.org/obo/RO_0002352","0.0","false","input of","","http://purl.obolibrary.org/obo/RO_0000056","","gitIssue502","http://purl.obolibrary.org/obo/RO_0000056","RO:0002352","RO_0002352","","input of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002384","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002384"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction)."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/UBERON_0001062"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/UBERON_0001062"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""numDescendants"":8.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction)."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002384""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001062""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction).","http://purl.obolibrary.org/obo/mondo.owl","x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction).","http://purl.obolibrary.org/obo/UBERON_0001062","","http://purl.obolibrary.org/obo/RO_0002384","8.0","false","has developmental potential involving","http://purl.obolibrary.org/obo/UBERON_0001062","","","gitIssue502","","RO:0002384","RO_0002384","","has developmental potential involving","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002385","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002385"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002385""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002384"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002384"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to developmentally contribute to"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002384"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to developmentally contribute to"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002385""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002384"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y","http://purl.obolibrary.org/obo/mondo.owl","x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y","","http://purl.obolibrary.org/obo/RO_0002384","http://purl.obolibrary.org/obo/RO_0002385","1.0","false","has potential to developmentally contribute to","","http://purl.obolibrary.org/obo/RO_0002384","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002384","RO:0002385","RO_0002385","","has potential to developmentally contribute to","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002387","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002387"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has the potential to develop into y iff x develops into y or if x is capable of developing into y"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002384"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002384"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has the potential to develop into y iff x develops into y or if x is capable of developing into y"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002384"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has the potential to develop into y iff x develops into y or if x is capable of developing into y"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002387""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002384"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x has the potential to develop into y iff x develops into y or if x is capable of developing into y","http://purl.obolibrary.org/obo/mondo.owl","x has the potential to develop into y iff x develops into y or if x is capable of developing into y","","http://purl.obolibrary.org/obo/RO_0002384","http://purl.obolibrary.org/obo/RO_0002387","3.0","false","has potential to develop into","","http://purl.obolibrary.org/obo/RO_0002384","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002384","RO:0002387","RO_0002387","","has potential to develop into","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002388","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002388"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002388""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002387"",""http://purl.obolibrary.org/obo/RO_0002384""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002387"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to directly develop into"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002387"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to directly develop into"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002388""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002387"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has potential to develop into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002387""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002384"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has developmental potential involving"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002384""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y","http://purl.obolibrary.org/obo/mondo.owl","x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y","","http://purl.obolibrary.org/obo/RO_0002387","http://purl.obolibrary.org/obo/RO_0002388","2.0","false","has potential to directly develop into","","http://purl.obolibrary.org/obo/RO_0002387","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002387|http://purl.obolibrary.org/obo/RO_0002384","RO:0002388","RO_0002388","","has potential to directly develop into","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002404","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002404"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002404""},""definition"":{""type"":[""literal""],""value"":""inverse of upstream of""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000062"",""http://purl.obolibrary.org/obo/RO_0002086"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":[""http://purl.obolibrary.org/obo/BFO_0000062"",""http://purl.obolibrary.org/obo/RO_0002427""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of upstream of""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally downstream of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/BFO_0000062"",""http://purl.obolibrary.org/obo/RO_0002427""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002411"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally downstream of"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of upstream of""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002404""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends after"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002086""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002411","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of upstream of","http://purl.obolibrary.org/obo/mondo.owl","inverse of upstream of","","http://purl.obolibrary.org/obo/BFO_0000062|http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002404","1.0","false","causally downstream of","","http://purl.obolibrary.org/obo/BFO_0000062|http://purl.obolibrary.org/obo/RO_0002427","","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000062|http://purl.obolibrary.org/obo/RO_0002086|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002404","RO_0002404","","causally downstream of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002405","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002405"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002405""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002087"",""http://purl.obolibrary.org/obo/BFO_0000062"",""http://purl.obolibrary.org/obo/RO_0002086"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002404"",""http://purl.obolibrary.org/obo/RO_0002427"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002087"",""http://purl.obolibrary.org/obo/RO_0002404""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally downstream of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002087"",""http://purl.obolibrary.org/obo/RO_0002404""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002412"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally downstream of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002405""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002404"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally downstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002404""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ends after"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002086""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002087"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002087""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002412""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002412","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002087|http://purl.obolibrary.org/obo/RO_0002404","http://purl.obolibrary.org/obo/RO_0002405","0.0","false","immediately causally downstream of","","http://purl.obolibrary.org/obo/RO_0002087|http://purl.obolibrary.org/obo/RO_0002404","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002087|http://purl.obolibrary.org/obo/BFO_0000062|http://purl.obolibrary.org/obo/RO_0002086|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002404|http://purl.obolibrary.org/obo/RO_0002427|http://purl.obolibrary.org/obo/RO_0002501","RO:0002405","RO_0002405","","immediately causally downstream of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002407","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002407"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002407""},""definition"":{""type"":[""literal""],""value"":""p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002213"",""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002304"",""http://purl.obolibrary.org/obo/RO_0004047"",""http://purl.obolibrary.org/obo/RO_0012012"",""http://purl.obolibrary.org/obo/RO_0012011""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002213"",""http://purl.obolibrary.org/obo/RO_0012012""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly positively regulates"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002213"",""http://purl.obolibrary.org/obo/RO_0012012""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002407"",""http://purl.obolibrary.org/obo/RO_0002629""],[""http://purl.obolibrary.org/obo/RO_0002409"",""http://purl.obolibrary.org/obo/RO_0002409""],[""http://purl.obolibrary.org/obo/RO_0002629"",""http://purl.obolibrary.org/obo/RO_0002407""],[""http://purl.obolibrary.org/obo/RO_0002629"",""http://purl.obolibrary.org/obo/RO_0002629""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly positively regulates"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002407""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002409"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly negatively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002409""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002304"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0002304""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002629"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly positively regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002629""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004047"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004047""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0012012"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0012012""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0012011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0012011""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.","http://purl.obolibrary.org/obo/mondo.owl","p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.","","http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0012012","http://purl.obolibrary.org/obo/RO_0002407","0.0","false","indirectly positively regulates","","http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0012012","http://purl.obolibrary.org/obo/RO_0002407|http://purl.obolibrary.org/obo/RO_0002629|http://purl.obolibrary.org/obo/RO_0002409|http://purl.obolibrary.org/obo/RO_0002409|http://purl.obolibrary.org/obo/RO_0002629|http://purl.obolibrary.org/obo/RO_0002407|http://purl.obolibrary.org/obo/RO_0002629|http://purl.obolibrary.org/obo/RO_0002629","gitIssue502","http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002304|http://purl.obolibrary.org/obo/RO_0004047|http://purl.obolibrary.org/obo/RO_0012012|http://purl.obolibrary.org/obo/RO_0012011","RO:0002407","RO_0002407","","indirectly positively regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002409","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002409"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002409""},""definition"":{""type"":[""literal""],""value"":""p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002212"",""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002305"",""http://purl.obolibrary.org/obo/RO_0004046"",""http://purl.obolibrary.org/obo/RO_0012012"",""http://purl.obolibrary.org/obo/RO_0012011""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002212"",""http://purl.obolibrary.org/obo/RO_0012012""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly negatively regulates"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002212"",""http://purl.obolibrary.org/obo/RO_0012012""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002409"",""http://purl.obolibrary.org/obo/RO_0002630""],[""http://purl.obolibrary.org/obo/RO_0002630"",""http://purl.obolibrary.org/obo/RO_0002409""],[""http://purl.obolibrary.org/obo/RO_0002630"",""http://purl.obolibrary.org/obo/RO_0002630""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly negatively regulates"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002409""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002212"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002212""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002630"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly negatively regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002630""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002305"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0002305""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004046"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004046""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0012012"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0012012""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0012011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0012011""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.","http://purl.obolibrary.org/obo/mondo.owl","p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.","","http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0012012","http://purl.obolibrary.org/obo/RO_0002409","0.0","false","indirectly negatively regulates","","http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0012012","http://purl.obolibrary.org/obo/RO_0002409|http://purl.obolibrary.org/obo/RO_0002630|http://purl.obolibrary.org/obo/RO_0002630|http://purl.obolibrary.org/obo/RO_0002409|http://purl.obolibrary.org/obo/RO_0002630|http://purl.obolibrary.org/obo/RO_0002630","gitIssue502","http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002305|http://purl.obolibrary.org/obo/RO_0004046|http://purl.obolibrary.org/obo/RO_0012012|http://purl.obolibrary.org/obo/RO_0012011","RO:0002409","RO_0002409","","indirectly negatively regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002411","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002411"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""definition"":{""type"":[""literal""],""value"":""p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":[""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002418""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002418""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002404"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""numDescendants"":13.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002411""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002404"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally downstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002404""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002404","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.","http://purl.obolibrary.org/obo/mondo.owl","p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.","","http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002411","13.0","false","causally upstream of","","http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002418","","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501","RO:0002411","RO_0002411","","causally upstream of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002412","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002412"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002412""},""definition"":{""type"":[""literal""],""value"":""p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002090"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002090"",""http://purl.obolibrary.org/obo/RO_0002411""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally upstream of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002090"",""http://purl.obolibrary.org/obo/RO_0002411""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002405"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally upstream of"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002412""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002090"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002090""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002405"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally downstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002405""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002405","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.","http://purl.obolibrary.org/obo/mondo.owl","p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.","","http://purl.obolibrary.org/obo/RO_0002090|http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0002412","3.0","false","immediately causally upstream of","","http://purl.obolibrary.org/obo/RO_0002090|http://purl.obolibrary.org/obo/RO_0002411","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002090|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501","RO:0002412","RO_0002412","","immediately causally upstream of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002418","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002418"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""definition"":{""type"":[""literal""],""value"":""p is \u0027causally upstream or within\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002501"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002501"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p is \u0027causally upstream or within\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""We would like to make this disjoint with \u0027preceded by\u0027, but this is prohibited in OWL2""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002501"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002427"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""numDescendants"":16.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p is \u0027causally upstream or within\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.""},{""type"":[""literal""],""value"":""We would like to make this disjoint with \u0027preceded by\u0027, but this is prohibited in OWL2""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002418""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002427"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002427","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","We would like to make this disjoint with 'preceded by', but this is prohibited in OWL2","p is 'causally upstream or within' q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.","http://purl.obolibrary.org/obo/mondo.owl","p is 'causally upstream or within' q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.","","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002418","16.0","false","causally upstream of or within","","http://purl.obolibrary.org/obo/RO_0002501","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002501","RO:0002418","RO_0002418","","causally upstream of or within","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002427","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002427"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002427""},""definition"":{""type"":[""literal""],""value"":""inverse of causally upstream of or within""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002501"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002501"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""inverse of causally upstream of or within""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002501"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002418"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causally downstream of or within""},""numDescendants"":11.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""inverse of causally upstream of or within""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002427""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002418","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","inverse of causally upstream of or within","http://purl.obolibrary.org/obo/mondo.owl","inverse of causally upstream of or within","","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002427","11.0","false","causally downstream of or within","","http://purl.obolibrary.org/obo/RO_0002501","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002501","RO:0002427","RO_0002427","","causally downstream of or within","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002428","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002428"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002428""},""definition"":{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 regulates some p""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595"",""http://purl.obolibrary.org/obo/RO_0002431""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0002431""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 regulates some p""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""involved in regulation of""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0002431""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002211""],[""http://purl.obolibrary.org/obo/RO_0002331"",""http://purl.obolibrary.org/obo/RO_0002211""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""involved in regulation of""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 regulates some p""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002428""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002331"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""involved in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002331""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002431"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""involved in or involved in regulation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002431""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of""},""curie"":{""type"":[""literal""],""value"":""RO:0002263""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c involved in regulation of p if c is involved in some p' and p' regulates some p","http://purl.obolibrary.org/obo/mondo.owl","c involved in regulation of p if c is involved in some p' and p' regulates some p","","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0002431","http://purl.obolibrary.org/obo/RO_0002428","2.0","false","involved in regulation of","","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0002431","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002331|http://purl.obolibrary.org/obo/RO_0002211","gitIssue502","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595|http://purl.obolibrary.org/obo/RO_0002431","RO:0002428","RO_0002428","","involved in regulation of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002429","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002429"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002429""},""definition"":{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 positively regulates some p""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002428"",""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595"",""http://purl.obolibrary.org/obo/RO_0002431""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002428"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 positively regulates some p""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""involved in positive regulation of""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002428"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002213""],[""http://purl.obolibrary.org/obo/RO_0002331"",""http://purl.obolibrary.org/obo/RO_0002213""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""involved in positive regulation of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 positively regulates some p""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002429""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002331"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""involved in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002331""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002431"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""involved in or involved in regulation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002431""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""involved in regulation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002428""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of""},""curie"":{""type"":[""literal""],""value"":""RO:0002263""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c involved in regulation of p if c is involved in some p' and p' positively regulates some p","http://purl.obolibrary.org/obo/mondo.owl","c involved in regulation of p if c is involved in some p' and p' positively regulates some p","","http://purl.obolibrary.org/obo/RO_0002428","http://purl.obolibrary.org/obo/RO_0002429","0.0","false","involved in positive regulation of","","http://purl.obolibrary.org/obo/RO_0002428","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0002331|http://purl.obolibrary.org/obo/RO_0002213","gitIssue502","http://purl.obolibrary.org/obo/RO_0002428|http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595|http://purl.obolibrary.org/obo/RO_0002431","RO:0002429","RO_0002429","","involved in positive regulation of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002430","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002430"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002430""},""definition"":{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 negatively regulates some p""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002428"",""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595"",""http://purl.obolibrary.org/obo/RO_0002431""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002428"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 negatively regulates some p""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""involved in negative regulation of""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002428"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002212""],[""http://purl.obolibrary.org/obo/RO_0002331"",""http://purl.obolibrary.org/obo/RO_0002212""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""involved in negative regulation of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c involved in regulation of p if c is involved in some p\u0027 and p\u0027 negatively regulates some p""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002430""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002331"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""involved in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002331""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002431"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""involved in or involved in regulation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002431""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002212"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002212""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""involved in regulation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002428""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of""},""curie"":{""type"":[""literal""],""value"":""RO:0002263""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c involved in regulation of p if c is involved in some p' and p' negatively regulates some p","http://purl.obolibrary.org/obo/mondo.owl","c involved in regulation of p if c is involved in some p' and p' negatively regulates some p","","http://purl.obolibrary.org/obo/RO_0002428","http://purl.obolibrary.org/obo/RO_0002430","0.0","false","involved in negative regulation of","","http://purl.obolibrary.org/obo/RO_0002428","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0002331|http://purl.obolibrary.org/obo/RO_0002212","gitIssue502","http://purl.obolibrary.org/obo/RO_0002428|http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595|http://purl.obolibrary.org/obo/RO_0002431","RO:0002430","RO_0002430","","involved in negative regulation of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002431","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002431"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002431""},""definition"":{""type"":[""literal""],""value"":""c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""OWL does not allow defining object properties via a Union""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""involved in or involved in regulation of""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""involved in or involved in regulation of""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p""},{""type"":[""literal""],""value"":""OWL does not allow defining object properties via a Union""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002431""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","OWL does not allow defining object properties via a Union","c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p","http://purl.obolibrary.org/obo/mondo.owl","c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p","","http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002431","4.0","false","involved in or involved in regulation of","","http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002431","RO_0002431","","involved in or involved in regulation of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002434","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002434"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002434""},""definition"":{""type"":[""literal""],""value"":""A relationship that holds between two entities in which the processes executed by the two entities are causally connected.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship that holds between two entities in which the processes executed by the two entities are causally connected.""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""Considering relabeling as \u0027pairwise interacts with\u0027""},{""type"":[""literal""],""value"":""This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact.""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#SymmetricProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""interacts with""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000040"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""interacts with""},""numDescendants"":5.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship that holds between two entities in which the processes executed by the two entities are causally connected.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""Considering relabeling as \u0027pairwise interacts with\u0027""},{""type"":[""literal""],""value"":""This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002434""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","Considering relabeling as 'pairwise interacts with'|This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact.","A relationship that holds between two entities in which the processes executed by the two entities are causally connected.","http://purl.obolibrary.org/obo/mondo.owl","A relationship that holds between two entities in which the processes executed by the two entities are causally connected.","http://purl.obolibrary.org/obo/BFO_0000040","","http://purl.obolibrary.org/obo/RO_0002434","5.0","false","interacts with","http://purl.obolibrary.org/obo/BFO_0000040","","","gitIssue502","","RO:0002434","RO_0002434","","interacts with","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#SymmetricProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002436","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002436"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002436""},""definition"":{""type"":[""literal""],""value"":""An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002434"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002434"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#SymmetricProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""molecularly interacts with""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002434"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""molecularly interacts with""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002436""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002434"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002434""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.","http://purl.obolibrary.org/obo/mondo.owl","An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.","","http://purl.obolibrary.org/obo/RO_0002434","http://purl.obolibrary.org/obo/RO_0002436","4.0","false","molecularly interacts with","","http://purl.obolibrary.org/obo/RO_0002434","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002434","RO:0002436","RO_0002436","","molecularly interacts with","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#SymmetricProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002447","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002447"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002447""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002436"",""http://purl.obolibrary.org/obo/RO_0002434""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002436"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""Axiomatization to GO to be added later""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""phosphorylates""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002436"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""phosphorylates""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Axiomatization to GO to be added later""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002447""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002434"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002434""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002436"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecularly interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002436""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","Axiomatization to GO to be added later","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002436","http://purl.obolibrary.org/obo/RO_0002447","0.0","false","phosphorylates","","http://purl.obolibrary.org/obo/RO_0002436","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002436|http://purl.obolibrary.org/obo/RO_0002434","RO:0002447","RO_0002447","","phosphorylates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002448","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002448"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002448""},""definition"":{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\n\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002436"",""http://purl.obolibrary.org/obo/RO_0002434"",""http://purl.obolibrary.org/obo/RO_0011002"",""http://purl.obolibrary.org/obo/RO_0002566"",""http://purl.obolibrary.org/obo/RO_0002506""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002436"",""http://purl.obolibrary.org/obo/RO_0011002""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\n\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly regulates activity of""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002436"",""http://purl.obolibrary.org/obo/RO_0011002""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002333""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly regulates activity of""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\n\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002448""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0011002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulates activity of""},""curie"":{""type"":[""literal""],""value"":""RO:0011002""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002333"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enabled by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002333""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002566"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally influences""},""curie"":{""type"":[""literal""],""value"":""RO:0002566""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002434"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002434""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002436"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecularly interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002436""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002506"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between entities""},""curie"":{""type"":[""literal""],""value"":""RO:0002506""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B. A and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.","http://purl.obolibrary.org/obo/mondo.owl","The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B. A and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/RO_0002436|http://purl.obolibrary.org/obo/RO_0011002","http://purl.obolibrary.org/obo/RO_0002448","2.0","false","directly regulates activity of","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/RO_0002436|http://purl.obolibrary.org/obo/RO_0011002","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002333","gitIssue502","http://purl.obolibrary.org/obo/RO_0002436|http://purl.obolibrary.org/obo/RO_0002434|http://purl.obolibrary.org/obo/RO_0011002|http://purl.obolibrary.org/obo/RO_0002566|http://purl.obolibrary.org/obo/RO_0002506","RO:0002448","RO_0002448","","directly regulates activity of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002449","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002449"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002449""},""definition"":{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002448"",""http://purl.obolibrary.org/obo/RO_0002436"",""http://purl.obolibrary.org/obo/RO_0002434"",""http://purl.obolibrary.org/obo/RO_0011002"",""http://purl.obolibrary.org/obo/RO_0002566"",""http://purl.obolibrary.org/obo/RO_0002506""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002448"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly negatively regulates activity of""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002448"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002630"",""http://purl.obolibrary.org/obo/RO_0002333""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly negatively regulates activity of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002449""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0011002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulates activity of""},""curie"":{""type"":[""literal""],""value"":""RO:0011002""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002333"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enabled by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002333""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002448"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulates activity of""},""curie"":{""type"":[""literal""],""value"":""RO:0002448""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002566"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally influences""},""curie"":{""type"":[""literal""],""value"":""RO:0002566""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002434"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002434""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002436"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecularly interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002436""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""RO:0002449"":{""url"":""http://purl.obolibrary.org/obo/RO_0002449"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002449""},""http://purl.obolibrary.org/obo/RO_0002630"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly negatively regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002630""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002506"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between entities""},""curie"":{""type"":[""literal""],""value"":""RO:0002506""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002449","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002449"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002449""},""definition"":{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002448"",""http://purl.obolibrary.org/obo/RO_0002436"",""http://purl.obolibrary.org/obo/RO_0002434"",""http://purl.obolibrary.org/obo/RO_0011002"",""http://purl.obolibrary.org/obo/RO_0002566"",""http://purl.obolibrary.org/obo/RO_0002506""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002448"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly negatively regulates activity of""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002448"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002630"",""http://purl.obolibrary.org/obo/RO_0002333""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly negatively regulates activity of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002449""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0011002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulates activity of""},""curie"":{""type"":[""literal""],""value"":""RO:0011002""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002333"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enabled by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002333""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002448"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulates activity of""},""curie"":{""type"":[""literal""],""value"":""RO:0002448""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002566"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally influences""},""curie"":{""type"":[""literal""],""value"":""RO:0002566""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002434"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002434""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002436"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecularly interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002436""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002630"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly negatively regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002630""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002506"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between entities""},""curie"":{""type"":[""literal""],""value"":""RO:0002506""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. For example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.","http://purl.obolibrary.org/obo/mondo.owl","The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. For example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/RO_0002448","http://purl.obolibrary.org/obo/RO_0002449","0.0","false","directly negatively regulates activity of","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/RO_0002448","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002630|http://purl.obolibrary.org/obo/RO_0002333","gitIssue502","http://purl.obolibrary.org/obo/RO_0002448|http://purl.obolibrary.org/obo/RO_0002436|http://purl.obolibrary.org/obo/RO_0002434|http://purl.obolibrary.org/obo/RO_0011002|http://purl.obolibrary.org/obo/RO_0002566|http://purl.obolibrary.org/obo/RO_0002506","RO:0002449","RO_0002449","","directly negatively regulates activity of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002450","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002450"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002450""},""definition"":{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002448"",""http://purl.obolibrary.org/obo/RO_0002436"",""http://purl.obolibrary.org/obo/RO_0002434"",""http://purl.obolibrary.org/obo/RO_0011002"",""http://purl.obolibrary.org/obo/RO_0002566"",""http://purl.obolibrary.org/obo/RO_0002506""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002448"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly positively regulates activity of""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002448"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002629"",""http://purl.obolibrary.org/obo/RO_0002333""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly positively regulates activity of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002450""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0011002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulates activity of""},""curie"":{""type"":[""literal""],""value"":""RO:0011002""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002333"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enabled by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002333""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002448"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulates activity of""},""curie"":{""type"":[""literal""],""value"":""RO:0002448""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002566"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally influences""},""curie"":{""type"":[""literal""],""value"":""RO:0002566""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""RO:0002450"":{""url"":""http://purl.obolibrary.org/obo/RO_0002450"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002450""},""http://purl.obolibrary.org/obo/RO_0002434"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002434""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002436"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecularly interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002436""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002506"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between entities""},""curie"":{""type"":[""literal""],""value"":""RO:0002506""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002629"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly positively regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002629""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002450","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002450"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002450""},""definition"":{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002448"",""http://purl.obolibrary.org/obo/RO_0002436"",""http://purl.obolibrary.org/obo/RO_0002434"",""http://purl.obolibrary.org/obo/RO_0011002"",""http://purl.obolibrary.org/obo/RO_0002566"",""http://purl.obolibrary.org/obo/RO_0002506""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002448"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly positively regulates activity of""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002448"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002629"",""http://purl.obolibrary.org/obo/RO_0002333""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly positively regulates activity of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002450""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0011002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulates activity of""},""curie"":{""type"":[""literal""],""value"":""RO:0011002""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002333"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enabled by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002333""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002448"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulates activity of""},""curie"":{""type"":[""literal""],""value"":""RO:0002448""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002566"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally influences""},""curie"":{""type"":[""literal""],""value"":""RO:0002566""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002434"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002434""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002436"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""molecularly interacts with""},""curie"":{""type"":[""literal""],""value"":""RO:0002436""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002506"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between entities""},""curie"":{""type"":[""literal""],""value"":""RO:0002506""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002629"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly positively regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002629""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. For example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.","http://purl.obolibrary.org/obo/mondo.owl","The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. For example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/RO_0002448","http://purl.obolibrary.org/obo/RO_0002450","0.0","false","directly positively regulates activity of","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/RO_0002448","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002629|http://purl.obolibrary.org/obo/RO_0002333","gitIssue502","http://purl.obolibrary.org/obo/RO_0002448|http://purl.obolibrary.org/obo/RO_0002436|http://purl.obolibrary.org/obo/RO_0002434|http://purl.obolibrary.org/obo/RO_0011002|http://purl.obolibrary.org/obo/RO_0002566|http://purl.obolibrary.org/obo/RO_0002506","RO:0002450","RO_0002450","","directly positively regulates activity of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002473","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002473"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""definition"":{""type"":[""literal""],""value"":""x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000051"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""composed primarily of""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002473""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""RO:0002473"":{""url"":""http://purl.obolibrary.org/obo/RO_0002473"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002473""},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.","http://purl.obolibrary.org/obo/mondo.owl","x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002473","0.0","false","composed primarily of","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000051","","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131","RO:0002473","RO_0002473","","composed primarily of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002479","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002479"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002479""},""definition"":{""type"":[""literal""],""value"":""p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has part that occurs in""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000004"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has part that occurs in""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002479""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""RO:0002479"":{""url"":""http://purl.obolibrary.org/obo/RO_0002479"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002479""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.","http://purl.obolibrary.org/obo/mondo.owl","p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.","http://purl.obolibrary.org/obo/BFO_0000004","","http://purl.obolibrary.org/obo/RO_0002479","2.0","false","has part that occurs in","http://purl.obolibrary.org/obo/BFO_0000003","","","gitIssue502","","RO:0002479","RO_0002479","","has part that occurs in","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002487","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002487"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002487""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""numDescendants"":7.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002487""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002487"":{""url"":""http://purl.obolibrary.org/obo/RO_0002487"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002487""},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/RO_0002487","7.0","false","relation between physical entity and a process or stage","http://purl.obolibrary.org/obo/BFO_0000004","","","gitIssue502","","RO:0002487","RO_0002487","","relation between physical entity and a process or stage","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002488","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002488"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002488""},""definition"":{""type"":[""literal""],""value"":""x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y).""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002490"",""http://purl.obolibrary.org/obo/RO_0002487"",""http://purl.obolibrary.org/obo/RO_0002496""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002490"",""http://purl.obolibrary.org/obo/RO_0002496""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y).""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""existence starts during""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002490"",""http://purl.obolibrary.org/obo/RO_0002496""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002488"",""http://purl.obolibrary.org/obo/BFO_0000050""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""existence starts during""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y).""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002488""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002490"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence overlaps""},""curie"":{""type"":[""literal""],""value"":""RO:0002490""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002496"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence starts during or after""},""curie"":{""type"":[""literal""],""value"":""RO:0002496""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002488"":{""url"":""http://purl.obolibrary.org/obo/RO_0002488"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002488""},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002487"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""curie"":{""type"":[""literal""],""value"":""RO:0002487""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) >= α(y) & α(x) <= ω(y).","http://purl.obolibrary.org/obo/mondo.owl","x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) >= α(y) & α(x) <= ω(y).","","http://purl.obolibrary.org/obo/RO_0002490|http://purl.obolibrary.org/obo/RO_0002496","http://purl.obolibrary.org/obo/RO_0002488","1.0","false","existence starts during","","http://purl.obolibrary.org/obo/RO_0002490|http://purl.obolibrary.org/obo/RO_0002496","http://purl.obolibrary.org/obo/RO_0002488|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","http://purl.obolibrary.org/obo/RO_0002490|http://purl.obolibrary.org/obo/RO_0002487|http://purl.obolibrary.org/obo/RO_0002496","RO:0002488","RO_0002488","","existence starts during","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002489","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002489"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002489""},""definition"":{""type"":[""literal""],""value"":""x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \u003d α(y).""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002488"",""http://purl.obolibrary.org/obo/RO_0002490"",""http://purl.obolibrary.org/obo/RO_0002487"",""http://purl.obolibrary.org/obo/RO_0002496""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002488"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \u003d α(y).""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""existence starts with""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002488"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""existence starts with""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \u003d α(y).""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002489""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002490"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence overlaps""},""curie"":{""type"":[""literal""],""value"":""RO:0002490""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002496"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence starts during or after""},""curie"":{""type"":[""literal""],""value"":""RO:0002496""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002489"":{""url"":""http://purl.obolibrary.org/obo/RO_0002489"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002489""},""http://purl.obolibrary.org/obo/RO_0002488"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence starts during""},""curie"":{""type"":[""literal""],""value"":""RO:0002488""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002487"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""curie"":{""type"":[""literal""],""value"":""RO:0002487""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) = α(y).","http://purl.obolibrary.org/obo/mondo.owl","x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) = α(y).","","http://purl.obolibrary.org/obo/RO_0002488","http://purl.obolibrary.org/obo/RO_0002489","0.0","false","existence starts with","","http://purl.obolibrary.org/obo/RO_0002488","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002488|http://purl.obolibrary.org/obo/RO_0002490|http://purl.obolibrary.org/obo/RO_0002487|http://purl.obolibrary.org/obo/RO_0002496","RO:0002489","RO_0002489","","existence starts with","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002490","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002490"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002490""},""definition"":{""type"":[""literal""],""value"":""x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y)) OR (ω(x) \u003c\u003d ω(y) \u0026 ω(x) \u003e\u003d α(y))""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002487"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002487"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y)) OR (ω(x) \u003c\u003d ω(y) \u0026 ω(x) \u003e\u003d α(y))""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""existence overlaps""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002487"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""existence overlaps""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y)) OR (ω(x) \u003c\u003d ω(y) \u0026 ω(x) \u003e\u003d α(y))""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002490""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002487"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""curie"":{""type"":[""literal""],""value"":""RO:0002487""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002490"":{""url"":""http://purl.obolibrary.org/obo/RO_0002490"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002490""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) >= α(y) & α(x) <= ω(y)) OR (ω(x) <= ω(y) & ω(x) >= α(y))","http://purl.obolibrary.org/obo/mondo.owl","x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) >= α(y) & α(x) <= ω(y)) OR (ω(x) <= ω(y) & ω(x) >= α(y))","","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/RO_0002490","4.0","false","existence overlaps","","http://purl.obolibrary.org/obo/RO_0002487","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002487","RO:0002490","RO_0002490","","existence overlaps","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002492","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002492"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002492""},""definition"":{""type"":[""literal""],""value"":""x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \u003c\u003d ω(y) and ω(x) \u003e\u003d α(y).""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002490"",""http://purl.obolibrary.org/obo/RO_0002487"",""http://purl.obolibrary.org/obo/RO_0002497""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002490"",""http://purl.obolibrary.org/obo/RO_0002497""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \u003c\u003d ω(y) and ω(x) \u003e\u003d α(y).""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""existence ends during""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002490"",""http://purl.obolibrary.org/obo/RO_0002497""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002492"",""http://purl.obolibrary.org/obo/BFO_0000050""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""existence ends during""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \u003c\u003d ω(y) and ω(x) \u003e\u003d α(y).""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002492""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002490"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence overlaps""},""curie"":{""type"":[""literal""],""value"":""RO:0002490""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002497"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during or before""},""curie"":{""type"":[""literal""],""value"":""RO:0002497""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002487"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""curie"":{""type"":[""literal""],""value"":""RO:0002487""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002492"":{""url"":""http://purl.obolibrary.org/obo/RO_0002492"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002492""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) <= ω(y) and ω(x) >= α(y).","http://purl.obolibrary.org/obo/mondo.owl","x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) <= ω(y) and ω(x) >= α(y).","","http://purl.obolibrary.org/obo/RO_0002490|http://purl.obolibrary.org/obo/RO_0002497","http://purl.obolibrary.org/obo/RO_0002492","1.0","false","existence ends during","","http://purl.obolibrary.org/obo/RO_0002490|http://purl.obolibrary.org/obo/RO_0002497","http://purl.obolibrary.org/obo/RO_0002492|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","http://purl.obolibrary.org/obo/RO_0002490|http://purl.obolibrary.org/obo/RO_0002487|http://purl.obolibrary.org/obo/RO_0002497","RO:0002492","RO_0002492","","existence ends during","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002493","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002493"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002493""},""definition"":{""type"":[""literal""],""value"":""x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \u003d ω(y).""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002492"",""http://purl.obolibrary.org/obo/RO_0002490"",""http://purl.obolibrary.org/obo/RO_0002487"",""http://purl.obolibrary.org/obo/RO_0002497""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002492"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \u003d ω(y).""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""existence ends with""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002492"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""existence ends with""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \u003d ω(y).""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002493""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002490"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence overlaps""},""curie"":{""type"":[""literal""],""value"":""RO:0002490""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002497"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during or before""},""curie"":{""type"":[""literal""],""value"":""RO:0002497""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002492"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during""},""curie"":{""type"":[""literal""],""value"":""RO:0002492""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002487"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""curie"":{""type"":[""literal""],""value"":""RO:0002487""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002493"":{""url"":""http://purl.obolibrary.org/obo/RO_0002493"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002493""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) = ω(y).","http://purl.obolibrary.org/obo/mondo.owl","x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) = ω(y).","","http://purl.obolibrary.org/obo/RO_0002492","http://purl.obolibrary.org/obo/RO_0002493","0.0","false","existence ends with","","http://purl.obolibrary.org/obo/RO_0002492","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002492|http://purl.obolibrary.org/obo/RO_0002490|http://purl.obolibrary.org/obo/RO_0002487|http://purl.obolibrary.org/obo/RO_0002497","RO:0002493","RO_0002493","","existence ends with","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002494","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002494"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002494""},""definition"":{""type"":[""literal""],""value"":""x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002202"",""http://purl.obolibrary.org/obo/RO_0002258""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002202"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""transformation of""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002202"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""transformation of""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002494""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""RO:0002494"":{""url"":""http://purl.obolibrary.org/obo/RO_0002494"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002494""},""http://purl.obolibrary.org/obo/RO_0002258"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships","http://purl.obolibrary.org/obo/mondo.owl","x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships","","http://purl.obolibrary.org/obo/RO_0002202","http://purl.obolibrary.org/obo/RO_0002494","1.0","false","transformation of","","http://purl.obolibrary.org/obo/RO_0002202","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002202|http://purl.obolibrary.org/obo/RO_0002258","RO:0002494","RO_0002494","","transformation of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002495","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002495"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002495""},""definition"":{""type"":[""literal""],""value"":""x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002207"",""http://purl.obolibrary.org/obo/RO_0002202"",""http://purl.obolibrary.org/obo/RO_0002258"",""http://purl.obolibrary.org/obo/RO_0002494""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002207"",""http://purl.obolibrary.org/obo/RO_0002494""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""immediate transformation of""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002207"",""http://purl.obolibrary.org/obo/RO_0002494""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""immediate transformation of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002495""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002494"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transformation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002494""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002207"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002207""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""RO:0002495"":{""url"":""http://purl.obolibrary.org/obo/RO_0002495"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002495""},""http://purl.obolibrary.org/obo/RO_0002258"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t","http://purl.obolibrary.org/obo/mondo.owl","x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t","","http://purl.obolibrary.org/obo/RO_0002207|http://purl.obolibrary.org/obo/RO_0002494","http://purl.obolibrary.org/obo/RO_0002495","0.0","false","immediate transformation of","","http://purl.obolibrary.org/obo/RO_0002207|http://purl.obolibrary.org/obo/RO_0002494","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002207|http://purl.obolibrary.org/obo/RO_0002202|http://purl.obolibrary.org/obo/RO_0002258|http://purl.obolibrary.org/obo/RO_0002494","RO:0002495","RO_0002495","","immediate transformation of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002496","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002496"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002496""},""definition"":{""type"":[""literal""],""value"":""x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \u003e\u003d α (y).""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002487"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002487"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \u003e\u003d α (y).""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""existence starts during or after""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002487"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002496""],[""http://purl.obolibrary.org/obo/RO_0002258"",""http://purl.obolibrary.org/obo/RO_0002496""],[""http://purl.obolibrary.org/obo/RO_0002496"",""http://purl.obolibrary.org/obo/BFO_0000050""],[""http://purl.obolibrary.org/obo/RO_0002496"",""http://purl.obolibrary.org/obo/BFO_0000062""],[""http://purl.obolibrary.org/obo/RO_0002496"",""http://purl.obolibrary.org/obo/RO_0002082""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""existence starts during or after""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \u003e\u003d α (y).""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002496""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002496"":{""url"":""http://purl.obolibrary.org/obo/RO_0002496"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002496""},""http://purl.obolibrary.org/obo/RO_0002487"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""curie"":{""type"":[""literal""],""value"":""RO:0002487""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002258"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) >= α (y).","http://purl.obolibrary.org/obo/mondo.owl","x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) >= α (y).","","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/RO_0002496","2.0","false","existence starts during or after","","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002496|http://purl.obolibrary.org/obo/RO_0002258|http://purl.obolibrary.org/obo/RO_0002496|http://purl.obolibrary.org/obo/RO_0002496|http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002496|http://purl.obolibrary.org/obo/BFO_0000062|http://purl.obolibrary.org/obo/RO_0002496|http://purl.obolibrary.org/obo/RO_0002082","gitIssue502","http://purl.obolibrary.org/obo/RO_0002487","RO:0002496","RO_0002496","","existence starts during or after","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002497","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002497"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002497""},""definition"":{""type"":[""literal""],""value"":""x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002487"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002487"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""existence ends during or before""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002487"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002497""],[""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002497""],[""http://purl.obolibrary.org/obo/RO_0002497"",""http://purl.obolibrary.org/obo/BFO_0000050""],[""http://purl.obolibrary.org/obo/RO_0002497"",""http://purl.obolibrary.org/obo/BFO_0000063""],[""http://purl.obolibrary.org/obo/RO_0002497"",""http://purl.obolibrary.org/obo/RO_0002082""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""existence ends during or before""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002497""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002286"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally succeeded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002286""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002497"":{""url"":""http://purl.obolibrary.org/obo/RO_0002497"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002497""},""http://purl.obolibrary.org/obo/RO_0002487"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""curie"":{""type"":[""literal""],""value"":""RO:0002487""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.","http://purl.obolibrary.org/obo/mondo.owl","x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.","","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/RO_0002497","2.0","false","existence ends during or before","","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002497|http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002497|http://purl.obolibrary.org/obo/RO_0002497|http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002497|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002497|http://purl.obolibrary.org/obo/RO_0002082","gitIssue502","http://purl.obolibrary.org/obo/RO_0002487","RO:0002497","RO_0002497","","existence ends during or before","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002500","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002500"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""definition"":{""type"":[""literal""],""value"":""A relationship between a material entity and a process where the material entity has some causal role that influences the process""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002595"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002595"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship between a material entity and a process where the material entity has some causal role that influences the process""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causal agent in process""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002595"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002608"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""numDescendants"":17.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship between a material entity and a process where the material entity has some causal role that influences the process""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002500""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002500"":{""url"":""http://purl.obolibrary.org/obo/RO_0002500"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002500""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002608"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""process has causal agent""},""curie"":{""type"":[""literal""],""value"":""RO:0002608""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002608","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","A relationship between a material entity and a process where the material entity has some causal role that influences the process","http://purl.obolibrary.org/obo/mondo.owl","A relationship between a material entity and a process where the material entity has some causal role that influences the process","","http://purl.obolibrary.org/obo/RO_0002595","http://purl.obolibrary.org/obo/RO_0002500","17.0","false","causal agent in process","","http://purl.obolibrary.org/obo/RO_0002595","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002595","RO:0002500","RO_0002500","","causal agent in process","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002501","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002501"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""definition"":{""type"":[""literal""],""value"":""p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causal relation between processes""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""numDescendants"":29.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002501""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002501"":{""url"":""http://purl.obolibrary.org/obo/RO_0002501"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002501""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.","http://purl.obolibrary.org/obo/mondo.owl","p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/RO_0002501","29.0","false","causal relation between processes","http://purl.obolibrary.org/obo/BFO_0000003","","","gitIssue502","","RO:0002501","RO_0002501","","causal relation between processes","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002506","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002506"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002506""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causal relation between entities""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000002"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causal relation between entities""},""numDescendants"":6.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002506""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002506"":{""url"":""http://purl.obolibrary.org/obo/RO_0002506"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002506""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","false","false","","The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch","","http://purl.obolibrary.org/obo/mondo.owl","","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/RO_0002506","6.0","false","causal relation between entities","http://purl.obolibrary.org/obo/BFO_0000002","","","gitIssue502","","RO:0002506","RO_0002506","","causal relation between entities","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002559","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002559"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002559""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002506"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002506"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causally influenced by""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002506"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002566"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causally influenced by""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002559""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002506"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between entities""},""curie"":{""type"":[""literal""],""value"":""RO:0002506""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002566"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally influences""},""curie"":{""type"":[""literal""],""value"":""RO:0002566""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""RO:0002559"":{""url"":""http://purl.obolibrary.org/obo/RO_0002559"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002559""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002566","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002506","http://purl.obolibrary.org/obo/RO_0002559","0.0","false","causally influenced by","","http://purl.obolibrary.org/obo/RO_0002506","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002506","RO:0002559","RO_0002559","","causally influenced by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002566","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002566"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002566""},""definition"":{""type"":[""literal""],""value"":""The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002506"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002506"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causally influences""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002506"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002559"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/RO_0002233""],[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/RO_0002333""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causally influences""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002566""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002333"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enabled by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002333""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002559"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally influenced by""},""curie"":{""type"":[""literal""],""value"":""RO:0002559""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002233""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002566"":{""url"":""http://purl.obolibrary.org/obo/RO_0002566"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002566""},""http://purl.obolibrary.org/obo/RO_0002506"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between entities""},""curie"":{""type"":[""literal""],""value"":""RO:0002506""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002559","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).","http://purl.obolibrary.org/obo/mondo.owl","The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/RO_0002506","http://purl.obolibrary.org/obo/RO_0002566","4.0","false","causally influences","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/RO_0002506","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/RO_0002233|http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/RO_0002333","gitIssue502","http://purl.obolibrary.org/obo/RO_0002506","RO:0002566","RO_0002566","","causally influences","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002578","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002578"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002578""},""definition"":{""type"":[""literal""],""value"":""p directly regulates q iff p is immediately causally upstream of q and p regulates q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002412"",""http://purl.obolibrary.org/obo/RO_0002090""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002412""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p directly regulates q iff p is immediately causally upstream of q and p regulates q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly regulates""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002412""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002022"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly regulates""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p directly regulates q iff p is immediately causally upstream of q and p regulates q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002578""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002090"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002090""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0002578"":{""url"":""http://purl.obolibrary.org/obo/RO_0002578"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002578""},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002022"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulated by""},""curie"":{""type"":[""literal""],""value"":""RO:0002022""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002412""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002022","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p directly regulates q iff p is immediately causally upstream of q and p regulates q.","http://purl.obolibrary.org/obo/mondo.owl","p directly regulates q iff p is immediately causally upstream of q and p regulates q.","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002412","http://purl.obolibrary.org/obo/RO_0002578","2.0","false","directly regulates","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002412","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002412|http://purl.obolibrary.org/obo/RO_0002090","RO:0002578","RO_0002578","","directly regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002584","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002584"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002584""},""definition"":{""type"":[""literal""],""value"":""s \u0027has part structure that is capable of\u0027 p if and only if there exists some part x such that s \u0027has part\u0027 x and x \u0027capable of\u0027 p""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002595"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002595"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""s \u0027has part structure that is capable of\u0027 p if and only if there exists some part x such that s \u0027has part\u0027 x and x \u0027capable of\u0027 p""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has part structure that is capable of""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002595"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002215""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has part structure that is capable of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""s \u0027has part structure that is capable of\u0027 p if and only if there exists some part x such that s \u0027has part\u0027 x and x \u0027capable of\u0027 p""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002584""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002584"":{""url"":""http://purl.obolibrary.org/obo/RO_0002584"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002584""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","s 'has part structure that is capable of' p if and only if there exists some part x such that s 'has part' x and x 'capable of' p","http://purl.obolibrary.org/obo/mondo.owl","s 'has part structure that is capable of' p if and only if there exists some part x such that s 'has part' x and x 'capable of' p","","http://purl.obolibrary.org/obo/RO_0002595","http://purl.obolibrary.org/obo/RO_0002584","0.0","false","has part structure that is capable of","","http://purl.obolibrary.org/obo/RO_0002595","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002215","gitIssue502","http://purl.obolibrary.org/obo/RO_0002595","RO:0002584","RO_0002584","","has part structure that is capable of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002595","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002595"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""definition"":{""type"":[""literal""],""value"":""A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""numDescendants"":19.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.""},{""type"":[""literal""],""value"":""Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002595""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""RO:0002595"":{""url"":""http://purl.obolibrary.org/obo/RO_0002595"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002595""},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.","A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.","http://purl.obolibrary.org/obo/mondo.owl","A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.","http://purl.obolibrary.org/obo/BFO_0000015","","http://purl.obolibrary.org/obo/RO_0002595","19.0","false","causal relation between material entity and a process","http://purl.obolibrary.org/obo/BFO_0000040","","","gitIssue502","","RO:0002595","RO_0002595","","causal relation between material entity and a process","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002596","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002596"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002596""},""definition"":{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a regulates p.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002500"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a regulates p.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""capable of regulating""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002500"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002215"",""http://purl.obolibrary.org/obo/RO_0002211""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""capable of regulating""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a regulates p.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002596""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""RO:0002596"":{""url"":""http://purl.obolibrary.org/obo/RO_0002596"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002596""},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","Holds between c and p if and only if c is capable of some activity a, and a regulates p.","http://purl.obolibrary.org/obo/mondo.owl","Holds between c and p if and only if c is capable of some activity a, and a regulates p.","","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002596","2.0","false","capable of regulating","","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002215|http://purl.obolibrary.org/obo/RO_0002211","gitIssue502","http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002596","RO_0002596","","capable of regulating","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002597","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002597"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002597""},""definition"":{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002596"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002596"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""capable of negatively regulating""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002596"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002215"",""http://purl.obolibrary.org/obo/RO_0002212""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""capable of negatively regulating""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002597""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002596"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""capable of regulating""},""curie"":{""type"":[""literal""],""value"":""RO:0002596""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002212"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002212""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""RO:0002597"":{""url"":""http://purl.obolibrary.org/obo/RO_0002597"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002597""},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.","http://purl.obolibrary.org/obo/mondo.owl","Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.","","http://purl.obolibrary.org/obo/RO_0002596","http://purl.obolibrary.org/obo/RO_0002597","0.0","false","capable of negatively regulating","","http://purl.obolibrary.org/obo/RO_0002596","http://purl.obolibrary.org/obo/RO_0002215|http://purl.obolibrary.org/obo/RO_0002212","gitIssue502","http://purl.obolibrary.org/obo/RO_0002596|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002597","RO_0002597","","capable of negatively regulating","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002598","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002598"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002598""},""definition"":{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002596"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002596"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""capable of positively regulating""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002596"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002215"",""http://purl.obolibrary.org/obo/RO_0002213""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""capable of positively regulating""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002598""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002596"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""capable of regulating""},""curie"":{""type"":[""literal""],""value"":""RO:0002596""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""RO:0002598"":{""url"":""http://purl.obolibrary.org/obo/RO_0002598"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002598""},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.","http://purl.obolibrary.org/obo/mondo.owl","Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.","","http://purl.obolibrary.org/obo/RO_0002596","http://purl.obolibrary.org/obo/RO_0002598","0.0","false","capable of positively regulating","","http://purl.obolibrary.org/obo/RO_0002596","http://purl.obolibrary.org/obo/RO_0002215|http://purl.obolibrary.org/obo/RO_0002213","gitIssue502","http://purl.obolibrary.org/obo/RO_0002596|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002598","RO_0002598","","capable of positively regulating","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002608","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002608"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002608""},""definition"":{""type"":[""literal""],""value"":""Inverse of \u0027causal agent in process\u0027""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Inverse of \u0027causal agent in process\u0027""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""process has causal agent""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002500"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""process has causal agent""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Inverse of \u0027causal agent in process\u0027""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002608""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002608"":{""url"":""http://purl.obolibrary.org/obo/RO_0002608"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002608""},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002500","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","Inverse of 'causal agent in process'","http://purl.obolibrary.org/obo/mondo.owl","Inverse of 'causal agent in process'","","","http://purl.obolibrary.org/obo/RO_0002608","0.0","false","process has causal agent","","","","gitIssue502","","RO:0002608","RO_0002608","","process has causal agent","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002629","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002629"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002629""},""definition"":{""type"":[""literal""],""value"":""p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002213"",""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002304"",""http://purl.obolibrary.org/obo/RO_0004047"",""http://purl.obolibrary.org/obo/RO_0002578"",""http://purl.obolibrary.org/obo/RO_0002412"",""http://purl.obolibrary.org/obo/RO_0002090""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002213"",""http://purl.obolibrary.org/obo/RO_0002578""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly positively regulates""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002213"",""http://purl.obolibrary.org/obo/RO_0002578""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002024"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly positively regulates""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002629""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0002629"":{""url"":""http://purl.obolibrary.org/obo/RO_0002629"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002629""},""http://purl.obolibrary.org/obo/RO_0002090"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002090""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002304"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0002304""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004047"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004047""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002024"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly positively regulated by""},""curie"":{""type"":[""literal""],""value"":""RO:0002024""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002412""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002578"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002578""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002024","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.","http://purl.obolibrary.org/obo/mondo.owl","p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.","","http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0002578","http://purl.obolibrary.org/obo/RO_0002629","0.0","false","directly positively regulates","","http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0002578","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002304|http://purl.obolibrary.org/obo/RO_0004047|http://purl.obolibrary.org/obo/RO_0002578|http://purl.obolibrary.org/obo/RO_0002412|http://purl.obolibrary.org/obo/RO_0002090","RO:0002629","RO_0002629","","directly positively regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002630","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002630"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002630""},""definition"":{""type"":[""literal""],""value"":""p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002212"",""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002305"",""http://purl.obolibrary.org/obo/RO_0004046"",""http://purl.obolibrary.org/obo/RO_0002578"",""http://purl.obolibrary.org/obo/RO_0002412"",""http://purl.obolibrary.org/obo/RO_0002090""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002212"",""http://purl.obolibrary.org/obo/RO_0002578""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly negatively regulates""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002212"",""http://purl.obolibrary.org/obo/RO_0002578""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002023"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly negatively regulates""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002630""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002090"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002090""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002212"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002212""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002305"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0002305""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004046"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004046""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly negatively regulated by""},""curie"":{""type"":[""literal""],""value"":""RO:0002023""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002630"":{""url"":""http://purl.obolibrary.org/obo/RO_0002630"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002630""},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002412""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002578"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002578""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002023","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.","http://purl.obolibrary.org/obo/mondo.owl","p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.","","http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0002578","http://purl.obolibrary.org/obo/RO_0002630","0.0","false","directly negatively regulates","","http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0002578","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002305|http://purl.obolibrary.org/obo/RO_0004046|http://purl.obolibrary.org/obo/RO_0002578|http://purl.obolibrary.org/obo/RO_0002412|http://purl.obolibrary.org/obo/RO_0002090","RO:0002630","RO_0002630","","directly negatively regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0003000","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0003000"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0003000""},""definition"":{""type"":[""literal""],""value"":""a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""produces"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0003001"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""produces"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0003000""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0003001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""produced by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0003001""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""RO:0003000"":{""url"":""http://purl.obolibrary.org/obo/RO_0003000"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0003000""},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0003001","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.","http://purl.obolibrary.org/obo/mondo.owl","a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.","http://purl.obolibrary.org/obo/BFO_0000040","","http://purl.obolibrary.org/obo/RO_0003000","0.0","false","produces","http://purl.obolibrary.org/obo/BFO_0000040","","","gitIssue502","","RO:0003000","RO_0003000","","produces","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0003001","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0003001"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0003001""},""definition"":{""type"":[""literal""],""value"":""a produced_by b iff some process that occurs_in b has_output a.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""a produced_by b iff some process that occurs_in b has_output a.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""produced by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0003000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""produced by"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""a produced_by b iff some process that occurs_in b has_output a.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0003001""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0003000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""produces"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0003000""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""RO:0003001"":{""url"":""http://purl.obolibrary.org/obo/RO_0003001"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0003001""},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0003000","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","a produced_by b iff some process that occurs_in b has_output a.","http://purl.obolibrary.org/obo/mondo.owl","a produced_by b iff some process that occurs_in b has_output a.","http://purl.obolibrary.org/obo/BFO_0000040","","http://purl.obolibrary.org/obo/RO_0003001","0.0","false","produced by","http://purl.obolibrary.org/obo/BFO_0000040","","","gitIssue502","","RO:0003001","RO_0003001","","produced by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004019","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004019"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004019""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0004023"",""directParent"":""http://purl.obolibrary.org/obo/RO_0004023"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disease has basis in""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0004023"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disease has basis in""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0004019""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""RO:0004019"":{""url"":""http://purl.obolibrary.org/obo/RO_0004019"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004019""},""http://purl.obolibrary.org/obo/RO_0004023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relationship with disease as subject""},""curie"":{""type"":[""literal""],""value"":""RO:0004023""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0004023","http://purl.obolibrary.org/obo/RO_0004019","1.0","false","disease has basis in","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/RO_0004023","","gitIssue502","http://purl.obolibrary.org/obo/RO_0004023","RO:0004019","RO_0004019","","disease has basis in","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004021","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004021"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004021""},""definition"":[{""type"":[""literal""],""value"":""A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.""},{""type"":[""literal""],""value"":""Editor note: TODO property chain: disease_has_location \u003c- dhbido o occurs_in""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0004019"",""http://purl.obolibrary.org/obo/RO_0004023"",""http://purl.obolibrary.org/obo/RO_0004024""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0004019"",""http://purl.obolibrary.org/obo/RO_0004024""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""RO:0004021""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""disease_has_basis_in_disruption_of""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""disease_has_basis_in_disruption_of""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Editor note: TODO property chain: disease_has_location \u003c- dhbido o occurs_in""},""http://www.w3.org/2000/01/rdf-schema#label"":[{""type"":[""literal""],""value"":""disease caused by disruption of""},{""type"":[""literal""],""value"":""disease has basis in disruption of""}],""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0004019"",""http://purl.obolibrary.org/obo/RO_0004024""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0004021"",""http://purl.obolibrary.org/obo/BFO_0000050""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":[{""type"":[""literal""],""value"":""disease caused by disruption of""},{""type"":[""literal""],""value"":""disease has basis in disruption of""}],""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.""},{""type"":[""literal""],""value"":""RO:0004021""},{""type"":[""literal""],""value"":""disease_has_basis_in_disruption_of""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0004021""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004024"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""disease causes disruption of""},{""type"":[""literal""],""value"":""disease disrupts""}],""curie"":{""type"":[""literal""],""value"":""RO:0004024""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relationship with disease as subject""},""curie"":{""type"":[""literal""],""value"":""RO:0004023""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has basis in""},""curie"":{""type"":[""literal""],""value"":""RO:0004019""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0004021"":{""url"":""http://purl.obolibrary.org/obo/RO_0004021"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004021""},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","RO:0004021","0.0","property|objectProperty|entity","","disease_has_basis_in_disruption_of","disease_has_basis_in_disruption_of","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","true","false","Editor note: TODO property chain: disease_has_location <- dhbido o occurs_in","","A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.|Editor note: TODO property chain: disease_has_location <- dhbido o occurs_in","http://purl.obolibrary.org/obo/mondo.owl","A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0004019|http://purl.obolibrary.org/obo/RO_0004024","http://purl.obolibrary.org/obo/RO_0004021","0.0","false","disease caused by disruption of|disease has basis in disruption of","","http://purl.obolibrary.org/obo/RO_0004019|http://purl.obolibrary.org/obo/RO_0004024","http://purl.obolibrary.org/obo/RO_0004021|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","http://purl.obolibrary.org/obo/RO_0004019|http://purl.obolibrary.org/obo/RO_0004023|http://purl.obolibrary.org/obo/RO_0004024","RO:0004021","RO_0004021","","disease caused by disruption of|disease has basis in disruption of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004023","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004023"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004023""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causal relationship with disease as subject""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causal relationship with disease as subject""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0004023""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0004023"":{""url"":""http://purl.obolibrary.org/obo/RO_0004023"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004023""},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://purl.obolibrary.org/obo/RO_0004023","3.0","false","causal relationship with disease as subject","http://purl.obolibrary.org/obo/OGMS_0000031","","","gitIssue502","","RO:0004023","RO_0004023","","causal relationship with disease as subject","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004024","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004024"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004024""},""definition"":{""type"":[""literal""],""value"":""A relationship between a disease and a process where the disease process disrupts the execution of the process.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0004023"",""directParent"":""http://purl.obolibrary.org/obo/RO_0004023"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship between a disease and a process where the disease process disrupts the execution of the process.""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""RO:0004024""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""disease_disrupts""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""disease_disrupts""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://www.w3.org/2000/01/rdf-schema#label"":[{""type"":[""literal""],""value"":""disease causes disruption of""},{""type"":[""literal""],""value"":""disease disrupts""}],""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0004023"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0004024"",""http://purl.obolibrary.org/obo/BFO_0000050""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":[{""type"":[""literal""],""value"":""disease causes disruption of""},{""type"":[""literal""],""value"":""disease disrupts""}],""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship between a disease and a process where the disease process disrupts the execution of the process.""},{""type"":[""literal""],""value"":""RO:0004024""},{""type"":[""literal""],""value"":""disease_disrupts""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0004024""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relationship with disease as subject""},""curie"":{""type"":[""literal""],""value"":""RO:0004023""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0004024"":{""url"":""http://purl.obolibrary.org/obo/RO_0004024"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004024""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","RO:0004024","0.0","property|objectProperty|entity","","disease_disrupts","disease_disrupts","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","A relationship between a disease and a process where the disease process disrupts the execution of the process.","http://purl.obolibrary.org/obo/mondo.owl","A relationship between a disease and a process where the disease process disrupts the execution of the process.","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0004023","http://purl.obolibrary.org/obo/RO_0004024","1.0","false","disease causes disruption of|disease disrupts","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/RO_0004023","http://purl.obolibrary.org/obo/RO_0004024|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","http://purl.obolibrary.org/obo/RO_0004023","RO:0004024","RO_0004024","","disease causes disruption of|disease disrupts","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004026","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004026"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""definition"":{""type"":[""literal""],""value"":""A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""TODO: complete range axiom once more of CARO has been mireoted in to this ontology""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""RO:0004026""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""disease_has_location""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""disease_has_location""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disease has location""},""http://www.w3.org/2000/01/rdf-schema#range"":[""http://purl.obolibrary.org/obo/BFO_0000004"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#unionOf"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/UBERON_0000466""]}],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0004026"",""http://purl.obolibrary.org/obo/BFO_0000050""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disease has location""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.""},{""type"":[""literal""],""value"":""TODO: complete range axiom once more of CARO has been mireoted in to this ontology""},{""type"":[""literal""],""value"":""RO:0004026""},{""type"":[""literal""],""value"":""disease_has_location""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0004026""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000466"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""immaterial anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000466""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0004026"":{""url"":""http://purl.obolibrary.org/obo/RO_0004026"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004026""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","RO:0004026","0.0","property|objectProperty|entity","","disease_has_location","disease_has_location","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","TODO: complete range axiom once more of CARO has been mireoted in to this ontology","A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.","http://purl.obolibrary.org/obo/mondo.owl","A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.","http://purl.obolibrary.org/obo/BFO_0000004|","","http://purl.obolibrary.org/obo/RO_0004026","0.0","false","disease has location","http://purl.obolibrary.org/obo/OGMS_0000031","","http://purl.obolibrary.org/obo/RO_0004026|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","","RO:0004026","RO_0004026","","disease has location","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004029","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004029"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004029""},""definition"":{""type"":[""literal""],""value"":""A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""RO:0004029""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""disease_has_feature""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""disease_has_feature""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disease has feature""},""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0004029"",""http://purl.obolibrary.org/obo/BFO_0000051""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disease has feature""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.""},{""type"":[""literal""],""value"":""RO:0004029""},{""type"":[""literal""],""value"":""disease_has_feature""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0004029""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0004029"":{""url"":""http://purl.obolibrary.org/obo/RO_0004029"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004029""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","RO:0004029","0.0","property|objectProperty|entity","","disease_has_feature","disease_has_feature","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.","http://purl.obolibrary.org/obo/mondo.owl","A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.","","","http://purl.obolibrary.org/obo/RO_0004029","0.0","false","disease has feature","http://purl.obolibrary.org/obo/OGMS_0000031","","http://purl.obolibrary.org/obo/RO_0004029|http://purl.obolibrary.org/obo/BFO_0000051","gitIssue502","","RO:0004029","RO_0004029","","disease has feature","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004032","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004032"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004032""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002264"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""acts upstream of or within, positive effect""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002264"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0004047""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""acts upstream of or within, positive effect""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0004032""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004047"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004047""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0004032"":{""url"":""http://purl.obolibrary.org/obo/RO_0004032"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004032""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0004032","1.0","false","acts upstream of or within, positive effect","","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0004047","gitIssue502","http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0004032","RO_0004032","","acts upstream of or within, positive effect","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004033","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004033"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004033""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002264"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""acts upstream of or within, negative effect""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002264"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0004046""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""acts upstream of or within, negative effect""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0004033""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004046"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004046""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0004033"":{""url"":""http://purl.obolibrary.org/obo/RO_0004033"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004033""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0004033","1.0","false","acts upstream of or within, negative effect","","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0004046","gitIssue502","http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0004033","RO_0004033","","acts upstream of or within, negative effect","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004034","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004034"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004034""},""definition"":{""type"":[""literal""],""value"":""c \u0027acts upstream of, positive effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595"",""http://purl.obolibrary.org/obo/RO_0004032""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0004032""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c \u0027acts upstream of, positive effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""acts upstream of, positive effect""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0004032""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002304""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""acts upstream of, positive effect""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c \u0027acts upstream of, positive effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0004034""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004032"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004032""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002304"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0002304""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0004034"":{""url"":""http://purl.obolibrary.org/obo/RO_0004034"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004034""},""http://purl.obolibrary.org/obo/RO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of""},""curie"":{""type"":[""literal""],""value"":""RO:0002263""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c 'acts upstream of, positive effect' p if c is enables f, and f is causally upstream of p, and the direction of f is positive","http://purl.obolibrary.org/obo/mondo.owl","c 'acts upstream of, positive effect' p if c is enables f, and f is causally upstream of p, and the direction of f is positive","","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0004032","http://purl.obolibrary.org/obo/RO_0004034","0.0","false","acts upstream of, positive effect","","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0004032","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002304","gitIssue502","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595|http://purl.obolibrary.org/obo/RO_0004032","RO:0004034","RO_0004034","","acts upstream of, positive effect","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004035","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004035"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004035""},""definition"":{""type"":[""literal""],""value"":""c \u0027acts upstream of, negative effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595"",""http://purl.obolibrary.org/obo/RO_0004033""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0004033""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c \u0027acts upstream of, negative effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""acts upstream of, negative effect""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0004033""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002305""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""acts upstream of, negative effect""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c \u0027acts upstream of, negative effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0004035""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004033""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002305"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0002305""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""RO:0004035"":{""url"":""http://purl.obolibrary.org/obo/RO_0004035"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004035""},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of""},""curie"":{""type"":[""literal""],""value"":""RO:0002263""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c 'acts upstream of, negative effect' p if c is enables f, and f is causally upstream of p, and the direction of f is negative","http://purl.obolibrary.org/obo/mondo.owl","c 'acts upstream of, negative effect' p if c is enables f, and f is causally upstream of p, and the direction of f is negative","","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0004033","http://purl.obolibrary.org/obo/RO_0004035","0.0","false","acts upstream of, negative effect","","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0004033","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002305","gitIssue502","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595|http://purl.obolibrary.org/obo/RO_0004033","RO:0004035","RO_0004035","","acts upstream of, negative effect","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004046","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004046"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004046""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002418"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causally upstream of or within, negative effect""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002418"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, negative effect""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0004046""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0004046"":{""url"":""http://purl.obolibrary.org/obo/RO_0004046"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004046""},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0004046","4.0","false","causally upstream of or within, negative effect","","http://purl.obolibrary.org/obo/RO_0002418","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501","RO:0004046","RO_0004046","","causally upstream of or within, negative effect","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004047","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004047"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004047""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002418"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causally upstream of or within, positive effect""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002418"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, positive effect""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0004047""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0004047"":{""url"":""http://purl.obolibrary.org/obo/RO_0004047"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004047""},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0004047","4.0","false","causally upstream of or within, positive effect","","http://purl.obolibrary.org/obo/RO_0002418","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501","RO:0004047","RO_0004047","","causally upstream of or within, positive effect","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0011002","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0011002"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0011002""},""definition"":{""type"":[""literal""],""value"":""The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002566"",""http://purl.obolibrary.org/obo/RO_0002506""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002566"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""regulates activity of""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002566"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""regulates activity of""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0011002""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0011002"":{""url"":""http://purl.obolibrary.org/obo/RO_0011002"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0011002""},""http://purl.obolibrary.org/obo/RO_0002506"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between entities""},""curie"":{""type"":[""literal""],""value"":""RO:0002506""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002566"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally influences""},""curie"":{""type"":[""literal""],""value"":""RO:0002566""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.","http://purl.obolibrary.org/obo/mondo.owl","The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/RO_0002566","http://purl.obolibrary.org/obo/RO_0011002","3.0","false","regulates activity of","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/RO_0002566","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002566|http://purl.obolibrary.org/obo/RO_0002506","RO:0011002","RO_0011002","","regulates activity of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0012011","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0012011"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0012011""},""definition"":{""type"":[""literal""],""value"":""p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002411"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly causally upstream of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002411"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly causally upstream of"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0012011""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0012011"":{""url"":""http://purl.obolibrary.org/obo/RO_0012011"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0012011""},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.","http://purl.obolibrary.org/obo/mondo.owl","p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.","","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0012011","3.0","false","indirectly causally upstream of","","http://purl.obolibrary.org/obo/RO_0002411","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501","RO:0012011","RO_0012011","","indirectly causally upstream of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0012012","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0012012"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0012012""},""definition"":{""type"":[""literal""],""value"":""p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0012011""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0012011""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly regulates"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0012011""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly regulates"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0012012""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0012012"":{""url"":""http://purl.obolibrary.org/obo/RO_0012012"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0012012""},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0012011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0012011""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.","http://purl.obolibrary.org/obo/mondo.owl","p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0012011","http://purl.obolibrary.org/obo/RO_0012012","2.0","false","indirectly regulates","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0012011","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0012011","RO:0012012","RO_0012012","","indirectly regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0019000","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0019000"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0019000""},""definition"":{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""regulates characteristic""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/PATO_0000001"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0019000""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""regulates characteristic""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0019000""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0019000"":{""url"":""http://purl.obolibrary.org/obo/RO_0019000"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0019000""},""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.","http://purl.obolibrary.org/obo/mondo.owl","A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.","http://purl.obolibrary.org/obo/PATO_0000001","","http://purl.obolibrary.org/obo/RO_0019000","2.0","false","regulates characteristic","http://purl.obolibrary.org/obo/BFO_0000015","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0019000","gitIssue502","","RO:0019000","RO_0019000","","regulates characteristic","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0019001","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0019001"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0019001""},""definition"":{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0019000"",""directParent"":""http://purl.obolibrary.org/obo/RO_0019000"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""positively regulates characteristic""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0019000"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002213"",""http://purl.obolibrary.org/obo/RO_0019001""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""positively regulates characteristic""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0019001""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0019001"":{""url"":""http://purl.obolibrary.org/obo/RO_0019001"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0019001""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0019000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulates characteristic""},""curie"":{""type"":[""literal""],""value"":""RO:0019000""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.","http://purl.obolibrary.org/obo/mondo.owl","A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.","","http://purl.obolibrary.org/obo/RO_0019000","http://purl.obolibrary.org/obo/RO_0019001","0.0","false","positively regulates characteristic","","http://purl.obolibrary.org/obo/RO_0019000","http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0019001","gitIssue502","http://purl.obolibrary.org/obo/RO_0019000","RO:0019001","RO_0019001","","positively regulates characteristic","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" -"gitissue502+property+http://purl.obolibrary.org/obo/RO_0019002","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0019002"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0019002""},""definition"":{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0019000"",""directParent"":""http://purl.obolibrary.org/obo/RO_0019000"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""negatively regulates characteristic""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0019000"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002212"",""http://purl.obolibrary.org/obo/RO_0019001""],[""http://purl.obolibrary.org/obo/RO_0002213"",""http://purl.obolibrary.org/obo/RO_0019002""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""negatively regulates characteristic""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0019002""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""RO:0019002"":{""url"":""http://purl.obolibrary.org/obo/RO_0019002"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0019002""},""http://purl.obolibrary.org/obo/RO_0002212"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002212""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0019001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""positively regulates characteristic""},""curie"":{""type"":[""literal""],""value"":""RO:0019001""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0019000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulates characteristic""},""curie"":{""type"":[""literal""],""value"":""RO:0019000""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.","http://purl.obolibrary.org/obo/mondo.owl","A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.","","http://purl.obolibrary.org/obo/RO_0019000","http://purl.obolibrary.org/obo/RO_0019002","0.0","false","negatively regulates characteristic","","http://purl.obolibrary.org/obo/RO_0019000","http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0019001|http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0019002","gitIssue502","http://purl.obolibrary.org/obo/RO_0019000","RO:0019002","RO_0019002","","negatively regulates characteristic","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002473","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002473"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002473""},""definition"":{""type"":[""literal""],""value"":""x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002131""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000051"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""composed primarily of""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""composed primarily of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002473""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002131"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overlaps"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002131""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.","http://purl.obolibrary.org/obo/mondo.owl","x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002473","0.0","false","composed primarily of","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000051","","gitIssue502","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002131","RO:0002473","RO_0002473","","composed primarily of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002479","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002479"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002479""},""definition"":{""type"":[""literal""],""value"":""p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has part that occurs in""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000004"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has part that occurs in""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002479""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.","http://purl.obolibrary.org/obo/mondo.owl","p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.","http://purl.obolibrary.org/obo/BFO_0000004","","http://purl.obolibrary.org/obo/RO_0002479","2.0","false","has part that occurs in","http://purl.obolibrary.org/obo/BFO_0000003","","","gitIssue502","","RO:0002479","RO_0002479","","has part that occurs in","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002487","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002487"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002487""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""numDescendants"":7.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002487""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/RO_0002487","7.0","false","relation between physical entity and a process or stage","http://purl.obolibrary.org/obo/BFO_0000004","","","gitIssue502","","RO:0002487","RO_0002487","","relation between physical entity and a process or stage","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002488","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002488"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002488""},""definition"":{""type"":[""literal""],""value"":""x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y).""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002490"",""http://purl.obolibrary.org/obo/RO_0002487"",""http://purl.obolibrary.org/obo/RO_0002496""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002490"",""http://purl.obolibrary.org/obo/RO_0002496""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y).""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""existence starts during""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002490"",""http://purl.obolibrary.org/obo/RO_0002496""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002488"",""http://purl.obolibrary.org/obo/BFO_0000050""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""existence starts during""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y).""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002488""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002490"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence overlaps""},""curie"":{""type"":[""literal""],""value"":""RO:0002490""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002496"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence starts during or after""},""curie"":{""type"":[""literal""],""value"":""RO:0002496""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002487"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""curie"":{""type"":[""literal""],""value"":""RO:0002487""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) >= α(y) & α(x) <= ω(y).","http://purl.obolibrary.org/obo/mondo.owl","x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) >= α(y) & α(x) <= ω(y).","","http://purl.obolibrary.org/obo/RO_0002490|http://purl.obolibrary.org/obo/RO_0002496","http://purl.obolibrary.org/obo/RO_0002488","1.0","false","existence starts during","","http://purl.obolibrary.org/obo/RO_0002490|http://purl.obolibrary.org/obo/RO_0002496","http://purl.obolibrary.org/obo/RO_0002488|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","http://purl.obolibrary.org/obo/RO_0002490|http://purl.obolibrary.org/obo/RO_0002487|http://purl.obolibrary.org/obo/RO_0002496","RO:0002488","RO_0002488","","existence starts during","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002489","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002489"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002489""},""definition"":{""type"":[""literal""],""value"":""x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \u003d α(y).""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002488"",""http://purl.obolibrary.org/obo/RO_0002490"",""http://purl.obolibrary.org/obo/RO_0002487"",""http://purl.obolibrary.org/obo/RO_0002496""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002488"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \u003d α(y).""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""existence starts with""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002488"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""existence starts with""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \u003d α(y).""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002489""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002490"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence overlaps""},""curie"":{""type"":[""literal""],""value"":""RO:0002490""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002496"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence starts during or after""},""curie"":{""type"":[""literal""],""value"":""RO:0002496""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002488"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence starts during""},""curie"":{""type"":[""literal""],""value"":""RO:0002488""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002487"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""curie"":{""type"":[""literal""],""value"":""RO:0002487""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) = α(y).","http://purl.obolibrary.org/obo/mondo.owl","x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) = α(y).","","http://purl.obolibrary.org/obo/RO_0002488","http://purl.obolibrary.org/obo/RO_0002489","0.0","false","existence starts with","","http://purl.obolibrary.org/obo/RO_0002488","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002488|http://purl.obolibrary.org/obo/RO_0002490|http://purl.obolibrary.org/obo/RO_0002487|http://purl.obolibrary.org/obo/RO_0002496","RO:0002489","RO_0002489","","existence starts with","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002490","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002490"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002490""},""definition"":{""type"":[""literal""],""value"":""x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y)) OR (ω(x) \u003c\u003d ω(y) \u0026 ω(x) \u003e\u003d α(y))""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002487"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002487"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y)) OR (ω(x) \u003c\u003d ω(y) \u0026 ω(x) \u003e\u003d α(y))""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""existence overlaps""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002487"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""existence overlaps""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y)) OR (ω(x) \u003c\u003d ω(y) \u0026 ω(x) \u003e\u003d α(y))""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002490""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002487"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""curie"":{""type"":[""literal""],""value"":""RO:0002487""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) >= α(y) & α(x) <= ω(y)) OR (ω(x) <= ω(y) & ω(x) >= α(y))","http://purl.obolibrary.org/obo/mondo.owl","x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) >= α(y) & α(x) <= ω(y)) OR (ω(x) <= ω(y) & ω(x) >= α(y))","","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/RO_0002490","4.0","false","existence overlaps","","http://purl.obolibrary.org/obo/RO_0002487","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002487","RO:0002490","RO_0002490","","existence overlaps","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002492","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002492"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002492""},""definition"":{""type"":[""literal""],""value"":""x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \u003c\u003d ω(y) and ω(x) \u003e\u003d α(y).""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002490"",""http://purl.obolibrary.org/obo/RO_0002487"",""http://purl.obolibrary.org/obo/RO_0002497""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002490"",""http://purl.obolibrary.org/obo/RO_0002497""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \u003c\u003d ω(y) and ω(x) \u003e\u003d α(y).""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""existence ends during""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002490"",""http://purl.obolibrary.org/obo/RO_0002497""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002492"",""http://purl.obolibrary.org/obo/BFO_0000050""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""existence ends during""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \u003c\u003d ω(y) and ω(x) \u003e\u003d α(y).""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002492""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002490"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence overlaps""},""curie"":{""type"":[""literal""],""value"":""RO:0002490""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002497"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during or before""},""curie"":{""type"":[""literal""],""value"":""RO:0002497""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002487"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""curie"":{""type"":[""literal""],""value"":""RO:0002487""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) <= ω(y) and ω(x) >= α(y).","http://purl.obolibrary.org/obo/mondo.owl","x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) <= ω(y) and ω(x) >= α(y).","","http://purl.obolibrary.org/obo/RO_0002490|http://purl.obolibrary.org/obo/RO_0002497","http://purl.obolibrary.org/obo/RO_0002492","1.0","false","existence ends during","","http://purl.obolibrary.org/obo/RO_0002490|http://purl.obolibrary.org/obo/RO_0002497","http://purl.obolibrary.org/obo/RO_0002492|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","http://purl.obolibrary.org/obo/RO_0002490|http://purl.obolibrary.org/obo/RO_0002487|http://purl.obolibrary.org/obo/RO_0002497","RO:0002492","RO_0002492","","existence ends during","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002493","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002493"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002493""},""definition"":{""type"":[""literal""],""value"":""x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \u003d ω(y).""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002492"",""http://purl.obolibrary.org/obo/RO_0002490"",""http://purl.obolibrary.org/obo/RO_0002487"",""http://purl.obolibrary.org/obo/RO_0002497""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002492"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \u003d ω(y).""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""existence ends with""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002492"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""existence ends with""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \u003d ω(y).""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002493""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002490"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence overlaps""},""curie"":{""type"":[""literal""],""value"":""RO:0002490""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002497"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during or before""},""curie"":{""type"":[""literal""],""value"":""RO:0002497""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002492"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""existence ends during""},""curie"":{""type"":[""literal""],""value"":""RO:0002492""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002487"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""curie"":{""type"":[""literal""],""value"":""RO:0002487""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) = ω(y).","http://purl.obolibrary.org/obo/mondo.owl","x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) = ω(y).","","http://purl.obolibrary.org/obo/RO_0002492","http://purl.obolibrary.org/obo/RO_0002493","0.0","false","existence ends with","","http://purl.obolibrary.org/obo/RO_0002492","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002492|http://purl.obolibrary.org/obo/RO_0002490|http://purl.obolibrary.org/obo/RO_0002487|http://purl.obolibrary.org/obo/RO_0002497","RO:0002493","RO_0002493","","existence ends with","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002494","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002494"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002494""},""definition"":{""type"":[""literal""],""value"":""x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002202"",""http://purl.obolibrary.org/obo/RO_0002258""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002202"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""transformation of""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002202"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""transformation of""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002494""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002258"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships","http://purl.obolibrary.org/obo/mondo.owl","x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships","","http://purl.obolibrary.org/obo/RO_0002202","http://purl.obolibrary.org/obo/RO_0002494","1.0","false","transformation of","","http://purl.obolibrary.org/obo/RO_0002202","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002202|http://purl.obolibrary.org/obo/RO_0002258","RO:0002494","RO_0002494","","transformation of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002495","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002495"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002495""},""definition"":{""type"":[""literal""],""value"":""x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002207"",""http://purl.obolibrary.org/obo/RO_0002202"",""http://purl.obolibrary.org/obo/RO_0002258"",""http://purl.obolibrary.org/obo/RO_0002494""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002207"",""http://purl.obolibrary.org/obo/RO_0002494""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""immediate transformation of""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002207"",""http://purl.obolibrary.org/obo/RO_0002494""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""immediate transformation of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002495""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002494"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""transformation of""},""curie"":{""type"":[""literal""],""value"":""RO:0002494""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002207"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directly develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002207""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002202"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""develops from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002202""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002258"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t","http://purl.obolibrary.org/obo/mondo.owl","x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t","","http://purl.obolibrary.org/obo/RO_0002207|http://purl.obolibrary.org/obo/RO_0002494","http://purl.obolibrary.org/obo/RO_0002495","0.0","false","immediate transformation of","","http://purl.obolibrary.org/obo/RO_0002207|http://purl.obolibrary.org/obo/RO_0002494","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002207|http://purl.obolibrary.org/obo/RO_0002202|http://purl.obolibrary.org/obo/RO_0002258|http://purl.obolibrary.org/obo/RO_0002494","RO:0002495","RO_0002495","","immediate transformation of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002496","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002496"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002496""},""definition"":{""type"":[""literal""],""value"":""x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \u003e\u003d α (y).""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002487"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002487"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \u003e\u003d α (y).""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""existence starts during or after""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002487"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002496""],[""http://purl.obolibrary.org/obo/RO_0002258"",""http://purl.obolibrary.org/obo/RO_0002496""],[""http://purl.obolibrary.org/obo/RO_0002496"",""http://purl.obolibrary.org/obo/BFO_0000050""],[""http://purl.obolibrary.org/obo/RO_0002496"",""http://purl.obolibrary.org/obo/BFO_0000062""],[""http://purl.obolibrary.org/obo/RO_0002496"",""http://purl.obolibrary.org/obo/RO_0002082""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""existence starts during or after""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \u003e\u003d α (y).""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002496""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002487"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""curie"":{""type"":[""literal""],""value"":""RO:0002487""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002258"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002258""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000062"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preceded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000062""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) >= α (y).","http://purl.obolibrary.org/obo/mondo.owl","x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) >= α (y).","","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/RO_0002496","2.0","false","existence starts during or after","","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002496|http://purl.obolibrary.org/obo/RO_0002258|http://purl.obolibrary.org/obo/RO_0002496|http://purl.obolibrary.org/obo/RO_0002496|http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002496|http://purl.obolibrary.org/obo/BFO_0000062|http://purl.obolibrary.org/obo/RO_0002496|http://purl.obolibrary.org/obo/RO_0002082","gitIssue502","http://purl.obolibrary.org/obo/RO_0002487","RO:0002496","RO_0002496","","existence starts during or after","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002497","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002497"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002497""},""definition"":{""type"":[""literal""],""value"":""x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002487"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002487"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""existence ends during or before""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002487"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/RO_0002497""],[""http://purl.obolibrary.org/obo/RO_0002286"",""http://purl.obolibrary.org/obo/RO_0002497""],[""http://purl.obolibrary.org/obo/RO_0002497"",""http://purl.obolibrary.org/obo/BFO_0000050""],[""http://purl.obolibrary.org/obo/RO_0002497"",""http://purl.obolibrary.org/obo/BFO_0000063""],[""http://purl.obolibrary.org/obo/RO_0002497"",""http://purl.obolibrary.org/obo/RO_0002082""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""existence ends during or before""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002497""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002082"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""simultaneous with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002082""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002286"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""developmentally succeeded by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002286""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002487"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""relation between physical entity and a process or stage""},""curie"":{""type"":[""literal""],""value"":""RO:0002487""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.","http://purl.obolibrary.org/obo/mondo.owl","x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.","","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/RO_0002497","2.0","false","existence ends during or before","","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002497|http://purl.obolibrary.org/obo/RO_0002286|http://purl.obolibrary.org/obo/RO_0002497|http://purl.obolibrary.org/obo/RO_0002497|http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/RO_0002497|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002497|http://purl.obolibrary.org/obo/RO_0002082","gitIssue502","http://purl.obolibrary.org/obo/RO_0002487","RO:0002497","RO_0002497","","existence ends during or before","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002500","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002500"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""definition"":{""type"":[""literal""],""value"":""A relationship between a material entity and a process where the material entity has some causal role that influences the process""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002595"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002595"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship between a material entity and a process where the material entity has some causal role that influences the process""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causal agent in process""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002595"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002608"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""numDescendants"":17.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship between a material entity and a process where the material entity has some causal role that influences the process""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002500""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002608"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""process has causal agent""},""curie"":{""type"":[""literal""],""value"":""RO:0002608""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002608","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","A relationship between a material entity and a process where the material entity has some causal role that influences the process","http://purl.obolibrary.org/obo/mondo.owl","A relationship between a material entity and a process where the material entity has some causal role that influences the process","","http://purl.obolibrary.org/obo/RO_0002595","http://purl.obolibrary.org/obo/RO_0002500","17.0","false","causal agent in process","","http://purl.obolibrary.org/obo/RO_0002595","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002595","RO:0002500","RO_0002500","","causal agent in process","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002501","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002501"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""definition"":{""type"":[""literal""],""value"":""p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causal relation between processes""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""numDescendants"":29.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002501""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.","http://purl.obolibrary.org/obo/mondo.owl","p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/RO_0002501","29.0","false","causal relation between processes","http://purl.obolibrary.org/obo/BFO_0000003","","","gitIssue502","","RO:0002501","RO_0002501","","causal relation between processes","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002506","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002506"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002506""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causal relation between entities""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000002"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causal relation between entities""},""numDescendants"":6.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002506""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","false","false","","The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch","","http://purl.obolibrary.org/obo/mondo.owl","","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/RO_0002506","6.0","false","causal relation between entities","http://purl.obolibrary.org/obo/BFO_0000002","","","gitIssue502","","RO:0002506","RO_0002506","","causal relation between entities","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002559","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002559"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002559""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002506"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002506"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causally influenced by""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002506"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002566"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causally influenced by""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002559""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002506"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between entities""},""curie"":{""type"":[""literal""],""value"":""RO:0002506""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002566"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally influences""},""curie"":{""type"":[""literal""],""value"":""RO:0002566""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002566","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002506","http://purl.obolibrary.org/obo/RO_0002559","0.0","false","causally influenced by","","http://purl.obolibrary.org/obo/RO_0002506","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002506","RO:0002559","RO_0002559","","causally influenced by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002566","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002566"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002566""},""definition"":{""type"":[""literal""],""value"":""The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002506"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002506"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causally influences""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002506"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002559"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/RO_0002233""],[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/RO_0002333""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causally influences""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002566""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002233""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002333"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enabled by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002333""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002506"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between entities""},""curie"":{""type"":[""literal""],""value"":""RO:0002506""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002559"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally influenced by""},""curie"":{""type"":[""literal""],""value"":""RO:0002559""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002559","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).","http://purl.obolibrary.org/obo/mondo.owl","The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/RO_0002506","http://purl.obolibrary.org/obo/RO_0002566","4.0","false","causally influences","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/RO_0002506","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/RO_0002233|http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/RO_0002333","gitIssue502","http://purl.obolibrary.org/obo/RO_0002506","RO:0002566","RO_0002566","","causally influences","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002578","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002578"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002578""},""definition"":{""type"":[""literal""],""value"":""p directly regulates q iff p is immediately causally upstream of q and p regulates q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002412"",""http://purl.obolibrary.org/obo/RO_0002090""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002412""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p directly regulates q iff p is immediately causally upstream of q and p regulates q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly regulates""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002412""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002022"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly regulates""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p directly regulates q iff p is immediately causally upstream of q and p regulates q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002578""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002090"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002090""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002022"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulated by""},""curie"":{""type"":[""literal""],""value"":""RO:0002022""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002412""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002022","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p directly regulates q iff p is immediately causally upstream of q and p regulates q.","http://purl.obolibrary.org/obo/mondo.owl","p directly regulates q iff p is immediately causally upstream of q and p regulates q.","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002412","http://purl.obolibrary.org/obo/RO_0002578","2.0","false","directly regulates","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002412","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002412|http://purl.obolibrary.org/obo/RO_0002090","RO:0002578","RO_0002578","","directly regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002584","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002584"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002584""},""definition"":{""type"":[""literal""],""value"":""s \u0027has part structure that is capable of\u0027 p if and only if there exists some part x such that s \u0027has part\u0027 x and x \u0027capable of\u0027 p""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0002595"",""directParent"":""http://purl.obolibrary.org/obo/RO_0002595"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""s \u0027has part structure that is capable of\u0027 p if and only if there exists some part x such that s \u0027has part\u0027 x and x \u0027capable of\u0027 p""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""has part structure that is capable of""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002595"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/BFO_0000051"",""http://purl.obolibrary.org/obo/RO_0002215""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""has part structure that is capable of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""s \u0027has part structure that is capable of\u0027 p if and only if there exists some part x such that s \u0027has part\u0027 x and x \u0027capable of\u0027 p""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002584""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","s 'has part structure that is capable of' p if and only if there exists some part x such that s 'has part' x and x 'capable of' p","http://purl.obolibrary.org/obo/mondo.owl","s 'has part structure that is capable of' p if and only if there exists some part x such that s 'has part' x and x 'capable of' p","","http://purl.obolibrary.org/obo/RO_0002595","http://purl.obolibrary.org/obo/RO_0002584","0.0","false","has part structure that is capable of","","http://purl.obolibrary.org/obo/RO_0002595","http://purl.obolibrary.org/obo/BFO_0000051|http://purl.obolibrary.org/obo/RO_0002215","gitIssue502","http://purl.obolibrary.org/obo/RO_0002595","RO:0002584","RO_0002584","","has part structure that is capable of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002595","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002595"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""definition"":{""type"":[""literal""],""value"":""A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""numDescendants"":19.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.""},{""type"":[""literal""],""value"":""Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002595""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.","A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.","http://purl.obolibrary.org/obo/mondo.owl","A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.","http://purl.obolibrary.org/obo/BFO_0000015","","http://purl.obolibrary.org/obo/RO_0002595","19.0","false","causal relation between material entity and a process","http://purl.obolibrary.org/obo/BFO_0000040","","","gitIssue502","","RO:0002595","RO_0002595","","causal relation between material entity and a process","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002596","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002596"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002596""},""definition"":{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a regulates p.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002500"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a regulates p.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""capable of regulating""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002500"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002215"",""http://purl.obolibrary.org/obo/RO_0002211""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""capable of regulating""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a regulates p.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002596""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","Holds between c and p if and only if c is capable of some activity a, and a regulates p.","http://purl.obolibrary.org/obo/mondo.owl","Holds between c and p if and only if c is capable of some activity a, and a regulates p.","","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002596","2.0","false","capable of regulating","","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002215|http://purl.obolibrary.org/obo/RO_0002211","gitIssue502","http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002596","RO_0002596","","capable of regulating","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002597","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002597"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002597""},""definition"":{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002596"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002596"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""capable of negatively regulating""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002596"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002215"",""http://purl.obolibrary.org/obo/RO_0002212""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""capable of negatively regulating""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002597""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002596"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""capable of regulating""},""curie"":{""type"":[""literal""],""value"":""RO:0002596""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002212"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002212""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.","http://purl.obolibrary.org/obo/mondo.owl","Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.","","http://purl.obolibrary.org/obo/RO_0002596","http://purl.obolibrary.org/obo/RO_0002597","0.0","false","capable of negatively regulating","","http://purl.obolibrary.org/obo/RO_0002596","http://purl.obolibrary.org/obo/RO_0002215|http://purl.obolibrary.org/obo/RO_0002212","gitIssue502","http://purl.obolibrary.org/obo/RO_0002596|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002597","RO_0002597","","capable of negatively regulating","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002598","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002598"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002598""},""definition"":{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002596"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002596"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""capable of positively regulating""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002596"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002215"",""http://purl.obolibrary.org/obo/RO_0002213""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""capable of positively regulating""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002598""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002596"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""capable of regulating""},""curie"":{""type"":[""literal""],""value"":""RO:0002596""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002215"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""capable of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002215""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.","http://purl.obolibrary.org/obo/mondo.owl","Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.","","http://purl.obolibrary.org/obo/RO_0002596","http://purl.obolibrary.org/obo/RO_0002598","0.0","false","capable of positively regulating","","http://purl.obolibrary.org/obo/RO_0002596","http://purl.obolibrary.org/obo/RO_0002215|http://purl.obolibrary.org/obo/RO_0002213","gitIssue502","http://purl.obolibrary.org/obo/RO_0002596|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0002598","RO_0002598","","capable of positively regulating","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002608","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002608"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002608""},""definition"":{""type"":[""literal""],""value"":""Inverse of \u0027causal agent in process\u0027""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Inverse of \u0027causal agent in process\u0027""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""process has causal agent""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002500"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""process has causal agent""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Inverse of \u0027causal agent in process\u0027""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002608""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002500","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","Inverse of 'causal agent in process'","http://purl.obolibrary.org/obo/mondo.owl","Inverse of 'causal agent in process'","","","http://purl.obolibrary.org/obo/RO_0002608","0.0","false","process has causal agent","","","","gitIssue502","","RO:0002608","RO_0002608","","process has causal agent","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002629","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002629"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002629""},""definition"":{""type"":[""literal""],""value"":""p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002213"",""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002304"",""http://purl.obolibrary.org/obo/RO_0004047"",""http://purl.obolibrary.org/obo/RO_0002578"",""http://purl.obolibrary.org/obo/RO_0002412"",""http://purl.obolibrary.org/obo/RO_0002090""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002213"",""http://purl.obolibrary.org/obo/RO_0002578""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly positively regulates""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002213"",""http://purl.obolibrary.org/obo/RO_0002578""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002024"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly positively regulates""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002629""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002090"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002090""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002304"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0002304""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004047"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004047""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002024"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly positively regulated by""},""curie"":{""type"":[""literal""],""value"":""RO:0002024""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002412""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002578"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002578""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002024","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.","http://purl.obolibrary.org/obo/mondo.owl","p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.","","http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0002578","http://purl.obolibrary.org/obo/RO_0002629","0.0","false","directly positively regulates","","http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0002578","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002304|http://purl.obolibrary.org/obo/RO_0004047|http://purl.obolibrary.org/obo/RO_0002578|http://purl.obolibrary.org/obo/RO_0002412|http://purl.obolibrary.org/obo/RO_0002090","RO:0002629","RO_0002629","","directly positively regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002630","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002630"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002630""},""definition"":{""type"":[""literal""],""value"":""p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002212"",""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0002305"",""http://purl.obolibrary.org/obo/RO_0004046"",""http://purl.obolibrary.org/obo/RO_0002578"",""http://purl.obolibrary.org/obo/RO_0002412"",""http://purl.obolibrary.org/obo/RO_0002090""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002212"",""http://purl.obolibrary.org/obo/RO_0002578""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""directly negatively regulates""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002212"",""http://purl.obolibrary.org/obo/RO_0002578""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002023"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""directly negatively regulates""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0002630""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002090"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002090""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002212"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002212""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002305"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0002305""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004046"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004046""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly negatively regulated by""},""curie"":{""type"":[""literal""],""value"":""RO:0002023""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immediately causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002412""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002578"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""directly regulates""},""curie"":{""type"":[""literal""],""value"":""RO:0002578""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002023","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.","http://purl.obolibrary.org/obo/mondo.owl","p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.","","http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0002578","http://purl.obolibrary.org/obo/RO_0002630","0.0","false","directly negatively regulates","","http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0002578","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0002305|http://purl.obolibrary.org/obo/RO_0004046|http://purl.obolibrary.org/obo/RO_0002578|http://purl.obolibrary.org/obo/RO_0002412|http://purl.obolibrary.org/obo/RO_0002090","RO:0002630","RO_0002630","","directly negatively regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0003000","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0003000"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0003000""},""definition"":{""type"":[""literal""],""value"":""a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""produces"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0003001"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""produces"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0003000""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0003001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""produced by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0003001""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0003001","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.","http://purl.obolibrary.org/obo/mondo.owl","a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.","http://purl.obolibrary.org/obo/BFO_0000040","","http://purl.obolibrary.org/obo/RO_0003000","0.0","false","produces","http://purl.obolibrary.org/obo/BFO_0000040","","","gitIssue502","","RO:0003000","RO_0003000","","produces","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0003001","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0003001"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0003001""},""definition"":{""type"":[""literal""],""value"":""a produced_by b iff some process that occurs_in b has_output a.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""a produced_by b iff some process that occurs_in b has_output a.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""produced by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0003000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""produced by"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""a produced_by b iff some process that occurs_in b has_output a.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0003001""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0003000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""produces"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0003000""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0003000","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","a produced_by b iff some process that occurs_in b has_output a.","http://purl.obolibrary.org/obo/mondo.owl","a produced_by b iff some process that occurs_in b has_output a.","http://purl.obolibrary.org/obo/BFO_0000040","","http://purl.obolibrary.org/obo/RO_0003001","0.0","false","produced by","http://purl.obolibrary.org/obo/BFO_0000040","","","gitIssue502","","RO:0003001","RO_0003001","","produced by","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004019","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004019"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004019""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0004023"",""directParent"":""http://purl.obolibrary.org/obo/RO_0004023"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disease has basis in""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0004023"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disease has basis in""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0004019""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relationship with disease as subject""},""curie"":{""type"":[""literal""],""value"":""RO:0004023""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0004023","http://purl.obolibrary.org/obo/RO_0004019","1.0","false","disease has basis in","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/RO_0004023","","gitIssue502","http://purl.obolibrary.org/obo/RO_0004023","RO:0004019","RO_0004019","","disease has basis in","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004021","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004021"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004021""},""definition"":[{""type"":[""literal""],""value"":""A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.""},{""type"":[""literal""],""value"":""Editor note: TODO property chain: disease_has_location \u003c- dhbido o occurs_in""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0004019"",""http://purl.obolibrary.org/obo/RO_0004023"",""http://purl.obolibrary.org/obo/RO_0004024""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0004019"",""http://purl.obolibrary.org/obo/RO_0004024""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""RO:0004021""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""disease_has_basis_in_disruption_of""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""disease_has_basis_in_disruption_of""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Editor note: TODO property chain: disease_has_location \u003c- dhbido o occurs_in""},""http://www.w3.org/2000/01/rdf-schema#label"":[{""type"":[""literal""],""value"":""disease caused by disruption of""},{""type"":[""literal""],""value"":""disease has basis in disruption of""}],""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0004019"",""http://purl.obolibrary.org/obo/RO_0004024""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0004021"",""http://purl.obolibrary.org/obo/BFO_0000050""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":[{""type"":[""literal""],""value"":""disease caused by disruption of""},{""type"":[""literal""],""value"":""disease has basis in disruption of""}],""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.""},{""type"":[""literal""],""value"":""RO:0004021""},{""type"":[""literal""],""value"":""disease_has_basis_in_disruption_of""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0004021""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004024"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""disease causes disruption of""},{""type"":[""literal""],""value"":""disease disrupts""}],""curie"":{""type"":[""literal""],""value"":""RO:0004024""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relationship with disease as subject""},""curie"":{""type"":[""literal""],""value"":""RO:0004023""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease has basis in""},""curie"":{""type"":[""literal""],""value"":""RO:0004019""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""RO:0004021"":{""url"":""http://purl.obolibrary.org/obo/RO_0004021"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004021""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","RO:0004021","0.0","property|objectProperty|entity","","disease_has_basis_in_disruption_of","disease_has_basis_in_disruption_of","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","true","false","Editor note: TODO property chain: disease_has_location <- dhbido o occurs_in","","A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.|Editor note: TODO property chain: disease_has_location <- dhbido o occurs_in","http://purl.obolibrary.org/obo/mondo.owl","A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0004019|http://purl.obolibrary.org/obo/RO_0004024","http://purl.obolibrary.org/obo/RO_0004021","0.0","false","disease caused by disruption of|disease has basis in disruption of","","http://purl.obolibrary.org/obo/RO_0004019|http://purl.obolibrary.org/obo/RO_0004024","http://purl.obolibrary.org/obo/RO_0004021|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","http://purl.obolibrary.org/obo/RO_0004019|http://purl.obolibrary.org/obo/RO_0004023|http://purl.obolibrary.org/obo/RO_0004024","RO:0004021","RO_0004021","","disease caused by disruption of|disease has basis in disruption of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004023","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004023"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004023""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causal relationship with disease as subject""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causal relationship with disease as subject""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0004023""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://purl.obolibrary.org/obo/RO_0004023","3.0","false","causal relationship with disease as subject","http://purl.obolibrary.org/obo/OGMS_0000031","","","gitIssue502","","RO:0004023","RO_0004023","","causal relationship with disease as subject","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004024","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004024"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004024""},""definition"":{""type"":[""literal""],""value"":""A relationship between a disease and a process where the disease process disrupts the execution of the process.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0004023"",""directParent"":""http://purl.obolibrary.org/obo/RO_0004023"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship between a disease and a process where the disease process disrupts the execution of the process.""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""RO:0004024""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""disease_disrupts""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""disease_disrupts""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://www.w3.org/2000/01/rdf-schema#label"":[{""type"":[""literal""],""value"":""disease causes disruption of""},{""type"":[""literal""],""value"":""disease disrupts""}],""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0004023"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0004024"",""http://purl.obolibrary.org/obo/BFO_0000050""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":[{""type"":[""literal""],""value"":""disease causes disruption of""},{""type"":[""literal""],""value"":""disease disrupts""}],""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship between a disease and a process where the disease process disrupts the execution of the process.""},{""type"":[""literal""],""value"":""RO:0004024""},{""type"":[""literal""],""value"":""disease_disrupts""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0004024""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relationship with disease as subject""},""curie"":{""type"":[""literal""],""value"":""RO:0004023""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0004024"":{""url"":""http://purl.obolibrary.org/obo/RO_0004024"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004024""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","RO:0004024","0.0","property|objectProperty|entity","","disease_disrupts","disease_disrupts","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","A relationship between a disease and a process where the disease process disrupts the execution of the process.","http://purl.obolibrary.org/obo/mondo.owl","A relationship between a disease and a process where the disease process disrupts the execution of the process.","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/RO_0004023","http://purl.obolibrary.org/obo/RO_0004024","1.0","false","disease causes disruption of|disease disrupts","http://purl.obolibrary.org/obo/OGMS_0000031","http://purl.obolibrary.org/obo/RO_0004023","http://purl.obolibrary.org/obo/RO_0004024|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","http://purl.obolibrary.org/obo/RO_0004023","RO:0004024","RO_0004024","","disease causes disruption of|disease disrupts","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004026","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004026"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004026""},""definition"":{""type"":[""literal""],""value"":""A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""TODO: complete range axiom once more of CARO has been mireoted in to this ontology""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""RO:0004026""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""disease_has_location""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""disease_has_location""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disease has location""},""http://www.w3.org/2000/01/rdf-schema#range"":[""http://purl.obolibrary.org/obo/BFO_0000004"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#unionOf"":[""http://purl.obolibrary.org/obo/UBERON_0000465"",""http://purl.obolibrary.org/obo/UBERON_0000466""]}],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0004026"",""http://purl.obolibrary.org/obo/BFO_0000050""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disease has location""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.""},{""type"":[""literal""],""value"":""TODO: complete range axiom once more of CARO has been mireoted in to this ontology""},{""type"":[""literal""],""value"":""RO:0004026""},{""type"":[""literal""],""value"":""disease_has_location""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0004026""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000465"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""material anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000465""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000466"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""immaterial anatomical entity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000466""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0004026"":{""url"":""http://purl.obolibrary.org/obo/RO_0004026"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004026""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","RO:0004026","0.0","property|objectProperty|entity","","disease_has_location","disease_has_location","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","TODO: complete range axiom once more of CARO has been mireoted in to this ontology","A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.","http://purl.obolibrary.org/obo/mondo.owl","A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.","http://purl.obolibrary.org/obo/BFO_0000004|","","http://purl.obolibrary.org/obo/RO_0004026","0.0","false","disease has location","http://purl.obolibrary.org/obo/OGMS_0000031","","http://purl.obolibrary.org/obo/RO_0004026|http://purl.obolibrary.org/obo/BFO_0000050","gitIssue502","","RO:0004026","RO_0004026","","disease has location","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004029","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004029"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004029""},""definition"":{""type"":[""literal""],""value"":""A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""RO:0004029""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""disease_has_feature""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""disease_has_feature""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/OGMS_0000031"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disease has feature""},""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0004029"",""http://purl.obolibrary.org/obo/BFO_0000051""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disease has feature""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.""},{""type"":[""literal""],""value"":""RO:0004029""},{""type"":[""literal""],""value"":""disease_has_feature""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0004029""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0004029"":{""url"":""http://purl.obolibrary.org/obo/RO_0004029"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004029""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OGMS_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","RO:0004029","0.0","property|objectProperty|entity","","disease_has_feature","disease_has_feature","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.","http://purl.obolibrary.org/obo/mondo.owl","A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.","","","http://purl.obolibrary.org/obo/RO_0004029","0.0","false","disease has feature","http://purl.obolibrary.org/obo/OGMS_0000031","","http://purl.obolibrary.org/obo/RO_0004029|http://purl.obolibrary.org/obo/BFO_0000051","gitIssue502","","RO:0004029","RO_0004029","","disease has feature","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004032","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004032"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004032""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002264"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""acts upstream of or within, positive effect""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002264"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0004047""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""acts upstream of or within, positive effect""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0004032""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004047"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004047""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0004032","1.0","false","acts upstream of or within, positive effect","","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0004047","gitIssue502","http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0004032","RO_0004032","","acts upstream of or within, positive effect","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004033","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004033"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004033""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002264"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""acts upstream of or within, negative effect""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002264"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0004046""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""acts upstream of or within, negative effect""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0004033""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004046"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004046""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0004033","1.0","false","acts upstream of or within, negative effect","","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0004046","gitIssue502","http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595","RO:0004033","RO_0004033","","acts upstream of or within, negative effect","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004034","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004034"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004034""},""definition"":{""type"":[""literal""],""value"":""c \u0027acts upstream of, positive effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595"",""http://purl.obolibrary.org/obo/RO_0004032""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0004032""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c \u0027acts upstream of, positive effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""acts upstream of, positive effect""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0004032""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002304""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""acts upstream of, positive effect""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c \u0027acts upstream of, positive effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0004034""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004032"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004032""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002304"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of, positive effect""},""curie"":{""type"":[""literal""],""value"":""RO:0002304""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of""},""curie"":{""type"":[""literal""],""value"":""RO:0002263""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c 'acts upstream of, positive effect' p if c is enables f, and f is causally upstream of p, and the direction of f is positive","http://purl.obolibrary.org/obo/mondo.owl","c 'acts upstream of, positive effect' p if c is enables f, and f is causally upstream of p, and the direction of f is positive","","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0004032","http://purl.obolibrary.org/obo/RO_0004034","0.0","false","acts upstream of, positive effect","","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0004032","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002304","gitIssue502","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595|http://purl.obolibrary.org/obo/RO_0004032","RO:0004034","RO_0004034","","acts upstream of, positive effect","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004035","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004035"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004035""},""definition"":{""type"":[""literal""],""value"":""c \u0027acts upstream of, negative effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0002264"",""http://purl.obolibrary.org/obo/RO_0002500"",""http://purl.obolibrary.org/obo/RO_0002595"",""http://purl.obolibrary.org/obo/RO_0004033""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0004033""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c \u0027acts upstream of, negative effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""acts upstream of, negative effect""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002263"",""http://purl.obolibrary.org/obo/RO_0004033""],""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002327"",""http://purl.obolibrary.org/obo/RO_0002305""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""acts upstream of, negative effect""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""c \u0027acts upstream of, negative effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0004035""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002595"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between material entity and a process""},""curie"":{""type"":[""literal""],""value"":""RO:0002595""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0004033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0004033""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002327"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""enables"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002327""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002305"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of, negative effect""},""curie"":{""type"":[""literal""],""value"":""RO:0002305""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002500"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal agent in process""},""curie"":{""type"":[""literal""],""value"":""RO:0002500""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002264"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002264""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002263"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""acts upstream of""},""curie"":{""type"":[""literal""],""value"":""RO:0002263""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","c 'acts upstream of, negative effect' p if c is enables f, and f is causally upstream of p, and the direction of f is negative","http://purl.obolibrary.org/obo/mondo.owl","c 'acts upstream of, negative effect' p if c is enables f, and f is causally upstream of p, and the direction of f is negative","","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0004033","http://purl.obolibrary.org/obo/RO_0004035","0.0","false","acts upstream of, negative effect","","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0004033","http://purl.obolibrary.org/obo/RO_0002327|http://purl.obolibrary.org/obo/RO_0002305","gitIssue502","http://purl.obolibrary.org/obo/RO_0002263|http://purl.obolibrary.org/obo/RO_0002264|http://purl.obolibrary.org/obo/RO_0002500|http://purl.obolibrary.org/obo/RO_0002595|http://purl.obolibrary.org/obo/RO_0004033","RO:0004035","RO_0004035","","acts upstream of, negative effect","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004046","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004046"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004046""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002418"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causally upstream of or within, negative effect""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002418"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, negative effect""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0004046""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0004046","4.0","false","causally upstream of or within, negative effect","","http://purl.obolibrary.org/obo/RO_0002418","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501","RO:0004046","RO_0004046","","causally upstream of or within, negative effect","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004047","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004047"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004047""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002418"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""causally upstream of or within, positive effect""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002418"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""causally upstream of or within, positive effect""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0004047""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","","true","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0004047","4.0","false","causally upstream of or within, positive effect","","http://purl.obolibrary.org/obo/RO_0002418","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501","RO:0004047","RO_0004047","","causally upstream of or within, positive effect","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0011002","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0011002"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0011002""},""definition"":{""type"":[""literal""],""value"":""The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002566"",""http://purl.obolibrary.org/obo/RO_0002506""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002566"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""regulates activity of""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002566"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""regulates activity of""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0011002""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002506"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between entities""},""curie"":{""type"":[""literal""],""value"":""RO:0002506""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002566"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally influences""},""curie"":{""type"":[""literal""],""value"":""RO:0002566""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.","http://purl.obolibrary.org/obo/mondo.owl","The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/RO_0002566","http://purl.obolibrary.org/obo/RO_0011002","3.0","false","regulates activity of","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/RO_0002566","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002566|http://purl.obolibrary.org/obo/RO_0002506","RO:0011002","RO_0011002","","regulates activity of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0012011","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0012011"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0012011""},""definition"":{""type"":[""literal""],""value"":""p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501""],""directParent"":""http://purl.obolibrary.org/obo/RO_0002411"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly causally upstream of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0002411"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly causally upstream of"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0012011""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.","http://purl.obolibrary.org/obo/mondo.owl","p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.","","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0012011","3.0","false","indirectly causally upstream of","","http://purl.obolibrary.org/obo/RO_0002411","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501","RO:0012011","RO_0012011","","indirectly causally upstream of","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0012012","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0012012"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0012012""},""definition"":{""type"":[""literal""],""value"":""p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0002411"",""http://purl.obolibrary.org/obo/BFO_0000063"",""http://purl.obolibrary.org/obo/RO_0002222"",""http://purl.obolibrary.org/obo/RO_0002418"",""http://purl.obolibrary.org/obo/RO_0002501"",""http://purl.obolibrary.org/obo/RO_0012011""],""directParent"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0012011""],""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly regulates"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0012011""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly regulates"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0012012""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002501"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causal relation between processes""},""curie"":{""type"":[""literal""],""value"":""RO:0002501""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002222"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporally related to"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002222""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""causally upstream of or within""},""curie"":{""type"":[""literal""],""value"":""RO:0002418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002411"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002411""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precedes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000063""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0012011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""indirectly causally upstream of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0012011""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.","http://purl.obolibrary.org/obo/mondo.owl","p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0012011","http://purl.obolibrary.org/obo/RO_0012012","2.0","false","indirectly regulates","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0012011","","gitIssue502","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0002411|http://purl.obolibrary.org/obo/BFO_0000063|http://purl.obolibrary.org/obo/RO_0002222|http://purl.obolibrary.org/obo/RO_0002418|http://purl.obolibrary.org/obo/RO_0002501|http://purl.obolibrary.org/obo/RO_0012011","RO:0012012","RO_0012012","","indirectly regulates","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0019000","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0019000"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0019000""},""definition"":{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""regulates characteristic""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/PATO_0000001"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002211"",""http://purl.obolibrary.org/obo/RO_0019000""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""regulates characteristic""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0019000""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002211"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002211""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","false","false","","","A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.","http://purl.obolibrary.org/obo/mondo.owl","A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.","http://purl.obolibrary.org/obo/PATO_0000001","","http://purl.obolibrary.org/obo/RO_0019000","2.0","false","regulates characteristic","http://purl.obolibrary.org/obo/BFO_0000015","","http://purl.obolibrary.org/obo/RO_0002211|http://purl.obolibrary.org/obo/RO_0019000","gitIssue502","","RO:0019000","RO_0019000","","regulates characteristic","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0019001","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0019001"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0019001""},""definition"":{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0019000"",""directParent"":""http://purl.obolibrary.org/obo/RO_0019000"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""positively regulates characteristic""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0019000"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[""http://purl.obolibrary.org/obo/RO_0002213"",""http://purl.obolibrary.org/obo/RO_0019001""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""positively regulates characteristic""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0019001""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0019000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulates characteristic""},""curie"":{""type"":[""literal""],""value"":""RO:0019000""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.","http://purl.obolibrary.org/obo/mondo.owl","A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.","","http://purl.obolibrary.org/obo/RO_0019000","http://purl.obolibrary.org/obo/RO_0019001","0.0","false","positively regulates characteristic","","http://purl.obolibrary.org/obo/RO_0019000","http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0019001","gitIssue502","http://purl.obolibrary.org/obo/RO_0019000","RO:0019001","RO_0019001","","positively regulates characteristic","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" +"gitissue502+property+http://purl.obolibrary.org/obo/RO_0019002","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0019002"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0019002""},""definition"":{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0019000"",""directParent"":""http://purl.obolibrary.org/obo/RO_0019000"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""negatively regulates characteristic""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0019000"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/RO_0002212"",""http://purl.obolibrary.org/obo/RO_0019001""],[""http://purl.obolibrary.org/obo/RO_0002213"",""http://purl.obolibrary.org/obo/RO_0019002""]],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""negatively regulates characteristic""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.""},false],""shortForm"":{""type"":[""literal""],""value"":""RO_0019002""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0002212"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""negatively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002212""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://purl.obolibrary.org/obo/RO_0019001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""positively regulates characteristic""},""curie"":{""type"":[""literal""],""value"":""RO:0019001""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0019000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""regulates characteristic""},""curie"":{""type"":[""literal""],""value"":""RO:0019000""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002213"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""positively regulates"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002213""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","","0.0","property|objectProperty|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","true","false","","","A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.","http://purl.obolibrary.org/obo/mondo.owl","A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.","","http://purl.obolibrary.org/obo/RO_0019000","http://purl.obolibrary.org/obo/RO_0019002","0.0","false","negatively regulates characteristic","","http://purl.obolibrary.org/obo/RO_0019000","http://purl.obolibrary.org/obo/RO_0002212|http://purl.obolibrary.org/obo/RO_0019001|http://purl.obolibrary.org/obo/RO_0002213|http://purl.obolibrary.org/obo/RO_0019002","gitIssue502","http://purl.obolibrary.org/obo/RO_0019000","RO:0019002","RO_0019002","","negatively regulates characteristic","gitissue502","http://www.w3.org/2002/07/owl#ObjectProperty" "gitissue502+property+http://purl.obolibrary.org/obo/mondo#excluded_subClassOf","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/mondo#excluded_subClassOf"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""excluded:subClassOf""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""excluded_subClassOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""excluded_subClassOf""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://purl.obolibrary.org/obo/mondo#excluded_subClassOf","0.0","false","excluded_subClassOf","","","","gitIssue502","","excluded:subClassOf","excluded_subClassOf","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" "gitissue502+property+http://purl.obolibrary.org/obo/mondo#should_conform_to","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/mondo#should_conform_to"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""should:conform_to""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""should_conform_to""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""should_conform_to""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://purl.obolibrary.org/obo/mondo#should_conform_to","0.0","false","should_conform_to","","","","gitIssue502","","should:conform_to","should_conform_to","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" "gitissue502+property+http://purl.org/dc/elements/1.1/date","OntologyEntity|OntologyProperty","{""iri"":""http://purl.org/dc/elements/1.1/date"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""date""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""date""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""date""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://purl.org/dc/elements/1.1/date","0.0","false","date","","","","gitIssue502","","date","date","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" "gitissue502+property+http://purl.org/dc/terms/conformsTo","OntologyEntity|OntologyProperty","{""iri"":""http://purl.org/dc/terms/conformsTo"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""conformsTo""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""conformsTo""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""conformsTo""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://purl.org/dc/terms/conformsTo","0.0","false","conformsTo","","","","gitIssue502","","conformsTo","conformsTo","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" "gitissue502+property+http://purl.org/dc/terms/creator","OntologyEntity|OntologyProperty","{""iri"":""http://purl.org/dc/terms/creator"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""creator""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""creator""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""creator""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://purl.org/dc/terms/creator","0.0","false","creator","","","","gitIssue502","","creator","creator","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" -"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""hasBroadSynonym""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasBroadSynonym""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""hasBroadSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","0.0","false","hasBroadSynonym","","","","gitIssue502","","hasBroadSynonym","hasBroadSynonym","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" -"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasDbXref","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasDbXref"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""hasDbXref""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.geneontology.org/formats/oboInOwl#hasDbXref","0.0","false","hasDbXref","","","","gitIssue502","","hasDbXref","hasDbXref","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" -"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","0.0","false","hasExactSynonym","","","","gitIssue502","","hasExactSynonym","hasExactSynonym","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" -"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""hasNarrowSynonym""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasNarrowSynonym""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""hasNarrowSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","0.0","false","hasNarrowSynonym","","","","gitIssue502","","hasNarrowSynonym","hasNarrowSynonym","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" -"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","0.0","false","hasRelatedSynonym","","","","gitIssue502","","hasRelatedSynonym","hasRelatedSynonym","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" -"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasSynonymType","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""hasSynonymType""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasSynonymType""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""hasSynonymType""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.geneontology.org/formats/oboInOwl#hasSynonymType","0.0","false","hasSynonymType","","","","gitIssue502","","hasSynonymType","hasSynonymType","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" +"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasBroadSynonym""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasBroadSynonym""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasBroadSynonym""},""isDefiningOntology"":false,""definedBy"":[""oio""],""appearsIn"":[""oio"",""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","0.0","false","hasBroadSynonym","","","","gitIssue502","","OIO:hasBroadSynonym","OIO_hasBroadSynonym","oio","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" +"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasDbXref","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasDbXref"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasDbXref""},""isDefiningOntology"":false,""definedBy"":[""oio""],""appearsIn"":[""oio"",""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.geneontology.org/formats/oboInOwl#hasDbXref","0.0","false","hasDbXref","","","","gitIssue502","","OIO:hasDbXref","OIO_hasDbXref","oio","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" +"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasExactSynonym""},""isDefiningOntology"":false,""definedBy"":[""oio""],""appearsIn"":[""oio"",""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","0.0","false","hasExactSynonym","","","","gitIssue502","","OIO:hasExactSynonym","OIO_hasExactSynonym","oio","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" +"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasNarrowSynonym""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasNarrowSynonym""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasNarrowSynonym""},""isDefiningOntology"":false,""definedBy"":[""oio""],""appearsIn"":[""oio"",""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","0.0","false","hasNarrowSynonym","","","","gitIssue502","","OIO:hasNarrowSynonym","OIO_hasNarrowSynonym","oio","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" +"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasRelatedSynonym""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasRelatedSynonym""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasRelatedSynonym""},""isDefiningOntology"":false,""definedBy"":[""oio""],""appearsIn"":[""oio"",""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","0.0","false","hasRelatedSynonym","","","","gitIssue502","","OIO:hasRelatedSynonym","OIO_hasRelatedSynonym","oio","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" +"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasSynonymType","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasSynonymType""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasSynonymType""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasSynonymType""},""isDefiningOntology"":false,""definedBy"":[""oio""],""appearsIn"":[""oio"",""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.geneontology.org/formats/oboInOwl#hasSynonymType","0.0","false","hasSynonymType","","","","gitIssue502","","OIO:hasSynonymType","OIO_hasSynonymType","oio","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" "gitissue502+property+http://www.geneontology.org/formats/oboInOwl#id","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#id"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""id""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""id""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""id""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.geneontology.org/formats/oboInOwl#id","0.0","false","id","","","","gitIssue502","","id","id","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" -"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#inSubset","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#inSubset"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""inSubset""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""inSubset""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""inSubset""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.geneontology.org/formats/oboInOwl#inSubset","0.0","false","inSubset","","","","gitIssue502","","inSubset","inSubset","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" +"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#inSubset","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#inSubset"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""inSubset""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_inSubset""},""isDefiningOntology"":false,""definedBy"":[""oio""],""appearsIn"":[""oio"",""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.geneontology.org/formats/oboInOwl#inSubset","0.0","false","inSubset","","","","gitIssue502","","OIO:inSubset","OIO_inSubset","oio","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" "gitissue502+property+http://www.geneontology.org/formats/oboInOwl#shorthand","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#shorthand"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""shorthand""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""shorthand""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""shorthand""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.geneontology.org/formats/oboInOwl#shorthand","0.0","false","shorthand","","","","gitIssue502","","shorthand","shorthand","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" "gitissue502+property+http://www.geneontology.org/formats/oboInOwl#source","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#source"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""source""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""source""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""source""},""isDefiningOntology"":false,""appearsIn"":[""gitissue502""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.geneontology.org/formats/oboInOwl#source","0.0","false","source","","","","gitIssue502","","source","source","","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" -"gitissue502+property+http://www.w3.org/2000/01/rdf-schema#label","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#label"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""label""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""label""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""label""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""gitissue502"",""rdfs""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.w3.org/2000/01/rdf-schema#label","0.0","false","label","","","","gitIssue502","","label","label","rdfs","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" -"gitissue502+property+http://www.w3.org/2004/02/skos/core#closeMatch","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#closeMatch"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""closeMatch""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""closeMatch""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""closeMatch""},""isDefiningOntology"":false,""definedBy"":[""skos""],""appearsIn"":[""gitissue502"",""skos""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.w3.org/2004/02/skos/core#closeMatch","0.0","false","closeMatch","","","","gitIssue502","","closeMatch","closeMatch","skos","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" -"gitissue502+property+http://www.w3.org/2004/02/skos/core#exactMatch","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#exactMatch"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""exactMatch""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""exactMatch""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""exactMatch""},""isDefiningOntology"":false,""definedBy"":[""skos""],""appearsIn"":[""gitissue502"",""skos""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.w3.org/2004/02/skos/core#exactMatch","0.0","false","exactMatch","","","","gitIssue502","","exactMatch","exactMatch","skos","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" +"gitissue502+property+http://www.w3.org/2000/01/rdf-schema#label","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#label"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""label""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RDFS_label""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""gitissue502"",""rdfs""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.w3.org/2000/01/rdf-schema#label","0.0","false","label","","","","gitIssue502","","RDFS:label","RDFS_label","rdfs","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" +"gitissue502+property+http://www.w3.org/2004/02/skos/core#closeMatch","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#closeMatch"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:closeMatch""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""closeMatch""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""SKOS_closeMatch""},""isDefiningOntology"":false,""definedBy"":[""skos""],""appearsIn"":[""gitissue502"",""skos""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.w3.org/2004/02/skos/core#closeMatch","0.0","false","closeMatch","","","","gitIssue502","","SKOS:closeMatch","SKOS_closeMatch","skos","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" +"gitissue502+property+http://www.w3.org/2004/02/skos/core#exactMatch","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#exactMatch"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""exactMatch""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""gitissue502""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/mondo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""gitIssue502""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""SKOS_exactMatch""},""isDefiningOntology"":false,""definedBy"":[""skos""],""appearsIn"":[""gitissue502"",""skos""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","property|annotationProperty|entity","","","","","false","false","","","","http://purl.obolibrary.org/obo/mondo.owl","","","","http://www.w3.org/2004/02/skos/core#exactMatch","0.0","false","exactMatch","","","","gitIssue502","","SKOS:exactMatch","SKOS_exactMatch","skos","","gitissue502","http://www.w3.org/2002/07/owl#AnnotationProperty" diff --git a/testcases_expected_output/annotation-properties/gitIssue502/oio_classes.csv b/testcases_expected_output/annotation-properties/gitIssue502/oio_classes.csv new file mode 100644 index 000000000..1418d0d8b --- /dev/null +++ b/testcases_expected_output/annotation-properties/gitIssue502/oio_classes.csv @@ -0,0 +1,7 @@ +"id:ID",":LABEL","_json","isPreferredRoot:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","http__//www.geneontology.org/formats/oboInOwl#hasDefinition:string[]","http__//www.geneontology.org/formats/oboInOwl#hasDbXref:string[]","numHierarchicalDescendants:string[]","type:string[]","synonymProperty:string[]","synonym:string[]","definitionProperty:string[]","hasDirectParents:string[]","imported:string[]","http__//www.w3.org/2000/01/rdf-schema#comment:string[]","ontologyIri:string[]","definition:string[]","iri","hierarchicalAncestor:string[]","numDescendants:string[]","isObsolete:string[]","label:string[]","directAncestor:string[]","curie:string[]","shortForm:string[]","definedBy:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","http__//www.geneontology.org/formats/oboInOwl#hasRelatedSynonym:string[]","http__//www.geneontology.org/formats/oboInOwl#hasNarrowSynonym:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" +"oio+class+http://www.geneontology.org/formats/oboInOwl#DbXref","OntologyEntity|OntologyClass","{""iri"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_DbXref""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","","","0.0","class|entity","","","","false","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#DbXref","","0.0","false","database_cross_reference","","OIO:DbXref","OIO_DbXref","oio","database_cross_reference","oio","","","http://www.w3.org/2002/07/owl#Class" +"oio+class+http://www.geneontology.org/formats/oboInOwl#Definition","OntologyEntity|OntologyClass","{""iri"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""definition"":{""type"":[""literal""],""value"":""we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://www.obofoundry.org/wiki/index.php/Definitions""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""URL:http://www.obofoundry.org/wiki/index.php/Definitions""},""isObsolete"":false},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:cjm""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The textual definition of the current term. There must be zero or one instances of this tag per term description"",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_Definition""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""oboInOwl:cjm"":{""url"":""http://www.geneontology.org/formats/oboInOwl#cjm"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:cjm""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","","","0.0","class|entity","","","http://www.w3.org/2000/01/rdf-schema#comment","false","false","we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string","http://www.geneontology.org/formats/oboInOwl","we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string","http://www.geneontology.org/formats/oboInOwl#Definition","","0.0","false","definition","","OIO:Definition","OIO_Definition","oio","definition","oio","","","http://www.w3.org/2002/07/owl#Class" +"oio+class+http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","OntologyEntity|OntologyClass","{""iri"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:ObsoleteClass""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:cjm""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pseudo-class. in the oboInOwl translation, all obsolete classes are subclasses of this class. Note that this is not a metaclass"",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_class"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_class"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_ObsoleteClass""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""oboInOwl:cjm"":{""url"":""http://www.geneontology.org/formats/oboInOwl#cjm"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:cjm""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","","","0.0","class|entity","","","","false","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","0.0","false","obsolete_class","","OIO:ObsoleteClass","OIO_ObsoleteClass","oio","obsolete_class","oio","","","http://www.w3.org/2002/07/owl#Class" +"oio+class+http://www.geneontology.org/formats/oboInOwl#Subset","OntologyEntity|OntologyClass","{""iri"":""http://www.geneontology.org/formats/oboInOwl#Subset"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:Subset""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_subsetdef""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:subsetdef""},""isObsolete"":false},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:cjm""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A grouping of terms from an ontology or ontologies. Note that this is not a metaclass - classes are linked to subsets via oboInOwl:inSubset"",""lang"":""en""},""isObsolete"":false},""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"":[{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Synonym"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""slim"",""lang"":""en""},""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Synonym"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GO-slim"",""lang"":""en""},""isObsolete"":false}],""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":[{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Synonym"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""view"",""lang"":""en""},""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Synonym"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""partition"",""lang"":""en""},""isObsolete"":false}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_Subset""},""synonym"":[{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Synonym"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""slim"",""lang"":""en""},""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Synonym"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GO-slim"",""lang"":""en""},""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Synonym"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""view"",""lang"":""en""},""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Synonym"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""partition"",""lang"":""en""},""isObsolete"":false}],""synonymProperty"":[{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym""},{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym""}],""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#Synonym"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Synonym""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""oboFormat:subsetdef"":{""url"":""http://www.geneontology.org/formats/oboInOwl#subsetdef"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboFormat:subsetdef""},""oboInOwl:cjm"":{""url"":""http://www.geneontology.org/formats/oboInOwl#cjm"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:cjm""},""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_related_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasRelatedSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_narrow_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasNarrowSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","","","0.0","class|entity","http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym|http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","","","false","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#Subset","","0.0","false","subset","","OIO:Subset","OIO_Subset","oio","subset","oio","","","http://www.w3.org/2002/07/owl#Class" +"oio+class+http://www.geneontology.org/formats/oboInOwl#Synonym","OntologyEntity|OntologyClass","{""iri"":""http://www.geneontology.org/formats/oboInOwl#Synonym"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:Synonym""},""definition"":{""type"":[""literal""],""value"":""we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:cjm""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An instance of synonym usage. synonym instances are linked to classes via oboInOwl:has*Synonym properties"",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""synonym"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""synonym"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_Synonym""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""oboInOwl:cjm"":{""url"":""http://www.geneontology.org/formats/oboInOwl#cjm"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:cjm""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","","","0.0","class|entity","","","http://www.w3.org/2000/01/rdf-schema#comment","false","false","we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string","http://www.geneontology.org/formats/oboInOwl","we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string","http://www.geneontology.org/formats/oboInOwl#Synonym","","0.0","false","synonym","","OIO:Synonym","OIO_Synonym","oio","synonym","oio","","","http://www.w3.org/2002/07/owl#Class" +"oio+class+http://www.geneontology.org/formats/oboInOwl#SynonymType","OntologyEntity|OntologyClass","{""iri"":""http://www.geneontology.org/formats/oboInOwl#SynonymType"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:SynonymType""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""synonym_type"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""synonym_type"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_SynonymType""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","","","0.0","class|entity","","","","false","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#SynonymType","","0.0","false","synonym_type","","OIO:SynonymType","OIO_SynonymType","oio","synonym_type","oio","","","http://www.w3.org/2002/07/owl#Class" diff --git a/testcases_expected_output/annotation-properties/gitIssue502/oio_edges.csv b/testcases_expected_output/annotation-properties/gitIssue502/oio_edges.csv new file mode 100644 index 000000000..44f6fe0fa --- /dev/null +++ b/testcases_expected_output/annotation-properties/gitIssue502/oio_edges.csv @@ -0,0 +1,9 @@ +":START_ID",":TYPE",":END_ID","_json" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","http://www.w3.org/2000/01/rdf-schema#subPropertyOf","oio+property+http://www.geneontology.org/formats/oboInOwl#hasSynonym","{}" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","directParent","oio+property+http://www.geneontology.org/formats/oboInOwl#hasSynonym","{}" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","http://www.w3.org/2000/01/rdf-schema#subPropertyOf","oio+property+http://www.geneontology.org/formats/oboInOwl#hasSynonym","{}" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","directParent","oio+property+http://www.geneontology.org/formats/oboInOwl#hasSynonym","{}" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","http://www.w3.org/2000/01/rdf-schema#subPropertyOf","oio+property+http://www.geneontology.org/formats/oboInOwl#hasSynonym","{}" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","directParent","oio+property+http://www.geneontology.org/formats/oboInOwl#hasSynonym","{}" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","http://www.w3.org/2000/01/rdf-schema#subPropertyOf","oio+property+http://www.geneontology.org/formats/oboInOwl#hasSynonym","{}" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","directParent","oio+property+http://www.geneontology.org/formats/oboInOwl#hasSynonym","{}" diff --git a/testcases_expected_output/annotation-properties/gitIssue502/oio_individuals.csv b/testcases_expected_output/annotation-properties/gitIssue502/oio_individuals.csv new file mode 100644 index 000000000..adaa2279a --- /dev/null +++ b/testcases_expected_output/annotation-properties/gitIssue502/oio_individuals.csv @@ -0,0 +1 @@ +"id:ID",":LABEL","_json" diff --git a/testcases_expected_output/annotation-properties/gitIssue502/oio_ontologies.csv b/testcases_expected_output/annotation-properties/gitIssue502/oio_ontologies.csv new file mode 100644 index 000000000..91bc6e61e --- /dev/null +++ b/testcases_expected_output/annotation-properties/gitIssue502/oio_ontologies.csv @@ -0,0 +1,6 @@ +"id:ID",":LABEL","_json","iri","numberOfIndividuals:string[]","linkedEntities:string[]","ontology_purl:string[]","numDescendants:string[]","numberOfProperties:string[]","numberOfClasses:string[]","language:string[]","numHierarchicalDescendants:string[]","isObsolete:string[]","label:string[]","importsFrom:string[]","type:string[]","directAncestor:string[]","exportsTo:string[]","base_uri:string[]","http__//www.w3.org/2000/01/rdf-schema#comment:string[]","imported:string[]","numberOfEntities:string[]","ontologyId:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","definition:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" +"oio+ontology+http://www.geneontology.org/formats/oboInOwl","Ontology","{""ontologyId"":""oio"",""importsFrom"":[],""exportsTo"":[""gitissue502""],""iri"":""http://www.geneontology.org/formats/oboInOwl"",""ontology_purl"":""https://gist.githubusercontent.com/haideriqbal/4a2b1a9aa81d9fa26cae81e0b0b7730b/raw/527665128b9be9d7d6133f9a796379600151c737/oboInOwl.owl"",""base_uri"":[""http://www.geneontology.org/formats/oboInOwl#""],""type"":[""ontology""],""definition"":[{""type"":[""literal""],""value"":""OBO Format metamodel. This meta-ontology is self-describing. OBO metamodel properties are described using OBO metamodel properties""},{""type"":[""literal""],""value"":""\n This is an OWL translation of an ontology whose native representational form is .obo. The translation was performed using the oboInOwl xslt library. For details, see http://www.berkeleybop.org/obo-conv.cgi\n ""}],""directAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Ontology"",""http://www.w3.org/2000/01/rdf-schema#comment"":[{""type"":[""literal""],""value"":""OBO Format metamodel. This meta-ontology is self-describing. OBO metamodel properties are described using OBO metamodel properties""},{""type"":[""literal""],""value"":""\n This is an OWL translation of an ontology whose native representational form is .obo. The translation was performed using the oboInOwl xslt library. For details, see http://www.berkeleybop.org/obo-conv.cgi\n ""}],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""""},""imported"":false,""isObsolete"":false,""label"":{""type"":[""literal""],""value"":""""},""language"":{""type"":[""literal""],""value"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""numberOfClasses"":{""type"":[""literal""],""value"":""12""},""numberOfEntities"":{""type"":[""literal""],""value"":""56""},""numberOfIndividuals"":{""type"":[""literal""],""value"":""0""},""numberOfProperties"":{""type"":[""literal""],""value"":""44""},""searchableAnnotationValues"":[false,{""type"":[""literal""],""value"":""en""},{""type"":[""literal""],""value"":""12""},{""type"":[""literal""],""value"":""56""},{""type"":[""literal""],""value"":""0""},{""type"":[""literal""],""value"":""44""}],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","http://www.geneontology.org/formats/oboInOwl","0","","https://gist.githubusercontent.com/haideriqbal/4a2b1a9aa81d9fa26cae81e0b0b7730b/raw/527665128b9be9d7d6133f9a796379600151c737/oboInOwl.owl","0.0","44","12","en","0.0","false","","","ontology","","gitissue502","http://www.geneontology.org/formats/oboInOwl#","OBO Format metamodel. This meta-ontology is self-describing. OBO metamodel properties are described using OBO metamodel properties| + This is an OWL translation of an ontology whose native representational form is .obo. The translation was performed using the oboInOwl xslt library. For details, see http://www.berkeleybop.org/obo-conv.cgi + ","false","56","oio","","OBO Format metamodel. This meta-ontology is self-describing. OBO metamodel properties are described using OBO metamodel properties| + This is an OWL translation of an ontology whose native representational form is .obo. The translation was performed using the oboInOwl xslt library. For details, see http://www.berkeleybop.org/obo-conv.cgi + ","http://www.w3.org/2002/07/owl#Ontology" diff --git a/testcases_expected_output/annotation-properties/gitIssue502/oio_properties.csv b/testcases_expected_output/annotation-properties/gitIssue502/oio_properties.csv new file mode 100644 index 000000000..59d8c2c3a --- /dev/null +++ b/testcases_expected_output/annotation-properties/gitIssue502/oio_properties.csv @@ -0,0 +1,24 @@ +"id:ID",":LABEL","_json","isPreferredRoot:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","http__//www.geneontology.org/formats/oboInOwl#hasDefinition:string[]","isDefiningOntology:string[]","linkedEntities:string[]","http__//www.geneontology.org/formats/oboInOwl#hasDbXref:string[]","numHierarchicalDescendants:string[]","type:string[]","definitionProperty:string[]","hasDirectParents:string[]","http__//www.w3.org/2000/01/rdf-schema#comment:string[]","imported:string[]","definition:string[]","ontologyIri:string[]","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf:string[]","iri","numDescendants:string[]","isObsolete:string[]","label:string[]","directParent:string[]","directAncestor:string[]","curie:string[]","shortForm:string[]","definedBy:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" +"oio+property+http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:ObsoleteProperty""},""definition"":{""type"":[""literal""],""value"":""Note that this is not a metaclass""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:cjm""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pseudo-property. in the oboInOwl translation, all obsolete relations are subProperties of this class"",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Note that this is not a metaclass""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_property"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_property"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_ObsoleteProperty""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""oboInOwl:cjm"":{""url"":""http://www.geneontology.org/formats/oboInOwl#cjm"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:cjm""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","","true","","","0.0","property|objectProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","Note that this is not a metaclass","false","Note that this is not a metaclass","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","0.0","false","obsolete_property","","","OIO:ObsoleteProperty","OIO_ObsoleteProperty","oio","obsolete_property","oio","http://www.w3.org/2002/07/owl#ObjectProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#SubsetProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#SubsetProperty"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:SubsetProperty""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:GOC""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This annotation property groups all subsets declared in the ontology"",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset_property"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset_property"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_SubsetProperty""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""oboInOwl:GOC"":{""url"":""http://www.geneontology.org/formats/oboInOwl#GOC"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:GOC""}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","false","","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#SubsetProperty","0.0","false","subset_property","","","OIO:SubsetProperty","OIO_SubsetProperty","oio","subset_property","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:SynonymTypeProperty""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:GOC""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This annotation property groups all synonym types declared in the ontology"",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""synonym_type_property"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""synonym_type_property"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_SynonymTypeProperty""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""oboInOwl:GOC"":{""url"":""http://www.geneontology.org/formats/oboInOwl#GOC"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:GOC""}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","false","","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty","0.0","false","synonym_type_property","","","OIO:SynonymTypeProperty","OIO_SynonymTypeProperty","oio","synonym_type_property","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#consider","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#consider"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:consider""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_consider""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:consider""},""isObsolete"":false},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:cjm""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Gives a term which may be an appropriate substitute for an obsolete term, but needs to be looked at carefully by a human expert before the replacement is done"",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consider"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consider"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_consider""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""oboFormat:consider"":{""url"":""http://www.geneontology.org/formats/oboInOwl#consider"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboFormat:consider""},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""oboInOwl:cjm"":{""url"":""http://www.geneontology.org/formats/oboInOwl#cjm"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:cjm""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","false","","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#consider","0.0","false","consider","","","OIO:consider","OIO_consider","oio","consider","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasAlternativeId","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasAlternativeId"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasAlternativeId""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_alt_id""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:alt_id""},""isObsolete"":false},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:cjm""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An alternative identifier for this class; should follow ID syntax. These can result from class merges"",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_alternative_id"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_alternative_id"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasAlternativeId""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""oboFormat:alt_id"":{""url"":""http://www.geneontology.org/formats/oboInOwl#alt_id"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboFormat:alt_id""},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""oboInOwl:cjm"":{""url"":""http://www.geneontology.org/formats/oboInOwl#cjm"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:cjm""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","false","","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#hasAlternativeId","0.0","false","has_alternative_id","","","OIO:hasAlternativeId","OIO_hasAlternativeId","oio","has_alternative_id","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasBroadSynonym""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#hasSynonym"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#hasSynonym"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_broad_synonym""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:broad_synonym""},""isObsolete"":false},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:GOC""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An alias in which the alias is broader than the primary class name. Example: cell division is a broad synonym of cytokinesis"",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_broad_synonym"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.geneontology.org/formats/oboInOwl#hasSynonym"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_broad_synonym"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasBroadSynonym""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio"",""gitissue502""],""linkedEntities"":{""oboFormat:broad_synonym"":{""url"":""http://www.geneontology.org/formats/oboInOwl#broad_synonym"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboFormat:broad_synonym""},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""oboInOwl:GOC"":{""url"":""http://www.geneontology.org/formats/oboInOwl#GOC"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:GOC""}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","true","","false","","http://www.geneontology.org/formats/oboInOwl","http://www.geneontology.org/formats/oboInOwl#hasSynonym","http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","0.0","false","has_broad_synonym","http://www.geneontology.org/formats/oboInOwl#hasSynonym","http://www.geneontology.org/formats/oboInOwl#hasSynonym","OIO:hasBroadSynonym","OIO_hasBroadSynonym","oio","has_broad_synonym","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasDate","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasDate"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasDate""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_date""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:date""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_date"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_date"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasDate""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""oboFormat:date"":{""url"":""http://www.geneontology.org/formats/oboInOwl#date"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboFormat:date""},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","false","","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#hasDate","0.0","false","has_date","","","OIO:hasDate","OIO_hasDate","oio","has_date","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasDbXref","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasDbXref"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_xref""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:xref""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasDbXref""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio"",""gitissue502""],""linkedEntities"":{""oboFormat:xref"":{""url"":""http://www.geneontology.org/formats/oboInOwl#xref"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboFormat:xref""},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","false","","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#hasDbXref","0.0","false","has_dbxref","","","OIO:hasDbXref","OIO_hasDbXref","oio","has_dbxref","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasDefaultNamespace","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasDefaultNamespace"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasDefaultNamespace""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_default-namespace""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:default-namespace""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_default_namespace"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_default_namespace"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasDefaultNamespace""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","false","","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#hasDefaultNamespace","0.0","false","has_default_namespace","","","OIO:hasDefaultNamespace","OIO_hasDefaultNamespace","oio","has_default_namespace","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasDefinition","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasDefinition"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""definition"":{""type"":[""literal""],""value"":""we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_def""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:def""},""isObsolete"":false},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:cjm""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a class and an instance of a oboInOwl:Definition"",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasDefinition""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""oboFormat:def"":{""url"":""http://www.geneontology.org/formats/oboInOwl#def"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboFormat:def""},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""oboInOwl:cjm"":{""url"":""http://www.geneontology.org/formats/oboInOwl#cjm"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:cjm""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string","false","we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#hasDefinition","0.0","false","has_definition","","","OIO:hasDefinition","OIO_hasDefinition","oio","has_definition","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasExactSynonym""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#hasSynonym"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#hasSynonym"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_exact_synonym""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:exact_synonym""},""isObsolete"":false},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:GOC""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An alias in which the alias exhibits true synonymy. Example: ornithine cycle is an exact synonym of urea cycle"",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.geneontology.org/formats/oboInOwl#hasSynonym"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_exact_synonym"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasExactSynonym""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio"",""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""oboFormat:exact_synonym"":{""url"":""http://www.geneontology.org/formats/oboInOwl#exact_synonym"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboFormat:exact_synonym""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""oboInOwl:GOC"":{""url"":""http://www.geneontology.org/formats/oboInOwl#GOC"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:GOC""}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","true","","false","","http://www.geneontology.org/formats/oboInOwl","http://www.geneontology.org/formats/oboInOwl#hasSynonym","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","0.0","false","has_exact_synonym","http://www.geneontology.org/formats/oboInOwl#hasSynonym","http://www.geneontology.org/formats/oboInOwl#hasSynonym","OIO:hasExactSynonym","OIO_hasExactSynonym","oio","has_exact_synonym","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasNarrowSynonym""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#hasSynonym"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#hasSynonym"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_narrow_synonym""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:narrow_synonym""},""isObsolete"":false},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:GOC""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An alias in which the alias is narrower than the primary class name. Example: pyrimidine-dimer repair by photolyase is a narrow synonym of photoreactive repair"",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_narrow_synonym"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.geneontology.org/formats/oboInOwl#hasSynonym"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_narrow_synonym"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasNarrowSynonym""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio"",""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""oboFormat:narrow_synonym"":{""url"":""http://www.geneontology.org/formats/oboInOwl#narrow_synonym"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboFormat:narrow_synonym""},""http://www.geneontology.org/formats/oboInOwl#hasSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""oboInOwl:GOC"":{""url"":""http://www.geneontology.org/formats/oboInOwl#GOC"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:GOC""}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","true","","false","","http://www.geneontology.org/formats/oboInOwl","http://www.geneontology.org/formats/oboInOwl#hasSynonym","http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","0.0","false","has_narrow_synonym","http://www.geneontology.org/formats/oboInOwl#hasSynonym","http://www.geneontology.org/formats/oboInOwl#hasSynonym","OIO:hasNarrowSynonym","OIO_hasNarrowSynonym","oio","has_narrow_synonym","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasOBONamespace","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasOBONamespace"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasOBONamespace""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_namespace""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:namespace""},""isObsolete"":false},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:GOC""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relation between a class and an OBO namespace string. OBO namespaces are to be distinguished from IDspaces; for example, biological_process is a namespace, GO is an idspace."",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_obo_namespace"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_obo_namespace"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasOBONamespace""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""oboFormat:namespace"":{""url"":""http://www.geneontology.org/formats/oboInOwl#namespace"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboFormat:namespace""},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""oboInOwl:GOC"":{""url"":""http://www.geneontology.org/formats/oboInOwl#GOC"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:GOC""}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","false","","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#hasOBONamespace","0.0","false","has_obo_namespace","","","OIO:hasOBONamespace","OIO_hasOBONamespace","oio","has_obo_namespace","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasRelatedSynonym""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#hasSynonym"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#hasSynonym"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_related_synonym""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:related_synonym""},""isObsolete"":false},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:GOC""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An alias in which the alias is related the primary class name, but not necessarily broader or narrower. Example: cytochrome bc1 complex is a related synonym of ubiquinol-cytochrome-c reductase activity; virulence is a related synonym of pathogenesis"",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_related_synonym"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.geneontology.org/formats/oboInOwl#hasSynonym"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_related_synonym"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasRelatedSynonym""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio"",""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasSynonym"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""oboFormat:related_synonym"":{""url"":""http://www.geneontology.org/formats/oboInOwl#related_synonym"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboFormat:related_synonym""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""oboInOwl:GOC"":{""url"":""http://www.geneontology.org/formats/oboInOwl#GOC"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:GOC""}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","true","","false","","http://www.geneontology.org/formats/oboInOwl","http://www.geneontology.org/formats/oboInOwl#hasSynonym","http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","0.0","false","has_related_synonym","http://www.geneontology.org/formats/oboInOwl#hasSynonym","http://www.geneontology.org/formats/oboInOwl#hasSynonym","OIO:hasRelatedSynonym","OIO_hasRelatedSynonym","oio","has_related_synonym","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasSubset","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasSubset"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasSubset""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:cjm""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relation between an ontology and a oboInOwl:Subset, indicating classes in the ontology belong to the subset"",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_subset"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_subset"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasSubset""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""oboInOwl:cjm"":{""url"":""http://www.geneontology.org/formats/oboInOwl#cjm"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:cjm""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","false","","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#hasSubset","0.0","false","has_subset","","","OIO:hasSubset","OIO_hasSubset","oio","has_subset","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasSynonym","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasSynonym"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasSynonym""},""definition"":{""type"":[""literal""],""value"":""Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_synonym""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:synonym""},""isObsolete"":false},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:GOC""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relation between a class and an alias term."",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_synonym"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_synonym"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasSynonym""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""oboFormat:synonym"":{""url"":""http://www.geneontology.org/formats/oboInOwl#synonym"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboFormat:synonym""},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""oboInOwl:GOC"":{""url"":""http://www.geneontology.org/formats/oboInOwl#GOC"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:GOC""}}}","false","true","false","false","","true","","","0.0","property|annotationProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL","false","Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#hasSynonym","4.0","false","has_synonym","","","OIO:hasSynonym","OIO_hasSynonym","oio","has_synonym","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasSynonymType","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasSynonymType"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasSynonymType""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://www.geneontology.org/GO.usage.shtml#type""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""URL:http://www.geneontology.org/GO.usage.shtml#type""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_synonym_type"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_synonym_type"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasSynonymType""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio"",""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","false","","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#hasSynonymType","0.0","false","has_synonym_type","","","OIO:hasSynonymType","OIO_hasSynonymType","oio","has_synonym_type","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasURI","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasURI"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasURI""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","false","","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#hasURI","0.0","false","has_URI","","","OIO:hasURI","OIO_hasURI","oio","has_URI","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#hasVersion","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#hasVersion"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:hasVersion""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_version""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:version""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_version"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_version"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_hasVersion""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""oboFormat:version"":{""url"":""http://www.geneontology.org/formats/oboInOwl#version"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboFormat:version""},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","false","","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#hasVersion","0.0","false","has_version","","","OIO:hasVersion","OIO_hasVersion","oio","has_version","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#inSubset","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#inSubset"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:inSubset""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_subset""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:subset""},""isObsolete"":false},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:cjm""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relation between a class and a oboInOwl:Subset, indicating the class belongs (is a member of) the subset"",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in_subset"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_inSubset""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio"",""gitissue502""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""oboFormat:subset"":{""url"":""http://www.geneontology.org/formats/oboInOwl#subset"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboFormat:subset""},""oboInOwl:cjm"":{""url"":""http://www.geneontology.org/formats/oboInOwl#cjm"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:cjm""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","false","","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#inSubset","0.0","false","in_subset","","","OIO:inSubset","OIO_inSubset","oio","in_subset","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#isCyclic","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#isCyclic"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:isCyclic""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_is_cyclic""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:is_cyclic""},""isObsolete"":false},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":"""",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_cyclic"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_cyclic"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_isCyclic""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""oboFormat:is_cyclic"":{""url"":""http://www.geneontology.org/formats/oboInOwl#is_cyclic"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboFormat:is_cyclic""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","false","","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#isCyclic","0.0","false","is_cyclic","","","OIO:isCyclic","OIO_isCyclic","oio","is_cyclic","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#replacedBy","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#replacedBy"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:replacedBy""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_replaced_by""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:replaced_by""},""isObsolete"":false},""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboInOwl:cjm""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#Definition"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Gives a term which replaces an obsolete term. The value is the id of the replacement term. The value of this tag can safely be used to automatically reassign links to an obsolete term. The replaced_by tag may only be specified for obsolete terms. A single obsolete term may have more than one replaced_by tag. This tag can be used in conjunction with the consider tag."",""lang"":""en""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""replaced_by"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""replaced_by"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_replacedBy""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDefinition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDefinition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#Definition"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:Definition""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""oboInOwl:cjm"":{""url"":""http://www.geneontology.org/formats/oboInOwl#cjm"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboInOwl:cjm""},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""oboFormat:replaced_by"":{""url"":""http://www.geneontology.org/formats/oboInOwl#replaced_by"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboFormat:replaced_by""}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","false","","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#replacedBy","0.0","false","replaced_by","","","OIO:replacedBy","OIO_replacedBy","oio","replaced_by","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" +"oio+property+http://www.geneontology.org/formats/oboInOwl#savedBy","OntologyEntity|OntologyProperty","{""iri"":""http://www.geneontology.org/formats/oboInOwl#savedBy"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OIO:savedBy""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#anyURI"",""value"":""http://purl.org/obo/owl/oboFormat#oboFormat_saved_by""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.geneontology.org/formats/oboInOwl#DbXref"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oboFormat:saved_by""},""isObsolete"":false},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""saved_by"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""saved_by"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""oio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OIO_savedBy""},""isDefiningOntology"":true,""definedBy"":[""oio""],""appearsIn"":[""oio""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""definedBy"":[""oio""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_dbxref"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""oboFormat:saved_by"":{""url"":""http://www.geneontology.org/formats/oboInOwl#saved_by"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""oboFormat:saved_by""},""http://www.geneontology.org/formats/oboInOwl#hasURI"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_URI"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:hasURI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#DbXref"":{""definedBy"":[""oio""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database_cross_reference"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OIO:DbXref""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","","true","","","0.0","property|annotationProperty|entity","","false","","false","","http://www.geneontology.org/formats/oboInOwl","","http://www.geneontology.org/formats/oboInOwl#savedBy","0.0","false","saved_by","","","OIO:savedBy","OIO_savedBy","oio","saved_by","oio","http://www.w3.org/2002/07/owl#AnnotationProperty" diff --git a/testcases_expected_output/annotation-properties/gitIssue502/ontologies.json b/testcases_expected_output/annotation-properties/gitIssue502/ontologies.json index c827a7781..f7ccd6a6c 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/ontologies.json +++ b/testcases_expected_output/annotation-properties/gitIssue502/ontologies.json @@ -109,7 +109,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "definition": { "type": [ @@ -180,7 +180,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS_Class" } }, { @@ -193,7 +193,7 @@ "type": [ "literal" ], - "value": "Container" + "value": "RDFS:Container" }, "definition": { "type": [ @@ -264,7 +264,7 @@ "type": [ "literal" ], - "value": "Container" + "value": "RDFS_Container" } }, { @@ -277,7 +277,7 @@ "type": [ "literal" ], - "value": "ContainerMembershipProperty" + "value": "RDFS:ContainerMembershipProperty" }, "definition": { "type": [ @@ -346,7 +346,7 @@ "type": [ "literal" ], - "value": "ContainerMembershipProperty" + "value": "RDFS_ContainerMembershipProperty" } }, { @@ -359,7 +359,7 @@ "type": [ "literal" ], - "value": "Datatype" + "value": "RDFS:Datatype" }, "definition": { "type": [ @@ -436,7 +436,7 @@ "type": [ "literal" ], - "value": "Datatype" + "value": "RDFS_Datatype" } }, { @@ -449,7 +449,7 @@ "type": [ "literal" ], - "value": "Literal" + "value": "RDFS:Literal" }, "definition": { "type": [ @@ -520,7 +520,7 @@ "type": [ "literal" ], - "value": "Literal" + "value": "RDFS_Literal" } }, { @@ -533,7 +533,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "definition": { "type": [ @@ -595,7 +595,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS_Resource" } } ], @@ -610,7 +610,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "definition": { "type": [ @@ -673,7 +673,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS_comment" } }, { @@ -686,7 +686,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "definition": { "type": [ @@ -749,7 +749,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS_domain" } }, { @@ -762,7 +762,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "definition": { "type": [ @@ -827,7 +827,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS_isDefinedBy" } }, { @@ -840,7 +840,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "definition": { "type": [ @@ -903,7 +903,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS_label" } }, { @@ -916,7 +916,7 @@ "type": [ "literal" ], - "value": "member" + "value": "RDFS:member" }, "definition": { "type": [ @@ -979,7 +979,7 @@ "type": [ "literal" ], - "value": "member" + "value": "RDFS_member" } }, { @@ -992,7 +992,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "definition": { "type": [ @@ -1055,7 +1055,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS_range" } }, { @@ -1068,7 +1068,7 @@ "type": [ "literal" ], - "value": "seeAlso" + "value": "RDFS:seeAlso" }, "definition": { "type": [ @@ -1131,7 +1131,7 @@ "type": [ "literal" ], - "value": "seeAlso" + "value": "RDFS_seeAlso" } }, { @@ -1144,7 +1144,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "definition": { "type": [ @@ -1207,7 +1207,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS_subClassOf" } }, { @@ -1220,7 +1220,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "definition": { "type": [ @@ -1283,7 +1283,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS_subPropertyOf" } } ], @@ -1926,7 +1926,7 @@ "type": [ "literal" ], - "value": "AllDifferent" + "value": "OWL:AllDifferent" }, "definition": { "type": [ @@ -1997,7 +1997,7 @@ "type": [ "literal" ], - "value": "AllDifferent" + "value": "OWL_AllDifferent" } }, { @@ -2010,7 +2010,7 @@ "type": [ "literal" ], - "value": "AllDisjointClasses" + "value": "OWL:AllDisjointClasses" }, "definition": { "type": [ @@ -2081,7 +2081,7 @@ "type": [ "literal" ], - "value": "AllDisjointClasses" + "value": "OWL_AllDisjointClasses" } }, { @@ -2094,7 +2094,7 @@ "type": [ "literal" ], - "value": "AllDisjointProperties" + "value": "OWL:AllDisjointProperties" }, "definition": { "type": [ @@ -2165,7 +2165,7 @@ "type": [ "literal" ], - "value": "AllDisjointProperties" + "value": "OWL_AllDisjointProperties" } }, { @@ -2178,7 +2178,7 @@ "type": [ "literal" ], - "value": "Annotation" + "value": "OWL:Annotation" }, "definition": { "type": [ @@ -2249,7 +2249,7 @@ "type": [ "literal" ], - "value": "Annotation" + "value": "OWL_Annotation" } }, { @@ -2262,7 +2262,7 @@ "type": [ "literal" ], - "value": "AnnotationProperty" + "value": "OWL:AnnotationProperty" }, "definition": { "type": [ @@ -2331,7 +2331,7 @@ "type": [ "literal" ], - "value": "AnnotationProperty" + "value": "OWL_AnnotationProperty" } }, { @@ -2344,7 +2344,7 @@ "type": [ "literal" ], - "value": "AsymmetricProperty" + "value": "OWL:AsymmetricProperty" }, "definition": { "type": [ @@ -2415,7 +2415,7 @@ "type": [ "literal" ], - "value": "AsymmetricProperty" + "value": "OWL_AsymmetricProperty" } }, { @@ -2428,7 +2428,7 @@ "type": [ "literal" ], - "value": "Axiom" + "value": "OWL:Axiom" }, "definition": { "type": [ @@ -2499,7 +2499,7 @@ "type": [ "literal" ], - "value": "Axiom" + "value": "OWL_Axiom" } }, { @@ -2512,7 +2512,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "OWL:Class" }, "definition": { "type": [ @@ -2589,7 +2589,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "OWL_Class" } }, { @@ -2602,7 +2602,7 @@ "type": [ "literal" ], - "value": "DataRange" + "value": "OWL:DataRange" }, "definition": { "type": [ @@ -2681,7 +2681,7 @@ "type": [ "literal" ], - "value": "DataRange" + "value": "OWL_DataRange" } }, { @@ -2694,7 +2694,7 @@ "type": [ "literal" ], - "value": "DatatypeProperty" + "value": "OWL:DatatypeProperty" }, "definition": { "type": [ @@ -2763,7 +2763,7 @@ "type": [ "literal" ], - "value": "DatatypeProperty" + "value": "OWL_DatatypeProperty" } }, { @@ -2776,7 +2776,7 @@ "type": [ "literal" ], - "value": "DeprecatedClass" + "value": "OWL:DeprecatedClass" }, "definition": { "type": [ @@ -2853,7 +2853,7 @@ "type": [ "literal" ], - "value": "DeprecatedClass" + "value": "OWL_DeprecatedClass" } }, { @@ -2866,7 +2866,7 @@ "type": [ "literal" ], - "value": "DeprecatedProperty" + "value": "OWL:DeprecatedProperty" }, "definition": { "type": [ @@ -2935,7 +2935,7 @@ "type": [ "literal" ], - "value": "DeprecatedProperty" + "value": "OWL_DeprecatedProperty" } }, { @@ -2948,7 +2948,7 @@ "type": [ "literal" ], - "value": "FunctionalProperty" + "value": "OWL:FunctionalProperty" }, "definition": { "type": [ @@ -3017,7 +3017,7 @@ "type": [ "literal" ], - "value": "FunctionalProperty" + "value": "OWL_FunctionalProperty" } }, { @@ -3030,7 +3030,7 @@ "type": [ "literal" ], - "value": "InverseFunctionalProperty" + "value": "OWL:InverseFunctionalProperty" }, "definition": { "type": [ @@ -3101,7 +3101,7 @@ "type": [ "literal" ], - "value": "InverseFunctionalProperty" + "value": "OWL_InverseFunctionalProperty" } }, { @@ -3114,7 +3114,7 @@ "type": [ "literal" ], - "value": "IrreflexiveProperty" + "value": "OWL:IrreflexiveProperty" }, "definition": { "type": [ @@ -3185,7 +3185,7 @@ "type": [ "literal" ], - "value": "IrreflexiveProperty" + "value": "OWL_IrreflexiveProperty" } }, { @@ -3198,7 +3198,7 @@ "type": [ "literal" ], - "value": "NamedIndividual" + "value": "OWL:NamedIndividual" }, "definition": { "type": [ @@ -3269,7 +3269,7 @@ "type": [ "literal" ], - "value": "NamedIndividual" + "value": "OWL_NamedIndividual" } }, { @@ -3282,7 +3282,7 @@ "type": [ "literal" ], - "value": "NegativePropertyAssertion" + "value": "OWL:NegativePropertyAssertion" }, "definition": { "type": [ @@ -3353,7 +3353,7 @@ "type": [ "literal" ], - "value": "NegativePropertyAssertion" + "value": "OWL_NegativePropertyAssertion" } }, { @@ -3366,7 +3366,7 @@ "type": [ "literal" ], - "value": "Nothing" + "value": "OWL:Nothing" }, "definition": { "type": [ @@ -3437,7 +3437,7 @@ "type": [ "literal" ], - "value": "Nothing" + "value": "OWL_Nothing" } }, { @@ -3450,7 +3450,7 @@ "type": [ "literal" ], - "value": "ObjectProperty" + "value": "OWL:ObjectProperty" }, "definition": { "type": [ @@ -3519,7 +3519,7 @@ "type": [ "literal" ], - "value": "ObjectProperty" + "value": "OWL_ObjectProperty" } }, { @@ -3532,7 +3532,7 @@ "type": [ "literal" ], - "value": "Ontology" + "value": "OWL:Ontology" }, "definition": { "type": [ @@ -3603,7 +3603,7 @@ "type": [ "literal" ], - "value": "Ontology" + "value": "OWL_Ontology" } }, { @@ -3616,7 +3616,7 @@ "type": [ "literal" ], - "value": "OntologyProperty" + "value": "OWL:OntologyProperty" }, "definition": { "type": [ @@ -3685,7 +3685,7 @@ "type": [ "literal" ], - "value": "OntologyProperty" + "value": "OWL_OntologyProperty" } }, { @@ -3698,7 +3698,7 @@ "type": [ "literal" ], - "value": "ReflexiveProperty" + "value": "OWL:ReflexiveProperty" }, "definition": { "type": [ @@ -3769,7 +3769,7 @@ "type": [ "literal" ], - "value": "ReflexiveProperty" + "value": "OWL_ReflexiveProperty" } }, { @@ -3782,7 +3782,7 @@ "type": [ "literal" ], - "value": "Restriction" + "value": "OWL:Restriction" }, "definition": { "type": [ @@ -3861,7 +3861,7 @@ "type": [ "literal" ], - "value": "Restriction" + "value": "OWL_Restriction" } }, { @@ -3874,7 +3874,7 @@ "type": [ "literal" ], - "value": "SymmetricProperty" + "value": "OWL:SymmetricProperty" }, "definition": { "type": [ @@ -3945,7 +3945,7 @@ "type": [ "literal" ], - "value": "SymmetricProperty" + "value": "OWL_SymmetricProperty" } }, { @@ -3958,7 +3958,7 @@ "type": [ "literal" ], - "value": "Thing" + "value": "OWL:Thing" }, "definition": { "type": [ @@ -4020,7 +4020,7 @@ "type": [ "literal" ], - "value": "Thing" + "value": "OWL_Thing" } }, { @@ -4033,7 +4033,7 @@ "type": [ "literal" ], - "value": "TransitiveProperty" + "value": "OWL:TransitiveProperty" }, "definition": { "type": [ @@ -4104,7 +4104,7 @@ "type": [ "literal" ], - "value": "TransitiveProperty" + "value": "OWL_TransitiveProperty" } } ], @@ -4805,7 +4805,7 @@ "type": [ "literal" ], - "value": "allValuesFrom" + "value": "OWL:allValuesFrom" }, "definition": { "type": [ @@ -4868,7 +4868,7 @@ "type": [ "literal" ], - "value": "allValuesFrom" + "value": "OWL_allValuesFrom" } }, { @@ -4881,7 +4881,7 @@ "type": [ "literal" ], - "value": "annotatedProperty" + "value": "OWL:annotatedProperty" }, "definition": { "type": [ @@ -4944,7 +4944,7 @@ "type": [ "literal" ], - "value": "annotatedProperty" + "value": "OWL_annotatedProperty" } }, { @@ -4957,7 +4957,7 @@ "type": [ "literal" ], - "value": "annotatedSource" + "value": "OWL:annotatedSource" }, "definition": { "type": [ @@ -5020,7 +5020,7 @@ "type": [ "literal" ], - "value": "annotatedSource" + "value": "OWL_annotatedSource" } }, { @@ -5033,7 +5033,7 @@ "type": [ "literal" ], - "value": "annotatedTarget" + "value": "OWL:annotatedTarget" }, "definition": { "type": [ @@ -5096,7 +5096,7 @@ "type": [ "literal" ], - "value": "annotatedTarget" + "value": "OWL_annotatedTarget" } }, { @@ -5109,7 +5109,7 @@ "type": [ "literal" ], - "value": "assertionProperty" + "value": "OWL:assertionProperty" }, "definition": { "type": [ @@ -5172,7 +5172,7 @@ "type": [ "literal" ], - "value": "assertionProperty" + "value": "OWL_assertionProperty" } }, { @@ -5186,7 +5186,7 @@ "type": [ "literal" ], - "value": "backwardCompatibleWith" + "value": "OWL:backwardCompatibleWith" }, "definition": { "type": [ @@ -5252,7 +5252,7 @@ "type": [ "literal" ], - "value": "backwardCompatibleWith" + "value": "OWL_backwardCompatibleWith" } }, { @@ -5266,7 +5266,7 @@ "type": [ "literal" ], - "value": "bottomDataProperty" + "value": "OWL:bottomDataProperty" }, "definition": { "type": [ @@ -5329,7 +5329,7 @@ "type": [ "literal" ], - "value": "bottomDataProperty" + "value": "OWL_bottomDataProperty" } }, { @@ -5343,7 +5343,7 @@ "type": [ "literal" ], - "value": "bottomObjectProperty" + "value": "OWL:bottomObjectProperty" }, "definition": { "type": [ @@ -5406,7 +5406,7 @@ "type": [ "literal" ], - "value": "bottomObjectProperty" + "value": "OWL_bottomObjectProperty" } }, { @@ -5419,7 +5419,7 @@ "type": [ "literal" ], - "value": "cardinality" + "value": "OWL:cardinality" }, "definition": { "type": [ @@ -5482,7 +5482,7 @@ "type": [ "literal" ], - "value": "cardinality" + "value": "OWL_cardinality" } }, { @@ -5495,7 +5495,7 @@ "type": [ "literal" ], - "value": "complementOf" + "value": "OWL:complementOf" }, "definition": { "type": [ @@ -5558,7 +5558,7 @@ "type": [ "literal" ], - "value": "complementOf" + "value": "OWL_complementOf" } }, { @@ -5571,7 +5571,7 @@ "type": [ "literal" ], - "value": "datatypeComplementOf" + "value": "OWL:datatypeComplementOf" }, "definition": { "type": [ @@ -5634,7 +5634,7 @@ "type": [ "literal" ], - "value": "datatypeComplementOf" + "value": "OWL_datatypeComplementOf" } }, { @@ -5648,7 +5648,7 @@ "type": [ "literal" ], - "value": "deprecated" + "value": "OWL:deprecated" }, "definition": { "type": [ @@ -5711,7 +5711,7 @@ "type": [ "literal" ], - "value": "deprecated" + "value": "OWL_deprecated" } }, { @@ -5724,7 +5724,7 @@ "type": [ "literal" ], - "value": "differentFrom" + "value": "OWL:differentFrom" }, "definition": { "type": [ @@ -5787,7 +5787,7 @@ "type": [ "literal" ], - "value": "differentFrom" + "value": "OWL_differentFrom" } }, { @@ -5800,7 +5800,7 @@ "type": [ "literal" ], - "value": "disjointUnionOf" + "value": "OWL:disjointUnionOf" }, "definition": { "type": [ @@ -5863,7 +5863,7 @@ "type": [ "literal" ], - "value": "disjointUnionOf" + "value": "OWL_disjointUnionOf" } }, { @@ -5876,7 +5876,7 @@ "type": [ "literal" ], - "value": "disjointWith" + "value": "OWL:disjointWith" }, "definition": { "type": [ @@ -5939,7 +5939,7 @@ "type": [ "literal" ], - "value": "disjointWith" + "value": "OWL_disjointWith" } }, { @@ -5952,7 +5952,7 @@ "type": [ "literal" ], - "value": "distinctMembers" + "value": "OWL:distinctMembers" }, "definition": { "type": [ @@ -6015,7 +6015,7 @@ "type": [ "literal" ], - "value": "distinctMembers" + "value": "OWL_distinctMembers" } }, { @@ -6028,7 +6028,7 @@ "type": [ "literal" ], - "value": "equivalentClass" + "value": "OWL:equivalentClass" }, "definition": { "type": [ @@ -6091,7 +6091,7 @@ "type": [ "literal" ], - "value": "equivalentClass" + "value": "OWL_equivalentClass" } }, { @@ -6104,7 +6104,7 @@ "type": [ "literal" ], - "value": "equivalentProperty" + "value": "OWL:equivalentProperty" }, "definition": { "type": [ @@ -6167,7 +6167,7 @@ "type": [ "literal" ], - "value": "equivalentProperty" + "value": "OWL_equivalentProperty" } }, { @@ -6180,7 +6180,7 @@ "type": [ "literal" ], - "value": "hasKey" + "value": "OWL:hasKey" }, "definition": { "type": [ @@ -6243,7 +6243,7 @@ "type": [ "literal" ], - "value": "hasKey" + "value": "OWL_hasKey" } }, { @@ -6256,7 +6256,7 @@ "type": [ "literal" ], - "value": "hasSelf" + "value": "OWL:hasSelf" }, "definition": { "type": [ @@ -6319,7 +6319,7 @@ "type": [ "literal" ], - "value": "hasSelf" + "value": "OWL_hasSelf" } }, { @@ -6332,7 +6332,7 @@ "type": [ "literal" ], - "value": "hasValue" + "value": "OWL:hasValue" }, "definition": { "type": [ @@ -6395,7 +6395,7 @@ "type": [ "literal" ], - "value": "hasValue" + "value": "OWL_hasValue" } }, { @@ -6409,7 +6409,7 @@ "type": [ "literal" ], - "value": "incompatibleWith" + "value": "OWL:incompatibleWith" }, "definition": { "type": [ @@ -6475,7 +6475,7 @@ "type": [ "literal" ], - "value": "incompatibleWith" + "value": "OWL_incompatibleWith" } }, { @@ -6488,7 +6488,7 @@ "type": [ "literal" ], - "value": "intersectionOf" + "value": "OWL:intersectionOf" }, "definition": { "type": [ @@ -6551,7 +6551,7 @@ "type": [ "literal" ], - "value": "intersectionOf" + "value": "OWL_intersectionOf" } }, { @@ -6564,7 +6564,7 @@ "type": [ "literal" ], - "value": "inverseOf" + "value": "OWL:inverseOf" }, "definition": { "type": [ @@ -6627,7 +6627,7 @@ "type": [ "literal" ], - "value": "inverseOf" + "value": "OWL_inverseOf" } }, { @@ -6640,7 +6640,7 @@ "type": [ "literal" ], - "value": "maxCardinality" + "value": "OWL:maxCardinality" }, "definition": { "type": [ @@ -6703,7 +6703,7 @@ "type": [ "literal" ], - "value": "maxCardinality" + "value": "OWL_maxCardinality" } }, { @@ -6716,7 +6716,7 @@ "type": [ "literal" ], - "value": "maxQualifiedCardinality" + "value": "OWL:maxQualifiedCardinality" }, "definition": { "type": [ @@ -6779,7 +6779,7 @@ "type": [ "literal" ], - "value": "maxQualifiedCardinality" + "value": "OWL_maxQualifiedCardinality" } }, { @@ -6792,7 +6792,7 @@ "type": [ "literal" ], - "value": "members" + "value": "OWL:members" }, "definition": { "type": [ @@ -6855,7 +6855,7 @@ "type": [ "literal" ], - "value": "members" + "value": "OWL_members" } }, { @@ -6868,7 +6868,7 @@ "type": [ "literal" ], - "value": "minCardinality" + "value": "OWL:minCardinality" }, "definition": { "type": [ @@ -6931,7 +6931,7 @@ "type": [ "literal" ], - "value": "minCardinality" + "value": "OWL_minCardinality" } }, { @@ -6944,7 +6944,7 @@ "type": [ "literal" ], - "value": "minQualifiedCardinality" + "value": "OWL:minQualifiedCardinality" }, "definition": { "type": [ @@ -7007,7 +7007,7 @@ "type": [ "literal" ], - "value": "minQualifiedCardinality" + "value": "OWL_minQualifiedCardinality" } }, { @@ -7020,7 +7020,7 @@ "type": [ "literal" ], - "value": "onClass" + "value": "OWL:onClass" }, "definition": { "type": [ @@ -7083,7 +7083,7 @@ "type": [ "literal" ], - "value": "onClass" + "value": "OWL_onClass" } }, { @@ -7096,7 +7096,7 @@ "type": [ "literal" ], - "value": "onDataRange" + "value": "OWL:onDataRange" }, "definition": { "type": [ @@ -7159,7 +7159,7 @@ "type": [ "literal" ], - "value": "onDataRange" + "value": "OWL_onDataRange" } }, { @@ -7172,7 +7172,7 @@ "type": [ "literal" ], - "value": "onDatatype" + "value": "OWL:onDatatype" }, "definition": { "type": [ @@ -7235,7 +7235,7 @@ "type": [ "literal" ], - "value": "onDatatype" + "value": "OWL_onDatatype" } }, { @@ -7248,7 +7248,7 @@ "type": [ "literal" ], - "value": "onProperties" + "value": "OWL:onProperties" }, "definition": { "type": [ @@ -7311,7 +7311,7 @@ "type": [ "literal" ], - "value": "onProperties" + "value": "OWL_onProperties" } }, { @@ -7324,7 +7324,7 @@ "type": [ "literal" ], - "value": "onProperty" + "value": "OWL:onProperty" }, "definition": { "type": [ @@ -7387,7 +7387,7 @@ "type": [ "literal" ], - "value": "onProperty" + "value": "OWL_onProperty" } }, { @@ -7400,7 +7400,7 @@ "type": [ "literal" ], - "value": "oneOf" + "value": "OWL:oneOf" }, "definition": { "type": [ @@ -7463,7 +7463,7 @@ "type": [ "literal" ], - "value": "oneOf" + "value": "OWL_oneOf" } }, { @@ -7477,7 +7477,7 @@ "type": [ "literal" ], - "value": "priorVersion" + "value": "OWL:priorVersion" }, "definition": { "type": [ @@ -7543,7 +7543,7 @@ "type": [ "literal" ], - "value": "priorVersion" + "value": "OWL_priorVersion" } }, { @@ -7556,7 +7556,7 @@ "type": [ "literal" ], - "value": "propertyChainAxiom" + "value": "OWL:propertyChainAxiom" }, "definition": { "type": [ @@ -7619,7 +7619,7 @@ "type": [ "literal" ], - "value": "propertyChainAxiom" + "value": "OWL_propertyChainAxiom" } }, { @@ -7632,7 +7632,7 @@ "type": [ "literal" ], - "value": "propertyDisjointWith" + "value": "OWL:propertyDisjointWith" }, "definition": { "type": [ @@ -7695,7 +7695,7 @@ "type": [ "literal" ], - "value": "propertyDisjointWith" + "value": "OWL_propertyDisjointWith" } }, { @@ -7708,7 +7708,7 @@ "type": [ "literal" ], - "value": "qualifiedCardinality" + "value": "OWL:qualifiedCardinality" }, "definition": { "type": [ @@ -7771,7 +7771,7 @@ "type": [ "literal" ], - "value": "qualifiedCardinality" + "value": "OWL_qualifiedCardinality" } }, { @@ -7784,7 +7784,7 @@ "type": [ "literal" ], - "value": "sameAs" + "value": "OWL:sameAs" }, "definition": { "type": [ @@ -7847,7 +7847,7 @@ "type": [ "literal" ], - "value": "sameAs" + "value": "OWL_sameAs" } }, { @@ -7860,7 +7860,7 @@ "type": [ "literal" ], - "value": "someValuesFrom" + "value": "OWL:someValuesFrom" }, "definition": { "type": [ @@ -7923,7 +7923,7 @@ "type": [ "literal" ], - "value": "someValuesFrom" + "value": "OWL_someValuesFrom" } }, { @@ -7936,7 +7936,7 @@ "type": [ "literal" ], - "value": "sourceIndividual" + "value": "OWL:sourceIndividual" }, "definition": { "type": [ @@ -7999,7 +7999,7 @@ "type": [ "literal" ], - "value": "sourceIndividual" + "value": "OWL_sourceIndividual" } }, { @@ -8012,7 +8012,7 @@ "type": [ "literal" ], - "value": "targetIndividual" + "value": "OWL:targetIndividual" }, "definition": { "type": [ @@ -8075,7 +8075,7 @@ "type": [ "literal" ], - "value": "targetIndividual" + "value": "OWL_targetIndividual" } }, { @@ -8088,7 +8088,7 @@ "type": [ "literal" ], - "value": "targetValue" + "value": "OWL:targetValue" }, "definition": { "type": [ @@ -8151,7 +8151,7 @@ "type": [ "literal" ], - "value": "targetValue" + "value": "OWL_targetValue" } }, { @@ -8165,7 +8165,7 @@ "type": [ "literal" ], - "value": "topDataProperty" + "value": "OWL:topDataProperty" }, "definition": { "type": [ @@ -8228,7 +8228,7 @@ "type": [ "literal" ], - "value": "topDataProperty" + "value": "OWL_topDataProperty" } }, { @@ -8242,7 +8242,7 @@ "type": [ "literal" ], - "value": "topObjectProperty" + "value": "OWL:topObjectProperty" }, "definition": { "type": [ @@ -8305,7 +8305,7 @@ "type": [ "literal" ], - "value": "topObjectProperty" + "value": "OWL_topObjectProperty" } }, { @@ -8318,7 +8318,7 @@ "type": [ "literal" ], - "value": "unionOf" + "value": "OWL:unionOf" }, "definition": { "type": [ @@ -8381,7 +8381,7 @@ "type": [ "literal" ], - "value": "unionOf" + "value": "OWL_unionOf" } }, { @@ -8395,7 +8395,7 @@ "type": [ "literal" ], - "value": "versionInfo" + "value": "OWL:versionInfo" }, "definition": { "type": [ @@ -8458,7 +8458,7 @@ "type": [ "literal" ], - "value": "versionInfo" + "value": "OWL_versionInfo" } }, { @@ -8471,7 +8471,7 @@ "type": [ "literal" ], - "value": "withRestrictions" + "value": "OWL:withRestrictions" }, "definition": { "type": [ @@ -8534,7 +8534,7 @@ "type": [ "literal" ], - "value": "withRestrictions" + "value": "OWL_withRestrictions" } } ], @@ -8743,7 +8743,7 @@ "type": [ "literal" ], - "value": "Collection" + "value": "SKOS:Collection" }, "directAncestor": [], "hasDirectChildren": true, @@ -8829,7 +8829,7 @@ "type": [ "literal" ], - "value": "Collection" + "value": "SKOS_Collection" } }, { @@ -8842,7 +8842,7 @@ "type": [ "literal" ], - "value": "Concept" + "value": "SKOS:Concept" }, "directAncestor": [], "hasDirectChildren": false, @@ -8908,7 +8908,7 @@ "type": [ "literal" ], - "value": "Concept" + "value": "SKOS_Concept" } }, { @@ -8921,7 +8921,7 @@ "type": [ "literal" ], - "value": "ConceptScheme" + "value": "SKOS:ConceptScheme" }, "directAncestor": [], "hasDirectChildren": false, @@ -9020,7 +9020,7 @@ "type": [ "literal" ], - "value": "ConceptScheme" + "value": "SKOS_ConceptScheme" } }, { @@ -9033,7 +9033,7 @@ "type": [ "literal" ], - "value": "OrderedCollection" + "value": "SKOS:OrderedCollection" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#Collection", "directParent": "http://www.w3.org/2004/02/skos/core#Collection", @@ -9124,7 +9124,7 @@ "type": [ "literal" ], - "value": "OrderedCollection" + "value": "SKOS_OrderedCollection" } } ], @@ -9140,7 +9140,7 @@ "type": [ "literal" ], - "value": "altLabel" + "value": "SKOS:altLabel" }, "definition": [ { @@ -9267,7 +9267,7 @@ "type": [ "literal" ], - "value": "altLabel" + "value": "SKOS_altLabel" } }, { @@ -9281,7 +9281,7 @@ "type": [ "literal" ], - "value": "broadMatch" + "value": "SKOS:broadMatch" }, "directAncestor": [ "http://www.w3.org/2004/02/skos/core#mappingRelation", @@ -9363,7 +9363,7 @@ "type": [ "literal" ], - "value": "broadMatch" + "value": "SKOS_broadMatch" } }, { @@ -9377,7 +9377,7 @@ "type": [ "literal" ], - "value": "broader" + "value": "SKOS:broader" }, "definition": { "type": [ @@ -9489,7 +9489,7 @@ "type": [ "literal" ], - "value": "broader" + "value": "SKOS_broader" } }, { @@ -9503,7 +9503,7 @@ "type": [ "literal" ], - "value": "broaderTransitive" + "value": "SKOS:broaderTransitive" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#semanticRelation", "directParent": "http://www.w3.org/2004/02/skos/core#semanticRelation", @@ -9587,7 +9587,7 @@ "type": [ "literal" ], - "value": "broaderTransitive" + "value": "SKOS_broaderTransitive" } }, { @@ -9601,7 +9601,7 @@ "type": [ "literal" ], - "value": "changeNote" + "value": "SKOS:changeNote" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -9671,7 +9671,7 @@ "type": [ "literal" ], - "value": "changeNote" + "value": "SKOS_changeNote" } }, { @@ -9685,7 +9685,7 @@ "type": [ "literal" ], - "value": "closeMatch" + "value": "SKOS:closeMatch" }, "directAncestor": [ "http://www.w3.org/2004/02/skos/core#mappingRelation", @@ -9759,7 +9759,7 @@ "type": [ "literal" ], - "value": "closeMatch" + "value": "SKOS_closeMatch" } }, { @@ -9773,7 +9773,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -9843,7 +9843,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS_definition" } }, { @@ -9857,7 +9857,7 @@ "type": [ "literal" ], - "value": "editorialNote" + "value": "SKOS:editorialNote" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -9927,7 +9927,7 @@ "type": [ "literal" ], - "value": "editorialNote" + "value": "SKOS_editorialNote" } }, { @@ -9941,7 +9941,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "definition": { "type": [ @@ -10039,7 +10039,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS_exactMatch" } }, { @@ -10053,7 +10053,7 @@ "type": [ "literal" ], - "value": "example" + "value": "SKOS:example" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -10123,7 +10123,7 @@ "type": [ "literal" ], - "value": "example" + "value": "SKOS_example" } }, { @@ -10137,7 +10137,7 @@ "type": [ "literal" ], - "value": "hasTopConcept" + "value": "SKOS:hasTopConcept" }, "directAncestor": [], "hasDirectChildren": false, @@ -10208,7 +10208,7 @@ "type": [ "literal" ], - "value": "hasTopConcept" + "value": "SKOS_hasTopConcept" } }, { @@ -10222,7 +10222,7 @@ "type": [ "literal" ], - "value": "hiddenLabel" + "value": "SKOS:hiddenLabel" }, "definition": [ { @@ -10333,7 +10333,7 @@ "type": [ "literal" ], - "value": "hiddenLabel" + "value": "SKOS_hiddenLabel" } }, { @@ -10347,7 +10347,7 @@ "type": [ "literal" ], - "value": "historyNote" + "value": "SKOS:historyNote" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -10417,7 +10417,7 @@ "type": [ "literal" ], - "value": "historyNote" + "value": "SKOS_historyNote" } }, { @@ -10431,7 +10431,7 @@ "type": [ "literal" ], - "value": "inScheme" + "value": "SKOS:inScheme" }, "directAncestor": [], "hasDirectChildren": true, @@ -10516,7 +10516,7 @@ "type": [ "literal" ], - "value": "inScheme" + "value": "SKOS_inScheme" } }, { @@ -10530,7 +10530,7 @@ "type": [ "literal" ], - "value": "mappingRelation" + "value": "SKOS:mappingRelation" }, "definition": { "type": [ @@ -10622,7 +10622,7 @@ "type": [ "literal" ], - "value": "mappingRelation" + "value": "SKOS_mappingRelation" } }, { @@ -10636,7 +10636,7 @@ "type": [ "literal" ], - "value": "member" + "value": "SKOS:member" }, "directAncestor": [], "hasDirectChildren": false, @@ -10712,7 +10712,7 @@ "type": [ "literal" ], - "value": "member" + "value": "SKOS_member" } }, { @@ -10726,7 +10726,7 @@ "type": [ "literal" ], - "value": "memberList" + "value": "SKOS:memberList" }, "definition": { "type": [ @@ -10819,7 +10819,7 @@ "type": [ "literal" ], - "value": "memberList" + "value": "SKOS_memberList" } }, { @@ -10833,7 +10833,7 @@ "type": [ "literal" ], - "value": "narrowMatch" + "value": "SKOS:narrowMatch" }, "directAncestor": [ "http://www.w3.org/2004/02/skos/core#mappingRelation", @@ -10915,7 +10915,7 @@ "type": [ "literal" ], - "value": "narrowMatch" + "value": "SKOS_narrowMatch" } }, { @@ -10929,7 +10929,7 @@ "type": [ "literal" ], - "value": "narrower" + "value": "SKOS:narrower" }, "definition": { "type": [ @@ -11041,7 +11041,7 @@ "type": [ "literal" ], - "value": "narrower" + "value": "SKOS_narrower" } }, { @@ -11055,7 +11055,7 @@ "type": [ "literal" ], - "value": "narrowerTransitive" + "value": "SKOS:narrowerTransitive" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#semanticRelation", "directParent": "http://www.w3.org/2004/02/skos/core#semanticRelation", @@ -11139,7 +11139,7 @@ "type": [ "literal" ], - "value": "narrowerTransitive" + "value": "SKOS_narrowerTransitive" } }, { @@ -11153,7 +11153,7 @@ "type": [ "literal" ], - "value": "notation" + "value": "SKOS:notation" }, "directAncestor": [], "hasDirectChildren": false, @@ -11237,7 +11237,7 @@ "type": [ "literal" ], - "value": "notation" + "value": "SKOS_notation" } }, { @@ -11251,7 +11251,7 @@ "type": [ "literal" ], - "value": "note" + "value": "SKOS:note" }, "directAncestor": [], "hasDirectChildren": true, @@ -11335,7 +11335,7 @@ "type": [ "literal" ], - "value": "note" + "value": "SKOS_note" } }, { @@ -11349,7 +11349,7 @@ "type": [ "literal" ], - "value": "prefLabel" + "value": "SKOS:prefLabel" }, "definition": [ { @@ -11476,7 +11476,7 @@ "type": [ "literal" ], - "value": "prefLabel" + "value": "SKOS_prefLabel" } }, { @@ -11490,7 +11490,7 @@ "type": [ "literal" ], - "value": "related" + "value": "SKOS:related" }, "definition": { "type": [ @@ -11583,7 +11583,7 @@ "type": [ "literal" ], - "value": "related" + "value": "SKOS_related" } }, { @@ -11597,7 +11597,7 @@ "type": [ "literal" ], - "value": "relatedMatch" + "value": "SKOS:relatedMatch" }, "directAncestor": [ "http://www.w3.org/2004/02/skos/core#mappingRelation", @@ -11678,7 +11678,7 @@ "type": [ "literal" ], - "value": "relatedMatch" + "value": "SKOS_relatedMatch" } }, { @@ -11692,7 +11692,7 @@ "type": [ "literal" ], - "value": "scopeNote" + "value": "SKOS:scopeNote" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -11762,7 +11762,7 @@ "type": [ "literal" ], - "value": "scopeNote" + "value": "SKOS_scopeNote" } }, { @@ -11776,7 +11776,7 @@ "type": [ "literal" ], - "value": "semanticRelation" + "value": "SKOS:semanticRelation" }, "directAncestor": [], "hasDirectChildren": true, @@ -11862,7 +11862,7 @@ "type": [ "literal" ], - "value": "semanticRelation" + "value": "SKOS_semanticRelation" } }, { @@ -11876,7 +11876,7 @@ "type": [ "literal" ], - "value": "topConceptOf" + "value": "SKOS:topConceptOf" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#inScheme", "directParent": "http://www.w3.org/2004/02/skos/core#inScheme", @@ -11949,7 +11949,7 @@ "type": [ "literal" ], - "value": "topConceptOf" + "value": "SKOS_topConceptOf" } } ], @@ -79851,6 +79851,2988 @@ } ], "individuals": [] + }, + { + "ontologyId": "oio", + "iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_purl": "https://gist.githubusercontent.com/haideriqbal/4a2b1a9aa81d9fa26cae81e0b0b7730b/raw/527665128b9be9d7d6133f9a796379600151c737/oboInOwl.owl", + "base_uri": [ + "http://www.geneontology.org/formats/oboInOwl#" + ], + "type": [ + "ontology" + ], + "definition": [ + { + "type": [ + "literal" + ], + "value": "OBO Format metamodel. This meta-ontology is self-describing. OBO metamodel properties are described using OBO metamodel properties" + }, + { + "type": [ + "literal" + ], + "value": "\n This is an OWL translation of an ontology whose native representational form is .obo. The translation was performed using the oboInOwl xslt library. For details, see http://www.berkeleybop.org/obo-conv.cgi\n " + } + ], + "directAncestor": [], + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Ontology", + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "type": [ + "literal" + ], + "value": "OBO Format metamodel. This meta-ontology is self-describing. OBO metamodel properties are described using OBO metamodel properties" + }, + { + "type": [ + "literal" + ], + "value": "\n This is an OWL translation of an ontology whose native representational form is .obo. The translation was performed using the oboInOwl xslt library. For details, see http://www.berkeleybop.org/obo-conv.cgi\n " + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "" + }, + "imported": false, + "isObsolete": false, + "label": { + "type": [ + "literal" + ], + "value": "" + }, + "language": { + "type": [ + "literal" + ], + "value": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "numberOfClasses": { + "type": [ + "literal" + ], + "value": "12" + }, + "numberOfEntities": { + "type": [ + "literal" + ], + "value": "56" + }, + "numberOfIndividuals": { + "type": [ + "literal" + ], + "value": "0" + }, + "numberOfProperties": { + "type": [ + "literal" + ], + "value": "44" + }, + "searchableAnnotationValues": [ + false, + { + "type": [ + "literal" + ], + "value": "en" + }, + { + "type": [ + "literal" + ], + "value": "12" + }, + { + "type": [ + "literal" + ], + "value": "56" + }, + { + "type": [ + "literal" + ], + "value": "0" + }, + { + "type": [ + "literal" + ], + "value": "44" + } + ], + "classes": [ + { + "iri": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "type": [ + "class", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "hierarchicalAncestor": [], + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_DbXref" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#Definition", + "type": [ + "class", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "definition": { + "type": [ + "literal" + ], + "value": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + }, + "definitionProperty": { + "type": [ + "literal" + ], + "value": "http://www.w3.org/2000/01/rdf-schema#comment" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "hierarchicalAncestor": [], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://www.obofoundry.org/wiki/index.php/Definitions" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "URL:http://www.obofoundry.org/wiki/index.php/Definitions" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "The textual definition of the current term. There must be zero or one instances of this tag per term description", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#comment": { + "type": [ + "literal" + ], + "value": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_Definition" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#ObsoleteClass", + "type": [ + "class", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:ObsoleteClass" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "hierarchicalAncestor": [], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "pseudo-class. in the oboInOwl translation, all obsolete classes are subclasses of this class. Note that this is not a metaclass", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "obsolete_class", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "obsolete_class", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_ObsoleteClass" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#Subset", + "type": [ + "class", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Subset" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "hierarchicalAncestor": [], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_subsetdef" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:subsetdef" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "A grouping of terms from an ontology or ontologies. Note that this is not a metaclass - classes are linked to subsets via oboInOwl:inSubset", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "slim", + "lang": "en" + }, + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "GO-slim", + "lang": "en" + }, + "isObsolete": false + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "view", + "lang": "en" + }, + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "partition", + "lang": "en" + }, + "isObsolete": false + } + ], + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "subset", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "subset", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_Subset" + }, + "synonym": [ + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "slim", + "lang": "en" + }, + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "GO-slim", + "lang": "en" + }, + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "view", + "lang": "en" + }, + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "partition", + "lang": "en" + }, + "isObsolete": false + } + ], + "synonymProperty": [ + { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym" + }, + { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym" + } + ] + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "type": [ + "class", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Synonym" + }, + "definition": { + "type": [ + "literal" + ], + "value": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + }, + "definitionProperty": { + "type": [ + "literal" + ], + "value": "http://www.w3.org/2000/01/rdf-schema#comment" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "hierarchicalAncestor": [], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An instance of synonym usage. synonym instances are linked to classes via oboInOwl:has*Synonym properties", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#comment": { + "type": [ + "literal" + ], + "value": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "synonym", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "synonym", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_Synonym" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#SynonymType", + "type": [ + "class", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:SynonymType" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "hierarchicalAncestor": [], + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "synonym_type", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "synonym_type", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_SynonymType" + } + } + ], + "properties": [ + { + "iri": "http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty", + "type": [ + "property", + "objectProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:ObsoleteProperty" + }, + "definition": { + "type": [ + "literal" + ], + "value": "Note that this is not a metaclass" + }, + "definitionProperty": { + "type": [ + "literal" + ], + "value": "http://www.w3.org/2000/01/rdf-schema#comment" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "pseudo-property. in the oboInOwl translation, all obsolete relations are subProperties of this class", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#ObjectProperty", + "http://www.w3.org/2000/01/rdf-schema#comment": { + "type": [ + "literal" + ], + "value": "Note that this is not a metaclass" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "obsolete_property", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "obsolete_property", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_ObsoleteProperty" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#SubsetProperty", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:SubsetProperty" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "This annotation property groups all subsets declared in the ontology", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "subset_property", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "subset_property", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_SubsetProperty" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:SynonymTypeProperty" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "This annotation property groups all synonym types declared in the ontology", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "synonym_type_property", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "synonym_type_property", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_SynonymTypeProperty" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#consider", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:consider" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_consider" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:consider" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "Gives a term which may be an appropriate substitute for an obsolete term, but needs to be looked at carefully by a human expert before the replacement is done", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "consider", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "consider", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_consider" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasAlternativeId" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_alt_id" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:alt_id" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An alternative identifier for this class; should follow ID syntax. These can result from class merges", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_alternative_id", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_alternative_id", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasAlternativeId" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasBroadSynonym" + }, + "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "hasDirectChildren": false, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_broad_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:broad_synonym" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An alias in which the alias is broader than the primary class name. Example: cell division is a broad synonym of cytokinesis", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_broad_synonym", + "lang": "en" + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_broad_synonym", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasBroadSynonym" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDate", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDate" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_date" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:date" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_date", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_date", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasDate" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDbXref", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_xref" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:xref" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasDbXref" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDefaultNamespace", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefaultNamespace" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_default-namespace" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:default-namespace" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_default_namespace", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_default_namespace", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasDefaultNamespace" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDefinition", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "definition": { + "type": [ + "literal" + ], + "value": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + }, + "definitionProperty": { + "type": [ + "literal" + ], + "value": "http://www.w3.org/2000/01/rdf-schema#comment" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_def" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:def" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "a relation between a class and an instance of a oboInOwl:Definition", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#comment": { + "type": [ + "literal" + ], + "value": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasDefinition" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasExactSynonym" + }, + "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "hasDirectChildren": false, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_exact_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:exact_synonym" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An alias in which the alias exhibits true synonymy. Example: ornithine cycle is an exact synonym of urea cycle", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasExactSynonym" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasNarrowSynonym" + }, + "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "hasDirectChildren": false, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_narrow_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:narrow_synonym" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An alias in which the alias is narrower than the primary class name. Example: pyrimidine-dimer repair by photolyase is a narrow synonym of photoreactive repair", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_narrow_synonym", + "lang": "en" + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_narrow_synonym", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasNarrowSynonym" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasOBONamespace" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_namespace" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:namespace" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "A relation between a class and an OBO namespace string. OBO namespaces are to be distinguished from IDspaces; for example, biological_process is a namespace, GO is an idspace.", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_obo_namespace", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_obo_namespace", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasOBONamespace" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasRelatedSynonym" + }, + "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "hasDirectChildren": false, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_related_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:related_synonym" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An alias in which the alias is related the primary class name, but not necessarily broader or narrower. Example: cytochrome bc1 complex is a related synonym of ubiquinol-cytochrome-c reductase activity; virulence is a related synonym of pathogenesis", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_related_synonym", + "lang": "en" + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_related_synonym", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasRelatedSynonym" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSubset", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasSubset" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "relation between an ontology and a oboInOwl:Subset, indicating classes in the ontology belong to the subset", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_subset", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_subset", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasSubset" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasSynonym" + }, + "definition": { + "type": [ + "literal" + ], + "value": "Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL" + }, + "definitionProperty": { + "type": [ + "literal" + ], + "value": "http://www.w3.org/2000/01/rdf-schema#comment" + }, + "directAncestor": [], + "hasDirectChildren": true, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:synonym" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "A relation between a class and an alias term.", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#comment": { + "type": [ + "literal" + ], + "value": "Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_synonym", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_synonym", + "lang": "en" + }, + "numDescendants": 4, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasSynonym" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSynonymType", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasSynonymType" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://www.geneontology.org/GO.usage.shtml#type" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "URL:http://www.geneontology.org/GO.usage.shtml#type" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_synonym_type", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_synonym_type", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasSynonymType" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasURI", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasURI" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasVersion", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasVersion" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_version" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:version" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_version", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_version", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasVersion" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#inSubset", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:inSubset" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_subset" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:subset" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "relation between a class and a oboInOwl:Subset, indicating the class belongs (is a member of) the subset", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_inSubset" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#isCyclic", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:isCyclic" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_is_cyclic" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:is_cyclic" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "is_cyclic", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "is_cyclic", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_isCyclic" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#replacedBy", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:replacedBy" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_replaced_by" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:replaced_by" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "Gives a term which replaces an obsolete term. The value is the id of the replacement term. The value of this tag can safely be used to automatically reassign links to an obsolete term. The replaced_by tag may only be specified for obsolete terms. A single obsolete term may have more than one replaced_by tag. This tag can be used in conjunction with the consider tag.", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "replaced_by", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "replaced_by", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_replacedBy" + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#savedBy", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:savedBy" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_saved_by" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:saved_by" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "saved_by", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "saved_by", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_savedBy" + } + } + ], + "individuals": [] } ] } \ No newline at end of file diff --git a/testcases_expected_output/annotation-properties/gitIssue502/ontologies.jsonl b/testcases_expected_output/annotation-properties/gitIssue502/ontologies.jsonl index f262385ac..8689f00f1 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/ontologies.jsonl +++ b/testcases_expected_output/annotation-properties/gitIssue502/ontologies.jsonl @@ -1,4 +1,5 @@ -{"_json":"{\"base_uri\":[\"http://www.w3.org/2000/01/rdf-schema#\"],\"directAncestor\":[],\"exportsTo\":[\"owl\",\"gitissue502\"],\"http://purl.org/dc/elements/1.1/title\":{\"type\":[\"literal\"],\"value\":\"The RDF Schema vocabulary (RDFS)\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Ontology\",\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"http://www.w3.org/2000/01/rdf-schema-more\",\"imported\":false,\"importsFrom\":[],\"iri\":\"http://www.w3.org/2000/01/rdf-schema#\",\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"The RDF Schema vocabulary (RDFS)\"},\"language\":{\"type\":[\"literal\"],\"value\":\"en\"},\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"entity\"]}},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"numberOfClasses\":{\"type\":[\"literal\"],\"value\":\"6\"},\"numberOfEntities\":{\"type\":[\"literal\"],\"value\":\"15\"},\"numberOfIndividuals\":{\"type\":[\"literal\"],\"value\":\"0\"},\"numberOfProperties\":{\"type\":[\"literal\"],\"value\":\"9\"},\"ontologyId\":\"rdfs\",\"ontology_purl\":\"https://www.w3.org/2000/01/rdf-schema\",\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The RDF Schema vocabulary (RDFS)\"},false,{\"type\":[\"literal\"],\"value\":\"en\"},{\"type\":[\"literal\"],\"value\":\"6\"},{\"type\":[\"literal\"],\"value\":\"15\"},{\"type\":[\"literal\"],\"value\":\"0\"},{\"type\":[\"literal\"],\"value\":\"9\"}],\"type\":[\"ontology\"]}","base_uri":["http://www.w3.org/2000/01/rdf-schema#"],"directAncestor":[],"exportsTo":["owl","gitissue502"],"http__//purl.org/dc/elements/1.1/title":"The RDF Schema vocabulary (RDFS)","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Ontology","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"http://www.w3.org/2000/01/rdf-schema-more","id":"rdfs+ontology+http://www.w3.org/2000/01/rdf-schema#","imported":"false","importsFrom":[],"iri":"http://www.w3.org/2000/01/rdf-schema#","isObsolete":"false","label":"The RDF Schema vocabulary (RDFS)","language":"en","numDescendants":"0.0","numHierarchicalDescendants":"0.0","numberOfClasses":"6","numberOfEntities":"15","numberOfIndividuals":"0","numberOfProperties":"9","ontologyId":"rdfs","ontology_purl":"https://www.w3.org/2000/01/rdf-schema","searchableAnnotationValues":["The RDF Schema vocabulary (RDFS)","false","en","6","15","0","9"],"type":["ontology"]} -{"_json":"{\"base_uri\":[\"http://www.w3.org/2002/07/owl#\"],\"definition\":{\"type\":[\"literal\"],\"value\":\"\\r\\n This ontology partially describes the built-in classes and\\r\\n properties that together form the basis of the RDF/XML syntax of OWL 2.\\r\\n The content of this ontology is based on Tables 6.1 and 6.2\\r\\n in Section 6.4 of the OWL 2 RDF-Based Semantics specification,\\r\\n available at http://www.w3.org/TR/owl2-rdf-based-semantics/.\\r\\n Please note that those tables do not include the different annotations\\r\\n (labels, comments and rdfs:isDefinedBy links) used in this file.\\r\\n Also note that the descriptions provided in this ontology do not\\r\\n provide a complete and correct formal description of either the syntax\\r\\n or the semantics of the introduced terms (please see the OWL 2\\r\\n recommendations for the complete and normative specifications).\\r\\n Furthermore, the information provided by this ontology may be\\r\\n misleading if not used with care. This ontology SHOULD NOT be imported\\r\\n into OWL ontologies. Importing this file into an OWL 2 DL ontology\\r\\n will cause it to become an OWL 2 Full ontology and may have other,\\r\\n unexpected, consequences.\\r\\n \"},\"directAncestor\":[],\"exportsTo\":[],\"http://purl.org/dc/elements/1.1/title\":{\"type\":[\"literal\"],\"value\":\"The OWL 2 Schema vocabulary (OWL 2)\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Ontology\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"\\r\\n This ontology partially describes the built-in classes and\\r\\n properties that together form the basis of the RDF/XML syntax of OWL 2.\\r\\n The content of this ontology is based on Tables 6.1 and 6.2\\r\\n in Section 6.4 of the OWL 2 RDF-Based Semantics specification,\\r\\n available at http://www.w3.org/TR/owl2-rdf-based-semantics/.\\r\\n Please note that those tables do not include the different annotations\\r\\n (labels, comments and rdfs:isDefinedBy links) used in this file.\\r\\n Also note that the descriptions provided in this ontology do not\\r\\n provide a complete and correct formal description of either the syntax\\r\\n or the semantics of the introduced terms (please see the OWL 2\\r\\n recommendations for the complete and normative specifications).\\r\\n Furthermore, the information provided by this ontology may be\\r\\n misleading if not used with care. This ontology SHOULD NOT be imported\\r\\n into OWL ontologies. Importing this file into an OWL 2 DL ontology\\r\\n will cause it to become an OWL 2 Full ontology and may have other,\\r\\n unexpected, consequences.\\r\\n \"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":[\"http://www.w3.org/TR/owl2-mapping-to-rdf/\",\"http://www.w3.org/TR/owl2-rdf-based-semantics/\",\"http://www.w3.org/TR/owl2-syntax/\"],\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":[\"http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-classes\",\"http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-properties\"],\"http://www.w3.org/2002/07/owl#imports\":\"http://www.w3.org/2000/01/rdf-schema\",\"http://www.w3.org/2002/07/owl#versionIRI\":\"http://www.w3.org/2002/07/owl\",\"http://www.w3.org/2002/07/owl#versionInfo\":{\"type\":[\"literal\"],\"value\":\"$Date: 2009/11/15 10:54:12 $\"},\"http://www.w3.org/2003/g/data-view#namespaceTransformation\":\"http://dev.w3.org/cvsweb/2009/owl-grddl/owx2rdf.xsl\",\"imported\":false,\"importsFrom\":[\"rdfs\"],\"iri\":\"http://www.w3.org/2002/07/owl\",\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"The OWL 2 Schema vocabulary (OWL 2)\"},\"language\":{\"type\":[\"literal\"],\"value\":\"en\"},\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"entity\"]}},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"numberOfClasses\":{\"type\":[\"literal\"],\"value\":\"32\"},\"numberOfEntities\":{\"type\":[\"literal\"],\"value\":\"90\"},\"numberOfIndividuals\":{\"type\":[\"literal\"],\"value\":\"0\"},\"numberOfProperties\":{\"type\":[\"literal\"],\"value\":\"58\"},\"ontologyId\":\"owl\",\"ontology_purl\":\"https://www.w3.org/2002/07/owl\",\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The OWL 2 Schema vocabulary (OWL 2)\"},false,{\"type\":[\"literal\"],\"value\":\"en\"},{\"type\":[\"literal\"],\"value\":\"32\"},{\"type\":[\"literal\"],\"value\":\"90\"},{\"type\":[\"literal\"],\"value\":\"0\"},{\"type\":[\"literal\"],\"value\":\"58\"}],\"type\":[\"ontology\"]}","base_uri":["http://www.w3.org/2002/07/owl#"],"definition":"\r\n This ontology partially describes the built-in classes and\r\n properties that together form the basis of the RDF/XML syntax of OWL 2.\r\n The content of this ontology is based on Tables 6.1 and 6.2\r\n in Section 6.4 of the OWL 2 RDF-Based Semantics specification,\r\n available at http://www.w3.org/TR/owl2-rdf-based-semantics/.\r\n Please note that those tables do not include the different annotations\r\n (labels, comments and rdfs:isDefinedBy links) used in this file.\r\n Also note that the descriptions provided in this ontology do not\r\n provide a complete and correct formal description of either the syntax\r\n or the semantics of the introduced terms (please see the OWL 2\r\n recommendations for the complete and normative specifications).\r\n Furthermore, the information provided by this ontology may be\r\n misleading if not used with care. This ontology SHOULD NOT be imported\r\n into OWL ontologies. Importing this file into an OWL 2 DL ontology\r\n will cause it to become an OWL 2 Full ontology and may have other,\r\n unexpected, consequences.\r\n ","directAncestor":[],"exportsTo":[],"http__//purl.org/dc/elements/1.1/title":"The OWL 2 Schema vocabulary (OWL 2)","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Ontology","http__//www.w3.org/2000/01/rdf-schema#comment":"\r\n This ontology partially describes the built-in classes and\r\n properties that together form the basis of the RDF/XML syntax of OWL 2.\r\n The content of this ontology is based on Tables 6.1 and 6.2\r\n in Section 6.4 of the OWL 2 RDF-Based Semantics specification,\r\n available at http://www.w3.org/TR/owl2-rdf-based-semantics/.\r\n Please note that those tables do not include the different annotations\r\n (labels, comments and rdfs:isDefinedBy links) used in this file.\r\n Also note that the descriptions provided in this ontology do not\r\n provide a complete and correct formal description of either the syntax\r\n or the semantics of the introduced terms (please see the OWL 2\r\n recommendations for the complete and normative specifications).\r\n Furthermore, the information provided by this ontology may be\r\n misleading if not used with care. This ontology SHOULD NOT be imported\r\n into OWL ontologies. Importing this file into an OWL 2 DL ontology\r\n will cause it to become an OWL 2 Full ontology and may have other,\r\n unexpected, consequences.\r\n ","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":["http://www.w3.org/TR/owl2-mapping-to-rdf/","http://www.w3.org/TR/owl2-rdf-based-semantics/","http://www.w3.org/TR/owl2-syntax/"],"http__//www.w3.org/2000/01/rdf-schema#seeAlso":["http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-classes","http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-properties"],"http__//www.w3.org/2002/07/owl#imports":"http://www.w3.org/2000/01/rdf-schema","http__//www.w3.org/2002/07/owl#versionIRI":"http://www.w3.org/2002/07/owl","http__//www.w3.org/2002/07/owl#versionInfo":"$Date: 2009/11/15 10:54:12 $","http__//www.w3.org/2003/g/data-view#namespaceTransformation":"http://dev.w3.org/cvsweb/2009/owl-grddl/owx2rdf.xsl","id":"owl+ontology+http://www.w3.org/2002/07/owl","imported":"false","importsFrom":["rdfs"],"iri":"http://www.w3.org/2002/07/owl","isObsolete":"false","label":"The OWL 2 Schema vocabulary (OWL 2)","language":"en","numDescendants":"0.0","numHierarchicalDescendants":"0.0","numberOfClasses":"32","numberOfEntities":"90","numberOfIndividuals":"0","numberOfProperties":"58","ontologyId":"owl","ontology_purl":"https://www.w3.org/2002/07/owl","searchableAnnotationValues":["The OWL 2 Schema vocabulary (OWL 2)","false","en","32","90","0","58"],"type":["ontology"]} -{"_json":"{\"base_uri\":[\"http://www.w3.org/2004/02/skos/core#\"],\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \\u0027folksonomies\\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.\",\"lang\":\"en\"},\"directAncestor\":[],\"exportsTo\":[\"gitissue502\"],\"http://purl.org/dc/terms/contributor\":[{\"type\":[\"literal\"],\"value\":\"Dave Beckett\"},{\"type\":[\"literal\"],\"value\":\"Nikki Rogers\"},{\"type\":[\"literal\"],\"value\":\"Participants in W3C\\u0027s Semantic Web Deployment Working Group.\"}],\"http://purl.org/dc/terms/creator\":[{\"type\":[\"literal\"],\"value\":\"Alistair Miles\"},{\"type\":[\"literal\"],\"value\":\"Sean Bechhofer\"}],\"http://purl.org/dc/terms/description\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \\u0027folksonomies\\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.\",\"lang\":\"en\"},\"http://purl.org/dc/terms/title\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"SKOS Vocabulary\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Ontology\",\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"http://www.w3.org/TR/skos-reference/\",\"imported\":false,\"importsFrom\":[],\"iri\":\"http://www.w3.org/2004/02/skos/core\",\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"SKOS Vocabulary\",\"lang\":\"en\"},\"language\":{\"type\":[\"literal\"],\"value\":\"en\"},\"linkedEntities\":{\"http://purl.org/dc/terms/creator\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":false,\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"}},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"entity\"]}},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"numberOfClasses\":{\"type\":[\"literal\"],\"value\":\"6\"},\"numberOfEntities\":{\"type\":[\"literal\"],\"value\":\"62\"},\"numberOfIndividuals\":{\"type\":[\"literal\"],\"value\":\"0\"},\"numberOfProperties\":{\"type\":[\"literal\"],\"value\":\"56\"},\"ontologyId\":\"skos\",\"ontology_purl\":\"http://www.w3.org/TR/skos-reference/skos.rdf\",\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Dave Beckett\"},{\"type\":[\"literal\"],\"value\":\"Nikki Rogers\"},{\"type\":[\"literal\"],\"value\":\"Participants in W3C\\u0027s Semantic Web Deployment Working Group.\"},{\"type\":[\"literal\"],\"value\":\"Alistair Miles\"},{\"type\":[\"literal\"],\"value\":\"Sean Bechhofer\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \\u0027folksonomies\\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"SKOS Vocabulary\",\"lang\":\"en\"},false,{\"type\":[\"literal\"],\"value\":\"en\"},{\"type\":[\"literal\"],\"value\":\"6\"},{\"type\":[\"literal\"],\"value\":\"62\"},{\"type\":[\"literal\"],\"value\":\"0\"},{\"type\":[\"literal\"],\"value\":\"56\"}],\"type\":[\"ontology\"]}","base_uri":["http://www.w3.org/2004/02/skos/core#"],"definition":"An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.","directAncestor":[],"exportsTo":["gitissue502"],"http__//purl.org/dc/terms/contributor":["Dave Beckett","Nikki Rogers","Participants in W3C\u0027s Semantic Web Deployment Working Group."],"http__//purl.org/dc/terms/creator":["Alistair Miles","Sean Bechhofer"],"http__//purl.org/dc/terms/description":"An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.","http__//purl.org/dc/terms/title":"SKOS Vocabulary","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Ontology","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"http://www.w3.org/TR/skos-reference/","id":"skos+ontology+http://www.w3.org/2004/02/skos/core","imported":"false","importsFrom":[],"iri":"http://www.w3.org/2004/02/skos/core","isObsolete":"false","label":"SKOS Vocabulary","language":"en","numDescendants":"0.0","numHierarchicalDescendants":"0.0","numberOfClasses":"6","numberOfEntities":"62","numberOfIndividuals":"0","numberOfProperties":"56","ontologyId":"skos","ontology_purl":"http://www.w3.org/TR/skos-reference/skos.rdf","searchableAnnotationValues":["Dave Beckett","Nikki Rogers","Participants in W3C\u0027s Semantic Web Deployment Working Group.","Alistair Miles","Sean Bechhofer","An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.","SKOS Vocabulary","false","en","6","62","0","56"],"type":["ontology"]} -{"_json":"{\"directAncestor\":[],\"exportsTo\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Ontology\",\"imported\":false,\"importsFrom\":[\"skos\",\"rdfs\"],\"iri\":\"http://purl.obolibrary.org/obo/mondo.owl\",\"isObsolete\":false,\"language\":{\"type\":[\"literal\"],\"value\":\"en\"},\"linkedEntities\":{},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"numberOfClasses\":{\"type\":[\"literal\"],\"value\":\"249\"},\"numberOfEntities\":{\"type\":[\"literal\"],\"value\":\"412\"},\"numberOfIndividuals\":{\"type\":[\"literal\"],\"value\":\"0\"},\"numberOfProperties\":{\"type\":[\"literal\"],\"value\":\"163\"},\"ontologyId\":\"gitissue502\",\"ontology_purl\":\"./testcases/annotation-properties/gitIssue502.owl\",\"preferredPrefix\":\"gitIssue502\",\"searchableAnnotationValues\":[false,{\"type\":[\"literal\"],\"value\":\"en\"},{\"type\":[\"literal\"],\"value\":\"249\"},{\"type\":[\"literal\"],\"value\":\"412\"},{\"type\":[\"literal\"],\"value\":\"0\"},{\"type\":[\"literal\"],\"value\":\"163\"}],\"type\":[\"ontology\"]}","directAncestor":[],"exportsTo":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Ontology","id":"gitissue502+ontology+http://purl.obolibrary.org/obo/mondo.owl","imported":"false","importsFrom":["skos","rdfs"],"iri":"http://purl.obolibrary.org/obo/mondo.owl","isObsolete":"false","language":"en","numDescendants":"0.0","numHierarchicalDescendants":"0.0","numberOfClasses":"249","numberOfEntities":"412","numberOfIndividuals":"0","numberOfProperties":"163","ontologyId":"gitissue502","ontology_purl":"./testcases/annotation-properties/gitIssue502.owl","preferredPrefix":"gitIssue502","searchableAnnotationValues":["false","en","249","412","0","163"],"type":["ontology"]} +{"_json":"{\"base_uri\":[\"http://www.w3.org/2000/01/rdf-schema#\"],\"directAncestor\":[],\"exportsTo\":[\"owl\",\"gitissue502\"],\"http://purl.org/dc/elements/1.1/title\":{\"type\":[\"literal\"],\"value\":\"The RDF Schema vocabulary (RDFS)\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Ontology\",\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"http://www.w3.org/2000/01/rdf-schema-more\",\"imported\":false,\"importsFrom\":[],\"iri\":\"http://www.w3.org/2000/01/rdf-schema#\",\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"The RDF Schema vocabulary (RDFS)\"},\"language\":{\"type\":[\"literal\"],\"value\":\"en\"},\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:seeAlso\"},\"type\":[\"property\",\"entity\"]}},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"numberOfClasses\":{\"type\":[\"literal\"],\"value\":\"6\"},\"numberOfEntities\":{\"type\":[\"literal\"],\"value\":\"15\"},\"numberOfIndividuals\":{\"type\":[\"literal\"],\"value\":\"0\"},\"numberOfProperties\":{\"type\":[\"literal\"],\"value\":\"9\"},\"ontologyId\":\"rdfs\",\"ontology_purl\":\"https://www.w3.org/2000/01/rdf-schema\",\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The RDF Schema vocabulary (RDFS)\"},false,{\"type\":[\"literal\"],\"value\":\"en\"},{\"type\":[\"literal\"],\"value\":\"6\"},{\"type\":[\"literal\"],\"value\":\"15\"},{\"type\":[\"literal\"],\"value\":\"0\"},{\"type\":[\"literal\"],\"value\":\"9\"}],\"type\":[\"ontology\"]}","base_uri":["http://www.w3.org/2000/01/rdf-schema#"],"directAncestor":[],"exportsTo":["owl","gitissue502"],"http__//purl.org/dc/elements/1.1/title":"The RDF Schema vocabulary (RDFS)","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Ontology","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"http://www.w3.org/2000/01/rdf-schema-more","id":"rdfs+ontology+http://www.w3.org/2000/01/rdf-schema#","imported":"false","importsFrom":[],"iri":"http://www.w3.org/2000/01/rdf-schema#","isObsolete":"false","label":"The RDF Schema vocabulary (RDFS)","language":"en","numDescendants":"0.0","numHierarchicalDescendants":"0.0","numberOfClasses":"6","numberOfEntities":"15","numberOfIndividuals":"0","numberOfProperties":"9","ontologyId":"rdfs","ontology_purl":"https://www.w3.org/2000/01/rdf-schema","searchableAnnotationValues":["The RDF Schema vocabulary (RDFS)","false","en","6","15","0","9"],"type":["ontology"]} +{"_json":"{\"base_uri\":[\"http://www.w3.org/2002/07/owl#\"],\"definition\":{\"type\":[\"literal\"],\"value\":\"\\r\\n This ontology partially describes the built-in classes and\\r\\n properties that together form the basis of the RDF/XML syntax of OWL 2.\\r\\n The content of this ontology is based on Tables 6.1 and 6.2\\r\\n in Section 6.4 of the OWL 2 RDF-Based Semantics specification,\\r\\n available at http://www.w3.org/TR/owl2-rdf-based-semantics/.\\r\\n Please note that those tables do not include the different annotations\\r\\n (labels, comments and rdfs:isDefinedBy links) used in this file.\\r\\n Also note that the descriptions provided in this ontology do not\\r\\n provide a complete and correct formal description of either the syntax\\r\\n or the semantics of the introduced terms (please see the OWL 2\\r\\n recommendations for the complete and normative specifications).\\r\\n Furthermore, the information provided by this ontology may be\\r\\n misleading if not used with care. This ontology SHOULD NOT be imported\\r\\n into OWL ontologies. Importing this file into an OWL 2 DL ontology\\r\\n will cause it to become an OWL 2 Full ontology and may have other,\\r\\n unexpected, consequences.\\r\\n \"},\"directAncestor\":[],\"exportsTo\":[],\"http://purl.org/dc/elements/1.1/title\":{\"type\":[\"literal\"],\"value\":\"The OWL 2 Schema vocabulary (OWL 2)\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Ontology\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"\\r\\n This ontology partially describes the built-in classes and\\r\\n properties that together form the basis of the RDF/XML syntax of OWL 2.\\r\\n The content of this ontology is based on Tables 6.1 and 6.2\\r\\n in Section 6.4 of the OWL 2 RDF-Based Semantics specification,\\r\\n available at http://www.w3.org/TR/owl2-rdf-based-semantics/.\\r\\n Please note that those tables do not include the different annotations\\r\\n (labels, comments and rdfs:isDefinedBy links) used in this file.\\r\\n Also note that the descriptions provided in this ontology do not\\r\\n provide a complete and correct formal description of either the syntax\\r\\n or the semantics of the introduced terms (please see the OWL 2\\r\\n recommendations for the complete and normative specifications).\\r\\n Furthermore, the information provided by this ontology may be\\r\\n misleading if not used with care. This ontology SHOULD NOT be imported\\r\\n into OWL ontologies. Importing this file into an OWL 2 DL ontology\\r\\n will cause it to become an OWL 2 Full ontology and may have other,\\r\\n unexpected, consequences.\\r\\n \"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":[\"http://www.w3.org/TR/owl2-mapping-to-rdf/\",\"http://www.w3.org/TR/owl2-rdf-based-semantics/\",\"http://www.w3.org/TR/owl2-syntax/\"],\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":[\"http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-classes\",\"http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-properties\"],\"http://www.w3.org/2002/07/owl#imports\":\"http://www.w3.org/2000/01/rdf-schema\",\"http://www.w3.org/2002/07/owl#versionIRI\":\"http://www.w3.org/2002/07/owl\",\"http://www.w3.org/2002/07/owl#versionInfo\":{\"type\":[\"literal\"],\"value\":\"$Date: 2009/11/15 10:54:12 $\"},\"http://www.w3.org/2003/g/data-view#namespaceTransformation\":\"http://dev.w3.org/cvsweb/2009/owl-grddl/owx2rdf.xsl\",\"imported\":false,\"importsFrom\":[\"rdfs\"],\"iri\":\"http://www.w3.org/2002/07/owl\",\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"The OWL 2 Schema vocabulary (OWL 2)\"},\"language\":{\"type\":[\"literal\"],\"value\":\"en\"},\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:seeAlso\"},\"type\":[\"property\",\"entity\"]}},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"numberOfClasses\":{\"type\":[\"literal\"],\"value\":\"32\"},\"numberOfEntities\":{\"type\":[\"literal\"],\"value\":\"90\"},\"numberOfIndividuals\":{\"type\":[\"literal\"],\"value\":\"0\"},\"numberOfProperties\":{\"type\":[\"literal\"],\"value\":\"58\"},\"ontologyId\":\"owl\",\"ontology_purl\":\"https://www.w3.org/2002/07/owl\",\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The OWL 2 Schema vocabulary (OWL 2)\"},false,{\"type\":[\"literal\"],\"value\":\"en\"},{\"type\":[\"literal\"],\"value\":\"32\"},{\"type\":[\"literal\"],\"value\":\"90\"},{\"type\":[\"literal\"],\"value\":\"0\"},{\"type\":[\"literal\"],\"value\":\"58\"}],\"type\":[\"ontology\"]}","base_uri":["http://www.w3.org/2002/07/owl#"],"definition":"\r\n This ontology partially describes the built-in classes and\r\n properties that together form the basis of the RDF/XML syntax of OWL 2.\r\n The content of this ontology is based on Tables 6.1 and 6.2\r\n in Section 6.4 of the OWL 2 RDF-Based Semantics specification,\r\n available at http://www.w3.org/TR/owl2-rdf-based-semantics/.\r\n Please note that those tables do not include the different annotations\r\n (labels, comments and rdfs:isDefinedBy links) used in this file.\r\n Also note that the descriptions provided in this ontology do not\r\n provide a complete and correct formal description of either the syntax\r\n or the semantics of the introduced terms (please see the OWL 2\r\n recommendations for the complete and normative specifications).\r\n Furthermore, the information provided by this ontology may be\r\n misleading if not used with care. This ontology SHOULD NOT be imported\r\n into OWL ontologies. Importing this file into an OWL 2 DL ontology\r\n will cause it to become an OWL 2 Full ontology and may have other,\r\n unexpected, consequences.\r\n ","directAncestor":[],"exportsTo":[],"http__//purl.org/dc/elements/1.1/title":"The OWL 2 Schema vocabulary (OWL 2)","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Ontology","http__//www.w3.org/2000/01/rdf-schema#comment":"\r\n This ontology partially describes the built-in classes and\r\n properties that together form the basis of the RDF/XML syntax of OWL 2.\r\n The content of this ontology is based on Tables 6.1 and 6.2\r\n in Section 6.4 of the OWL 2 RDF-Based Semantics specification,\r\n available at http://www.w3.org/TR/owl2-rdf-based-semantics/.\r\n Please note that those tables do not include the different annotations\r\n (labels, comments and rdfs:isDefinedBy links) used in this file.\r\n Also note that the descriptions provided in this ontology do not\r\n provide a complete and correct formal description of either the syntax\r\n or the semantics of the introduced terms (please see the OWL 2\r\n recommendations for the complete and normative specifications).\r\n Furthermore, the information provided by this ontology may be\r\n misleading if not used with care. This ontology SHOULD NOT be imported\r\n into OWL ontologies. Importing this file into an OWL 2 DL ontology\r\n will cause it to become an OWL 2 Full ontology and may have other,\r\n unexpected, consequences.\r\n ","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":["http://www.w3.org/TR/owl2-mapping-to-rdf/","http://www.w3.org/TR/owl2-rdf-based-semantics/","http://www.w3.org/TR/owl2-syntax/"],"http__//www.w3.org/2000/01/rdf-schema#seeAlso":["http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-classes","http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-properties"],"http__//www.w3.org/2002/07/owl#imports":"http://www.w3.org/2000/01/rdf-schema","http__//www.w3.org/2002/07/owl#versionIRI":"http://www.w3.org/2002/07/owl","http__//www.w3.org/2002/07/owl#versionInfo":"$Date: 2009/11/15 10:54:12 $","http__//www.w3.org/2003/g/data-view#namespaceTransformation":"http://dev.w3.org/cvsweb/2009/owl-grddl/owx2rdf.xsl","id":"owl+ontology+http://www.w3.org/2002/07/owl","imported":"false","importsFrom":["rdfs"],"iri":"http://www.w3.org/2002/07/owl","isObsolete":"false","label":"The OWL 2 Schema vocabulary (OWL 2)","language":"en","numDescendants":"0.0","numHierarchicalDescendants":"0.0","numberOfClasses":"32","numberOfEntities":"90","numberOfIndividuals":"0","numberOfProperties":"58","ontologyId":"owl","ontology_purl":"https://www.w3.org/2002/07/owl","searchableAnnotationValues":["The OWL 2 Schema vocabulary (OWL 2)","false","en","32","90","0","58"],"type":["ontology"]} +{"_json":"{\"base_uri\":[\"http://www.w3.org/2004/02/skos/core#\"],\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \\u0027folksonomies\\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.\",\"lang\":\"en\"},\"directAncestor\":[],\"exportsTo\":[\"gitissue502\"],\"http://purl.org/dc/terms/contributor\":[{\"type\":[\"literal\"],\"value\":\"Dave Beckett\"},{\"type\":[\"literal\"],\"value\":\"Nikki Rogers\"},{\"type\":[\"literal\"],\"value\":\"Participants in W3C\\u0027s Semantic Web Deployment Working Group.\"}],\"http://purl.org/dc/terms/creator\":[{\"type\":[\"literal\"],\"value\":\"Alistair Miles\"},{\"type\":[\"literal\"],\"value\":\"Sean Bechhofer\"}],\"http://purl.org/dc/terms/description\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \\u0027folksonomies\\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.\",\"lang\":\"en\"},\"http://purl.org/dc/terms/title\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"SKOS Vocabulary\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Ontology\",\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"http://www.w3.org/TR/skos-reference/\",\"imported\":false,\"importsFrom\":[],\"iri\":\"http://www.w3.org/2004/02/skos/core\",\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"SKOS Vocabulary\",\"lang\":\"en\"},\"language\":{\"type\":[\"literal\"],\"value\":\"en\"},\"linkedEntities\":{\"http://purl.org/dc/terms/creator\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":false,\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"}},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:seeAlso\"},\"type\":[\"property\",\"entity\"]}},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"numberOfClasses\":{\"type\":[\"literal\"],\"value\":\"6\"},\"numberOfEntities\":{\"type\":[\"literal\"],\"value\":\"62\"},\"numberOfIndividuals\":{\"type\":[\"literal\"],\"value\":\"0\"},\"numberOfProperties\":{\"type\":[\"literal\"],\"value\":\"56\"},\"ontologyId\":\"skos\",\"ontology_purl\":\"http://www.w3.org/TR/skos-reference/skos.rdf\",\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Dave Beckett\"},{\"type\":[\"literal\"],\"value\":\"Nikki Rogers\"},{\"type\":[\"literal\"],\"value\":\"Participants in W3C\\u0027s Semantic Web Deployment Working Group.\"},{\"type\":[\"literal\"],\"value\":\"Alistair Miles\"},{\"type\":[\"literal\"],\"value\":\"Sean Bechhofer\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \\u0027folksonomies\\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"SKOS Vocabulary\",\"lang\":\"en\"},false,{\"type\":[\"literal\"],\"value\":\"en\"},{\"type\":[\"literal\"],\"value\":\"6\"},{\"type\":[\"literal\"],\"value\":\"62\"},{\"type\":[\"literal\"],\"value\":\"0\"},{\"type\":[\"literal\"],\"value\":\"56\"}],\"type\":[\"ontology\"]}","base_uri":["http://www.w3.org/2004/02/skos/core#"],"definition":"An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.","directAncestor":[],"exportsTo":["gitissue502"],"http__//purl.org/dc/terms/contributor":["Dave Beckett","Nikki Rogers","Participants in W3C\u0027s Semantic Web Deployment Working Group."],"http__//purl.org/dc/terms/creator":["Alistair Miles","Sean Bechhofer"],"http__//purl.org/dc/terms/description":"An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.","http__//purl.org/dc/terms/title":"SKOS Vocabulary","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Ontology","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"http://www.w3.org/TR/skos-reference/","id":"skos+ontology+http://www.w3.org/2004/02/skos/core","imported":"false","importsFrom":[],"iri":"http://www.w3.org/2004/02/skos/core","isObsolete":"false","label":"SKOS Vocabulary","language":"en","numDescendants":"0.0","numHierarchicalDescendants":"0.0","numberOfClasses":"6","numberOfEntities":"62","numberOfIndividuals":"0","numberOfProperties":"56","ontologyId":"skos","ontology_purl":"http://www.w3.org/TR/skos-reference/skos.rdf","searchableAnnotationValues":["Dave Beckett","Nikki Rogers","Participants in W3C\u0027s Semantic Web Deployment Working Group.","Alistair Miles","Sean Bechhofer","An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.","SKOS Vocabulary","false","en","6","62","0","56"],"type":["ontology"]} +{"_json":"{\"directAncestor\":[],\"exportsTo\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Ontology\",\"imported\":false,\"importsFrom\":[\"oio\",\"skos\",\"rdfs\"],\"iri\":\"http://purl.obolibrary.org/obo/mondo.owl\",\"isObsolete\":false,\"language\":{\"type\":[\"literal\"],\"value\":\"en\"},\"linkedEntities\":{},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"numberOfClasses\":{\"type\":[\"literal\"],\"value\":\"249\"},\"numberOfEntities\":{\"type\":[\"literal\"],\"value\":\"412\"},\"numberOfIndividuals\":{\"type\":[\"literal\"],\"value\":\"0\"},\"numberOfProperties\":{\"type\":[\"literal\"],\"value\":\"163\"},\"ontologyId\":\"gitissue502\",\"ontology_purl\":\"./testcases/annotation-properties/gitIssue502.owl\",\"preferredPrefix\":\"gitIssue502\",\"searchableAnnotationValues\":[false,{\"type\":[\"literal\"],\"value\":\"en\"},{\"type\":[\"literal\"],\"value\":\"249\"},{\"type\":[\"literal\"],\"value\":\"412\"},{\"type\":[\"literal\"],\"value\":\"0\"},{\"type\":[\"literal\"],\"value\":\"163\"}],\"type\":[\"ontology\"]}","directAncestor":[],"exportsTo":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Ontology","id":"gitissue502+ontology+http://purl.obolibrary.org/obo/mondo.owl","imported":"false","importsFrom":["oio","skos","rdfs"],"iri":"http://purl.obolibrary.org/obo/mondo.owl","isObsolete":"false","language":"en","numDescendants":"0.0","numHierarchicalDescendants":"0.0","numberOfClasses":"249","numberOfEntities":"412","numberOfIndividuals":"0","numberOfProperties":"163","ontologyId":"gitissue502","ontology_purl":"./testcases/annotation-properties/gitIssue502.owl","preferredPrefix":"gitIssue502","searchableAnnotationValues":["false","en","249","412","0","163"],"type":["ontology"]} +{"_json":"{\"base_uri\":[\"http://www.geneontology.org/formats/oboInOwl#\"],\"definition\":[{\"type\":[\"literal\"],\"value\":\"OBO Format metamodel. This meta-ontology is self-describing. OBO metamodel properties are described using OBO metamodel properties\"},{\"type\":[\"literal\"],\"value\":\"\\n This is an OWL translation of an ontology whose native representational form is .obo. The translation was performed using the oboInOwl xslt library. For details, see http://www.berkeleybop.org/obo-conv.cgi\\n \"}],\"directAncestor\":[],\"exportsTo\":[\"gitissue502\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Ontology\",\"http://www.w3.org/2000/01/rdf-schema#comment\":[{\"type\":[\"literal\"],\"value\":\"OBO Format metamodel. This meta-ontology is self-describing. OBO metamodel properties are described using OBO metamodel properties\"},{\"type\":[\"literal\"],\"value\":\"\\n This is an OWL translation of an ontology whose native representational form is .obo. The translation was performed using the oboInOwl xslt library. For details, see http://www.berkeleybop.org/obo-conv.cgi\\n \"}],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"\"},\"imported\":false,\"importsFrom\":[],\"iri\":\"http://www.geneontology.org/formats/oboInOwl\",\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"\"},\"language\":{\"type\":[\"literal\"],\"value\":\"en\"},\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"numberOfClasses\":{\"type\":[\"literal\"],\"value\":\"12\"},\"numberOfEntities\":{\"type\":[\"literal\"],\"value\":\"56\"},\"numberOfIndividuals\":{\"type\":[\"literal\"],\"value\":\"0\"},\"numberOfProperties\":{\"type\":[\"literal\"],\"value\":\"44\"},\"ontologyId\":\"oio\",\"ontology_purl\":\"https://gist.githubusercontent.com/haideriqbal/4a2b1a9aa81d9fa26cae81e0b0b7730b/raw/527665128b9be9d7d6133f9a796379600151c737/oboInOwl.owl\",\"searchableAnnotationValues\":[false,{\"type\":[\"literal\"],\"value\":\"en\"},{\"type\":[\"literal\"],\"value\":\"12\"},{\"type\":[\"literal\"],\"value\":\"56\"},{\"type\":[\"literal\"],\"value\":\"0\"},{\"type\":[\"literal\"],\"value\":\"44\"}],\"type\":[\"ontology\"]}","base_uri":["http://www.geneontology.org/formats/oboInOwl#"],"definition":["OBO Format metamodel. This meta-ontology is self-describing. OBO metamodel properties are described using OBO metamodel properties","\n This is an OWL translation of an ontology whose native representational form is .obo. The translation was performed using the oboInOwl xslt library. For details, see http://www.berkeleybop.org/obo-conv.cgi\n "],"directAncestor":[],"exportsTo":["gitissue502"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Ontology","http__//www.w3.org/2000/01/rdf-schema#comment":["OBO Format metamodel. This meta-ontology is self-describing. OBO metamodel properties are described using OBO metamodel properties","\n This is an OWL translation of an ontology whose native representational form is .obo. The translation was performed using the oboInOwl xslt library. For details, see http://www.berkeleybop.org/obo-conv.cgi\n "],"http__//www.w3.org/2000/01/rdf-schema#label":"","id":"oio+ontology+http://www.geneontology.org/formats/oboInOwl","imported":"false","importsFrom":[],"iri":"http://www.geneontology.org/formats/oboInOwl","isObsolete":"false","label":"","language":"en","numDescendants":"0.0","numHierarchicalDescendants":"0.0","numberOfClasses":"12","numberOfEntities":"56","numberOfIndividuals":"0","numberOfProperties":"44","ontologyId":"oio","ontology_purl":"https://gist.githubusercontent.com/haideriqbal/4a2b1a9aa81d9fa26cae81e0b0b7730b/raw/527665128b9be9d7d6133f9a796379600151c737/oboInOwl.owl","searchableAnnotationValues":["false","en","12","56","0","44"],"type":["ontology"]} diff --git a/testcases_expected_output/annotation-properties/gitIssue502/ontologies_linked.json b/testcases_expected_output/annotation-properties/gitIssue502/ontologies_linked.json index 59972130f..e495b9982 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/ontologies_linked.json +++ b/testcases_expected_output/annotation-properties/gitIssue502/ontologies_linked.json @@ -114,7 +114,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "definition": { "type": [ @@ -185,7 +185,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS_Class" }, "isDefiningOntology": true, "definedBy": [ @@ -212,7 +212,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -235,7 +235,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -258,7 +258,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -281,7 +281,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -304,7 +304,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -323,7 +323,7 @@ "type": [ "literal" ], - "value": "Container" + "value": "RDFS:Container" }, "definition": { "type": [ @@ -394,7 +394,7 @@ "type": [ "literal" ], - "value": "Container" + "value": "RDFS_Container" }, "isDefiningOntology": true, "definedBy": [ @@ -421,7 +421,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -444,7 +444,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -467,7 +467,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -490,7 +490,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -513,7 +513,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -536,7 +536,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -555,7 +555,7 @@ "type": [ "literal" ], - "value": "ContainerMembershipProperty" + "value": "RDFS:ContainerMembershipProperty" }, "definition": { "type": [ @@ -624,7 +624,7 @@ "type": [ "literal" ], - "value": "ContainerMembershipProperty" + "value": "RDFS_ContainerMembershipProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -651,7 +651,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -674,7 +674,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -697,7 +697,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -720,7 +720,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -743,7 +743,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -762,7 +762,7 @@ "type": [ "literal" ], - "value": "Datatype" + "value": "RDFS:Datatype" }, "definition": { "type": [ @@ -839,7 +839,7 @@ "type": [ "literal" ], - "value": "Datatype" + "value": "RDFS_Datatype" }, "isDefiningOntology": true, "definedBy": [ @@ -866,7 +866,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -889,7 +889,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -912,7 +912,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -935,7 +935,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -958,7 +958,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -981,7 +981,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -1000,7 +1000,7 @@ "type": [ "literal" ], - "value": "Literal" + "value": "RDFS:Literal" }, "definition": { "type": [ @@ -1071,7 +1071,7 @@ "type": [ "literal" ], - "value": "Literal" + "value": "RDFS_Literal" }, "isDefiningOntology": true, "definedBy": [ @@ -1098,7 +1098,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -1121,7 +1121,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -1144,7 +1144,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -1167,7 +1167,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -1190,7 +1190,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -1213,7 +1213,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -1232,7 +1232,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "definition": { "type": [ @@ -1294,7 +1294,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS_Resource" }, "isDefiningOntology": true, "definedBy": [ @@ -1321,7 +1321,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -1344,7 +1344,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -1367,7 +1367,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -1390,7 +1390,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -1411,7 +1411,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "definition": { "type": [ @@ -1474,7 +1474,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS_comment" }, "isDefiningOntology": true, "definedBy": [ @@ -1501,7 +1501,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -1524,7 +1524,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -1547,7 +1547,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -1570,7 +1570,7 @@ "type": [ "literal" ], - "value": "Literal" + "value": "RDFS:Literal" }, "type": [ "class", @@ -1593,7 +1593,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -1616,7 +1616,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -1635,7 +1635,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "definition": { "type": [ @@ -1698,7 +1698,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS_domain" }, "isDefiningOntology": true, "definedBy": [ @@ -1725,7 +1725,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -1748,7 +1748,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -1771,7 +1771,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -1794,7 +1794,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -1817,7 +1817,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -1836,7 +1836,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "definition": { "type": [ @@ -1901,7 +1901,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS_isDefinedBy" }, "isDefiningOntology": true, "definedBy": [ @@ -1928,7 +1928,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -1951,7 +1951,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -1974,7 +1974,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -1997,7 +1997,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -2020,7 +2020,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -2043,7 +2043,7 @@ "type": [ "literal" ], - "value": "seeAlso" + "value": "RDFS:seeAlso" }, "type": [ "property", @@ -2066,7 +2066,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -2085,7 +2085,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "definition": { "type": [ @@ -2148,7 +2148,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS_label" }, "isDefiningOntology": true, "definedBy": [ @@ -2176,7 +2176,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -2199,7 +2199,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -2222,7 +2222,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -2245,7 +2245,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -2268,7 +2268,7 @@ "type": [ "literal" ], - "value": "Literal" + "value": "RDFS:Literal" }, "type": [ "class", @@ -2291,7 +2291,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -2310,7 +2310,7 @@ "type": [ "literal" ], - "value": "member" + "value": "RDFS:member" }, "definition": { "type": [ @@ -2373,7 +2373,7 @@ "type": [ "literal" ], - "value": "member" + "value": "RDFS_member" }, "isDefiningOntology": true, "definedBy": [ @@ -2400,7 +2400,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -2423,7 +2423,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -2446,7 +2446,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -2469,7 +2469,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -2492,7 +2492,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -2515,7 +2515,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -2534,7 +2534,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "definition": { "type": [ @@ -2597,7 +2597,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS_range" }, "isDefiningOntology": true, "definedBy": [ @@ -2624,7 +2624,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -2647,7 +2647,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -2670,7 +2670,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -2693,7 +2693,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -2716,7 +2716,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -2735,7 +2735,7 @@ "type": [ "literal" ], - "value": "seeAlso" + "value": "RDFS:seeAlso" }, "definition": { "type": [ @@ -2798,7 +2798,7 @@ "type": [ "literal" ], - "value": "seeAlso" + "value": "RDFS_seeAlso" }, "isDefiningOntology": true, "definedBy": [ @@ -2825,7 +2825,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -2848,7 +2848,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -2871,7 +2871,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -2894,7 +2894,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -2917,7 +2917,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -2940,7 +2940,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -2959,7 +2959,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "definition": { "type": [ @@ -3022,7 +3022,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS_subClassOf" }, "isDefiningOntology": true, "definedBy": [ @@ -3049,7 +3049,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -3072,7 +3072,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -3095,7 +3095,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -3118,7 +3118,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -3141,7 +3141,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -3164,7 +3164,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -3183,7 +3183,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "definition": { "type": [ @@ -3246,7 +3246,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS_subPropertyOf" }, "isDefiningOntology": true, "definedBy": [ @@ -3273,7 +3273,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -3296,7 +3296,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -3319,7 +3319,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -3342,7 +3342,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -3365,7 +3365,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -3393,7 +3393,7 @@ "type": [ "literal" ], - "value": "seeAlso" + "value": "RDFS:seeAlso" }, "type": [ "property", @@ -3544,7 +3544,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "definition": { "type": [ @@ -3615,7 +3615,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS_Class" }, "isDefiningOntology": false, "definedBy": [ @@ -3642,7 +3642,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -3665,7 +3665,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -3688,7 +3688,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -3711,7 +3711,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -3734,7 +3734,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -3753,7 +3753,7 @@ "type": [ "literal" ], - "value": "Container" + "value": "RDFS:Container" }, "definition": { "type": [ @@ -3824,7 +3824,7 @@ "type": [ "literal" ], - "value": "Container" + "value": "RDFS_Container" }, "isDefiningOntology": false, "definedBy": [ @@ -3851,7 +3851,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -3874,7 +3874,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -3897,7 +3897,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -3920,7 +3920,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -3943,7 +3943,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -3966,7 +3966,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -3985,7 +3985,7 @@ "type": [ "literal" ], - "value": "ContainerMembershipProperty" + "value": "RDFS:ContainerMembershipProperty" }, "definition": { "type": [ @@ -4054,7 +4054,7 @@ "type": [ "literal" ], - "value": "ContainerMembershipProperty" + "value": "RDFS_ContainerMembershipProperty" }, "isDefiningOntology": false, "definedBy": [ @@ -4081,7 +4081,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -4104,7 +4104,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -4127,7 +4127,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -4150,7 +4150,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -4173,7 +4173,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -4192,7 +4192,7 @@ "type": [ "literal" ], - "value": "Datatype" + "value": "RDFS:Datatype" }, "definition": { "type": [ @@ -4269,7 +4269,7 @@ "type": [ "literal" ], - "value": "Datatype" + "value": "RDFS_Datatype" }, "isDefiningOntology": false, "definedBy": [ @@ -4296,7 +4296,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -4319,7 +4319,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -4342,7 +4342,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -4365,7 +4365,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -4388,7 +4388,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -4411,7 +4411,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -4430,7 +4430,7 @@ "type": [ "literal" ], - "value": "Literal" + "value": "RDFS:Literal" }, "definition": { "type": [ @@ -4501,7 +4501,7 @@ "type": [ "literal" ], - "value": "Literal" + "value": "RDFS_Literal" }, "isDefiningOntology": false, "definedBy": [ @@ -4528,7 +4528,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -4551,7 +4551,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -4574,7 +4574,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -4597,7 +4597,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -4620,7 +4620,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -4643,7 +4643,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -4662,7 +4662,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "definition": { "type": [ @@ -4724,7 +4724,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS_Resource" }, "isDefiningOntology": false, "definedBy": [ @@ -4751,7 +4751,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -4774,7 +4774,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -4797,7 +4797,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -4820,7 +4820,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -4839,7 +4839,7 @@ "type": [ "literal" ], - "value": "AllDifferent" + "value": "OWL:AllDifferent" }, "definition": { "type": [ @@ -4910,7 +4910,7 @@ "type": [ "literal" ], - "value": "AllDifferent" + "value": "OWL_AllDifferent" }, "isDefiningOntology": true, "definedBy": [ @@ -4936,7 +4936,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -4959,7 +4959,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -4982,7 +4982,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -5005,7 +5005,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -5028,7 +5028,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -5051,7 +5051,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -5070,7 +5070,7 @@ "type": [ "literal" ], - "value": "AllDisjointClasses" + "value": "OWL:AllDisjointClasses" }, "definition": { "type": [ @@ -5141,7 +5141,7 @@ "type": [ "literal" ], - "value": "AllDisjointClasses" + "value": "OWL_AllDisjointClasses" }, "isDefiningOntology": true, "definedBy": [ @@ -5167,7 +5167,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -5190,7 +5190,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -5213,7 +5213,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -5236,7 +5236,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -5259,7 +5259,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -5282,7 +5282,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -5301,7 +5301,7 @@ "type": [ "literal" ], - "value": "AllDisjointProperties" + "value": "OWL:AllDisjointProperties" }, "definition": { "type": [ @@ -5372,7 +5372,7 @@ "type": [ "literal" ], - "value": "AllDisjointProperties" + "value": "OWL_AllDisjointProperties" }, "isDefiningOntology": true, "definedBy": [ @@ -5398,7 +5398,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -5421,7 +5421,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -5444,7 +5444,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -5467,7 +5467,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -5490,7 +5490,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -5513,7 +5513,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -5532,7 +5532,7 @@ "type": [ "literal" ], - "value": "Annotation" + "value": "OWL:Annotation" }, "definition": { "type": [ @@ -5603,7 +5603,7 @@ "type": [ "literal" ], - "value": "Annotation" + "value": "OWL_Annotation" }, "isDefiningOntology": true, "definedBy": [ @@ -5629,7 +5629,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -5652,7 +5652,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -5675,7 +5675,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -5698,7 +5698,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -5721,7 +5721,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -5744,7 +5744,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -5763,7 +5763,7 @@ "type": [ "literal" ], - "value": "AnnotationProperty" + "value": "OWL:AnnotationProperty" }, "definition": { "type": [ @@ -5832,7 +5832,7 @@ "type": [ "literal" ], - "value": "AnnotationProperty" + "value": "OWL_AnnotationProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -5858,7 +5858,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -5881,7 +5881,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -5904,7 +5904,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -5927,7 +5927,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -5950,7 +5950,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -5969,7 +5969,7 @@ "type": [ "literal" ], - "value": "AsymmetricProperty" + "value": "OWL:AsymmetricProperty" }, "definition": { "type": [ @@ -6040,7 +6040,7 @@ "type": [ "literal" ], - "value": "AsymmetricProperty" + "value": "OWL_AsymmetricProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -6066,7 +6066,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -6089,7 +6089,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -6112,7 +6112,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -6135,7 +6135,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -6158,7 +6158,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -6177,7 +6177,7 @@ "type": [ "literal" ], - "value": "Axiom" + "value": "OWL:Axiom" }, "definition": { "type": [ @@ -6248,7 +6248,7 @@ "type": [ "literal" ], - "value": "Axiom" + "value": "OWL_Axiom" }, "isDefiningOntology": true, "definedBy": [ @@ -6274,7 +6274,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -6297,7 +6297,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -6320,7 +6320,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -6343,7 +6343,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -6366,7 +6366,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -6389,7 +6389,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -6408,7 +6408,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "OWL:Class" }, "definition": { "type": [ @@ -6485,7 +6485,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "OWL_Class" }, "isDefiningOntology": true, "definedBy": [ @@ -6511,7 +6511,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -6534,7 +6534,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -6557,7 +6557,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -6580,7 +6580,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -6603,7 +6603,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -6626,7 +6626,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -6645,7 +6645,7 @@ "type": [ "literal" ], - "value": "DataRange" + "value": "OWL:DataRange" }, "definition": { "type": [ @@ -6724,7 +6724,7 @@ "type": [ "literal" ], - "value": "DataRange" + "value": "OWL_DataRange" }, "isDefiningOntology": true, "definedBy": [ @@ -6750,7 +6750,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -6773,7 +6773,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -6796,7 +6796,7 @@ "type": [ "literal" ], - "value": "Datatype" + "value": "RDFS:Datatype" }, "type": [ "class", @@ -6819,7 +6819,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -6842,7 +6842,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -6865,7 +6865,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -6888,7 +6888,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -6907,7 +6907,7 @@ "type": [ "literal" ], - "value": "DatatypeProperty" + "value": "OWL:DatatypeProperty" }, "definition": { "type": [ @@ -6976,7 +6976,7 @@ "type": [ "literal" ], - "value": "DatatypeProperty" + "value": "OWL_DatatypeProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -7002,7 +7002,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -7025,7 +7025,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -7048,7 +7048,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -7071,7 +7071,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -7094,7 +7094,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -7113,7 +7113,7 @@ "type": [ "literal" ], - "value": "DeprecatedClass" + "value": "OWL:DeprecatedClass" }, "definition": { "type": [ @@ -7190,7 +7190,7 @@ "type": [ "literal" ], - "value": "DeprecatedClass" + "value": "OWL_DeprecatedClass" }, "isDefiningOntology": true, "definedBy": [ @@ -7216,7 +7216,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -7239,7 +7239,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -7262,7 +7262,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -7285,7 +7285,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -7308,7 +7308,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -7331,7 +7331,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -7350,7 +7350,7 @@ "type": [ "literal" ], - "value": "DeprecatedProperty" + "value": "OWL:DeprecatedProperty" }, "definition": { "type": [ @@ -7419,7 +7419,7 @@ "type": [ "literal" ], - "value": "DeprecatedProperty" + "value": "OWL_DeprecatedProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -7445,7 +7445,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -7468,7 +7468,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -7491,7 +7491,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -7514,7 +7514,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -7537,7 +7537,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -7556,7 +7556,7 @@ "type": [ "literal" ], - "value": "FunctionalProperty" + "value": "OWL:FunctionalProperty" }, "definition": { "type": [ @@ -7625,7 +7625,7 @@ "type": [ "literal" ], - "value": "FunctionalProperty" + "value": "OWL_FunctionalProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -7651,7 +7651,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -7674,7 +7674,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -7697,7 +7697,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -7720,7 +7720,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -7743,7 +7743,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -7762,7 +7762,7 @@ "type": [ "literal" ], - "value": "InverseFunctionalProperty" + "value": "OWL:InverseFunctionalProperty" }, "definition": { "type": [ @@ -7833,7 +7833,7 @@ "type": [ "literal" ], - "value": "InverseFunctionalProperty" + "value": "OWL_InverseFunctionalProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -7859,7 +7859,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -7882,7 +7882,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -7905,7 +7905,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -7928,7 +7928,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -7951,7 +7951,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -7970,7 +7970,7 @@ "type": [ "literal" ], - "value": "IrreflexiveProperty" + "value": "OWL:IrreflexiveProperty" }, "definition": { "type": [ @@ -8041,7 +8041,7 @@ "type": [ "literal" ], - "value": "IrreflexiveProperty" + "value": "OWL_IrreflexiveProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -8067,7 +8067,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -8090,7 +8090,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -8113,7 +8113,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -8136,7 +8136,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -8159,7 +8159,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -8178,7 +8178,7 @@ "type": [ "literal" ], - "value": "NamedIndividual" + "value": "OWL:NamedIndividual" }, "definition": { "type": [ @@ -8249,7 +8249,7 @@ "type": [ "literal" ], - "value": "NamedIndividual" + "value": "OWL_NamedIndividual" }, "isDefiningOntology": true, "definedBy": [ @@ -8275,7 +8275,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -8298,7 +8298,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -8321,7 +8321,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -8344,7 +8344,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -8367,7 +8367,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -8386,7 +8386,7 @@ "type": [ "literal" ], - "value": "NegativePropertyAssertion" + "value": "OWL:NegativePropertyAssertion" }, "definition": { "type": [ @@ -8457,7 +8457,7 @@ "type": [ "literal" ], - "value": "NegativePropertyAssertion" + "value": "OWL_NegativePropertyAssertion" }, "isDefiningOntology": true, "definedBy": [ @@ -8483,7 +8483,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -8506,7 +8506,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -8529,7 +8529,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -8552,7 +8552,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -8575,7 +8575,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -8598,7 +8598,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -8617,7 +8617,7 @@ "type": [ "literal" ], - "value": "Nothing" + "value": "OWL:Nothing" }, "definition": { "type": [ @@ -8688,7 +8688,7 @@ "type": [ "literal" ], - "value": "Nothing" + "value": "OWL_Nothing" }, "isDefiningOntology": true, "definedBy": [ @@ -8714,7 +8714,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -8737,7 +8737,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -8760,7 +8760,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -8783,7 +8783,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -8802,7 +8802,7 @@ "type": [ "literal" ], - "value": "ObjectProperty" + "value": "OWL:ObjectProperty" }, "definition": { "type": [ @@ -8871,7 +8871,7 @@ "type": [ "literal" ], - "value": "ObjectProperty" + "value": "OWL_ObjectProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -8897,7 +8897,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -8920,7 +8920,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -8943,7 +8943,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -8966,7 +8966,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -8989,7 +8989,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -9008,7 +9008,7 @@ "type": [ "literal" ], - "value": "Ontology" + "value": "OWL:Ontology" }, "definition": { "type": [ @@ -9079,7 +9079,7 @@ "type": [ "literal" ], - "value": "Ontology" + "value": "OWL_Ontology" }, "isDefiningOntology": true, "definedBy": [ @@ -9105,7 +9105,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -9128,7 +9128,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -9151,7 +9151,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -9174,7 +9174,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -9197,7 +9197,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -9220,7 +9220,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -9239,7 +9239,7 @@ "type": [ "literal" ], - "value": "OntologyProperty" + "value": "OWL:OntologyProperty" }, "definition": { "type": [ @@ -9308,7 +9308,7 @@ "type": [ "literal" ], - "value": "OntologyProperty" + "value": "OWL_OntologyProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -9334,7 +9334,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -9357,7 +9357,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -9380,7 +9380,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -9403,7 +9403,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -9426,7 +9426,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -9445,7 +9445,7 @@ "type": [ "literal" ], - "value": "ReflexiveProperty" + "value": "OWL:ReflexiveProperty" }, "definition": { "type": [ @@ -9516,7 +9516,7 @@ "type": [ "literal" ], - "value": "ReflexiveProperty" + "value": "OWL_ReflexiveProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -9542,7 +9542,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -9565,7 +9565,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -9588,7 +9588,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -9611,7 +9611,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -9634,7 +9634,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -9653,7 +9653,7 @@ "type": [ "literal" ], - "value": "Restriction" + "value": "OWL:Restriction" }, "definition": { "type": [ @@ -9732,7 +9732,7 @@ "type": [ "literal" ], - "value": "Restriction" + "value": "OWL_Restriction" }, "isDefiningOntology": true, "definedBy": [ @@ -9758,7 +9758,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -9781,7 +9781,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -9804,7 +9804,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -9827,7 +9827,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -9850,7 +9850,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -9873,7 +9873,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -9892,7 +9892,7 @@ "type": [ "literal" ], - "value": "SymmetricProperty" + "value": "OWL:SymmetricProperty" }, "definition": { "type": [ @@ -9963,7 +9963,7 @@ "type": [ "literal" ], - "value": "SymmetricProperty" + "value": "OWL_SymmetricProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -9989,7 +9989,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -10012,7 +10012,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -10035,7 +10035,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -10058,7 +10058,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -10081,7 +10081,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -10100,7 +10100,7 @@ "type": [ "literal" ], - "value": "Thing" + "value": "OWL:Thing" }, "definition": { "type": [ @@ -10162,7 +10162,7 @@ "type": [ "literal" ], - "value": "Thing" + "value": "OWL_Thing" }, "isDefiningOntology": true, "definedBy": [ @@ -10188,7 +10188,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -10211,7 +10211,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -10234,7 +10234,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -10253,7 +10253,7 @@ "type": [ "literal" ], - "value": "TransitiveProperty" + "value": "OWL:TransitiveProperty" }, "definition": { "type": [ @@ -10324,7 +10324,7 @@ "type": [ "literal" ], - "value": "TransitiveProperty" + "value": "OWL_TransitiveProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -10350,7 +10350,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -10373,7 +10373,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -10396,7 +10396,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -10419,7 +10419,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -10442,7 +10442,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -10463,7 +10463,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "definition": { "type": [ @@ -10526,7 +10526,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS_comment" }, "isDefiningOntology": false, "definedBy": [ @@ -10553,7 +10553,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -10576,7 +10576,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -10599,7 +10599,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -10622,7 +10622,7 @@ "type": [ "literal" ], - "value": "Literal" + "value": "RDFS:Literal" }, "type": [ "class", @@ -10645,7 +10645,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -10668,7 +10668,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -10687,7 +10687,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "definition": { "type": [ @@ -10750,7 +10750,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS_domain" }, "isDefiningOntology": false, "definedBy": [ @@ -10777,7 +10777,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -10800,7 +10800,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -10823,7 +10823,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -10846,7 +10846,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -10869,7 +10869,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -10888,7 +10888,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "definition": { "type": [ @@ -10953,7 +10953,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS_isDefinedBy" }, "isDefiningOntology": false, "definedBy": [ @@ -10980,7 +10980,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -11003,7 +11003,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -11026,7 +11026,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -11049,7 +11049,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -11072,7 +11072,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -11095,7 +11095,7 @@ "type": [ "literal" ], - "value": "seeAlso" + "value": "RDFS:seeAlso" }, "type": [ "property", @@ -11118,7 +11118,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -11137,7 +11137,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "definition": { "type": [ @@ -11200,7 +11200,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS_label" }, "isDefiningOntology": false, "definedBy": [ @@ -11228,7 +11228,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -11251,7 +11251,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -11274,7 +11274,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -11297,7 +11297,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -11320,7 +11320,7 @@ "type": [ "literal" ], - "value": "Literal" + "value": "RDFS:Literal" }, "type": [ "class", @@ -11343,7 +11343,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -11362,7 +11362,7 @@ "type": [ "literal" ], - "value": "member" + "value": "RDFS:member" }, "definition": { "type": [ @@ -11425,7 +11425,7 @@ "type": [ "literal" ], - "value": "member" + "value": "RDFS_member" }, "isDefiningOntology": false, "definedBy": [ @@ -11452,7 +11452,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -11475,7 +11475,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -11498,7 +11498,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -11521,7 +11521,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -11544,7 +11544,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -11567,7 +11567,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -11586,7 +11586,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "definition": { "type": [ @@ -11649,7 +11649,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS_range" }, "isDefiningOntology": false, "definedBy": [ @@ -11676,7 +11676,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -11699,7 +11699,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -11722,7 +11722,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -11745,7 +11745,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -11768,7 +11768,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -11787,7 +11787,7 @@ "type": [ "literal" ], - "value": "seeAlso" + "value": "RDFS:seeAlso" }, "definition": { "type": [ @@ -11850,7 +11850,7 @@ "type": [ "literal" ], - "value": "seeAlso" + "value": "RDFS_seeAlso" }, "isDefiningOntology": false, "definedBy": [ @@ -11877,7 +11877,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -11900,7 +11900,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -11923,7 +11923,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -11946,7 +11946,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -11969,7 +11969,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -11992,7 +11992,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -12011,7 +12011,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "definition": { "type": [ @@ -12074,7 +12074,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS_subClassOf" }, "isDefiningOntology": false, "definedBy": [ @@ -12101,7 +12101,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -12124,7 +12124,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -12147,7 +12147,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -12170,7 +12170,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -12193,7 +12193,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -12216,7 +12216,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -12235,7 +12235,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "definition": { "type": [ @@ -12298,7 +12298,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS_subPropertyOf" }, "isDefiningOntology": false, "definedBy": [ @@ -12325,7 +12325,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -12348,7 +12348,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -12371,7 +12371,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -12394,7 +12394,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -12417,7 +12417,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -12436,7 +12436,7 @@ "type": [ "literal" ], - "value": "allValuesFrom" + "value": "OWL:allValuesFrom" }, "definition": { "type": [ @@ -12499,7 +12499,7 @@ "type": [ "literal" ], - "value": "allValuesFrom" + "value": "OWL_allValuesFrom" }, "isDefiningOntology": true, "definedBy": [ @@ -12525,7 +12525,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -12548,7 +12548,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -12571,7 +12571,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -12594,7 +12594,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -12617,7 +12617,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -12640,7 +12640,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -12659,7 +12659,7 @@ "type": [ "literal" ], - "value": "annotatedProperty" + "value": "OWL:annotatedProperty" }, "definition": { "type": [ @@ -12722,7 +12722,7 @@ "type": [ "literal" ], - "value": "annotatedProperty" + "value": "OWL_annotatedProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -12748,7 +12748,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -12771,7 +12771,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -12794,7 +12794,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -12817,7 +12817,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -12840,7 +12840,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -12863,7 +12863,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -12882,7 +12882,7 @@ "type": [ "literal" ], - "value": "annotatedSource" + "value": "OWL:annotatedSource" }, "definition": { "type": [ @@ -12945,7 +12945,7 @@ "type": [ "literal" ], - "value": "annotatedSource" + "value": "OWL_annotatedSource" }, "isDefiningOntology": true, "definedBy": [ @@ -12971,7 +12971,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -12994,7 +12994,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -13017,7 +13017,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -13040,7 +13040,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -13063,7 +13063,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -13086,7 +13086,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -13105,7 +13105,7 @@ "type": [ "literal" ], - "value": "annotatedTarget" + "value": "OWL:annotatedTarget" }, "definition": { "type": [ @@ -13168,7 +13168,7 @@ "type": [ "literal" ], - "value": "annotatedTarget" + "value": "OWL_annotatedTarget" }, "isDefiningOntology": true, "definedBy": [ @@ -13194,7 +13194,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -13217,7 +13217,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -13240,7 +13240,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -13263,7 +13263,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -13286,7 +13286,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -13309,7 +13309,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -13328,7 +13328,7 @@ "type": [ "literal" ], - "value": "assertionProperty" + "value": "OWL:assertionProperty" }, "definition": { "type": [ @@ -13391,7 +13391,7 @@ "type": [ "literal" ], - "value": "assertionProperty" + "value": "OWL_assertionProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -13417,7 +13417,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -13440,7 +13440,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -13463,7 +13463,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -13486,7 +13486,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -13509,7 +13509,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -13529,7 +13529,7 @@ "type": [ "literal" ], - "value": "backwardCompatibleWith" + "value": "OWL:backwardCompatibleWith" }, "definition": { "type": [ @@ -13595,7 +13595,7 @@ "type": [ "literal" ], - "value": "backwardCompatibleWith" + "value": "OWL_backwardCompatibleWith" }, "isDefiningOntology": true, "definedBy": [ @@ -13621,7 +13621,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -13644,7 +13644,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -13667,7 +13667,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -13690,7 +13690,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -13713,7 +13713,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -13733,7 +13733,7 @@ "type": [ "literal" ], - "value": "bottomDataProperty" + "value": "OWL:bottomDataProperty" }, "definition": { "type": [ @@ -13796,7 +13796,7 @@ "type": [ "literal" ], - "value": "bottomDataProperty" + "value": "OWL_bottomDataProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -13822,7 +13822,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -13845,7 +13845,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -13868,7 +13868,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -13891,7 +13891,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -13914,7 +13914,7 @@ "type": [ "literal" ], - "value": "Literal" + "value": "RDFS:Literal" }, "type": [ "class", @@ -13937,7 +13937,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -13957,7 +13957,7 @@ "type": [ "literal" ], - "value": "bottomObjectProperty" + "value": "OWL:bottomObjectProperty" }, "definition": { "type": [ @@ -14020,7 +14020,7 @@ "type": [ "literal" ], - "value": "bottomObjectProperty" + "value": "OWL_bottomObjectProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -14046,7 +14046,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -14069,7 +14069,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -14092,7 +14092,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -14115,7 +14115,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -14138,7 +14138,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -14157,7 +14157,7 @@ "type": [ "literal" ], - "value": "cardinality" + "value": "OWL:cardinality" }, "definition": { "type": [ @@ -14220,7 +14220,7 @@ "type": [ "literal" ], - "value": "cardinality" + "value": "OWL_cardinality" }, "isDefiningOntology": true, "definedBy": [ @@ -14246,7 +14246,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -14269,7 +14269,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -14292,7 +14292,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -14315,7 +14315,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -14338,7 +14338,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -14357,7 +14357,7 @@ "type": [ "literal" ], - "value": "complementOf" + "value": "OWL:complementOf" }, "definition": { "type": [ @@ -14420,7 +14420,7 @@ "type": [ "literal" ], - "value": "complementOf" + "value": "OWL_complementOf" }, "isDefiningOntology": true, "definedBy": [ @@ -14446,7 +14446,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -14469,7 +14469,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -14492,7 +14492,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -14515,7 +14515,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -14538,7 +14538,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -14557,7 +14557,7 @@ "type": [ "literal" ], - "value": "datatypeComplementOf" + "value": "OWL:datatypeComplementOf" }, "definition": { "type": [ @@ -14620,7 +14620,7 @@ "type": [ "literal" ], - "value": "datatypeComplementOf" + "value": "OWL_datatypeComplementOf" }, "isDefiningOntology": true, "definedBy": [ @@ -14646,7 +14646,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -14669,7 +14669,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -14692,7 +14692,7 @@ "type": [ "literal" ], - "value": "Datatype" + "value": "RDFS:Datatype" }, "type": [ "class", @@ -14715,7 +14715,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -14738,7 +14738,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -14761,7 +14761,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -14781,7 +14781,7 @@ "type": [ "literal" ], - "value": "deprecated" + "value": "OWL:deprecated" }, "definition": { "type": [ @@ -14844,7 +14844,7 @@ "type": [ "literal" ], - "value": "deprecated" + "value": "OWL_deprecated" }, "isDefiningOntology": true, "definedBy": [ @@ -14870,7 +14870,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -14893,7 +14893,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -14916,7 +14916,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -14939,7 +14939,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -14962,7 +14962,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -14985,7 +14985,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -15004,7 +15004,7 @@ "type": [ "literal" ], - "value": "differentFrom" + "value": "OWL:differentFrom" }, "definition": { "type": [ @@ -15067,7 +15067,7 @@ "type": [ "literal" ], - "value": "differentFrom" + "value": "OWL_differentFrom" }, "isDefiningOntology": true, "definedBy": [ @@ -15093,7 +15093,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -15116,7 +15116,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -15139,7 +15139,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -15162,7 +15162,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -15185,7 +15185,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -15204,7 +15204,7 @@ "type": [ "literal" ], - "value": "disjointUnionOf" + "value": "OWL:disjointUnionOf" }, "definition": { "type": [ @@ -15267,7 +15267,7 @@ "type": [ "literal" ], - "value": "disjointUnionOf" + "value": "OWL_disjointUnionOf" }, "isDefiningOntology": true, "definedBy": [ @@ -15293,7 +15293,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -15316,7 +15316,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -15339,7 +15339,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -15362,7 +15362,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -15385,7 +15385,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -15404,7 +15404,7 @@ "type": [ "literal" ], - "value": "disjointWith" + "value": "OWL:disjointWith" }, "definition": { "type": [ @@ -15467,7 +15467,7 @@ "type": [ "literal" ], - "value": "disjointWith" + "value": "OWL_disjointWith" }, "isDefiningOntology": true, "definedBy": [ @@ -15493,7 +15493,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -15516,7 +15516,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -15539,7 +15539,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -15562,7 +15562,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -15585,7 +15585,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -15604,7 +15604,7 @@ "type": [ "literal" ], - "value": "distinctMembers" + "value": "OWL:distinctMembers" }, "definition": { "type": [ @@ -15667,7 +15667,7 @@ "type": [ "literal" ], - "value": "distinctMembers" + "value": "OWL_distinctMembers" }, "isDefiningOntology": true, "definedBy": [ @@ -15693,7 +15693,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -15716,7 +15716,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -15739,7 +15739,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -15762,7 +15762,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -15785,7 +15785,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -15804,7 +15804,7 @@ "type": [ "literal" ], - "value": "equivalentClass" + "value": "OWL:equivalentClass" }, "definition": { "type": [ @@ -15867,7 +15867,7 @@ "type": [ "literal" ], - "value": "equivalentClass" + "value": "OWL_equivalentClass" }, "isDefiningOntology": true, "definedBy": [ @@ -15893,7 +15893,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -15916,7 +15916,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -15939,7 +15939,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -15962,7 +15962,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -15985,7 +15985,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -16008,7 +16008,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -16027,7 +16027,7 @@ "type": [ "literal" ], - "value": "equivalentProperty" + "value": "OWL:equivalentProperty" }, "definition": { "type": [ @@ -16090,7 +16090,7 @@ "type": [ "literal" ], - "value": "equivalentProperty" + "value": "OWL_equivalentProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -16116,7 +16116,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -16139,7 +16139,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -16162,7 +16162,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -16185,7 +16185,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -16208,7 +16208,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -16227,7 +16227,7 @@ "type": [ "literal" ], - "value": "hasKey" + "value": "OWL:hasKey" }, "definition": { "type": [ @@ -16290,7 +16290,7 @@ "type": [ "literal" ], - "value": "hasKey" + "value": "OWL_hasKey" }, "isDefiningOntology": true, "definedBy": [ @@ -16316,7 +16316,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -16339,7 +16339,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -16362,7 +16362,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -16385,7 +16385,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -16408,7 +16408,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -16427,7 +16427,7 @@ "type": [ "literal" ], - "value": "hasSelf" + "value": "OWL:hasSelf" }, "definition": { "type": [ @@ -16490,7 +16490,7 @@ "type": [ "literal" ], - "value": "hasSelf" + "value": "OWL_hasSelf" }, "isDefiningOntology": true, "definedBy": [ @@ -16516,7 +16516,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -16539,7 +16539,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -16562,7 +16562,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -16585,7 +16585,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -16608,7 +16608,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -16631,7 +16631,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -16650,7 +16650,7 @@ "type": [ "literal" ], - "value": "hasValue" + "value": "OWL:hasValue" }, "definition": { "type": [ @@ -16713,7 +16713,7 @@ "type": [ "literal" ], - "value": "hasValue" + "value": "OWL_hasValue" }, "isDefiningOntology": true, "definedBy": [ @@ -16739,7 +16739,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -16762,7 +16762,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -16785,7 +16785,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -16808,7 +16808,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -16831,7 +16831,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -16854,7 +16854,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -16874,7 +16874,7 @@ "type": [ "literal" ], - "value": "incompatibleWith" + "value": "OWL:incompatibleWith" }, "definition": { "type": [ @@ -16940,7 +16940,7 @@ "type": [ "literal" ], - "value": "incompatibleWith" + "value": "OWL_incompatibleWith" }, "isDefiningOntology": true, "definedBy": [ @@ -16966,7 +16966,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -16989,7 +16989,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -17012,7 +17012,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -17035,7 +17035,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -17058,7 +17058,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -17077,7 +17077,7 @@ "type": [ "literal" ], - "value": "intersectionOf" + "value": "OWL:intersectionOf" }, "definition": { "type": [ @@ -17140,7 +17140,7 @@ "type": [ "literal" ], - "value": "intersectionOf" + "value": "OWL_intersectionOf" }, "isDefiningOntology": true, "definedBy": [ @@ -17166,7 +17166,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -17189,7 +17189,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -17212,7 +17212,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -17235,7 +17235,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -17258,7 +17258,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -17281,7 +17281,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -17300,7 +17300,7 @@ "type": [ "literal" ], - "value": "inverseOf" + "value": "OWL:inverseOf" }, "definition": { "type": [ @@ -17363,7 +17363,7 @@ "type": [ "literal" ], - "value": "inverseOf" + "value": "OWL_inverseOf" }, "isDefiningOntology": true, "definedBy": [ @@ -17389,7 +17389,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -17412,7 +17412,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -17435,7 +17435,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -17458,7 +17458,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -17481,7 +17481,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -17500,7 +17500,7 @@ "type": [ "literal" ], - "value": "maxCardinality" + "value": "OWL:maxCardinality" }, "definition": { "type": [ @@ -17563,7 +17563,7 @@ "type": [ "literal" ], - "value": "maxCardinality" + "value": "OWL_maxCardinality" }, "isDefiningOntology": true, "definedBy": [ @@ -17589,7 +17589,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -17612,7 +17612,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -17635,7 +17635,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -17658,7 +17658,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -17681,7 +17681,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -17700,7 +17700,7 @@ "type": [ "literal" ], - "value": "maxQualifiedCardinality" + "value": "OWL:maxQualifiedCardinality" }, "definition": { "type": [ @@ -17763,7 +17763,7 @@ "type": [ "literal" ], - "value": "maxQualifiedCardinality" + "value": "OWL_maxQualifiedCardinality" }, "isDefiningOntology": true, "definedBy": [ @@ -17789,7 +17789,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -17812,7 +17812,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -17835,7 +17835,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -17858,7 +17858,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -17881,7 +17881,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -17900,7 +17900,7 @@ "type": [ "literal" ], - "value": "members" + "value": "OWL:members" }, "definition": { "type": [ @@ -17963,7 +17963,7 @@ "type": [ "literal" ], - "value": "members" + "value": "OWL_members" }, "isDefiningOntology": true, "definedBy": [ @@ -17989,7 +17989,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -18012,7 +18012,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -18035,7 +18035,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -18058,7 +18058,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -18081,7 +18081,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -18104,7 +18104,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -18123,7 +18123,7 @@ "type": [ "literal" ], - "value": "minCardinality" + "value": "OWL:minCardinality" }, "definition": { "type": [ @@ -18186,7 +18186,7 @@ "type": [ "literal" ], - "value": "minCardinality" + "value": "OWL_minCardinality" }, "isDefiningOntology": true, "definedBy": [ @@ -18212,7 +18212,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -18235,7 +18235,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -18258,7 +18258,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -18281,7 +18281,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -18304,7 +18304,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -18323,7 +18323,7 @@ "type": [ "literal" ], - "value": "minQualifiedCardinality" + "value": "OWL:minQualifiedCardinality" }, "definition": { "type": [ @@ -18386,7 +18386,7 @@ "type": [ "literal" ], - "value": "minQualifiedCardinality" + "value": "OWL_minQualifiedCardinality" }, "isDefiningOntology": true, "definedBy": [ @@ -18412,7 +18412,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -18435,7 +18435,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -18458,7 +18458,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -18481,7 +18481,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -18504,7 +18504,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -18523,7 +18523,7 @@ "type": [ "literal" ], - "value": "onClass" + "value": "OWL:onClass" }, "definition": { "type": [ @@ -18586,7 +18586,7 @@ "type": [ "literal" ], - "value": "onClass" + "value": "OWL_onClass" }, "isDefiningOntology": true, "definedBy": [ @@ -18612,7 +18612,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -18635,7 +18635,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -18658,7 +18658,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -18681,7 +18681,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -18704,7 +18704,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -18723,7 +18723,7 @@ "type": [ "literal" ], - "value": "onDataRange" + "value": "OWL:onDataRange" }, "definition": { "type": [ @@ -18786,7 +18786,7 @@ "type": [ "literal" ], - "value": "onDataRange" + "value": "OWL_onDataRange" }, "isDefiningOntology": true, "definedBy": [ @@ -18812,7 +18812,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -18835,7 +18835,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -18858,7 +18858,7 @@ "type": [ "literal" ], - "value": "Datatype" + "value": "RDFS:Datatype" }, "type": [ "class", @@ -18881,7 +18881,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -18904,7 +18904,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -18927,7 +18927,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -18946,7 +18946,7 @@ "type": [ "literal" ], - "value": "onDatatype" + "value": "OWL:onDatatype" }, "definition": { "type": [ @@ -19009,7 +19009,7 @@ "type": [ "literal" ], - "value": "onDatatype" + "value": "OWL_onDatatype" }, "isDefiningOntology": true, "definedBy": [ @@ -19035,7 +19035,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -19058,7 +19058,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -19081,7 +19081,7 @@ "type": [ "literal" ], - "value": "Datatype" + "value": "RDFS:Datatype" }, "type": [ "class", @@ -19104,7 +19104,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -19127,7 +19127,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -19150,7 +19150,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -19169,7 +19169,7 @@ "type": [ "literal" ], - "value": "onProperties" + "value": "OWL:onProperties" }, "definition": { "type": [ @@ -19232,7 +19232,7 @@ "type": [ "literal" ], - "value": "onProperties" + "value": "OWL_onProperties" }, "isDefiningOntology": true, "definedBy": [ @@ -19258,7 +19258,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -19281,7 +19281,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -19304,7 +19304,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -19327,7 +19327,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -19350,7 +19350,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -19369,7 +19369,7 @@ "type": [ "literal" ], - "value": "onProperty" + "value": "OWL:onProperty" }, "definition": { "type": [ @@ -19432,7 +19432,7 @@ "type": [ "literal" ], - "value": "onProperty" + "value": "OWL_onProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -19458,7 +19458,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -19481,7 +19481,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -19504,7 +19504,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -19527,7 +19527,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -19550,7 +19550,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -19569,7 +19569,7 @@ "type": [ "literal" ], - "value": "oneOf" + "value": "OWL:oneOf" }, "definition": { "type": [ @@ -19632,7 +19632,7 @@ "type": [ "literal" ], - "value": "oneOf" + "value": "OWL_oneOf" }, "isDefiningOntology": true, "definedBy": [ @@ -19658,7 +19658,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -19681,7 +19681,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -19704,7 +19704,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -19727,7 +19727,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -19750,7 +19750,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -19773,7 +19773,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -19793,7 +19793,7 @@ "type": [ "literal" ], - "value": "priorVersion" + "value": "OWL:priorVersion" }, "definition": { "type": [ @@ -19859,7 +19859,7 @@ "type": [ "literal" ], - "value": "priorVersion" + "value": "OWL_priorVersion" }, "isDefiningOntology": true, "definedBy": [ @@ -19885,7 +19885,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -19908,7 +19908,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -19931,7 +19931,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -19954,7 +19954,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -19977,7 +19977,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -19996,7 +19996,7 @@ "type": [ "literal" ], - "value": "propertyChainAxiom" + "value": "OWL:propertyChainAxiom" }, "definition": { "type": [ @@ -20059,7 +20059,7 @@ "type": [ "literal" ], - "value": "propertyChainAxiom" + "value": "OWL_propertyChainAxiom" }, "isDefiningOntology": true, "definedBy": [ @@ -20085,7 +20085,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -20108,7 +20108,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -20131,7 +20131,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -20154,7 +20154,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -20177,7 +20177,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -20196,7 +20196,7 @@ "type": [ "literal" ], - "value": "propertyDisjointWith" + "value": "OWL:propertyDisjointWith" }, "definition": { "type": [ @@ -20259,7 +20259,7 @@ "type": [ "literal" ], - "value": "propertyDisjointWith" + "value": "OWL_propertyDisjointWith" }, "isDefiningOntology": true, "definedBy": [ @@ -20285,7 +20285,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -20308,7 +20308,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -20331,7 +20331,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -20354,7 +20354,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -20377,7 +20377,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -20396,7 +20396,7 @@ "type": [ "literal" ], - "value": "qualifiedCardinality" + "value": "OWL:qualifiedCardinality" }, "definition": { "type": [ @@ -20459,7 +20459,7 @@ "type": [ "literal" ], - "value": "qualifiedCardinality" + "value": "OWL_qualifiedCardinality" }, "isDefiningOntology": true, "definedBy": [ @@ -20485,7 +20485,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -20508,7 +20508,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -20531,7 +20531,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -20554,7 +20554,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -20577,7 +20577,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -20596,7 +20596,7 @@ "type": [ "literal" ], - "value": "sameAs" + "value": "OWL:sameAs" }, "definition": { "type": [ @@ -20659,7 +20659,7 @@ "type": [ "literal" ], - "value": "sameAs" + "value": "OWL_sameAs" }, "isDefiningOntology": true, "definedBy": [ @@ -20685,7 +20685,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -20708,7 +20708,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -20731,7 +20731,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -20754,7 +20754,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -20777,7 +20777,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -20796,7 +20796,7 @@ "type": [ "literal" ], - "value": "someValuesFrom" + "value": "OWL:someValuesFrom" }, "definition": { "type": [ @@ -20859,7 +20859,7 @@ "type": [ "literal" ], - "value": "someValuesFrom" + "value": "OWL_someValuesFrom" }, "isDefiningOntology": true, "definedBy": [ @@ -20885,7 +20885,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -20908,7 +20908,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -20931,7 +20931,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -20954,7 +20954,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -20977,7 +20977,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -21000,7 +21000,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -21019,7 +21019,7 @@ "type": [ "literal" ], - "value": "sourceIndividual" + "value": "OWL:sourceIndividual" }, "definition": { "type": [ @@ -21082,7 +21082,7 @@ "type": [ "literal" ], - "value": "sourceIndividual" + "value": "OWL_sourceIndividual" }, "isDefiningOntology": true, "definedBy": [ @@ -21108,7 +21108,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -21131,7 +21131,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -21154,7 +21154,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -21177,7 +21177,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -21200,7 +21200,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -21219,7 +21219,7 @@ "type": [ "literal" ], - "value": "targetIndividual" + "value": "OWL:targetIndividual" }, "definition": { "type": [ @@ -21282,7 +21282,7 @@ "type": [ "literal" ], - "value": "targetIndividual" + "value": "OWL_targetIndividual" }, "isDefiningOntology": true, "definedBy": [ @@ -21308,7 +21308,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -21331,7 +21331,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -21354,7 +21354,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -21377,7 +21377,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -21400,7 +21400,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -21419,7 +21419,7 @@ "type": [ "literal" ], - "value": "targetValue" + "value": "OWL:targetValue" }, "definition": { "type": [ @@ -21482,7 +21482,7 @@ "type": [ "literal" ], - "value": "targetValue" + "value": "OWL_targetValue" }, "isDefiningOntology": true, "definedBy": [ @@ -21508,7 +21508,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -21531,7 +21531,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -21554,7 +21554,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -21577,7 +21577,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -21600,7 +21600,7 @@ "type": [ "literal" ], - "value": "Literal" + "value": "RDFS:Literal" }, "type": [ "class", @@ -21623,7 +21623,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -21643,7 +21643,7 @@ "type": [ "literal" ], - "value": "topDataProperty" + "value": "OWL:topDataProperty" }, "definition": { "type": [ @@ -21706,7 +21706,7 @@ "type": [ "literal" ], - "value": "topDataProperty" + "value": "OWL_topDataProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -21732,7 +21732,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -21755,7 +21755,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -21778,7 +21778,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -21801,7 +21801,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -21824,7 +21824,7 @@ "type": [ "literal" ], - "value": "Literal" + "value": "RDFS:Literal" }, "type": [ "class", @@ -21847,7 +21847,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -21867,7 +21867,7 @@ "type": [ "literal" ], - "value": "topObjectProperty" + "value": "OWL:topObjectProperty" }, "definition": { "type": [ @@ -21930,7 +21930,7 @@ "type": [ "literal" ], - "value": "topObjectProperty" + "value": "OWL_topObjectProperty" }, "isDefiningOntology": true, "definedBy": [ @@ -21956,7 +21956,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -21979,7 +21979,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -22002,7 +22002,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -22025,7 +22025,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -22048,7 +22048,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -22067,7 +22067,7 @@ "type": [ "literal" ], - "value": "unionOf" + "value": "OWL:unionOf" }, "definition": { "type": [ @@ -22130,7 +22130,7 @@ "type": [ "literal" ], - "value": "unionOf" + "value": "OWL_unionOf" }, "isDefiningOntology": true, "definedBy": [ @@ -22156,7 +22156,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -22179,7 +22179,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -22202,7 +22202,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -22225,7 +22225,7 @@ "type": [ "literal" ], - "value": "Class" + "value": "RDFS:Class" }, "type": [ "class", @@ -22248,7 +22248,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -22271,7 +22271,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -22291,7 +22291,7 @@ "type": [ "literal" ], - "value": "versionInfo" + "value": "OWL:versionInfo" }, "definition": { "type": [ @@ -22354,7 +22354,7 @@ "type": [ "literal" ], - "value": "versionInfo" + "value": "OWL_versionInfo" }, "isDefiningOntology": true, "definedBy": [ @@ -22380,7 +22380,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -22403,7 +22403,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -22426,7 +22426,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -22449,7 +22449,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -22472,7 +22472,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -22495,7 +22495,7 @@ "type": [ "literal" ], - "value": "Resource" + "value": "RDFS:Resource" }, "type": [ "class", @@ -22514,7 +22514,7 @@ "type": [ "literal" ], - "value": "withRestrictions" + "value": "OWL:withRestrictions" }, "definition": { "type": [ @@ -22577,7 +22577,7 @@ "type": [ "literal" ], - "value": "withRestrictions" + "value": "OWL_withRestrictions" }, "isDefiningOntology": true, "definedBy": [ @@ -22603,7 +22603,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -22626,7 +22626,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -22649,7 +22649,7 @@ "type": [ "literal" ], - "value": "Datatype" + "value": "RDFS:Datatype" }, "type": [ "class", @@ -22672,7 +22672,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -22695,7 +22695,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -22718,7 +22718,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -22746,7 +22746,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -22769,7 +22769,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -22792,7 +22792,7 @@ "type": [ "literal" ], - "value": "seeAlso" + "value": "RDFS:seeAlso" }, "type": [ "property", @@ -23008,7 +23008,7 @@ "type": [ "literal" ], - "value": "Collection" + "value": "SKOS:Collection" }, "directAncestor": [], "hasDirectChildren": true, @@ -23094,7 +23094,7 @@ "type": [ "literal" ], - "value": "Collection" + "value": "SKOS_Collection" }, "isDefiningOntology": true, "definedBy": [ @@ -23122,7 +23122,7 @@ "type": [ "literal" ], - "value": "Concept" + "value": "SKOS:Concept" }, "type": [ "class", @@ -23147,7 +23147,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -23173,7 +23173,7 @@ "type": [ "literal" ], - "value": "scopeNote" + "value": "SKOS:scopeNote" }, "type": [ "property", @@ -23197,7 +23197,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -23222,7 +23222,7 @@ "type": [ "literal" ], - "value": "ConceptScheme" + "value": "SKOS:ConceptScheme" }, "type": [ "class", @@ -23245,7 +23245,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -23264,7 +23264,7 @@ "type": [ "literal" ], - "value": "Concept" + "value": "SKOS:Concept" }, "directAncestor": [], "hasDirectChildren": false, @@ -23330,7 +23330,7 @@ "type": [ "literal" ], - "value": "Concept" + "value": "SKOS_Concept" }, "isDefiningOntology": true, "definedBy": [ @@ -23358,7 +23358,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -23382,7 +23382,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -23405,7 +23405,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -23424,7 +23424,7 @@ "type": [ "literal" ], - "value": "ConceptScheme" + "value": "SKOS:ConceptScheme" }, "directAncestor": [], "hasDirectChildren": false, @@ -23523,7 +23523,7 @@ "type": [ "literal" ], - "value": "ConceptScheme" + "value": "SKOS_ConceptScheme" }, "isDefiningOntology": true, "definedBy": [ @@ -23551,7 +23551,7 @@ "type": [ "literal" ], - "value": "Concept" + "value": "SKOS:Concept" }, "type": [ "class", @@ -23576,7 +23576,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -23602,7 +23602,7 @@ "type": [ "literal" ], - "value": "scopeNote" + "value": "SKOS:scopeNote" }, "type": [ "property", @@ -23626,7 +23626,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -23651,7 +23651,7 @@ "type": [ "literal" ], - "value": "example" + "value": "SKOS:example" }, "type": [ "property", @@ -23675,7 +23675,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -23694,7 +23694,7 @@ "type": [ "literal" ], - "value": "OrderedCollection" + "value": "SKOS:OrderedCollection" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#Collection", "directParent": "http://www.w3.org/2004/02/skos/core#Collection", @@ -23785,7 +23785,7 @@ "type": [ "literal" ], - "value": "OrderedCollection" + "value": "SKOS_OrderedCollection" }, "isDefiningOntology": true, "definedBy": [ @@ -23813,7 +23813,7 @@ "type": [ "literal" ], - "value": "Collection" + "value": "SKOS:Collection" }, "type": [ "class", @@ -23838,7 +23838,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -23862,7 +23862,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -23887,7 +23887,7 @@ "type": [ "literal" ], - "value": "scopeNote" + "value": "SKOS:scopeNote" }, "type": [ "property", @@ -23911,7 +23911,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -23934,7 +23934,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -23956,7 +23956,7 @@ "type": [ "literal" ], - "value": "altLabel" + "value": "SKOS:altLabel" }, "definition": [ { @@ -24083,7 +24083,7 @@ "type": [ "literal" ], - "value": "altLabel" + "value": "SKOS_altLabel" }, "isDefiningOntology": true, "definedBy": [ @@ -24111,7 +24111,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -24135,7 +24135,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -24158,7 +24158,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -24181,7 +24181,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -24206,7 +24206,7 @@ "type": [ "literal" ], - "value": "example" + "value": "SKOS:example" }, "type": [ "property", @@ -24230,7 +24230,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -24250,7 +24250,7 @@ "type": [ "literal" ], - "value": "broadMatch" + "value": "SKOS:broadMatch" }, "directAncestor": [ "http://www.w3.org/2004/02/skos/core#mappingRelation", @@ -24332,7 +24332,7 @@ "type": [ "literal" ], - "value": "broadMatch" + "value": "SKOS_broadMatch" }, "isDefiningOntology": true, "definedBy": [ @@ -24360,7 +24360,7 @@ "type": [ "literal" ], - "value": "broaderTransitive" + "value": "SKOS:broaderTransitive" }, "type": [ "property", @@ -24386,7 +24386,7 @@ "type": [ "literal" ], - "value": "mappingRelation" + "value": "SKOS:mappingRelation" }, "type": [ "property", @@ -24412,7 +24412,7 @@ "type": [ "literal" ], - "value": "broader" + "value": "SKOS:broader" }, "type": [ "property", @@ -24438,7 +24438,7 @@ "type": [ "literal" ], - "value": "narrowMatch" + "value": "SKOS:narrowMatch" }, "type": [ "property", @@ -24464,7 +24464,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -24488,7 +24488,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -24511,7 +24511,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -24536,7 +24536,7 @@ "type": [ "literal" ], - "value": "semanticRelation" + "value": "SKOS:semanticRelation" }, "type": [ "property", @@ -24560,7 +24560,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -24580,7 +24580,7 @@ "type": [ "literal" ], - "value": "broader" + "value": "SKOS:broader" }, "definition": { "type": [ @@ -24692,7 +24692,7 @@ "type": [ "literal" ], - "value": "broader" + "value": "SKOS_broader" }, "isDefiningOntology": true, "definedBy": [ @@ -24720,7 +24720,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -24746,7 +24746,7 @@ "type": [ "literal" ], - "value": "scopeNote" + "value": "SKOS:scopeNote" }, "type": [ "property", @@ -24770,7 +24770,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -24795,7 +24795,7 @@ "type": [ "literal" ], - "value": "semanticRelation" + "value": "SKOS:semanticRelation" }, "type": [ "property", @@ -24821,7 +24821,7 @@ "type": [ "literal" ], - "value": "broaderTransitive" + "value": "SKOS:broaderTransitive" }, "type": [ "property", @@ -24845,7 +24845,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -24870,7 +24870,7 @@ "type": [ "literal" ], - "value": "narrower" + "value": "SKOS:narrower" }, "type": [ "property", @@ -24894,7 +24894,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -24917,7 +24917,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -24937,7 +24937,7 @@ "type": [ "literal" ], - "value": "broaderTransitive" + "value": "SKOS:broaderTransitive" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#semanticRelation", "directParent": "http://www.w3.org/2004/02/skos/core#semanticRelation", @@ -25021,7 +25021,7 @@ "type": [ "literal" ], - "value": "broaderTransitive" + "value": "SKOS_broaderTransitive" }, "isDefiningOntology": true, "definedBy": [ @@ -25049,7 +25049,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -25075,7 +25075,7 @@ "type": [ "literal" ], - "value": "scopeNote" + "value": "SKOS:scopeNote" }, "type": [ "property", @@ -25101,7 +25101,7 @@ "type": [ "literal" ], - "value": "narrowerTransitive" + "value": "SKOS:narrowerTransitive" }, "type": [ "property", @@ -25125,7 +25125,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -25148,7 +25148,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -25173,7 +25173,7 @@ "type": [ "literal" ], - "value": "semanticRelation" + "value": "SKOS:semanticRelation" }, "type": [ "property", @@ -25197,7 +25197,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -25217,7 +25217,7 @@ "type": [ "literal" ], - "value": "changeNote" + "value": "SKOS:changeNote" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -25287,7 +25287,7 @@ "type": [ "literal" ], - "value": "changeNote" + "value": "SKOS_changeNote" }, "isDefiningOntology": true, "definedBy": [ @@ -25315,7 +25315,7 @@ "type": [ "literal" ], - "value": "note" + "value": "SKOS:note" }, "type": [ "property", @@ -25341,7 +25341,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -25365,7 +25365,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -25388,7 +25388,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -25411,7 +25411,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -25431,7 +25431,7 @@ "type": [ "literal" ], - "value": "closeMatch" + "value": "SKOS:closeMatch" }, "directAncestor": [ "http://www.w3.org/2004/02/skos/core#mappingRelation", @@ -25505,7 +25505,7 @@ "type": [ "literal" ], - "value": "closeMatch" + "value": "SKOS_closeMatch" }, "isDefiningOntology": true, "definedBy": [ @@ -25534,7 +25534,7 @@ "type": [ "literal" ], - "value": "mappingRelation" + "value": "SKOS:mappingRelation" }, "type": [ "property", @@ -25560,7 +25560,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -25584,7 +25584,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -25607,7 +25607,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -25632,7 +25632,7 @@ "type": [ "literal" ], - "value": "semanticRelation" + "value": "SKOS:semanticRelation" }, "type": [ "property", @@ -25656,7 +25656,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -25676,7 +25676,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -25746,7 +25746,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS_definition" }, "isDefiningOntology": true, "definedBy": [ @@ -25774,7 +25774,7 @@ "type": [ "literal" ], - "value": "note" + "value": "SKOS:note" }, "type": [ "property", @@ -25798,7 +25798,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -25821,7 +25821,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -25844,7 +25844,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -25864,7 +25864,7 @@ "type": [ "literal" ], - "value": "editorialNote" + "value": "SKOS:editorialNote" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -25934,7 +25934,7 @@ "type": [ "literal" ], - "value": "editorialNote" + "value": "SKOS_editorialNote" }, "isDefiningOntology": true, "definedBy": [ @@ -25962,7 +25962,7 @@ "type": [ "literal" ], - "value": "note" + "value": "SKOS:note" }, "type": [ "property", @@ -25988,7 +25988,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -26012,7 +26012,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -26035,7 +26035,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -26058,7 +26058,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -26078,7 +26078,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "definition": { "type": [ @@ -26176,7 +26176,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS_exactMatch" }, "isDefiningOntology": true, "definedBy": [ @@ -26205,7 +26205,7 @@ "type": [ "literal" ], - "value": "mappingRelation" + "value": "SKOS:mappingRelation" }, "type": [ "property", @@ -26231,7 +26231,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -26239,7 +26239,7 @@ "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { + "http://www.w3.org/2000/01/rdf-schema#comment": { "definedBy": [ "rdfs" ], @@ -26249,114 +26249,114 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "comment" }, "curie": { "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:comment" }, "type": [ "property", "entity" ] }, - "http://www.w3.org/2004/02/skos/core#closeMatch": { + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { "definedBy": [ - "skos" + "rdfs" ], "numAppearsIn": 2, - "hasLocalDefinition": true, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "has close match", - "lang": "en" + "value": "subPropertyOf" }, "curie": { "type": [ "literal" ], - "value": "closeMatch" + "value": "RDFS:subPropertyOf" }, "type": [ "property", - "objectProperty", "entity" ] }, - "http://www.w3.org/2004/02/skos/core#semanticRelation": { + "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { "definedBy": [ - "skos" + "rdfs" ], - "numAppearsIn": 1, - "hasLocalDefinition": true, + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "is in semantic relation with", - "lang": "en" + "value": "isDefinedBy" }, "curie": { "type": [ "literal" ], - "value": "semanticRelation" + "value": "RDFS:isDefinedBy" }, "type": [ "property", - "objectProperty", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#comment": { + "http://www.w3.org/2004/02/skos/core#closeMatch": { "definedBy": [ - "rdfs" + "skos" ], "numAppearsIn": 2, - "hasLocalDefinition": false, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "comment" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has close match", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "comment" + "value": "SKOS:closeMatch" }, "type": [ "property", + "objectProperty", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "http://www.w3.org/2004/02/skos/core#semanticRelation": { "definedBy": [ - "rdfs" + "skos" ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "subPropertyOf" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "is in semantic relation with", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "subPropertyOf" + "value": "SKOS:semanticRelation" }, "type": [ "property", + "objectProperty", "entity" ] }, @@ -26376,7 +26376,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -26396,7 +26396,7 @@ "type": [ "literal" ], - "value": "example" + "value": "SKOS:example" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -26466,7 +26466,7 @@ "type": [ "literal" ], - "value": "example" + "value": "SKOS_example" }, "isDefiningOntology": true, "definedBy": [ @@ -26494,7 +26494,7 @@ "type": [ "literal" ], - "value": "note" + "value": "SKOS:note" }, "type": [ "property", @@ -26520,7 +26520,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -26544,7 +26544,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -26567,7 +26567,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -26590,7 +26590,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -26610,7 +26610,7 @@ "type": [ "literal" ], - "value": "hasTopConcept" + "value": "SKOS:hasTopConcept" }, "directAncestor": [], "hasDirectChildren": false, @@ -26681,7 +26681,7 @@ "type": [ "literal" ], - "value": "hasTopConcept" + "value": "SKOS_hasTopConcept" }, "isDefiningOntology": true, "definedBy": [ @@ -26709,7 +26709,7 @@ "type": [ "literal" ], - "value": "Concept" + "value": "SKOS:Concept" }, "type": [ "class", @@ -26734,7 +26734,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -26758,7 +26758,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -26781,7 +26781,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -26806,7 +26806,7 @@ "type": [ "literal" ], - "value": "topConceptOf" + "value": "SKOS:topConceptOf" }, "type": [ "property", @@ -26830,7 +26830,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -26855,7 +26855,7 @@ "type": [ "literal" ], - "value": "ConceptScheme" + "value": "SKOS:ConceptScheme" }, "type": [ "class", @@ -26878,7 +26878,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -26898,7 +26898,7 @@ "type": [ "literal" ], - "value": "hiddenLabel" + "value": "SKOS:hiddenLabel" }, "definition": [ { @@ -27009,7 +27009,7 @@ "type": [ "literal" ], - "value": "hiddenLabel" + "value": "SKOS_hiddenLabel" }, "isDefiningOntology": true, "definedBy": [ @@ -27037,7 +27037,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -27061,7 +27061,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -27084,7 +27084,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -27107,7 +27107,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -27130,7 +27130,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -27150,7 +27150,7 @@ "type": [ "literal" ], - "value": "historyNote" + "value": "SKOS:historyNote" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -27220,7 +27220,7 @@ "type": [ "literal" ], - "value": "historyNote" + "value": "SKOS_historyNote" }, "isDefiningOntology": true, "definedBy": [ @@ -27248,7 +27248,7 @@ "type": [ "literal" ], - "value": "note" + "value": "SKOS:note" }, "type": [ "property", @@ -27274,7 +27274,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -27298,7 +27298,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -27321,7 +27321,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -27344,7 +27344,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -27364,7 +27364,7 @@ "type": [ "literal" ], - "value": "inScheme" + "value": "SKOS:inScheme" }, "directAncestor": [], "hasDirectChildren": true, @@ -27449,7 +27449,7 @@ "type": [ "literal" ], - "value": "inScheme" + "value": "SKOS_inScheme" }, "isDefiningOntology": true, "definedBy": [ @@ -27477,7 +27477,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -27503,7 +27503,7 @@ "type": [ "literal" ], - "value": "scopeNote" + "value": "SKOS:scopeNote" }, "type": [ "property", @@ -27527,7 +27527,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -27550,7 +27550,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -27575,7 +27575,7 @@ "type": [ "literal" ], - "value": "ConceptScheme" + "value": "SKOS:ConceptScheme" }, "type": [ "class", @@ -27598,7 +27598,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -27618,7 +27618,7 @@ "type": [ "literal" ], - "value": "mappingRelation" + "value": "SKOS:mappingRelation" }, "definition": { "type": [ @@ -27710,7 +27710,7 @@ "type": [ "literal" ], - "value": "mappingRelation" + "value": "SKOS_mappingRelation" }, "isDefiningOntology": true, "definedBy": [ @@ -27738,7 +27738,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -27762,7 +27762,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -27785,7 +27785,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -27808,7 +27808,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -27833,7 +27833,7 @@ "type": [ "literal" ], - "value": "semanticRelation" + "value": "SKOS:semanticRelation" }, "type": [ "property", @@ -27857,7 +27857,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -27877,7 +27877,7 @@ "type": [ "literal" ], - "value": "member" + "value": "SKOS:member" }, "directAncestor": [], "hasDirectChildren": false, @@ -27953,7 +27953,7 @@ "type": [ "literal" ], - "value": "member" + "value": "SKOS_member" }, "isDefiningOntology": true, "definedBy": [ @@ -27981,7 +27981,7 @@ "type": [ "literal" ], - "value": "Collection" + "value": "SKOS:Collection" }, "type": [ "class", @@ -28006,7 +28006,7 @@ "type": [ "literal" ], - "value": "Concept" + "value": "SKOS:Concept" }, "type": [ "class", @@ -28031,7 +28031,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -28055,7 +28055,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -28078,7 +28078,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -28101,7 +28101,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -28124,7 +28124,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -28144,7 +28144,7 @@ "type": [ "literal" ], - "value": "memberList" + "value": "SKOS:memberList" }, "definition": { "type": [ @@ -28237,7 +28237,7 @@ "type": [ "literal" ], - "value": "memberList" + "value": "SKOS_memberList" }, "isDefiningOntology": true, "definedBy": [ @@ -28265,7 +28265,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -28289,7 +28289,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -28312,7 +28312,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -28335,7 +28335,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -28358,7 +28358,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -28381,7 +28381,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -28406,7 +28406,7 @@ "type": [ "literal" ], - "value": "OrderedCollection" + "value": "SKOS:OrderedCollection" }, "type": [ "class", @@ -28426,7 +28426,7 @@ "type": [ "literal" ], - "value": "narrowMatch" + "value": "SKOS:narrowMatch" }, "directAncestor": [ "http://www.w3.org/2004/02/skos/core#mappingRelation", @@ -28508,7 +28508,7 @@ "type": [ "literal" ], - "value": "narrowMatch" + "value": "SKOS_narrowMatch" }, "isDefiningOntology": true, "definedBy": [ @@ -28536,7 +28536,7 @@ "type": [ "literal" ], - "value": "mappingRelation" + "value": "SKOS:mappingRelation" }, "type": [ "property", @@ -28562,7 +28562,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -28588,7 +28588,7 @@ "type": [ "literal" ], - "value": "narrowerTransitive" + "value": "SKOS:narrowerTransitive" }, "type": [ "property", @@ -28614,7 +28614,7 @@ "type": [ "literal" ], - "value": "narrower" + "value": "SKOS:narrower" }, "type": [ "property", @@ -28638,7 +28638,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -28663,7 +28663,7 @@ "type": [ "literal" ], - "value": "broadMatch" + "value": "SKOS:broadMatch" }, "type": [ "property", @@ -28687,7 +28687,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -28712,7 +28712,7 @@ "type": [ "literal" ], - "value": "semanticRelation" + "value": "SKOS:semanticRelation" }, "type": [ "property", @@ -28736,7 +28736,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -28756,7 +28756,7 @@ "type": [ "literal" ], - "value": "narrower" + "value": "SKOS:narrower" }, "definition": { "type": [ @@ -28868,7 +28868,7 @@ "type": [ "literal" ], - "value": "narrower" + "value": "SKOS_narrower" }, "isDefiningOntology": true, "definedBy": [ @@ -28896,7 +28896,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -28922,7 +28922,7 @@ "type": [ "literal" ], - "value": "scopeNote" + "value": "SKOS:scopeNote" }, "type": [ "property", @@ -28948,7 +28948,7 @@ "type": [ "literal" ], - "value": "narrowerTransitive" + "value": "SKOS:narrowerTransitive" }, "type": [ "property", @@ -28972,7 +28972,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -28997,7 +28997,7 @@ "type": [ "literal" ], - "value": "semanticRelation" + "value": "SKOS:semanticRelation" }, "type": [ "property", @@ -29023,7 +29023,7 @@ "type": [ "literal" ], - "value": "broader" + "value": "SKOS:broader" }, "type": [ "property", @@ -29047,7 +29047,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -29070,7 +29070,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -29093,7 +29093,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -29113,7 +29113,7 @@ "type": [ "literal" ], - "value": "narrowerTransitive" + "value": "SKOS:narrowerTransitive" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#semanticRelation", "directParent": "http://www.w3.org/2004/02/skos/core#semanticRelation", @@ -29197,7 +29197,7 @@ "type": [ "literal" ], - "value": "narrowerTransitive" + "value": "SKOS_narrowerTransitive" }, "isDefiningOntology": true, "definedBy": [ @@ -29225,7 +29225,7 @@ "type": [ "literal" ], - "value": "broaderTransitive" + "value": "SKOS:broaderTransitive" }, "type": [ "property", @@ -29251,7 +29251,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -29277,7 +29277,7 @@ "type": [ "literal" ], - "value": "scopeNote" + "value": "SKOS:scopeNote" }, "type": [ "property", @@ -29301,7 +29301,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -29324,7 +29324,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -29349,7 +29349,7 @@ "type": [ "literal" ], - "value": "semanticRelation" + "value": "SKOS:semanticRelation" }, "type": [ "property", @@ -29373,7 +29373,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -29393,7 +29393,7 @@ "type": [ "literal" ], - "value": "notation" + "value": "SKOS:notation" }, "directAncestor": [], "hasDirectChildren": false, @@ -29477,7 +29477,7 @@ "type": [ "literal" ], - "value": "notation" + "value": "SKOS_notation" }, "isDefiningOntology": true, "definedBy": [ @@ -29505,7 +29505,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -29531,7 +29531,7 @@ "type": [ "literal" ], - "value": "scopeNote" + "value": "SKOS:scopeNote" }, "type": [ "property", @@ -29555,7 +29555,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -29578,7 +29578,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -29598,7 +29598,7 @@ "type": [ "literal" ], - "value": "note" + "value": "SKOS:note" }, "directAncestor": [], "hasDirectChildren": true, @@ -29682,7 +29682,7 @@ "type": [ "literal" ], - "value": "note" + "value": "SKOS_note" }, "isDefiningOntology": true, "definedBy": [ @@ -29710,7 +29710,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -29736,7 +29736,7 @@ "type": [ "literal" ], - "value": "scopeNote" + "value": "SKOS:scopeNote" }, "type": [ "property", @@ -29760,7 +29760,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -29783,7 +29783,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -29803,7 +29803,7 @@ "type": [ "literal" ], - "value": "prefLabel" + "value": "SKOS:prefLabel" }, "definition": [ { @@ -29930,7 +29930,7 @@ "type": [ "literal" ], - "value": "prefLabel" + "value": "SKOS_prefLabel" }, "isDefiningOntology": true, "definedBy": [ @@ -29958,7 +29958,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -29982,7 +29982,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -30005,7 +30005,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -30028,7 +30028,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -30051,7 +30051,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -30071,7 +30071,7 @@ "type": [ "literal" ], - "value": "related" + "value": "SKOS:related" }, "definition": { "type": [ @@ -30164,7 +30164,7 @@ "type": [ "literal" ], - "value": "related" + "value": "SKOS_related" }, "isDefiningOntology": true, "definedBy": [ @@ -30192,7 +30192,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -30216,7 +30216,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -30239,7 +30239,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -30262,7 +30262,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -30287,7 +30287,7 @@ "type": [ "literal" ], - "value": "semanticRelation" + "value": "SKOS:semanticRelation" }, "type": [ "property", @@ -30311,7 +30311,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -30331,7 +30331,7 @@ "type": [ "literal" ], - "value": "relatedMatch" + "value": "SKOS:relatedMatch" }, "directAncestor": [ "http://www.w3.org/2004/02/skos/core#mappingRelation", @@ -30412,7 +30412,7 @@ "type": [ "literal" ], - "value": "relatedMatch" + "value": "SKOS_relatedMatch" }, "isDefiningOntology": true, "definedBy": [ @@ -30440,7 +30440,7 @@ "type": [ "literal" ], - "value": "related" + "value": "SKOS:related" }, "type": [ "property", @@ -30466,7 +30466,7 @@ "type": [ "literal" ], - "value": "mappingRelation" + "value": "SKOS:mappingRelation" }, "type": [ "property", @@ -30492,7 +30492,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -30516,7 +30516,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -30539,7 +30539,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -30564,7 +30564,7 @@ "type": [ "literal" ], - "value": "semanticRelation" + "value": "SKOS:semanticRelation" }, "type": [ "property", @@ -30588,7 +30588,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -30608,7 +30608,7 @@ "type": [ "literal" ], - "value": "scopeNote" + "value": "SKOS:scopeNote" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#note", "directParent": "http://www.w3.org/2004/02/skos/core#note", @@ -30678,7 +30678,7 @@ "type": [ "literal" ], - "value": "scopeNote" + "value": "SKOS_scopeNote" }, "isDefiningOntology": true, "definedBy": [ @@ -30706,7 +30706,7 @@ "type": [ "literal" ], - "value": "note" + "value": "SKOS:note" }, "type": [ "property", @@ -30732,7 +30732,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -30756,7 +30756,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -30779,7 +30779,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -30802,7 +30802,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -30822,7 +30822,7 @@ "type": [ "literal" ], - "value": "semanticRelation" + "value": "SKOS:semanticRelation" }, "directAncestor": [], "hasDirectChildren": true, @@ -30908,7 +30908,7 @@ "type": [ "literal" ], - "value": "semanticRelation" + "value": "SKOS_semanticRelation" }, "isDefiningOntology": true, "definedBy": [ @@ -30936,7 +30936,7 @@ "type": [ "literal" ], - "value": "Concept" + "value": "SKOS:Concept" }, "type": [ "class", @@ -30961,7 +30961,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -30987,7 +30987,7 @@ "type": [ "literal" ], - "value": "scopeNote" + "value": "SKOS:scopeNote" }, "type": [ "property", @@ -31011,7 +31011,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -31034,7 +31034,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -31057,7 +31057,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -31080,7 +31080,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -31100,7 +31100,7 @@ "type": [ "literal" ], - "value": "topConceptOf" + "value": "SKOS:topConceptOf" }, "directAncestor": "http://www.w3.org/2004/02/skos/core#inScheme", "directParent": "http://www.w3.org/2004/02/skos/core#inScheme", @@ -31173,7 +31173,7 @@ "type": [ "literal" ], - "value": "topConceptOf" + "value": "SKOS_topConceptOf" }, "isDefiningOntology": true, "definedBy": [ @@ -31201,7 +31201,7 @@ "type": [ "literal" ], - "value": "hasTopConcept" + "value": "SKOS:hasTopConcept" }, "type": [ "property", @@ -31227,7 +31227,7 @@ "type": [ "literal" ], - "value": "inScheme" + "value": "SKOS:inScheme" }, "type": [ "property", @@ -31253,7 +31253,7 @@ "type": [ "literal" ], - "value": "Concept" + "value": "SKOS:Concept" }, "type": [ "class", @@ -31278,7 +31278,7 @@ "type": [ "literal" ], - "value": "definition" + "value": "SKOS:definition" }, "type": [ "property", @@ -31302,7 +31302,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -31325,7 +31325,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -31348,7 +31348,7 @@ "type": [ "literal" ], - "value": "isDefinedBy" + "value": "RDFS:isDefinedBy" }, "type": [ "property", @@ -31371,7 +31371,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -31396,7 +31396,7 @@ "type": [ "literal" ], - "value": "ConceptScheme" + "value": "SKOS:ConceptScheme" }, "type": [ "class", @@ -31419,7 +31419,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -31468,7 +31468,7 @@ "type": [ "literal" ], - "value": "seeAlso" + "value": "RDFS:seeAlso" }, "type": [ "property", @@ -31480,6 +31480,7 @@ { "ontologyId": "gitissue502", "importsFrom": [ + "oio", "skos", "rdfs" ], @@ -31738,7 +31739,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -31809,11 +31810,6 @@ "entity" ] }, - "BFO:0000002": { - "url": "http://purl.obolibrary.org/obo/BFO_0000002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000002" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -31830,7 +31826,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -32032,7 +32028,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -32081,11 +32077,6 @@ "entity" ] }, - "BFO:0000003": { - "url": "http://purl.obolibrary.org/obo/BFO_0000003", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000003" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -32124,7 +32115,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -32260,60 +32251,55 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "BFO:0000004": { - "url": "http://purl.obolibrary.org/obo/BFO_0000004", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000004" - }, - "http://purl.obolibrary.org/obo/BFO_0000002": { - "numAppearsIn": 1, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "continuant", - "lang": "en" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000002" + "value": "RDFS:label" }, "type": [ - "class", + "property", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#label": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 3, + "http://purl.obolibrary.org/obo/BFO_0000002": { + "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "label" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "continuant", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "label" + "value": "BFO:0000002" }, "type": [ - "property", + "class", "entity" ] }, @@ -32454,7 +32440,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -32482,11 +32468,6 @@ "entity" ] }, - "BFO:0000015": { - "url": "http://purl.obolibrary.org/obo/BFO_0000015", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000015" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -32503,7 +32484,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -32678,7 +32659,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -32706,11 +32687,6 @@ "entity" ] }, - "BFO:0000016": { - "url": "http://purl.obolibrary.org/obo/BFO_0000016", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000016" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -32727,7 +32703,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -32989,18 +32965,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "BFO:0000017": { - "url": "http://purl.obolibrary.org/obo/BFO_0000017", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000017" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -33060,7 +33031,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -33207,11 +33178,6 @@ "entity" ] }, - "BFO:0000019": { - "url": "http://purl.obolibrary.org/obo/BFO_0000019", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000019" - }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { "definedBy": [ "rdfs" @@ -33228,7 +33194,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -33251,7 +33217,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -33391,11 +33357,6 @@ "gitissue502" ], "linkedEntities": { - "BFO:0000020": { - "url": "http://purl.obolibrary.org/obo/BFO_0000020", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000020" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -33435,7 +33396,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -33458,7 +33419,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -33662,7 +33623,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -33711,6 +33672,29 @@ "entity" ] }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + }, "http://purl.obolibrary.org/obo/BFO_0000002": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -33733,34 +33717,6 @@ "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#label": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 3, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "label" - }, - "curie": { - "type": [ - "literal" - ], - "value": "label" - }, - "type": [ - "property", - "entity" - ] - }, - "BFO:0000023": { - "url": "http://purl.obolibrary.org/obo/BFO_0000023", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000023" - }, "http://purl.obolibrary.org/obo/BFO_0000020": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -33952,7 +33908,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -33980,11 +33936,6 @@ "entity" ] }, - "BFO:0000034": { - "url": "http://purl.obolibrary.org/obo/BFO_0000034", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000034" - }, "BFO:function": { "url": "http://purl.obolibrary.org/obo/BFO_function", "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", @@ -34006,7 +33957,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -34274,7 +34225,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -34367,11 +34318,6 @@ "entity" ] }, - "BFO:0000040": { - "url": "http://purl.obolibrary.org/obo/BFO_0000040", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000040" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -34388,7 +34334,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -34528,11 +34474,6 @@ "gitissue502" ], "linkedEntities": { - "BFO:0000141": { - "url": "http://purl.obolibrary.org/obo/BFO_0000141", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000141" - }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { "definedBy": [ "rdfs" @@ -34549,7 +34490,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -34682,7 +34623,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -34866,7 +34807,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -35023,11 +34964,6 @@ "entity" ] }, - "CL:0000000": { - "url": "http://purl.obolibrary.org/obo/CL_0000000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "CL:0000000" - }, "http://purl.obolibrary.org/obo/UBERON_0010000": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -35064,7 +35000,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -35220,7 +35156,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -35305,7 +35241,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -35355,11 +35291,6 @@ "class", "entity" ] - }, - "CL:0000003": { - "url": "http://purl.obolibrary.org/obo/CL_0000003", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "CL:0000003" } } }, @@ -35552,7 +35483,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -35665,11 +35596,6 @@ "entity" ] }, - "CL:0000039": { - "url": "http://purl.obolibrary.org/obo/CL_0000039", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "CL:0000039" - }, "http://purl.obolibrary.org/obo/GO_0022414": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -35729,7 +35655,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -35927,7 +35853,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -35954,11 +35880,6 @@ "entity" ] }, - "CL:0000211": { - "url": "http://purl.obolibrary.org/obo/CL_0000211", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "CL:0000211" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -36017,7 +35938,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -36278,7 +36199,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -36305,11 +36226,6 @@ "entity" ] }, - "CL:0000255": { - "url": "http://purl.obolibrary.org/obo/CL_0000255", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "CL:0000255" - }, "http://purl.obolibrary.org/obo/RO_0002160": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -36433,7 +36349,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -36613,7 +36529,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -36640,11 +36556,6 @@ "entity" ] }, - "CL:0000393": { - "url": "http://purl.obolibrary.org/obo/CL_0000393", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "CL:0000393" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -36723,7 +36634,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -36947,7 +36858,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -37052,7 +36963,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -37081,11 +36992,6 @@ "entity" ] }, - "CL:0000404": { - "url": "http://purl.obolibrary.org/obo/CL_0000404", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "CL:0000404" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -37379,7 +37285,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -37593,11 +37499,6 @@ "entity" ] }, - "CL:0000540": { - "url": "http://purl.obolibrary.org/obo/CL_0000540", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "CL:0000540" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -37759,7 +37660,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -38024,7 +37925,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -38135,11 +38036,6 @@ "entity" ] }, - "CL:0000548": { - "url": "http://purl.obolibrary.org/obo/CL_0000548", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "CL:0000548" - }, "http://purl.obolibrary.org/obo/CL_0000255": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -38240,7 +38136,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -38450,7 +38346,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -38586,11 +38482,6 @@ "entity" ] }, - "CL:0000586": { - "url": "http://purl.obolibrary.org/obo/CL_0000586", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "CL:0000586" - }, "http://purl.obolibrary.org/obo/CL_0000039": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -38670,7 +38561,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -38909,11 +38800,6 @@ "entity" ] }, - "CL:0002319": { - "url": "http://purl.obolibrary.org/obo/CL_0002319", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "CL:0002319" - }, "http://purl.obolibrary.org/obo/CL_0000003": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -38950,7 +38836,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -39243,7 +39129,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -39465,7 +39351,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -39514,11 +39400,6 @@ "entity" ] }, - "CL:0002371": { - "url": "http://purl.obolibrary.org/obo/CL_0002371", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "CL:0002371" - }, "http://purl.obolibrary.org/obo/UBERON_0001062": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -39575,7 +39456,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -39738,117 +39619,112 @@ "gitissue502" ], "linkedEntities": { - "http://purl.obolibrary.org/obo/BFO_0000050": { + "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "part of", - "lang": "en" + "value": "biological_process" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000050" + "value": "GO:0008150" }, "type": [ - "property", - "objectProperty", + "class", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/BFO_0000050": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "subClassOf" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "part of", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "subClassOf" + "value": "BFO:0000050" }, "type": [ "property", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/UBERON_0003133": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subClassOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "value": "reproductive organ" + "value": "subClassOf" }, "curie": { "type": [ "literal" ], - "value": "UBERON:0003133" + "value": "RDFS:subClassOf" }, "type": [ - "class", + "property", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0008150": { + "http://purl.obolibrary.org/obo/GO_0022414": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "biological_process" + "value": "reproductive process" }, "curie": { "type": [ "literal" ], - "value": "GO:0008150" + "value": "GO:0022414" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0022414": { + "http://purl.obolibrary.org/obo/UBERON_0003133": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "reproductive process" + "value": "reproductive organ" }, "curie": { "type": [ "literal" ], - "value": "GO:0022414" + "value": "UBERON:0003133" }, "type": [ "class", "entity" ] }, - "GO:0000003": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0000003", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0000003" - }, "http://purl.obolibrary.org/obo/RO_0002216": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -39888,7 +39764,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -40033,6 +39909,26 @@ "entity" ] }, + "http://purl.obolibrary.org/obo/GO_0008150": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "biological_process" + }, + "curie": { + "type": [ + "literal" + ], + "value": "GO:0008150" + }, + "type": [ + "class", + "entity" + ] + }, "http://purl.obolibrary.org/obo/GO_0065007": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -40069,18 +39965,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0001508": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0001508", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0001508" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -40104,88 +39995,68 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0019226": { + "http://purl.obolibrary.org/obo/GO_0042391": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "transmission of nerve impulse" + "value": "regulation of membrane potential" }, "curie": { "type": [ "literal" ], - "value": "GO:0019226" + "value": "GO:0042391" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0008150": { - "numAppearsIn": 1, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "biological_process" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "GO:0008150" + "value": "RDFS:label" }, "type": [ - "class", + "property", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0042391": { + "http://purl.obolibrary.org/obo/GO_0019226": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "regulation of membrane potential" + "value": "transmission of nerve impulse" }, "curie": { "type": [ "literal" ], - "value": "GO:0042391" + "value": "GO:0019226" }, "type": [ "class", "entity" ] - }, - "http://www.w3.org/2000/01/rdf-schema#label": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 3, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "label" - }, - "curie": { - "type": [ - "literal" - ], - "value": "label" - }, - "type": [ - "property", - "entity" - ] } } }, @@ -40391,18 +40262,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0001704": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0001704", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0001704" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -40602,7 +40468,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -40848,18 +40714,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0001705": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0001705", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0001705" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -41099,7 +40960,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -41325,18 +41186,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0001706": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0001706", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0001706" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -41596,7 +41452,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -41824,18 +41680,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0001707": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0001707", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0001707" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -42135,7 +41986,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -42397,7 +42248,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -42507,11 +42358,6 @@ "entity" ] }, - "GO:0001838": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0001838", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0001838" - }, "http://purl.obolibrary.org/obo/GO_0060429": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -42748,7 +42594,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -43048,7 +42894,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -43261,11 +43107,6 @@ "entity" ] }, - "GO:0001841": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0001841", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0001841" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -43502,7 +43343,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -43731,7 +43572,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -43781,11 +43622,6 @@ "entity" ] }, - "GO:0002009": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0002009", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0002009" - }, "http://purl.obolibrary.org/obo/GO_0060429": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -43902,7 +43738,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -44012,11 +43848,6 @@ "entity" ] }, - "GO:0003008": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0003008", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0003008" - }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { "definedBy": [ "rdfs" @@ -44033,7 +43864,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -44076,7 +43907,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -44196,18 +44027,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0005102": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0005102", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0005102" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -44224,7 +44050,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -44430,7 +44256,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -44557,11 +44383,6 @@ "entity" ] }, - "GO:0005179": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0005179", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0005179" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -44718,7 +44539,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -44957,7 +44778,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -45173,11 +44994,6 @@ "entity" ] }, - "GO:0005183": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0005183", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0005183" - }, "http://purl.obolibrary.org/obo/GO_0030545": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -45294,7 +45110,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -45423,11 +45239,6 @@ "entity" ] }, - "GO:0005515": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0005515", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0005515" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -45444,7 +45255,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -45612,18 +45423,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0006810": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0006810", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0006810" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -45640,7 +45446,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -45774,11 +45580,6 @@ "entity" ] }, - "GO:0006811": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0006811", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0006811" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -45815,7 +45616,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -45858,7 +45659,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -45972,6 +45773,26 @@ "gitissue502" ], "linkedEntities": { + "http://purl.obolibrary.org/obo/GO_0008150": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "biological_process" + }, + "curie": { + "type": [ + "literal" + ], + "value": "GO:0008150" + }, + "type": [ + "class", + "entity" + ] + }, "http://purl.obolibrary.org/obo/BFO_0000050": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -46011,7 +45832,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -46058,73 +45879,48 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0019226": { - "numAppearsIn": 1, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "transmission of nerve impulse" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "GO:0019226" + "value": "RDFS:label" }, "type": [ - "class", + "property", "entity" ] }, - "GO:0007154": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0007154", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0007154" - }, - "http://purl.obolibrary.org/obo/GO_0008150": { + "http://purl.obolibrary.org/obo/GO_0019226": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "biological_process" + "value": "transmission of nerve impulse" }, "curie": { "type": [ "literal" ], - "value": "GO:0008150" + "value": "GO:0019226" }, "type": [ "class", "entity" ] - }, - "http://www.w3.org/2000/01/rdf-schema#label": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 3, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "label" - }, - "curie": { - "type": [ - "literal" - ], - "value": "label" - }, - "type": [ - "property", - "entity" - ] } } }, @@ -46447,7 +46243,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -46557,11 +46353,6 @@ "entity" ] }, - "GO:0007165": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0007165", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0007165" - }, "http://purl.obolibrary.org/obo/GO_0048018": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -46618,7 +46409,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -46835,18 +46626,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0007267": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0007267", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0007267" - }, "http://purl.obolibrary.org/obo/GO_0009987": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -46943,7 +46729,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -47136,7 +46922,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -47206,11 +46992,6 @@ "entity" ] }, - "GO:0007268": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0007268", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0007268" - }, "http://purl.obolibrary.org/obo/GO_0009987": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -47347,7 +47128,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -47524,7 +47305,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -47611,11 +47392,6 @@ "entity" ] }, - "GO:0007275": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0007275", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0007275" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -47692,7 +47468,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -47891,7 +47667,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -47961,11 +47737,6 @@ "entity" ] }, - "GO:0007276": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0007276", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0007276" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -48062,7 +47833,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -48361,7 +48132,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -48634,11 +48405,6 @@ "entity" ] }, - "GO:0007369": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0007369", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0007369" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -48655,7 +48421,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -48760,151 +48526,146 @@ "gitissue502" ], "linkedEntities": { - "http://purl.obolibrary.org/obo/BFO_0000050": { + "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "part of", - "lang": "en" + "value": "biological_process" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000050" + "value": "GO:0008150" }, "type": [ - "property", - "objectProperty", + "class", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/BFO_0000050": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "subClassOf" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "part of", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "subClassOf" + "value": "BFO:0000050" }, "type": [ "property", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0032502": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subClassOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "value": "developmental process" + "value": "subClassOf" }, "curie": { "type": [ "literal" ], - "value": "GO:0032502" + "value": "RDFS:subClassOf" }, "type": [ - "class", + "property", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0001705": { + "http://purl.obolibrary.org/obo/GO_0048856": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "ectoderm formation" + "value": "anatomical structure development" }, "curie": { "type": [ "literal" ], - "value": "GO:0001705" + "value": "GO:0048856" }, "type": [ "class", "entity" ] }, - "GO:0007398": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0007398", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0007398" - }, - "http://purl.obolibrary.org/obo/GO_0008150": { + "http://purl.obolibrary.org/obo/GO_0032502": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "biological_process" + "value": "developmental process" }, "curie": { "type": [ "literal" ], - "value": "GO:0008150" + "value": "GO:0032502" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0048856": { + "http://purl.obolibrary.org/obo/GO_0009888": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "anatomical structure development" + "value": "tissue development" }, "curie": { "type": [ "literal" ], - "value": "GO:0048856" + "value": "GO:0009888" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0009888": { + "http://purl.obolibrary.org/obo/GO_0001705": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "tissue development" + "value": "ectoderm formation" }, "curie": { "type": [ "literal" ], - "value": "GO:0009888" + "value": "GO:0001705" }, "type": [ "class", @@ -48927,7 +48688,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -49093,7 +48854,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -49140,11 +48901,6 @@ "entity" ] }, - "GO:0007399": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0007399", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0007399" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -49221,7 +48977,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -49346,10 +49102,25 @@ "gitissue502" ], "linkedEntities": { - "GO:0007492": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0007492", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0007492" + "http://purl.obolibrary.org/obo/GO_0008150": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "biological_process" + }, + "curie": { + "type": [ + "literal" + ], + "value": "GO:0008150" + }, + "type": [ + "class", + "entity" + ] }, "http://purl.obolibrary.org/obo/BFO_0000050": { "numAppearsIn": 1, @@ -49390,135 +49161,115 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0032502": { + "http://purl.obolibrary.org/obo/GO_0048856": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "developmental process" + "value": "anatomical structure development" }, "curie": { "type": [ "literal" ], - "value": "GO:0032502" + "value": "GO:0048856" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0001706": { + "http://purl.obolibrary.org/obo/GO_0032502": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "endoderm formation" + "value": "developmental process" }, "curie": { "type": [ "literal" ], - "value": "GO:0001706" + "value": "GO:0032502" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0008150": { + "http://purl.obolibrary.org/obo/GO_0009888": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "biological_process" + "value": "tissue development" }, "curie": { "type": [ "literal" ], - "value": "GO:0008150" + "value": "GO:0009888" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0048856": { - "numAppearsIn": 1, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "anatomical structure development" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "GO:0048856" + "value": "RDFS:label" }, "type": [ - "class", + "property", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0009888": { + "http://purl.obolibrary.org/obo/GO_0001706": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "tissue development" + "value": "endoderm formation" }, "curie": { "type": [ "literal" ], - "value": "GO:0009888" + "value": "GO:0001706" }, "type": [ "class", "entity" ] - }, - "http://www.w3.org/2000/01/rdf-schema#label": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 3, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "label" - }, - "curie": { - "type": [ - "literal" - ], - "value": "label" - }, - "type": [ - "property", - "entity" - ] } } }, @@ -49618,10 +49369,25 @@ "gitissue502" ], "linkedEntities": { - "GO:0007498": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0007498", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0007498" + "http://purl.obolibrary.org/obo/GO_0008150": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "biological_process" + }, + "curie": { + "type": [ + "literal" + ], + "value": "GO:0008150" + }, + "type": [ + "class", + "entity" + ] }, "http://purl.obolibrary.org/obo/BFO_0000050": { "numAppearsIn": 1, @@ -49662,87 +49428,67 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0032502": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "developmental process" - }, - "curie": { - "type": [ - "literal" - ], - "value": "GO:0032502" - }, - "type": [ - "class", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/GO_0008150": { + "http://purl.obolibrary.org/obo/GO_0048332": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "biological_process" + "value": "mesoderm morphogenesis" }, "curie": { "type": [ "literal" ], - "value": "GO:0008150" + "value": "GO:0048332" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0048332": { + "http://purl.obolibrary.org/obo/GO_0048856": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "mesoderm morphogenesis" + "value": "anatomical structure development" }, "curie": { "type": [ "literal" ], - "value": "GO:0048332" + "value": "GO:0048856" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0048856": { + "http://purl.obolibrary.org/obo/GO_0032502": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "anatomical structure development" + "value": "developmental process" }, "curie": { "type": [ "literal" ], - "value": "GO:0048856" + "value": "GO:0032502" }, "type": [ "class", @@ -49785,7 +49531,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -49947,11 +49693,6 @@ "entity" ] }, - "GO:0008150": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0008150", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0008150" - }, "http://purl.obolibrary.org/obo/RO_0002215": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -49991,7 +49732,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -50186,7 +49927,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -50216,11 +49957,6 @@ "entity" ] }, - "GO:0009566": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0009566", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0009566" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -50340,7 +50076,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -50514,7 +50250,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -50564,11 +50300,6 @@ "entity" ] }, - "GO:0009653": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0009653", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0009653" - }, "http://purl.obolibrary.org/obo/GO_0048646": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -50645,7 +50376,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -50776,11 +50507,6 @@ "gitissue502" ], "linkedEntities": { - "GO:0009790": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0009790", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0009790" - }, "http://purl.obolibrary.org/obo/GO_0007275": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -50840,7 +50566,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -51026,7 +50752,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -51163,11 +50889,6 @@ "gitissue502" ], "linkedEntities": { - "GO:0009791": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0009791", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0009791" - }, "http://purl.obolibrary.org/obo/GO_0007275": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -51227,7 +50948,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -51396,7 +51117,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -51494,11 +51215,6 @@ "gitissue502" ], "linkedEntities": { - "GO:0009792": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0009792", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0009792" - }, "http://purl.obolibrary.org/obo/GO_0007275": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -51555,7 +51271,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -51658,7 +51374,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -51761,131 +51477,126 @@ "gitissue502" ], "linkedEntities": { - "http://purl.obolibrary.org/obo/BFO_0000050": { + "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "part of", - "lang": "en" + "value": "biological_process" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000050" + "value": "GO:0008150" }, "type": [ - "property", - "objectProperty", + "class", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/BFO_0000050": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "subClassOf" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "part of", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "subClassOf" + "value": "BFO:0000050" }, "type": [ "property", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0032502": { + "http://purl.obolibrary.org/obo/GO_0048729": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "developmental process" + "value": "tissue morphogenesis" }, "curie": { "type": [ "literal" ], - "value": "GO:0032502" + "value": "GO:0048729" }, "type": [ "class", "entity" ] }, - "GO:0009888": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0009888", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0009888" - }, - "http://purl.obolibrary.org/obo/GO_0008150": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subClassOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "value": "biological_process" + "value": "subClassOf" }, "curie": { "type": [ "literal" ], - "value": "GO:0008150" + "value": "RDFS:subClassOf" }, "type": [ - "class", + "property", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0048729": { + "http://purl.obolibrary.org/obo/GO_0048856": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "tissue morphogenesis" + "value": "anatomical structure development" }, "curie": { "type": [ "literal" ], - "value": "GO:0048729" + "value": "GO:0048856" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0048856": { + "http://purl.obolibrary.org/obo/GO_0032502": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "anatomical structure development" + "value": "developmental process" }, "curie": { "type": [ "literal" ], - "value": "GO:0048856" + "value": "GO:0032502" }, "type": [ "class", @@ -51908,7 +51619,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -52133,7 +51844,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -52180,11 +51891,6 @@ "entity" ] }, - "GO:0009914": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0009914", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0009914" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -52201,7 +51907,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -52355,7 +52061,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -52382,11 +52088,6 @@ "entity" ] }, - "GO:0009987": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0009987", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0009987" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -52403,7 +52104,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -52495,11 +52196,6 @@ "gitissue502" ], "linkedEntities": { - "GO:0010817": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0010817", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0010817" - }, "http://purl.obolibrary.org/obo/GO_0065008": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -52576,7 +52272,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -52599,7 +52295,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -52690,17 +52386,12 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", "entity" ] - }, - "GO:0016301": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0016301", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0016301" } } }, @@ -52898,18 +52589,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0016331": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0016331", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0016331" - }, "http://purl.obolibrary.org/obo/GO_0032502": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -53146,7 +52832,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -53381,7 +53067,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -53551,11 +53237,6 @@ "entity" ] }, - "GO:0019226": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0019226", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0019226" - }, "http://purl.obolibrary.org/obo/GO_0007268": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -53615,7 +53296,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -53769,74 +53450,69 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000050": { + "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "part of", - "lang": "en" + "value": "biological_process" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000050" + "value": "GO:0008150" }, "type": [ - "property", - "objectProperty", + "class", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/BFO_0000050": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "subClassOf" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "part of", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "subClassOf" + "value": "BFO:0000050" }, "type": [ "property", + "objectProperty", "entity" ] }, - "GO:0019953": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0019953", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0019953" - }, - "http://purl.obolibrary.org/obo/GO_0008150": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subClassOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "value": "biological_process" + "value": "subClassOf" }, "curie": { "type": [ "literal" ], - "value": "GO:0008150" + "value": "RDFS:subClassOf" }, "type": [ - "class", + "property", "entity" ] }, @@ -53876,7 +53552,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -54061,11 +53737,6 @@ "gitissue502" ], "linkedEntities": { - "GO:0021915": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0021915", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0021915" - }, "http://purl.obolibrary.org/obo/GO_0007399": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -54145,7 +53816,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -54431,7 +54102,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -54621,7 +54292,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -54691,11 +54362,6 @@ "entity" ] }, - "GO:0022414": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0022414", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0022414" - }, "http://purl.obolibrary.org/obo/RO_0002215": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -54735,7 +54401,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -54858,6 +54524,26 @@ "entity" ] }, + "http://purl.obolibrary.org/obo/GO_0008150": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "biological_process" + }, + "curie": { + "type": [ + "literal" + ], + "value": "GO:0008150" + }, + "type": [ + "class", + "entity" + ] + }, "http://purl.obolibrary.org/obo/GO_0065007": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -54917,7 +54603,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -54944,31 +54630,6 @@ "entity" ] }, - "GO:0023052": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0023052", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0023052" - }, - "http://purl.obolibrary.org/obo/GO_0008150": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "biological_process" - }, - "curie": { - "type": [ - "literal" - ], - "value": "GO:0008150" - }, - "type": [ - "class", - "entity" - ] - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -54985,7 +54646,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -55228,11 +54889,6 @@ "entity" ] }, - "GO:0023061": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0023061", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0023061" - }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { "definedBy": [ "rdfs" @@ -55249,7 +54905,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -55475,7 +55131,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -55575,18 +55231,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0030545": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0030545", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0030545" - }, "http://purl.obolibrary.org/obo/GO_0098772": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -55623,7 +55274,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -55724,11 +55375,6 @@ "gitissue502" ], "linkedEntities": { - "GO:0030546": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0030546", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0030546" - }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { "definedBy": [ "rdfs" @@ -55745,7 +55391,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -55828,7 +55474,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -55948,18 +55594,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0032501": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0032501", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0032501" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -55976,7 +55617,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -56084,6 +55725,26 @@ "gitissue502" ], "linkedEntities": { + "http://purl.obolibrary.org/obo/GO_0008150": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "biological_process" + }, + "curie": { + "type": [ + "literal" + ], + "value": "GO:0008150" + }, + "type": [ + "class", + "entity" + ] + }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { "definedBy": [ "rdfs" @@ -56100,7 +55761,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -56136,51 +55797,6 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/UBERON_0005423": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "developing anatomical structure" - }, - "curie": { - "type": [ - "literal" - ], - "value": "UBERON:0005423" - }, - "type": [ - "class", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/GO_0008150": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "biological_process" - }, - "curie": { - "type": [ - "literal" - ], - "value": "GO:0008150" - }, - "type": [ - "class", - "entity" - ] - }, - "GO:0032502": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0032502", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0032502" - }, "http://purl.obolibrary.org/obo/MONDO_0021147": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -56240,12 +55856,32 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", "entity" ] + }, + "http://purl.obolibrary.org/obo/UBERON_0005423": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "developing anatomical structure" + }, + "curie": { + "type": [ + "literal" + ], + "value": "UBERON:0005423" + }, + "type": [ + "class", + "entity" + ] } } }, @@ -56372,111 +56008,106 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000050": { + "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "part of", - "lang": "en" + "value": "biological_process" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000050" + "value": "GO:0008150" }, "type": [ - "property", - "objectProperty", + "class", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/BFO_0000050": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "subClassOf" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "part of", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "subClassOf" + "value": "BFO:0000050" }, "type": [ "property", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0032501": { + "http://purl.obolibrary.org/obo/GO_0048609": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "multicellular organismal process" + "value": "multicellular organismal reproductive process" }, "curie": { "type": [ "literal" ], - "value": "GO:0032501" + "value": "GO:0048609" }, "type": [ "class", "entity" ] }, - "GO:0032504": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0032504", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0032504" - }, - "http://purl.obolibrary.org/obo/GO_0008150": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subClassOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "value": "biological_process" + "value": "subClassOf" }, "curie": { "type": [ "literal" ], - "value": "GO:0008150" + "value": "RDFS:subClassOf" }, "type": [ - "class", + "property", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0048609": { + "http://purl.obolibrary.org/obo/GO_0032501": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "multicellular organismal reproductive process" + "value": "multicellular organismal process" }, "curie": { "type": [ "literal" ], - "value": "GO:0048609" + "value": "GO:0032501" }, "type": [ "class", @@ -56499,7 +56130,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -56704,18 +56335,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0032940": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0032940", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0032940" - }, "http://purl.obolibrary.org/obo/GO_0006810": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -56792,7 +56418,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -56948,7 +56574,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -56978,11 +56604,6 @@ "entity" ] }, - "GO:0034220": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0034220", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0034220" - }, "http://purl.obolibrary.org/obo/GO_0055085": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -57139,7 +56760,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -57349,7 +56970,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -57419,11 +57040,6 @@ "entity" ] }, - "GO:0035148": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0035148", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0035148" - }, "http://purl.obolibrary.org/obo/GO_0035295": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -57540,7 +57156,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -57779,18 +57395,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0035239": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0035239", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0035239" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -57930,7 +57541,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -58127,7 +57738,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -58217,11 +57828,6 @@ "entity" ] }, - "GO:0035295": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0035295", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0035295" - }, "http://purl.obolibrary.org/obo/GO_0048856": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -58278,7 +57884,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -58364,11 +57970,6 @@ "gitissue502" ], "linkedEntities": { - "GO:0038023": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0038023", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0038023" - }, "http://purl.obolibrary.org/obo/GO_0048018": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -58428,7 +58029,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -58628,7 +58229,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -58761,11 +58362,6 @@ "entity" ] }, - "GO:0040016": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0040016", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0040016" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -58862,7 +58458,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -59049,7 +58645,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -59099,11 +58695,6 @@ "entity" ] }, - "GO:0042391": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0042391", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0042391" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -59120,7 +58711,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -59290,7 +58881,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -59357,11 +58948,6 @@ "entity" ] }, - "GO:0043009": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0043009", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0043009" - }, "http://purl.obolibrary.org/obo/GO_0009792": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -59438,7 +59024,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -59544,11 +59130,6 @@ "gitissue502" ], "linkedEntities": { - "GO:0045202": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0045202", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0045202" - }, "http://purl.obolibrary.org/obo/GO_0099536": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -59608,7 +59189,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -59860,7 +59441,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -59987,11 +59568,6 @@ "entity" ] }, - "GO:0046879": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0046879", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0046879" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -60171,7 +59747,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -60296,71 +59872,66 @@ "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/GO_0051179": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "subClassOf" + "value": "localization" }, "curie": { "type": [ "literal" ], - "value": "subClassOf" + "value": "GO:0051179" }, "type": [ - "property", + "class", "entity" ] }, - "GO:0046903": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0046903", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0046903" - }, - "http://purl.obolibrary.org/obo/GO_0051179": { + "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "localization" + "value": "biological_process" }, "curie": { "type": [ "literal" ], - "value": "GO:0051179" + "value": "GO:0008150" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0008150": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subClassOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "value": "biological_process" + "value": "subClassOf" }, "curie": { "type": [ "literal" ], - "value": "GO:0008150" + "value": "RDFS:subClassOf" }, "type": [ - "class", + "property", "entity" ] }, @@ -60423,7 +59994,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -60727,7 +60298,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -60877,11 +60448,6 @@ "entity" ] }, - "GO:0048018": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0048018", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0048018" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -61041,7 +60607,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -61261,7 +60827,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -61311,11 +60877,6 @@ "entity" ] }, - "GO:0048332": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0048332", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0048332" - }, "http://purl.obolibrary.org/obo/GO_0001707": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -61452,7 +61013,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -61555,10 +61116,25 @@ "gitissue502" ], "linkedEntities": { - "GO:0048513": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0048513", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0048513" + "http://purl.obolibrary.org/obo/GO_0008150": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "biological_process" + }, + "curie": { + "type": [ + "literal" + ], + "value": "GO:0008150" + }, + "type": [ + "class", + "entity" + ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { "definedBy": [ @@ -61576,7 +61152,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -61606,60 +61182,40 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0032502": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "developmental process" - }, - "curie": { - "type": [ - "literal" - ], - "value": "GO:0032502" - }, - "type": [ - "class", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/GO_0008150": { + "http://purl.obolibrary.org/obo/GO_0048856": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "biological_process" + "value": "anatomical structure development" }, "curie": { "type": [ "literal" ], - "value": "GO:0008150" + "value": "GO:0048856" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0048856": { + "http://purl.obolibrary.org/obo/GO_0032502": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "anatomical structure development" + "value": "developmental process" }, "curie": { "type": [ "literal" ], - "value": "GO:0048856" + "value": "GO:0032502" }, "type": [ "class", @@ -61682,7 +61238,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -61921,7 +61477,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -62100,11 +61656,6 @@ "entity" ] }, - "GO:0048598": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0048598", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0048598" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -62121,7 +61672,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -62306,7 +61857,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -62336,11 +61887,6 @@ "entity" ] }, - "GO:0048609": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0048609", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0048609" - }, "http://purl.obolibrary.org/obo/GO_0032504": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -62437,7 +61983,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -62621,7 +62167,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -62671,11 +62217,6 @@ "entity" ] }, - "GO:0048646": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0048646", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0048646" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -62732,7 +62273,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -62918,7 +62459,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -62948,11 +62489,6 @@ "entity" ] }, - "GO:0048729": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0048729", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0048729" - }, "http://purl.obolibrary.org/obo/GO_0032502": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -63049,7 +62585,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -63235,7 +62771,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -63305,11 +62841,6 @@ "entity" ] }, - "GO:0048731": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0048731", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0048731" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -63366,7 +62897,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -63467,11 +62998,6 @@ "gitissue502" ], "linkedEntities": { - "GO:0048856": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0048856", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0048856" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -63551,7 +63077,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -63594,7 +63120,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -63782,7 +63308,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -63805,17 +63331,12 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", "entity" ] - }, - "GO:0050789": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0050789", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0050789" } } }, @@ -63984,11 +63505,6 @@ "entity" ] }, - "GO:0050794": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0050794", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0050794" - }, "http://purl.obolibrary.org/obo/GO_0065007": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -64025,7 +63541,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -64068,7 +63584,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -64171,108 +63687,103 @@ "gitissue502" ], "linkedEntities": { - "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/GO_0008150": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "subClassOf" + "value": "biological_process" }, "curie": { "type": [ "literal" ], - "value": "subClassOf" + "value": "GO:0008150" }, "type": [ - "property", + "class", "entity" ] }, - "GO:0050877": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0050877", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0050877" - }, - "http://purl.obolibrary.org/obo/GO_0003008": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subClassOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "value": "system process" + "value": "subClassOf" }, "curie": { "type": [ "literal" ], - "value": "GO:0003008" + "value": "RDFS:subClassOf" }, "type": [ - "class", + "property", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0032501": { + "http://purl.obolibrary.org/obo/UBERON_0001016": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "multicellular organismal process" + "value": "nervous system" }, "curie": { "type": [ "literal" ], - "value": "GO:0032501" + "value": "UBERON:0001016" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0008150": { + "http://purl.obolibrary.org/obo/GO_0003008": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "biological_process" + "value": "system process" }, "curie": { "type": [ "literal" ], - "value": "GO:0008150" + "value": "GO:0003008" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/UBERON_0001016": { + "http://purl.obolibrary.org/obo/GO_0032501": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "nervous system" + "value": "multicellular organismal process" }, "curie": { "type": [ "literal" ], - "value": "UBERON:0001016" + "value": "GO:0032501" }, "type": [ "class", @@ -64318,7 +63829,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -64438,18 +63949,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0050896": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0050896", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0050896" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -64466,7 +63972,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -64586,18 +64092,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0051179": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0051179", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0051179" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -64614,7 +64115,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -64760,18 +64261,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0051234": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0051234", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0051234" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -64788,7 +64284,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -64878,11 +64374,6 @@ "gitissue502" ], "linkedEntities": { - "GO:0051301": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0051301", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0051301" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -64919,7 +64410,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -64962,7 +64453,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -65074,137 +64565,132 @@ "gitissue502" ], "linkedEntities": { - "http://purl.obolibrary.org/obo/BFO_0000050": { + "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "part of", - "lang": "en" + "value": "biological_process" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000050" + "value": "GO:0008150" }, "type": [ - "property", - "objectProperty", + "class", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/BFO_0000050": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "subClassOf" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "part of", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "subClassOf" + "value": "BFO:0000050" }, "type": [ "property", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0007165": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subClassOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "value": "signal transduction" + "value": "subClassOf" }, "curie": { "type": [ "literal" ], - "value": "GO:0007165" + "value": "RDFS:subClassOf" }, "type": [ - "class", + "property", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0009987": { + "http://purl.obolibrary.org/obo/GO_0050896": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "cellular process" + "value": "response to stimulus" }, "curie": { "type": [ "literal" ], - "value": "GO:0009987" + "value": "GO:0050896" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0008150": { + "http://purl.obolibrary.org/obo/GO_0007165": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "biological_process" + "value": "signal transduction" }, "curie": { "type": [ "literal" ], - "value": "GO:0008150" + "value": "GO:0007165" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0050896": { + "http://purl.obolibrary.org/obo/GO_0009987": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "response to stimulus" + "value": "cellular process" }, "curie": { "type": [ "literal" ], - "value": "GO:0050896" + "value": "GO:0009987" }, "type": [ "class", "entity" ] }, - "GO:0051716": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0051716", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0051716" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -65221,7 +64707,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -65402,18 +64888,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0055085": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0055085", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0055085" - }, "http://purl.obolibrary.org/obo/GO_0006810": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -65470,7 +64951,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -65575,131 +65056,126 @@ "gitissue502" ], "linkedEntities": { - "http://purl.obolibrary.org/obo/BFO_0000050": { + "http://purl.obolibrary.org/obo/GO_0008150": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "part of", - "lang": "en" + "value": "biological_process" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000050" + "value": "GO:0008150" }, "type": [ - "property", - "objectProperty", + "class", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/BFO_0000050": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "subClassOf" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "part of", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "subClassOf" + "value": "BFO:0000050" }, "type": [ "property", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0032502": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subClassOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "value": "developmental process" + "value": "subClassOf" }, "curie": { "type": [ "literal" ], - "value": "GO:0032502" + "value": "RDFS:subClassOf" }, "type": [ - "class", + "property", "entity" ] }, - "GO:0060429": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0060429", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0060429" - }, - "http://purl.obolibrary.org/obo/GO_0008150": { + "http://purl.obolibrary.org/obo/GO_0002009": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "biological_process" + "value": "morphogenesis of an epithelium" }, "curie": { "type": [ "literal" ], - "value": "GO:0008150" + "value": "GO:0002009" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0002009": { + "http://purl.obolibrary.org/obo/GO_0048856": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "morphogenesis of an epithelium" + "value": "anatomical structure development" }, "curie": { "type": [ "literal" ], - "value": "GO:0002009" + "value": "GO:0048856" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/GO_0048856": { + "http://purl.obolibrary.org/obo/GO_0032502": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "anatomical structure development" + "value": "developmental process" }, "curie": { "type": [ "literal" ], - "value": "GO:0048856" + "value": "GO:0032502" }, "type": [ "class", @@ -65742,7 +65218,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -65866,11 +65342,6 @@ "gitissue502" ], "linkedEntities": { - "GO:0060562": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0060562", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0060562" - }, "http://purl.obolibrary.org/obo/GO_0072175": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -65970,7 +65441,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -66193,7 +65664,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -66313,18 +65784,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0065007": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0065007", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0065007" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -66341,7 +65807,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -66487,18 +65953,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0065008": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0065008", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0065008" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -66515,7 +65976,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -66752,7 +66213,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -66822,11 +66283,6 @@ "entity" ] }, - "GO:0072175": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0072175", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0072175" - }, "http://purl.obolibrary.org/obo/GO_0060429": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -67043,7 +66499,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -67161,11 +66617,6 @@ "entity" ] }, - "GO:0098772": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0098772", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0098772" - }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { "definedBy": [ "rdfs" @@ -67182,7 +66633,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -67228,7 +66679,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -67428,7 +66879,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -67455,11 +66906,6 @@ "entity" ] }, - "GO:0098916": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0098916", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0098916" - }, "http://purl.obolibrary.org/obo/GO_0099536": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -67556,7 +67002,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -67751,7 +67197,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -67858,11 +67304,6 @@ "entity" ] }, - "GO:0099536": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0099536", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0099536" - }, "http://purl.obolibrary.org/obo/BFO_0000066": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -67902,7 +67343,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -68100,7 +67541,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -68167,11 +67608,6 @@ "entity" ] }, - "GO:0099537": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0099537", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0099537" - }, "http://purl.obolibrary.org/obo/GO_0009987": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -68208,7 +67644,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -68389,18 +67825,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0140352": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0140352", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0140352" - }, "http://purl.obolibrary.org/obo/GO_0006810": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -68457,7 +67888,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -68557,18 +67988,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "GO:0140677": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0140677", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0140677" - }, "http://purl.obolibrary.org/obo/GO_0098772": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -68605,7 +68031,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -68738,11 +68164,6 @@ "entity" ] }, - "HP:0001513": { - "url": "http://purl.obolibrary.org/obo/HP_0001513", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "HP:0001513" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -68800,7 +68221,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -70110,7 +69531,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -70209,7 +69630,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -70285,19 +69706,24 @@ "curie": "NCIT:C2991" }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -70306,19 +69732,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -70383,7 +69814,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -71213,7 +70644,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -71307,7 +70738,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -71408,19 +70839,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -71429,19 +70865,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -71566,7 +71007,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -72707,7 +72148,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -72796,7 +72237,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -72804,19 +72245,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -72969,19 +72415,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -72990,19 +72441,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -73093,7 +72549,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -74153,7 +73609,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -74242,7 +73698,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -74380,19 +73836,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -74411,19 +73872,24 @@ "curie": "ncit:C26786" }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -74548,7 +74014,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -75793,19 +75259,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasRelatedSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_related_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasRelatedSynonym" + "value": "OIO:hasRelatedSynonym" }, "type": [ "property", @@ -75884,7 +75355,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -75914,7 +75385,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -75967,19 +75438,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonymType": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasSynonymType" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_synonym_type", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasSynonymType" + "value": "OIO:hasSynonymType" }, "type": [ "property", @@ -76024,7 +75500,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -76121,19 +75597,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -76142,19 +75623,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -76805,7 +76291,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -76899,7 +76385,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -77031,19 +76517,24 @@ "curie": "mondo:0000839" }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -77052,19 +76543,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -77251,7 +76747,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -78684,19 +78180,24 @@ "curie": "DOID:0050177" }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasRelatedSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_related_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasRelatedSynonym" + "value": "OIO:hasRelatedSynonym" }, "type": [ "property", @@ -78705,19 +78206,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasNarrowSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_narrow_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasNarrowSynonym" + "value": "OIO:hasNarrowSynonym" }, "type": [ "property", @@ -78746,7 +78252,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -78776,7 +78282,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -78875,7 +78381,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -78883,19 +78389,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -78967,19 +78478,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasBroadSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_broad_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasBroadSynonym" + "value": "OIO:hasBroadSynonym" }, "type": [ "property", @@ -79008,19 +78524,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -79029,19 +78550,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -79096,7 +78622,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -79701,7 +79227,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -79795,7 +79321,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -79906,19 +79432,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -79983,7 +79514,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -81163,7 +80694,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -81262,7 +80793,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -81270,19 +80801,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -81431,19 +80967,24 @@ "curie": "EFO:0000512" }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -81452,19 +80993,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -81554,7 +81100,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -83273,7 +82819,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -83298,7 +82844,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -83387,7 +82933,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -83395,19 +82941,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -83525,19 +83076,24 @@ "curie": "MONDO:0005071" }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -83546,19 +83102,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -83582,7 +83143,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -84547,7 +84108,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -84641,7 +84202,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -84649,19 +84210,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -84756,19 +84322,24 @@ "curie": "SCTID:2492009" }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasRelatedSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_related_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasRelatedSynonym" + "value": "OIO:hasRelatedSynonym" }, "type": [ "property", @@ -84799,19 +84370,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -84820,19 +84396,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -84923,7 +84504,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -86534,7 +86115,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -86559,7 +86140,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -86658,7 +86239,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -86666,19 +86247,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -86776,19 +86362,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -86797,19 +86388,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -88991,7 +88587,7 @@ "type": [ "literal" ], - "value": "closeMatch" + "value": "SKOS:closeMatch" }, "type": [ "property", @@ -89020,19 +88616,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasRelatedSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_related_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasRelatedSynonym" + "value": "OIO:hasRelatedSynonym" }, "type": [ "property", @@ -89236,7 +88837,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -89316,7 +88917,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -89369,19 +88970,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonymType": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasSynonymType" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_synonym_type", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasSynonymType" + "value": "OIO:hasSynonymType" }, "type": [ "property", @@ -89451,7 +89057,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -89464,19 +89070,24 @@ "curie": "GARD:5575" }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -89687,7 +89298,7 @@ "type": [ "literal" ], - "value": "seeAlso" + "value": "RDFS:seeAlso" }, "type": [ "property", @@ -89700,19 +89311,24 @@ "curie": "MESH:D011218" }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -89726,19 +89342,24 @@ "curie": "MONDO:0015890" }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -91125,7 +90746,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -91150,7 +90771,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -91265,7 +90886,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -91273,19 +90894,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -91371,19 +90997,24 @@ "curie": "SCTID:414916001" }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -91397,19 +91028,24 @@ "curie": "Orphanet:521399" }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -91438,7 +91074,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -91943,7 +91579,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -92037,7 +91673,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -92045,19 +91681,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -92138,19 +91779,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -92179,7 +91825,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -92294,7 +91940,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -92780,7 +92426,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -92788,19 +92434,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -92912,19 +92563,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -92933,19 +92589,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -93060,7 +92721,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -93432,7 +93093,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -93521,7 +93182,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -93529,19 +93190,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -93664,19 +93330,24 @@ "curie": "MONDO:0015330" }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -93700,7 +93371,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -93814,7 +93485,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -94358,7 +94029,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -94467,7 +94138,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -94475,19 +94146,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -94573,19 +94249,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -94594,19 +94275,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -94732,7 +94418,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -95483,7 +95169,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -95572,7 +95258,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -95580,19 +95266,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -95779,19 +95470,24 @@ "curie": "MONDO:0015770" }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -95981,7 +95677,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -96348,7 +96044,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -96442,7 +96138,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -96450,19 +96146,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -96605,19 +96306,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -96641,7 +96347,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -96735,7 +96441,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -97222,7 +96928,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -97331,7 +97037,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -97339,19 +97045,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -97540,19 +97251,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -97561,19 +97277,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -97633,7 +97354,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -97722,7 +97443,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -98519,7 +98240,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -98544,7 +98265,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -98653,7 +98374,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -98661,19 +98382,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -98826,19 +98552,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -98847,19 +98578,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -98914,7 +98650,7 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", @@ -100772,19 +100508,24 @@ "curie": "MONDO:0004228" }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasRelatedSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_related_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasRelatedSynonym" + "value": "OIO:hasRelatedSynonym" }, "type": [ "property", @@ -100793,19 +100534,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasNarrowSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_narrow_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasNarrowSynonym" + "value": "OIO:hasNarrowSynonym" }, "type": [ "property", @@ -100904,7 +100650,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -100949,7 +100695,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -101043,7 +100789,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -101051,19 +100797,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -101189,19 +100940,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -101210,19 +100966,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -103092,19 +102853,24 @@ "curie": "Orphanet:68335" }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasRelatedSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_related_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasRelatedSynonym" + "value": "OIO:hasRelatedSynonym" }, "type": [ "property", @@ -103143,7 +102909,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -103168,7 +102934,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -103262,7 +103028,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -103270,19 +103036,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -103348,19 +103119,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -103374,19 +103150,24 @@ "curie": "MONDO:0000838" }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -103933,7 +103714,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -103986,19 +103767,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonymType": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasSynonymType" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_synonym_type", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasSynonymType" + "value": "OIO:hasSynonymType" }, "type": [ "property", @@ -104043,7 +103829,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -104051,19 +103837,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -104138,19 +103929,24 @@ "curie": "orcid:0000-0002-4142-7153" }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasRelatedSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_related_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasRelatedSynonym" + "value": "OIO:hasRelatedSynonym" }, "type": [ "property", @@ -104181,19 +103977,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -104322,11 +104123,6 @@ "entity" ] }, - "MONDO:0019042": { - "url": "http://purl.obolibrary.org/obo/MONDO_0019042", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "MONDO:0019042" - }, "http://www.geneontology.org/formats/oboInOwl#source": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -104348,6 +104144,11 @@ "entity" ] }, + "MONDO:0019042": { + "url": "http://purl.obolibrary.org/obo/MONDO_0019042", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "MONDO:0019042" + }, "GARD:18876": { "url": "https://rarediseases.info.nih.gov/diseases/18876/index", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -104369,7 +104170,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -105827,7 +105628,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -105852,7 +105653,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -105941,7 +105742,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -105949,19 +105750,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -106113,19 +105919,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -106134,19 +105945,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -107098,7 +106914,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -107197,7 +107013,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -107205,19 +107021,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -107378,19 +107199,24 @@ "curie": "SCTID:400038003" }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -107399,19 +107225,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -107496,7 +107327,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -107916,7 +107747,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -108005,7 +107836,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -108013,19 +107844,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -108131,19 +107967,24 @@ "curie": "GARD:19272" }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -108253,7 +108094,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -108665,7 +108506,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -108710,7 +108551,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -108781,19 +108622,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -108802,19 +108648,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -108869,7 +108720,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -109110,7 +108961,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -109201,19 +109052,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -109242,7 +109098,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -109511,7 +109367,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -109622,19 +109478,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -109694,7 +109555,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -109880,7 +109741,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -109964,7 +109825,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -110314,7 +110175,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -110425,19 +110286,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -110446,19 +110312,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -110578,7 +110449,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -110750,7 +110621,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -110813,7 +110684,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -111164,7 +111035,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -111306,19 +111177,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -111327,19 +111203,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -111460,7 +111341,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -111809,7 +111690,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -111898,7 +111779,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -111906,19 +111787,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -112090,19 +111976,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -112172,7 +112063,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -112339,7 +112230,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -112407,7 +112298,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -112804,11 +112695,6 @@ "entity" ] }, - "MONDO:0021152": { - "url": "http://purl.obolibrary.org/obo/MONDO_0021152", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "MONDO:0021152" - }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { "definedBy": [ "rdfs" @@ -112825,13 +112711,18 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, + "MONDO:0021152": { + "url": "http://purl.obolibrary.org/obo/MONDO_0021152", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "MONDO:0021152" + }, "http://purl.obolibrary.org/obo/PATO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -112894,19 +112785,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasRelatedSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_related_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasRelatedSynonym" + "value": "OIO:hasRelatedSynonym" }, "type": [ "property", @@ -112937,19 +112833,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -113050,7 +112951,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -113498,7 +113399,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -113682,19 +113583,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -113703,19 +113609,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -113836,7 +113747,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -114243,7 +114154,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -114421,19 +114332,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -114554,7 +114470,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -115090,7 +115006,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "type": [ "property", @@ -115189,7 +115105,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -115337,19 +115253,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -115454,7 +115375,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -115855,7 +115776,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -115863,19 +115784,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "type": [ "property", @@ -115994,19 +115920,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "type": [ "property", @@ -116015,19 +115946,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -116055,11 +115991,6 @@ "entity" ] }, - "MONDO:0700096": { - "url": "http://purl.obolibrary.org/obo/MONDO_0700096", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "MONDO:0700096" - }, "http://www.geneontology.org/formats/oboInOwl#source": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -116081,6 +116012,11 @@ "entity" ] }, + "MONDO:0700096": { + "url": "http://purl.obolibrary.org/obo/MONDO_0700096", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "MONDO:0700096" + }, "https://orcid.org/0000-0001-5208-3432": { "url": "https://orcid.org/0000-0001-5208-3432", "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", @@ -116102,7 +116038,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -116284,11 +116220,6 @@ "entity" ] }, - "NCBITaxon:110814": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=110814", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:110814" - }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { "definedBy": [ "rdfs" @@ -116305,7 +116236,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -116408,7 +116339,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -116588,7 +116519,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -116615,11 +116546,6 @@ "entity" ] }, - "NCBITaxon:110815": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=110815", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:110815" - }, "http://purl.obolibrary.org/obo/NCBITaxon_33213": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -116736,7 +116662,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -116920,7 +116846,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -117027,11 +116953,6 @@ "entity" ] }, - "NCBITaxon:117570": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=117570", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:117570" - }, "http://purl.obolibrary.org/obo/NCBITaxon_6072": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -117108,7 +117029,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -117218,6 +117139,26 @@ "gitissue502" ], "linkedEntities": { + "http://purl.obolibrary.org/obo/NCBITaxon_33154": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "Opisthokonta" + }, + "curie": { + "type": [ + "literal" + ], + "value": "NCBITaxon:33154" + }, + "type": [ + "class", + "entity" + ] + }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -117274,212 +117215,187 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_33213": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "Bilateria" - }, - "curie": { - "type": [ - "literal" - ], - "value": "NCBITaxon:33213" - }, - "type": [ - "class", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/NCBITaxon_7776": { + "http://purl.obolibrary.org/obo/NCBITaxon_89593": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Gnathostomata " + "value": "Craniata " }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:7776" + "value": "NCBITaxon:89593" }, "type": [ "class", "entity" ] }, - "NCBITaxon:117571": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=117571", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:117571" - }, - "http://purl.obolibrary.org/obo/NCBITaxon_33208": { + "http://purl.obolibrary.org/obo/NCBITaxon_33511": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Metazoa" + "value": "Deuterostomia" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:33208" + "value": "NCBITaxon:33511" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_7742": { + "http://purl.obolibrary.org/obo/NCBITaxon_33213": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Vertebrata " + "value": "Bilateria" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:7742" + "value": "NCBITaxon:33213" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_33154": { + "http://purl.obolibrary.org/obo/NCBITaxon_7711": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Opisthokonta" + "value": "Chordata" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:33154" + "value": "NCBITaxon:7711" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_89593": { + "http://purl.obolibrary.org/obo/NCBITaxon_7776": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Craniata " + "value": "Gnathostomata " }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:89593" + "value": "NCBITaxon:7776" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_33511": { + "http://purl.obolibrary.org/obo/NCBITaxon_6072": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Deuterostomia" + "value": "Eumetazoa" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:33511" + "value": "NCBITaxon:6072" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_7711": { + "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Chordata" + "value": "Teleostomi" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:7711" + "value": "NCBITaxon:117570" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_6072": { + "http://purl.obolibrary.org/obo/NCBITaxon_33208": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Eumetazoa" + "value": "Metazoa" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:6072" + "value": "NCBITaxon:33208" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_117570": { + "http://purl.obolibrary.org/obo/NCBITaxon_7742": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Teleostomi" + "value": "Vertebrata " }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:117570" + "value": "NCBITaxon:7742" }, "type": [ "class", @@ -117502,7 +117418,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -117676,7 +117592,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -117703,11 +117619,6 @@ "entity" ] }, - "NCBITaxon:1312402": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1312402", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:1312402" - }, "http://purl.obolibrary.org/obo/NCBITaxon_6072": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -117764,7 +117675,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -117891,11 +117802,6 @@ "entity" ] }, - "NCBITaxon:131567": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=131567", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:131567" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -117912,7 +117818,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -118082,7 +117988,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -118189,11 +118095,6 @@ "entity" ] }, - "NCBITaxon:1338369": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1338369", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:1338369" - }, "http://purl.obolibrary.org/obo/NCBITaxon_89593": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -118350,7 +118251,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -118552,7 +118453,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -118619,11 +118520,6 @@ "entity" ] }, - "NCBITaxon:1437010": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1437010", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:1437010" - }, "http://purl.obolibrary.org/obo/NCBITaxon_7776": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -118920,7 +118816,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -119062,11 +118958,6 @@ "entity" ] }, - "NCBITaxon:1547233": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1547233", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:1547233" - }, "http://purl.obolibrary.org/obo/NCBITaxon_2759": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -119103,7 +118994,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -119226,7 +119117,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -119444,7 +119335,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -119531,11 +119422,6 @@ "entity" ] }, - "NCBITaxon:207598": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=207598", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:207598" - }, "http://purl.obolibrary.org/obo/NCBITaxon_9443": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -119972,7 +119858,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -120103,7 +119989,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -120131,11 +120017,6 @@ "entity" ] }, - "NCBITaxon:2759": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=2759", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:2759" - }, "http://purl.obolibrary.org/obo/CL_0000255": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -120172,7 +120053,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -120376,18 +120257,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "NCBITaxon:314146": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=314146", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:314146" - }, "http://purl.obolibrary.org/obo/NCBITaxon_32524": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -120764,7 +120640,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -120974,7 +120850,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -121061,11 +120937,6 @@ "entity" ] }, - "NCBITaxon:314293": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=314293", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:314293" - }, "http://purl.obolibrary.org/obo/NCBITaxon_9443": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -121422,7 +121293,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -121636,7 +121507,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -121743,11 +121614,6 @@ "entity" ] }, - "NCBITaxon:314295": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=314295", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:314295" - }, "http://purl.obolibrary.org/obo/NCBITaxon_33208": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -122124,7 +121990,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -122296,7 +122162,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -122463,11 +122329,6 @@ "entity" ] }, - "NCBITaxon:32523": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=32523", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:32523" - }, "http://purl.obolibrary.org/obo/NCBITaxon_8287": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -122584,7 +122445,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -122758,7 +122619,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -122945,11 +122806,6 @@ "entity" ] }, - "NCBITaxon:32524": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=32524", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:32524" - }, "http://purl.obolibrary.org/obo/NCBITaxon_8287": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -123066,7 +122922,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -123244,7 +123100,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -123411,11 +123267,6 @@ "entity" ] }, - "NCBITaxon:32525": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=32525", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:32525" - }, "http://purl.obolibrary.org/obo/NCBITaxon_89593": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -123592,7 +123443,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -123738,18 +123589,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "NCBITaxon:33154": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=33154", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:33154" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -123766,7 +123612,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -123869,135 +123715,130 @@ "gitissue502" ], "linkedEntities": { - "http://purl.obolibrary.org/obo/NCBITaxon_131567": { + "http://purl.obolibrary.org/obo/NCBITaxon_33154": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "cellular organisms" + "value": "Opisthokonta" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:131567" + "value": "NCBITaxon:33154" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_2759": { + "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Eukaryota" + "value": "cellular organisms" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:2759" + "value": "NCBITaxon:131567" }, "type": [ "class", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/CL_0000548": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "subClassOf" + "value": "animal cell" }, "curie": { "type": [ "literal" ], - "value": "subClassOf" + "value": "CL:0000548" }, "type": [ - "property", + "class", "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002160": { + "http://purl.obolibrary.org/obo/NCBITaxon_2759": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "only in taxon" + "value": "Eukaryota" }, "curie": { "type": [ "literal" ], - "value": "RO:0002160" + "value": "NCBITaxon:2759" }, "type": [ - "property", - "objectProperty", + "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_33154": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subClassOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "value": "Opisthokonta" + "value": "subClassOf" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:33154" + "value": "RDFS:subClassOf" }, "type": [ - "class", + "property", "entity" ] }, - "http://purl.obolibrary.org/obo/CL_0000548": { + "http://purl.obolibrary.org/obo/RO_0002160": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "animal cell" + "value": "only in taxon" }, "curie": { "type": [ "literal" ], - "value": "CL:0000548" + "value": "RO:0002160" }, "type": [ - "class", + "property", + "objectProperty", "entity" ] }, - "NCBITaxon:33208": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=33208", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:33208" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -124014,7 +123855,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -124170,11 +124011,6 @@ "entity" ] }, - "NCBITaxon:33213": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=33213", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:33213" - }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { "definedBy": [ "rdfs" @@ -124191,7 +124027,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -124254,7 +124090,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -124412,11 +124248,6 @@ "entity" ] }, - "NCBITaxon:33511": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=33511", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:33511" - }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { "definedBy": [ "rdfs" @@ -124433,7 +124264,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -124516,7 +124347,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -124688,11 +124519,6 @@ "entity" ] }, - "NCBITaxon:376913": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=376913", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:376913" - }, "http://purl.obolibrary.org/obo/NCBITaxon_32525": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -124729,7 +124555,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -125152,7 +124978,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -125328,7 +125154,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -125475,11 +125301,6 @@ "entity" ] }, - "NCBITaxon:40674": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=40674", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:40674" - }, "http://purl.obolibrary.org/obo/NCBITaxon_1338369": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -125656,7 +125477,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -125790,11 +125611,6 @@ "entity" ] }, - "NCBITaxon:6040": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=6040", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:6040" - }, "http://purl.obolibrary.org/obo/NCBITaxon_2759": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -125831,7 +125647,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -125874,7 +125690,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -126092,7 +125908,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -126200,11 +126016,6 @@ "entity" ] }, - "NCBITaxon:6072": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=6072", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:6072" - }, "http://purl.obolibrary.org/obo/UBERON_0000949": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -126241,7 +126052,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -126441,11 +126252,6 @@ "entity" ] }, - "NCBITaxon:7711": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=7711", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:7711" - }, "http://purl.obolibrary.org/obo/NCBITaxon_2759": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -126482,7 +126288,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -126585,7 +126391,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -126765,7 +126571,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -126832,11 +126638,6 @@ "entity" ] }, - "NCBITaxon:7742": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=7742", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:7742" - }, "http://purl.obolibrary.org/obo/NCBITaxon_7711": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -126913,7 +126714,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -127059,11 +126860,6 @@ "entity" ] }, - "NCBITaxon:7776": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=7776", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:7776" - }, "http://purl.obolibrary.org/obo/NCBITaxon_2759": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -127100,7 +126896,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -127263,7 +127059,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -127375,288 +127171,283 @@ "gitissue502" ], "linkedEntities": { - "http://purl.obolibrary.org/obo/NCBITaxon_131567": { + "http://purl.obolibrary.org/obo/NCBITaxon_33154": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "cellular organisms" + "value": "Opisthokonta" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:131567" + "value": "NCBITaxon:33154" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_2759": { + "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Eukaryota" + "value": "cellular organisms" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:2759" + "value": "NCBITaxon:131567" }, "type": [ "class", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/NCBITaxon_2759": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "subClassOf" + "value": "Eukaryota" }, "curie": { "type": [ "literal" ], - "value": "subClassOf" + "value": "NCBITaxon:2759" }, "type": [ - "property", + "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_33213": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subClassOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "value": "Bilateria" + "value": "subClassOf" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:33213" + "value": "RDFS:subClassOf" }, "type": [ - "class", + "property", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_7776": { + "http://purl.obolibrary.org/obo/NCBITaxon_89593": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Gnathostomata " + "value": "Craniata " }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:7776" + "value": "NCBITaxon:89593" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_33208": { + "http://purl.obolibrary.org/obo/NCBITaxon_33511": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Metazoa" + "value": "Deuterostomia" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:33208" + "value": "NCBITaxon:33511" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_7742": { + "http://purl.obolibrary.org/obo/NCBITaxon_33213": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Vertebrata " + "value": "Bilateria" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:7742" + "value": "NCBITaxon:33213" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_33154": { + "http://purl.obolibrary.org/obo/NCBITaxon_7711": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Opisthokonta" + "value": "Chordata" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:33154" + "value": "NCBITaxon:7711" }, "type": [ "class", "entity" ] }, - "NCBITaxon:8287": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=8287", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:8287" - }, - "http://purl.obolibrary.org/obo/NCBITaxon_89593": { + "http://purl.obolibrary.org/obo/NCBITaxon_7776": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Craniata " + "value": "Gnathostomata " }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:89593" + "value": "NCBITaxon:7776" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_33511": { + "http://purl.obolibrary.org/obo/NCBITaxon_6072": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Deuterostomia" + "value": "Eumetazoa" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:33511" + "value": "NCBITaxon:6072" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_7711": { + "http://purl.obolibrary.org/obo/NCBITaxon_117571": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Chordata" + "value": "Euteleostomi" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:7711" + "value": "NCBITaxon:117571" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_6072": { + "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Eumetazoa" + "value": "Teleostomi" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:6072" + "value": "NCBITaxon:117570" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_117571": { + "http://purl.obolibrary.org/obo/NCBITaxon_33208": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Euteleostomi" + "value": "Metazoa" }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:117571" + "value": "NCBITaxon:33208" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/NCBITaxon_117570": { + "http://purl.obolibrary.org/obo/NCBITaxon_7742": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "Teleostomi" + "value": "Vertebrata " }, "curie": { "type": [ "literal" ], - "value": "NCBITaxon:117570" + "value": "NCBITaxon:7742" }, "type": [ "class", @@ -127679,7 +127470,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -127857,7 +127648,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -127904,11 +127695,6 @@ "entity" ] }, - "NCBITaxon:89593": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=89593", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:89593" - }, "http://purl.obolibrary.org/obo/NCBITaxon_7711": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -127985,7 +127771,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -128185,7 +127971,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -128412,11 +128198,6 @@ "entity" ] }, - "NCBITaxon:9347": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9347", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:9347" - }, "http://purl.obolibrary.org/obo/NCBITaxon_7711": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -128533,7 +128314,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -128739,7 +128520,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -128826,11 +128607,6 @@ "entity" ] }, - "NCBITaxon:9443": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9443", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:9443" - }, "http://purl.obolibrary.org/obo/NCBITaxon_33208": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -129147,7 +128923,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -129359,7 +129135,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -129426,11 +129202,6 @@ "entity" ] }, - "NCBITaxon:9526": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9526", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:9526" - }, "http://purl.obolibrary.org/obo/NCBITaxon_7776": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -129827,7 +129598,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -130043,7 +129814,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -130110,11 +129881,6 @@ "entity" ] }, - "NCBITaxon:9604": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9604", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:9604" - }, "http://purl.obolibrary.org/obo/NCBITaxon_7776": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -130551,7 +130317,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -130771,7 +130537,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -130838,11 +130604,6 @@ "entity" ] }, - "NCBITaxon:9605": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9605", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:9605" - }, "http://purl.obolibrary.org/obo/NCBITaxon_7776": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -131319,7 +131080,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -131552,7 +131313,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -131639,11 +131400,6 @@ "entity" ] }, - "NCBITaxon:9606": { - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9606", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "NCBITaxon:9606" - }, "http://purl.obolibrary.org/obo/NCBITaxon_7776": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -132161,7 +131917,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -132347,7 +132103,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -132375,53 +132131,48 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000002": { - "numAppearsIn": 1, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "continuant", - "lang": "en" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000002" + "value": "RDFS:label" }, "type": [ - "class", + "property", "entity" ] }, - "OGMS:0000031": { - "url": "http://purl.obolibrary.org/obo/OGMS_0000031", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "OGMS:0000031" - }, - "http://www.w3.org/2000/01/rdf-schema#label": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 3, + "http://purl.obolibrary.org/obo/BFO_0000002": { + "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "label" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "continuant", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "label" + "value": "BFO:0000002" }, "type": [ - "property", + "class", "entity" ] }, @@ -132546,7 +132297,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -132569,7 +132320,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -132598,11 +132349,6 @@ "entity" ] }, - "PATO:0000001": { - "url": "http://purl.obolibrary.org/obo/PATO_0000001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "PATO:0000001" - }, "http://purl.obolibrary.org/obo/BFO_0000020": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -132728,7 +132474,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -132755,11 +132501,6 @@ "entity" ] }, - "PATO:0000051": { - "url": "http://purl.obolibrary.org/obo/PATO_0000051", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "PATO:0000051" - }, "http://purl.obolibrary.org/obo/PATO_0001241": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -132796,7 +132537,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -132952,7 +132693,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -133035,7 +132776,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -133085,11 +132826,6 @@ "class", "entity" ] - }, - "PATO:0000141": { - "url": "http://purl.obolibrary.org/obo/PATO_0000141", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "PATO:0000141" } } }, @@ -133194,7 +132930,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -133241,11 +132977,6 @@ "entity" ] }, - "PATO:0001018": { - "url": "http://purl.obolibrary.org/obo/PATO_0001018", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "PATO:0001018" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -133262,7 +132993,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -133414,7 +133145,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -133441,11 +133172,6 @@ "entity" ] }, - "PATO:0001241": { - "url": "http://purl.obolibrary.org/obo/PATO_0001241", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "PATO:0001241" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -133462,7 +133188,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -133638,7 +133364,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -133701,7 +133427,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -133730,11 +133456,6 @@ "entity" ] }, - "PATO:0001992": { - "url": "http://purl.obolibrary.org/obo/PATO_0001992", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "PATO:0001992" - }, "http://purl.obolibrary.org/obo/BFO_0000020": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -133875,7 +133596,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -133924,11 +133645,6 @@ "entity" ] }, - "PATO:0001993": { - "url": "http://purl.obolibrary.org/obo/PATO_0001993", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "PATO:0001993" - }, "http://purl.obolibrary.org/obo/UBERON_0010000": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -134048,7 +133764,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -134180,7 +133896,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -134227,11 +133943,6 @@ "entity" ] }, - "PATO:0001995": { - "url": "http://purl.obolibrary.org/obo/PATO_0001995", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "PATO:0001995" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -134248,7 +133959,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -134435,7 +134146,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -134482,11 +134193,6 @@ "entity" ] }, - "PATO:0002198": { - "url": "http://purl.obolibrary.org/obo/PATO_0002198", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "PATO:0002198" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -134568,7 +134274,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -134715,7 +134421,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -134784,11 +134490,6 @@ "entity" ] }, - "PATO:0010001": { - "url": "http://purl.obolibrary.org/obo/PATO_0010001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "PATO:0010001" - }, "http://purl.obolibrary.org/obo/PATO_0000141": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -134888,7 +134589,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -135047,18 +134748,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "UBERON:0000000": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000000" - }, "http://purl.obolibrary.org/obo/UBERON_0001062": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -135115,7 +134811,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -135344,7 +135040,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -135393,11 +135089,6 @@ "entity" ] }, - "UBERON:0000061": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000061", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000061" - }, "http://purl.obolibrary.org/obo/UBERON_0001062": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -135607,7 +135298,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -135894,7 +135585,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -136030,11 +135721,6 @@ "entity" ] }, - "UBERON:0000062": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000062", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000062" - }, "http://purl.obolibrary.org/obo/UBERON_0001062": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -136263,7 +135949,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -136532,7 +136218,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -136602,11 +136288,6 @@ "entity" ] }, - "UBERON:0000066": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000066", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000066" - }, "http://purl.obolibrary.org/obo/UBERON_0000092": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -136765,7 +136446,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -137192,7 +136873,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -137346,11 +137027,6 @@ "entity" ] }, - "UBERON:0000068": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000068", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000068" - }, "http://purl.obolibrary.org/obo/UBERON_0000092": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -137529,7 +137205,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -137826,11 +137502,6 @@ "entity" ] }, - "UBERON:0000071": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000071", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000071" - }, "http://purl.obolibrary.org/obo/RO_0002175": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -137911,7 +137582,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -138130,7 +137801,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -138378,7 +138049,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -138533,11 +138204,6 @@ "entity" ] }, - "UBERON:0000092": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000092", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000092" - }, "http://purl.obolibrary.org/obo/UBERON_0000000": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -138594,7 +138260,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -138906,7 +138572,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -138956,11 +138622,6 @@ "entity" ] }, - "UBERON:0000104": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000104", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000104" - }, "http://purl.obolibrary.org/obo/NCBITaxon_33208": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -139193,7 +138854,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -139412,7 +139073,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -139483,11 +139144,6 @@ "entity" ] }, - "UBERON:0000105": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000105", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000105" - }, "http://purl.obolibrary.org/obo/NCBITaxon_33208": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -139571,7 +139227,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -139767,7 +139423,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -139860,11 +139516,6 @@ "entity" ] }, - "UBERON:0000106": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000106", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000106" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -139986,7 +139637,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -140199,7 +139850,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -140315,11 +139966,6 @@ "entity" ] }, - "UBERON:0000107": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000107", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000107" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -140458,7 +140104,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -140691,7 +140337,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -140804,11 +140450,6 @@ "entity" ] }, - "UBERON:0000108": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000108", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000108" - }, "http://purl.obolibrary.org/obo/UBERON_0000000": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -140905,7 +140546,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -141158,7 +140799,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -141314,11 +140955,6 @@ "entity" ] }, - "UBERON:0000109": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000109", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000109" - }, "http://purl.obolibrary.org/obo/UBERON_0000000": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -141415,7 +141051,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -141638,11 +141274,6 @@ "gitissue502" ], "linkedEntities": { - "UBERON:0000110": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000110", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000110" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -141682,7 +141313,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -141934,7 +141565,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -142208,11 +141839,6 @@ "entity" ] }, - "UBERON:0000111": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000111", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000111" - }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { "definedBy": [ "rdfs" @@ -142229,7 +141855,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -142481,7 +142107,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -142756,7 +142382,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -142868,11 +142494,6 @@ "entity" ] }, - "UBERON:0000463": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000463", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000463" - }, "http://purl.obolibrary.org/obo/NCBITaxon_33208": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -143044,7 +142665,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -143220,7 +142841,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -143289,11 +142910,6 @@ "entity" ] }, - "UBERON:0000465": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000465", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000465" - }, "http://purl.obolibrary.org/obo/NCBITaxon_33208": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -143330,7 +142946,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -143529,7 +143145,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -143578,11 +143194,6 @@ "entity" ] }, - "UBERON:0000466": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000466", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000466" - }, "http://purl.obolibrary.org/obo/NCBITaxon_33208": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -143619,7 +143230,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -143936,7 +143547,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -144028,11 +143639,6 @@ "entity" ] }, - "UBERON:0000467": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000467", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000467" - }, "http://purl.obolibrary.org/obo/NCBITaxon_33208": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -144158,7 +143764,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -144397,7 +144003,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -144507,11 +144113,6 @@ "entity" ] }, - "UBERON:0000468": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000468", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000468" - }, "http://purl.obolibrary.org/obo/UBERON_0001062": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -144657,7 +144258,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -144849,11 +144450,6 @@ "entity" ] }, - "UBERON:0000474": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000474", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000474" - }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { "definedBy": [ "rdfs" @@ -144870,7 +144466,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -145123,7 +144719,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -145438,7 +145034,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -145688,17 +145284,12 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", "entity" ] - }, - "UBERON:0000922": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000922", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000922" } } }, @@ -145938,7 +145529,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -146089,11 +145680,6 @@ "entity" ] }, - "UBERON:0000949": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000949", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000949" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -146295,7 +145881,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -146564,11 +146150,6 @@ "entity" ] }, - "UBERON:0000990": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000990", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000990" - }, "http://purl.obolibrary.org/obo/RO_0002492": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -146669,7 +146250,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -147026,7 +146607,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -147442,11 +147023,6 @@ "entity" ] }, - "UBERON:0000991": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000991", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000991" - }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { "definedBy": [ "rdfs" @@ -147463,7 +147039,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -147759,7 +147335,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -148261,7 +147837,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -148684,11 +148260,6 @@ "entity" ] }, - "UBERON:0001016": { - "url": "http://purl.obolibrary.org/obo/UBERON_0001016", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0001016" - }, "http://purl.obolibrary.org/obo/RO_0002215": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -148728,7 +148299,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -148921,18 +148492,13 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", "entity" ] }, - "UBERON:0001048": { - "url": "http://purl.obolibrary.org/obo/UBERON_0001048", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0001048" - }, "http://purl.obolibrary.org/obo/UBERON_0000465": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -149138,7 +148704,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -149243,11 +148809,6 @@ "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", "curie": "ncbitaxon:33090" }, - "UBERON:0001062": { - "url": "http://purl.obolibrary.org/obo/UBERON_0001062", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0001062" - }, "http://purl.obolibrary.org/obo/RO_0002175": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -149285,7 +148846,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -149350,7 +148911,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -149507,11 +149068,6 @@ "gitissue502" ], "linkedEntities": { - "UBERON:0002050": { - "url": "http://purl.obolibrary.org/obo/UBERON_0002050", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0002050" - }, "http://purl.obolibrary.org/obo/UBERON_0000061": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -149571,7 +149127,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -149803,7 +149359,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -150055,7 +149611,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -150167,11 +149723,6 @@ "entity" ] }, - "UBERON:0002368": { - "url": "http://purl.obolibrary.org/obo/UBERON_0002368", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0002368" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -150416,7 +149967,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -150606,11 +150157,6 @@ "gitissue502" ], "linkedEntities": { - "UBERON:0002530": { - "url": "http://purl.obolibrary.org/obo/UBERON_0002530", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0002530" - }, "http://purl.obolibrary.org/obo/UBERON_0000061": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -150667,7 +150213,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -151024,7 +150570,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -151137,11 +150683,6 @@ "gitissue502" ], "linkedEntities": { - "UBERON:0003100": { - "url": "http://purl.obolibrary.org/obo/UBERON_0003100", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0003100" - }, "http://purl.obolibrary.org/obo/UBERON_0000061": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -151201,7 +150742,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -151370,7 +150911,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -151673,7 +151214,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -151765,11 +151306,6 @@ "entity" ] }, - "UBERON:0003133": { - "url": "http://purl.obolibrary.org/obo/UBERON_0003133", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0003133" - }, "http://purl.obolibrary.org/obo/UBERON_0001062": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -151913,7 +151449,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -152128,7 +151664,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -152220,11 +151756,6 @@ "entity" ] }, - "UBERON:0005156": { - "url": "http://purl.obolibrary.org/obo/UBERON_0005156", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0005156" - }, "http://purl.obolibrary.org/obo/UBERON_0001062": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -152345,7 +151876,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -152527,7 +152058,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -152685,11 +152216,6 @@ "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", "curie": "ncbitaxon:4751" }, - "UBERON:0005423": { - "url": "http://purl.obolibrary.org/obo/UBERON_0005423", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0005423" - }, "http://purl.obolibrary.org/obo/RO_0002215": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -152729,7 +152255,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -152897,11 +152423,6 @@ "gitissue502" ], "linkedEntities": { - "UBERON:0005564": { - "url": "http://purl.obolibrary.org/obo/UBERON_0005564", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0005564" - }, "http://purl.obolibrary.org/obo/UBERON_0000061": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -152984,7 +152505,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -153259,7 +152780,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -153528,7 +153049,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -153745,11 +153266,6 @@ "entity" ] }, - "UBERON:0006598": { - "url": "http://purl.obolibrary.org/obo/UBERON_0006598", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0006598" - }, "http://purl.obolibrary.org/obo/UBERON_0000468": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -153829,7 +153345,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -153974,7 +153490,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -154088,11 +153604,6 @@ "entity" ] }, - "UBERON:0006984": { - "url": "http://purl.obolibrary.org/obo/UBERON_0006984", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0006984" - }, "http://purl.obolibrary.org/obo/UBERON_0010199": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -154129,7 +153640,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -154374,7 +153885,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -154555,11 +154066,6 @@ "entity" ] }, - "UBERON:0010000": { - "url": "http://purl.obolibrary.org/obo/UBERON_0010000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0010000" - }, "http://purl.obolibrary.org/obo/RO_0000086": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -154599,7 +154105,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -154695,11 +154201,6 @@ "gitissue502" ], "linkedEntities": { - "UBERON:0010199": { - "url": "http://purl.obolibrary.org/obo/UBERON_0010199", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0010199" - }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { "definedBy": [ "rdfs" @@ -154716,7 +154217,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -154801,7 +154302,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -154943,11 +154444,6 @@ "gitissue502" ], "linkedEntities": { - "UBERON:0015203": { - "url": "http://purl.obolibrary.org/obo/UBERON_0015203", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0015203" - }, "http://purl.obolibrary.org/obo/UBERON_0034923": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -154984,7 +154480,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -155069,7 +154565,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -155232,11 +154728,6 @@ "gitissue502" ], "linkedEntities": { - "UBERON:0015204": { - "url": "http://purl.obolibrary.org/obo/UBERON_0015204", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0015204" - }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { "definedBy": [ "rdfs" @@ -155253,7 +154744,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -155443,7 +154934,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -155786,7 +155277,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -155962,11 +155453,6 @@ "entity" ] }, - "UBERON:0016880": { - "url": "http://purl.obolibrary.org/obo/UBERON_0016880", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0016880" - }, "http://purl.obolibrary.org/obo/UBERON_0006598": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -156106,7 +155592,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -156283,11 +155769,6 @@ "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", "curie": "ncbitaxon:33090" }, - "UBERON:0034923": { - "url": "http://purl.obolibrary.org/obo/UBERON_0034923", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0034923" - }, "http://purl.obolibrary.org/obo/RO_0002175": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -156345,7 +155826,7 @@ "type": [ "literal" ], - "value": "subClassOf" + "value": "RDFS:subClassOf" }, "type": [ "property", @@ -156586,7 +156067,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -156843,11 +156324,6 @@ "entity" ] }, - "BFO:0000050": { - "url": "http://purl.obolibrary.org/obo/BFO_0000050", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000050" - }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { "definedBy": [ "rdfs" @@ -156864,7 +156340,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -156887,7 +156363,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -157142,11 +156618,6 @@ "entity" ] }, - "BFO:0000051": { - "url": "http://purl.obolibrary.org/obo/BFO_0000051", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000051" - }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { "definedBy": [ "rdfs" @@ -157163,7 +156634,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -157186,7 +156657,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -157328,11 +156799,6 @@ "gitissue502" ], "linkedEntities": { - "BFO:0000062": { - "url": "http://purl.obolibrary.org/obo/BFO_0000062", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000062" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -157414,7 +156880,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -157482,7 +156948,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -157528,7 +156994,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -157551,7 +157017,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -157697,11 +157163,6 @@ "gitissue502" ], "linkedEntities": { - "BFO:0000063": { - "url": "http://purl.obolibrary.org/obo/BFO_0000063", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000063" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -157762,7 +157223,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -157807,7 +157268,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -157853,7 +157314,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -157876,7 +157337,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -158083,7 +157544,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -158112,28 +157573,6 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000003": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "occurrent", - "lang": "en" - }, - "curie": { - "type": [ - "literal" - ], - "value": "BFO:0000003" - }, - "type": [ - "class", - "entity" - ] - }, "http://www.w3.org/2000/01/rdf-schema#domain": { "definedBy": [ "rdfs" @@ -158150,7 +157589,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -158173,7 +157612,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -158203,10 +157642,27 @@ "entity" ] }, - "BFO:0000066": { - "url": "http://purl.obolibrary.org/obo/BFO_0000066", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000066" + "http://purl.obolibrary.org/obo/BFO_0000003": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "occurrent", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "BFO:0000003" + }, + "type": [ + "class", + "entity" + ] } } }, @@ -158373,17 +157829,12 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", "entity" ] - }, - "BFO:0000067": { - "url": "http://purl.obolibrary.org/obo/BFO_0000067", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000067" } } }, @@ -158446,13 +157897,7 @@ "appearsIn": [ "gitissue502" ], - "linkedEntities": { - "IAO:0000115": { - "url": "http://purl.obolibrary.org/obo/IAO_0000115", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000115" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/IAO_0000116", @@ -158513,13 +157958,7 @@ "appearsIn": [ "gitissue502" ], - "linkedEntities": { - "IAO:0000116": { - "url": "http://purl.obolibrary.org/obo/IAO_0000116", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000116" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/IAO_0000233", @@ -158580,13 +158019,7 @@ "appearsIn": [ "gitissue502" ], - "linkedEntities": { - "IAO:0000233": { - "url": "http://purl.obolibrary.org/obo/IAO_0000233", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000233" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/IAO_0006012", @@ -158647,13 +158080,7 @@ "appearsIn": [ "gitissue502" ], - "linkedEntities": { - "IAO:0006012": { - "url": "http://purl.obolibrary.org/obo/IAO_0006012", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0006012" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/RO_0000052", @@ -158813,11 +158240,6 @@ "entity" ] }, - "RO:0000052": { - "url": "http://purl.obolibrary.org/obo/RO_0000052", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000052" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -158834,7 +158256,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -159091,7 +158513,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -159099,19 +158521,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -159184,7 +158611,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -159357,18 +158784,13 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", "entity" ] }, - "RO:0000056": { - "url": "http://purl.obolibrary.org/obo/RO_0000056", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000056" - }, "http://www.w3.org/2000/01/rdf-schema#domain": { "definedBy": [ "rdfs" @@ -159385,7 +158807,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -159431,7 +158853,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -159690,7 +159112,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -159764,11 +159186,6 @@ "entity" ] }, - "RO:0000057": { - "url": "http://purl.obolibrary.org/obo/RO_0000057", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000057" - }, "http://www.w3.org/2000/01/rdf-schema#domain": { "definedBy": [ "rdfs" @@ -159785,7 +159202,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -159808,7 +159225,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -159939,41 +159356,43 @@ "gitissue502" ], "linkedEntities": { - "http://purl.obolibrary.org/obo/IAO_0000116": { + "http://purl.obolibrary.org/obo/RO_0000052": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "IAO_0000116" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "characteristic of", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000116" + "value": "RO:0000052" }, "type": [ "property", - "annotationProperty", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000115": { + "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "IAO_0000115" + "value": "IAO_0000116" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000115" + "value": "IAO:0000116" }, "type": [ "property", @@ -159981,12 +159400,7 @@ "entity" ] }, - "RO:0000079": { - "url": "http://purl.obolibrary.org/obo/RO_0000079", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000079" - }, - "http://purl.obolibrary.org/obo/RO_0000052": { + "http://purl.obolibrary.org/obo/BFO_0000034": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -159994,40 +159408,38 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "characteristic of", + "value": "function", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0000052" + "value": "BFO:0000034" }, "type": [ - "property", - "objectProperty", + "class", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000034": { + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "function", - "lang": "en" + "value": "IAO_0000115" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000034" + "value": "IAO:0000115" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, @@ -160047,7 +159459,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -160093,7 +159505,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -160116,7 +159528,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -160311,11 +159723,6 @@ "entity" ] }, - "RO:0000080": { - "url": "http://purl.obolibrary.org/obo/RO_0000080", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000080" - }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { "definedBy": [ "rdfs" @@ -160332,7 +159739,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -160378,7 +159785,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -160552,11 +159959,6 @@ "entity" ] }, - "RO:0000081": { - "url": "http://purl.obolibrary.org/obo/RO_0000081", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000081" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -160594,7 +159996,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -160640,7 +160042,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -160772,11 +160174,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0000085": { - "url": "http://purl.obolibrary.org/obo/RO_0000085", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000085" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -160835,7 +160232,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -160933,7 +160330,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -160956,7 +160353,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -161002,7 +160399,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -161155,10 +160552,36 @@ "entity" ] }, - "RO:0000086": { - "url": "http://purl.obolibrary.org/obo/RO_0000086", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000086" + "http://purl.obolibrary.org/obo/RO_0000053": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": [ + { + "type": [ + "literal" + ], + "value": "has characteristic" + }, + { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has characteristic", + "lang": "en" + } + ], + "curie": { + "type": [ + "literal" + ], + "value": "RO:0000053" + }, + "type": [ + "property", + "objectProperty", + "entity" + ] }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, @@ -161218,41 +160641,10 @@ "type": [ "literal" ], - "value": "range" - }, - "type": [ - "property", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/RO_0000053": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": [ - { - "type": [ - "literal" - ], - "value": "has characteristic" - }, - { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "has characteristic", - "lang": "en" - } - ], - "curie": { - "type": [ - "literal" - ], - "value": "RO:0000053" + "value": "RDFS:range" }, "type": [ "property", - "objectProperty", "entity" ] }, @@ -161272,7 +160664,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -161318,7 +160710,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -161450,11 +160842,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0000087": { - "url": "http://purl.obolibrary.org/obo/RO_0000087", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000087" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -161513,7 +160900,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -161589,7 +160976,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -161635,7 +161022,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -161658,7 +161045,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -161796,7 +161183,7 @@ "gitissue502" ], "linkedEntities": { - "http://purl.obolibrary.org/obo/BFO_0000016": { + "http://purl.obolibrary.org/obo/RO_0000092": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -161804,160 +161191,160 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "disposition", + "value": "disposition of", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000016" + "value": "RO:0000092" }, "type": [ - "class", + "property", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000115": { + "http://purl.obolibrary.org/obo/BFO_0000016": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "IAO_0000115" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "disposition", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000115" + "value": "BFO:0000016" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#range": { - "definedBy": [ - "rdfs" + "http://purl.obolibrary.org/obo/RO_0000053": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": [ + { + "type": [ + "literal" + ], + "value": "has characteristic" + }, + { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has characteristic", + "lang": "en" + } ], - "numAppearsIn": 2, - "hasLocalDefinition": false, - "label": { - "type": [ - "literal" - ], - "value": "range" - }, "curie": { "type": [ "literal" ], - "value": "range" + "value": "RO:0000053" }, "type": [ "property", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000004": { + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "independent continuant", - "lang": "en" + "value": "IAO_0000115" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000004" + "value": "IAO:0000115" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0000092": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#range": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "disposition of", - "lang": "en" + "value": "range" }, "curie": { "type": [ "literal" ], - "value": "RO:0000092" + "value": "RDFS:range" }, "type": [ "property", - "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0000053": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": [ - { - "type": [ - "literal" - ], - "value": "has characteristic" - }, - { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "has characteristic", - "lang": "en" - } + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "definedBy": [ + "rdfs" ], + "numAppearsIn": 2, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "subPropertyOf" + }, "curie": { "type": [ "literal" ], - "value": "RO:0000053" + "value": "RDFS:subPropertyOf" }, "type": [ "property", - "objectProperty", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/BFO_0000004": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "subPropertyOf" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "independent continuant", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "subPropertyOf" + "value": "BFO:0000004" }, "type": [ - "property", + "class", "entity" ] }, @@ -161977,7 +161364,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -162000,17 +161387,12 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", "entity" ] - }, - "RO:0000091": { - "url": "http://purl.obolibrary.org/obo/RO_0000091", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000091" } } }, @@ -162196,7 +161578,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -162219,17 +161601,12 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", "entity" ] - }, - "RO:0000092": { - "url": "http://purl.obolibrary.org/obo/RO_0000092", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000092" } } }, @@ -162370,11 +161747,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002000": { - "url": "http://purl.obolibrary.org/obo/RO_0002000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002000" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -162456,7 +161828,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -162662,7 +162034,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -162692,76 +162064,71 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000040": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#domain": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "material entity", - "lang": "en" + "value": "domain" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000040" + "value": "RDFS:domain" }, "type": [ - "class", + "property", "entity" ] }, - "RO:0002002": { - "url": "http://purl.obolibrary.org/obo/RO_0002002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002002" - }, - "http://www.w3.org/2000/01/rdf-schema#domain": { + "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "numAppearsIn": 3, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "domain" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "domain" + "value": "RDFS:label" }, "type": [ "property", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#label": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 3, + "http://purl.obolibrary.org/obo/BFO_0000040": { + "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "label" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "material entity", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "label" + "value": "BFO:0000040" }, "type": [ - "property", + "class", "entity" ] }, @@ -163023,7 +162390,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -163053,11 +162420,6 @@ "entity" ] }, - "RO:0002013": { - "url": "http://purl.obolibrary.org/obo/RO_0002013", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002013" - }, "http://purl.obolibrary.org/obo/RO_0002334": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -163139,7 +162501,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -163303,43 +162665,41 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000115": { + "http://purl.obolibrary.org/obo/RO_0002427": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "IAO_0000115" + "value": "causally downstream of or within" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000115" + "value": "RO:0002427" }, "type": [ "property", - "annotationProperty", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000051": { + "http://purl.obolibrary.org/obo/RO_0002501": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "has part", - "lang": "en" + "value": "causal relation between processes" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000051" + "value": "RO:0002501" }, "type": [ "property", @@ -163347,46 +162707,43 @@ "entity" ] }, - "RO:0002014": { - "url": "http://purl.obolibrary.org/obo/RO_0002014", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002014" - }, - "http://purl.obolibrary.org/obo/RO_0002427": { + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "causally downstream of or within" + "value": "IAO_0000115" }, "curie": { "type": [ "literal" ], - "value": "RO:0002427" + "value": "IAO:0000115" }, "type": [ "property", - "objectProperty", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002501": { + "http://purl.obolibrary.org/obo/BFO_0000051": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "causal relation between processes" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has part", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0002501" + "value": "BFO:0000051" }, "type": [ "property", @@ -163410,7 +162767,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -163544,7 +162901,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -163708,43 +163065,41 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000115": { + "http://purl.obolibrary.org/obo/RO_0002427": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "IAO_0000115" + "value": "causally downstream of or within" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000115" + "value": "RO:0002427" }, "type": [ "property", - "annotationProperty", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000051": { + "http://purl.obolibrary.org/obo/RO_0002501": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "has part", - "lang": "en" + "value": "causal relation between processes" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000051" + "value": "RO:0002501" }, "type": [ "property", @@ -163752,46 +163107,43 @@ "entity" ] }, - "RO:0002015": { - "url": "http://purl.obolibrary.org/obo/RO_0002015", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002015" - }, - "http://purl.obolibrary.org/obo/RO_0002427": { + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "causally downstream of or within" + "value": "IAO_0000115" }, "curie": { "type": [ "literal" ], - "value": "RO:0002427" + "value": "IAO:0000115" }, "type": [ "property", - "objectProperty", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002501": { + "http://purl.obolibrary.org/obo/BFO_0000051": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "causal relation between processes" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has part", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0002501" + "value": "BFO:0000051" }, "type": [ "property", @@ -163815,7 +163167,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -163949,7 +163301,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -164093,7 +163445,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -164123,11 +163475,6 @@ "entity" ] }, - "RO:0002017": { - "url": "http://purl.obolibrary.org/obo/RO_0002017", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002017" - }, "http://purl.obolibrary.org/obo/RO_0002018": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -164165,7 +163512,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -164379,18 +163726,13 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", "entity" ] }, - "RO:0002018": { - "url": "http://purl.obolibrary.org/obo/RO_0002018", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002018" - }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { "definedBy": [ "rdfs" @@ -164407,7 +163749,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -164453,7 +163795,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -164476,7 +163818,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -164558,11 +163900,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002022": { - "url": "http://purl.obolibrary.org/obo/RO_0002022", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002022" - }, "http://purl.obolibrary.org/obo/RO_0002427": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -164618,13 +163955,263 @@ "value": "subPropertyOf" }, "curie": { + "type": [ + "literal" + ], + "value": "RDFS:subPropertyOf" + }, + "type": [ + "property", + "entity" + ] + }, + "http://purl.obolibrary.org/obo/RO_0002334": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "regulated by", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RO:0002334" + }, + "type": [ + "property", + "objectProperty", + "entity" + ] + }, + "http://purl.obolibrary.org/obo/RO_0002578": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "directly regulates" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RO:0002578" + }, + "type": [ + "property", + "objectProperty", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/RO_0002023", + "type": [ + "property", + "objectProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "RO:0002023" + }, + "directAncestor": [ + "http://purl.obolibrary.org/obo/RO_0002022", + "http://purl.obolibrary.org/obo/RO_0002334", + "http://purl.obolibrary.org/obo/RO_0002427", + "http://purl.obolibrary.org/obo/RO_0002501" + ], + "directParent": "http://purl.obolibrary.org/obo/RO_0002022", + "hasDirectChildren": false, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#ObjectProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "directly negatively regulated by" + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://purl.obolibrary.org/obo/RO_0002022", + "http://www.w3.org/2002/07/owl#inverseOf": "http://purl.obolibrary.org/obo/RO_0002630", + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "value": "directly negatively regulated by" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "gitissue502" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://purl.obolibrary.org/obo/mondo.owl" + }, + "ontologyPreferredPrefix": { + "type": [ + "literal" + ], + "value": "gitIssue502" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "RO_0002023" + }, + "isDefiningOntology": false, + "appearsIn": [ + "gitissue502" + ], + "linkedEntities": { + "http://purl.obolibrary.org/obo/RO_0002630": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "directly negatively regulates" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RO:0002630" + }, + "type": [ + "property", + "objectProperty", + "entity" + ] + }, + "http://purl.obolibrary.org/obo/RO_0002427": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "causally downstream of or within" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RO:0002427" + }, + "type": [ + "property", + "objectProperty", + "entity" + ] + }, + "http://purl.obolibrary.org/obo/RO_0002501": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "causal relation between processes" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RO:0002501" + }, + "type": [ + "property", + "objectProperty", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, + "label": { "type": [ "literal" ], "value": "subPropertyOf" }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:subPropertyOf" + }, + "type": [ + "property", + "entity" + ] + }, + "http://purl.obolibrary.org/obo/RO_0002022": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "directly regulated by" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RO:0002022" + }, "type": [ "property", + "objectProperty", "entity" ] }, @@ -164651,27 +164238,6 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002578": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "directly regulates" - }, - "curie": { - "type": [ - "literal" - ], - "value": "RO:0002578" - }, - "type": [ - "property", - "objectProperty", - "entity" - ] - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -164688,241 +164254,7 @@ "type": [ "literal" ], - "value": "label" - }, - "type": [ - "property", - "entity" - ] - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/RO_0002023", - "type": [ - "property", - "objectProperty", - "entity" - ], - "curie": { - "type": [ - "literal" - ], - "value": "RO:0002023" - }, - "directAncestor": [ - "http://purl.obolibrary.org/obo/RO_0002022", - "http://purl.obolibrary.org/obo/RO_0002334", - "http://purl.obolibrary.org/obo/RO_0002427", - "http://purl.obolibrary.org/obo/RO_0002501" - ], - "directParent": "http://purl.obolibrary.org/obo/RO_0002022", - "hasDirectChildren": false, - "hasDirectParents": true, - "hasHierarchicalChildren": false, - "hasHierarchicalParents": false, - "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#ObjectProperty", - "http://www.w3.org/2000/01/rdf-schema#label": { - "type": [ - "literal" - ], - "value": "directly negatively regulated by" - }, - "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://purl.obolibrary.org/obo/RO_0002022", - "http://www.w3.org/2002/07/owl#inverseOf": "http://purl.obolibrary.org/obo/RO_0002630", - "imported": false, - "isObsolete": false, - "isPreferredRoot": false, - "label": { - "type": [ - "literal" - ], - "value": "directly negatively regulated by" - }, - "numDescendants": 0, - "numHierarchicalDescendants": 0, - "ontologyId": { - "type": [ - "literal" - ], - "value": "gitissue502" - }, - "ontologyIri": { - "type": [ - "literal" - ], - "value": "http://purl.obolibrary.org/obo/mondo.owl" - }, - "ontologyPreferredPrefix": { - "type": [ - "literal" - ], - "value": "gitIssue502" - }, - "searchableAnnotationValues": false, - "shortForm": { - "type": [ - "literal" - ], - "value": "RO_0002023" - }, - "isDefiningOntology": false, - "appearsIn": [ - "gitissue502" - ], - "linkedEntities": { - "RO:0002023": { - "url": "http://purl.obolibrary.org/obo/RO_0002023", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002023" - }, - "http://purl.obolibrary.org/obo/RO_0002630": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "directly negatively regulates" - }, - "curie": { - "type": [ - "literal" - ], - "value": "RO:0002630" - }, - "type": [ - "property", - "objectProperty", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/RO_0002427": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "causally downstream of or within" - }, - "curie": { - "type": [ - "literal" - ], - "value": "RO:0002427" - }, - "type": [ - "property", - "objectProperty", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/RO_0002501": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "causal relation between processes" - }, - "curie": { - "type": [ - "literal" - ], - "value": "RO:0002501" - }, - "type": [ - "property", - "objectProperty", - "entity" - ] - }, - "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, - "label": { - "type": [ - "literal" - ], - "value": "subPropertyOf" - }, - "curie": { - "type": [ - "literal" - ], - "value": "subPropertyOf" - }, - "type": [ - "property", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/RO_0002022": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "directly regulated by" - }, - "curie": { - "type": [ - "literal" - ], - "value": "RO:0002022" - }, - "type": [ - "property", - "objectProperty", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/RO_0002334": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "regulated by", - "lang": "en" - }, - "curie": { - "type": [ - "literal" - ], - "value": "RO:0002334" - }, - "type": [ - "property", - "objectProperty", - "entity" - ] - }, - "http://www.w3.org/2000/01/rdf-schema#label": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 3, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "label" - }, - "curie": { - "type": [ - "literal" - ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -165005,11 +164337,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002024": { - "url": "http://purl.obolibrary.org/obo/RO_0002024", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002024" - }, "http://purl.obolibrary.org/obo/RO_0002427": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -165089,7 +164416,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -165156,7 +164483,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -165242,11 +164569,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002025": { - "url": "http://purl.obolibrary.org/obo/RO_0002025", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002025" - }, "http://purl.obolibrary.org/obo/RO_0002131": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -165309,7 +164631,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -165397,7 +164719,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -165478,11 +164800,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002081": { - "url": "http://purl.obolibrary.org/obo/RO_0002081", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002081" - }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { "definedBy": [ "rdfs" @@ -165499,7 +164816,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -165545,7 +164862,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -165659,11 +164976,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002082": { - "url": "http://purl.obolibrary.org/obo/RO_0002082", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002082" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -165701,7 +165013,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -165770,7 +165082,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -165854,11 +165166,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002086": { - "url": "http://purl.obolibrary.org/obo/RO_0002086", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002086" - }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { "definedBy": [ "rdfs" @@ -165875,7 +165182,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -165921,7 +165228,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -166034,11 +165341,6 @@ "entity" ] }, - "RO:0002087": { - "url": "http://purl.obolibrary.org/obo/RO_0002087", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002087" - }, "http://purl.obolibrary.org/obo/RO_0002230": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -166101,7 +165403,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -166170,7 +165472,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -166344,7 +165646,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -166397,11 +165699,6 @@ "entity" ] }, - "RO:0002090": { - "url": "http://purl.obolibrary.org/obo/RO_0002090", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002090" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -166418,7 +165715,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -166630,11 +165927,6 @@ "entity" ] }, - "RO:0002131": { - "url": "http://purl.obolibrary.org/obo/RO_0002131", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002131" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -166651,7 +165943,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -166766,11 +166058,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002160": { - "url": "http://purl.obolibrary.org/obo/RO_0002160", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002160" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -166829,7 +166116,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -166873,7 +166160,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -167030,118 +166317,121 @@ "gitissue502" ], "linkedEntities": { - "http://purl.obolibrary.org/obo/RO_0002254": { - "numAppearsIn": 1, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "has developmental contribution from", + "value": "has_dbxref", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0002254" + "value": "OIO:hasDbXref" }, "type": [ "property", - "objectProperty", + "annotationProperty", "entity" ] }, - "http://www.geneontology.org/formats/oboInOwl#id": { + "http://purl.obolibrary.org/obo/RO_0002254": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "id" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has developmental contribution from", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "id" + "value": "RO:0002254" }, "type": [ "property", - "annotationProperty", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000050": { + "http://www.geneontology.org/formats/oboInOwl#id": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "part of", - "lang": "en" + "value": "id" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000050" + "value": "id" }, "type": [ "property", - "objectProperty", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002202": { + "http://www.geneontology.org/formats/oboInOwl#shorthand": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "develops from", - "lang": "en" + "value": "shorthand" }, "curie": { "type": [ "literal" ], - "value": "RO:0002202" + "value": "shorthand" }, "type": [ "property", - "objectProperty", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000115": { + "http://purl.obolibrary.org/obo/BFO_0000050": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "IAO_0000115" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "part of", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000115" + "value": "BFO:0000050" }, "type": [ "property", - "annotationProperty", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000051": { + "http://purl.obolibrary.org/obo/RO_0002202": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -167149,14 +166439,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "has part", + "value": "develops from", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000051" + "value": "RO:0002202" }, "type": [ "property", @@ -167164,41 +166454,48 @@ "entity" ] }, - "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://purl.obolibrary.org/obo/RO_0002225": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "develops from part of", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "RO:0002225" }, "type": [ "property", - "annotationProperty", + "objectProperty", "entity" ] }, - "http://www.geneontology.org/formats/oboInOwl#shorthand": { + "RO:0002162": { + "url": "http://purl.obolibrary.org/obo/RO_0002162", + "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", + "curie": "RO:0002162" + }, + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "shorthand" + "value": "IAO_0000115" }, "curie": { "type": [ "literal" ], - "value": "shorthand" + "value": "IAO:0000115" }, "type": [ "property", @@ -167206,7 +166503,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002225": { + "http://purl.obolibrary.org/obo/BFO_0000051": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -167214,14 +166511,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "develops from part of", + "value": "has part", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0002225" + "value": "BFO:0000051" }, "type": [ "property", @@ -167229,11 +166526,6 @@ "entity" ] }, - "RO:0002162": { - "url": "http://purl.obolibrary.org/obo/RO_0002162", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002162" - }, "http://purl.obolibrary.org/obo/RO_0002215": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -167273,7 +166565,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -167341,13 +166633,7 @@ "appearsIn": [ "gitissue502" ], - "linkedEntities": { - "RO:0002175": { - "url": "http://purl.obolibrary.org/obo/RO_0002175", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002175" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/RO_0002180", @@ -167485,11 +166771,6 @@ "entity" ] }, - "RO:0002180": { - "url": "http://purl.obolibrary.org/obo/RO_0002180", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002180" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -167571,7 +166852,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -167594,7 +166875,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -167767,60 +167048,55 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000004": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "independent continuant", - "lang": "en" + "value": "subPropertyOf" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000004" + "value": "RDFS:subPropertyOf" }, "type": [ - "class", + "property", "entity" ] }, - "RO:0002202": { - "url": "http://purl.obolibrary.org/obo/RO_0002202", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002202" - }, - "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/BFO_0000004": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "subPropertyOf" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "independent continuant", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "subPropertyOf" + "value": "BFO:0000004" }, "type": [ - "property", + "class", "entity" ] }, @@ -167840,7 +167116,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -167886,7 +167162,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -168054,54 +167330,49 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002286": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "developmentally succeeded by", - "lang": "en" + "value": "subPropertyOf" }, "curie": { "type": [ "literal" ], - "value": "RO:0002286" + "value": "RDFS:subPropertyOf" }, "type": [ "property", - "objectProperty", "entity" ] }, - "RO:0002203": { - "url": "http://purl.obolibrary.org/obo/RO_0002203", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002203" - }, - "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/RO_0002286": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "subPropertyOf" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "developmentally succeeded by", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RO:0002286" }, "type": [ "property", + "objectProperty", "entity" ] }, @@ -168190,7 +167461,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -168418,18 +167689,13 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", "entity" ] }, - "RO:0002207": { - "url": "http://purl.obolibrary.org/obo/RO_0002207", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002207" - }, "http://purl.obolibrary.org/obo/UBERON_0010000": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -168471,7 +167737,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -168494,7 +167760,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -168540,7 +167806,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -168721,54 +167987,49 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002286": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "developmentally succeeded by", - "lang": "en" + "value": "subPropertyOf" }, "curie": { "type": [ "literal" ], - "value": "RO:0002286" + "value": "RDFS:subPropertyOf" }, "type": [ "property", - "objectProperty", "entity" ] }, - "RO:0002210": { - "url": "http://purl.obolibrary.org/obo/RO_0002210", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002210" - }, - "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/RO_0002286": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "subPropertyOf" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "developmentally succeeded by", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RO:0002286" }, "type": [ "property", + "objectProperty", "entity" ] }, @@ -168857,7 +168118,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -169049,18 +168310,13 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", "entity" ] }, - "RO:0002211": { - "url": "http://purl.obolibrary.org/obo/RO_0002211", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002211" - }, "http://purl.obolibrary.org/obo/RO_0002230": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -169121,7 +168377,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -169167,7 +168423,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -169299,7 +168555,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -169493,11 +168749,6 @@ "entity" ] }, - "RO:0002212": { - "url": "http://purl.obolibrary.org/obo/RO_0002212", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002212" - }, "http://purl.obolibrary.org/obo/RO_0002230": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -169579,7 +168830,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -169713,7 +168964,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -169939,11 +169190,6 @@ "entity" ] }, - "RO:0002213": { - "url": "http://purl.obolibrary.org/obo/RO_0002213", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002213" - }, "http://purl.obolibrary.org/obo/RO_0002230": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -170025,7 +169271,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -170159,7 +169405,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -170317,6 +169563,48 @@ "entity" ] }, + "http://purl.obolibrary.org/obo/RO_0002595": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "causal relation between material entity and a process" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RO:0002595" + }, + "type": [ + "property", + "objectProperty", + "entity" + ] + }, + "http://purl.obolibrary.org/obo/RO_0002500": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "causal agent in process" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RO:0002500" + }, + "type": [ + "property", + "objectProperty", + "entity" + ] + }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -170354,102 +169642,55 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000004": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "independent continuant", - "lang": "en" - }, - "curie": { - "type": [ - "literal" - ], - "value": "BFO:0000004" - }, - "type": [ - "class", - "entity" - ] - }, - "RO:0002215": { - "url": "http://purl.obolibrary.org/obo/RO_0002215", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002215" - }, - "http://purl.obolibrary.org/obo/RO_0002595": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "value": "causal relation between material entity and a process" + "value": "subPropertyOf" }, "curie": { "type": [ "literal" ], - "value": "RO:0002595" + "value": "RDFS:subPropertyOf" }, "type": [ "property", - "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002500": { + "http://purl.obolibrary.org/obo/BFO_0000004": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "causal agent in process" - }, - "curie": { - "type": [ - "literal" - ], - "value": "RO:0002500" - }, - "type": [ - "property", - "objectProperty", - "entity" - ] - }, - "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, - "label": { - "type": [ - "literal" - ], - "value": "subPropertyOf" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "independent continuant", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "subPropertyOf" + "value": "BFO:0000004" }, "type": [ - "property", + "class", "entity" ] }, @@ -170469,7 +169710,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -170515,7 +169756,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -170688,11 +169929,6 @@ "entity" ] }, - "RO:0002216": { - "url": "http://purl.obolibrary.org/obo/RO_0002216", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002216" - }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { "definedBy": [ "rdfs" @@ -170709,7 +169945,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -170732,7 +169968,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -170813,11 +170049,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002222": { - "url": "http://purl.obolibrary.org/obo/RO_0002222", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002222" - }, "http://www.w3.org/2000/01/rdf-schema#range": { "definedBy": [ "rdfs" @@ -170834,7 +170065,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -170857,7 +170088,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -170880,7 +170111,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -171020,11 +170251,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002223": { - "url": "http://purl.obolibrary.org/obo/RO_0002223", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002223" - }, "http://purl.obolibrary.org/obo/RO_0002131": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -171131,7 +170357,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -171177,7 +170403,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -171298,11 +170524,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002224": { - "url": "http://purl.obolibrary.org/obo/RO_0002224", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002224" - }, "http://purl.obolibrary.org/obo/RO_0002131": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -171386,7 +170607,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -171455,7 +170676,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -171569,11 +170790,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002225": { - "url": "http://purl.obolibrary.org/obo/RO_0002225", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002225" - }, "http://purl.obolibrary.org/obo/RO_0002207": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -171680,7 +170896,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -171726,7 +170942,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -171844,11 +171060,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002229": { - "url": "http://purl.obolibrary.org/obo/RO_0002229", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002229" - }, "http://purl.obolibrary.org/obo/RO_0002131": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -171955,7 +171166,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -172001,7 +171212,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -172145,51 +171356,51 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000115": { + "http://purl.obolibrary.org/obo/RO_0002229": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "IAO_0000115" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "ends", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000115" + "value": "RO:0002229" }, "type": [ "property", - "annotationProperty", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000051": { + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "has part", - "lang": "en" + "value": "IAO_0000115" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000051" + "value": "IAO:0000115" }, "type": [ "property", - "objectProperty", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002229": { + "http://purl.obolibrary.org/obo/BFO_0000051": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -172197,14 +171408,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "ends", + "value": "has part", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0002229" + "value": "BFO:0000051" }, "type": [ "property", @@ -172228,18 +171439,13 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "RO:0002230": { - "url": "http://purl.obolibrary.org/obo/RO_0002230", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002230" - }, "http://purl.obolibrary.org/obo/RO_0002222": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -172279,7 +171485,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -172451,7 +171657,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -172540,18 +171746,13 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "RO:0002231": { - "url": "http://purl.obolibrary.org/obo/RO_0002231", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002231" - }, "http://www.w3.org/2000/01/rdf-schema#domain": { "definedBy": [ "rdfs" @@ -172568,7 +171769,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -172614,7 +171815,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -172786,7 +171987,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -172875,18 +172076,13 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "RO:0002232": { - "url": "http://purl.obolibrary.org/obo/RO_0002232", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002232" - }, "http://www.w3.org/2000/01/rdf-schema#domain": { "definedBy": [ "rdfs" @@ -172903,7 +172099,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -172949,7 +172145,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -173190,18 +172386,13 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "RO:0002233": { - "url": "http://purl.obolibrary.org/obo/RO_0002233", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002233" - }, "http://www.w3.org/2000/01/rdf-schema#domain": { "definedBy": [ "rdfs" @@ -173218,7 +172409,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -173241,7 +172432,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -173467,18 +172658,13 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", "entity" ] }, - "RO:0002254": { - "url": "http://purl.obolibrary.org/obo/RO_0002254", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002254" - }, "http://purl.obolibrary.org/obo/UBERON_0001062": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -173515,7 +172701,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -173538,7 +172724,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -173584,7 +172770,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -173819,11 +173005,6 @@ "entity" ] }, - "RO:0002255": { - "url": "http://purl.obolibrary.org/obo/RO_0002255", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002255" - }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { "definedBy": [ "rdfs" @@ -173840,7 +173021,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -173909,7 +173090,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -174081,7 +173262,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -174127,18 +173308,13 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", "entity" ] }, - "RO:0002258": { - "url": "http://purl.obolibrary.org/obo/RO_0002258", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002258" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -174155,7 +173331,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -174288,11 +173464,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002263": { - "url": "http://purl.obolibrary.org/obo/RO_0002263", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002263" - }, "http://purl.obolibrary.org/obo/RO_0002595": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -174395,7 +173566,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -174462,7 +173633,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -174572,11 +173743,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002264": { - "url": "http://purl.obolibrary.org/obo/RO_0002264", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002264" - }, "http://purl.obolibrary.org/obo/RO_0002595": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -174679,7 +173845,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -174723,7 +173889,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -174831,11 +173997,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002286": { - "url": "http://purl.obolibrary.org/obo/RO_0002286", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002286" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -174873,7 +174034,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -174942,7 +174103,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -175053,11 +174214,6 @@ "entity" ] }, - "RO:0002287": { - "url": "http://purl.obolibrary.org/obo/RO_0002287", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002287" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -175097,7 +174253,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -175166,7 +174322,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -175282,11 +174438,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002304": { - "url": "http://purl.obolibrary.org/obo/RO_0002304", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002304" - }, "http://purl.obolibrary.org/obo/RO_0002501": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -175345,7 +174496,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -175456,7 +174607,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -175595,11 +174746,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002305": { - "url": "http://purl.obolibrary.org/obo/RO_0002305", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002305" - }, "http://purl.obolibrary.org/obo/RO_0002501": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -175658,7 +174804,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -175769,7 +174915,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -175982,11 +175128,6 @@ "entity" ] }, - "RO:0002327": { - "url": "http://purl.obolibrary.org/obo/RO_0002327", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002327" - }, "http://purl.obolibrary.org/obo/RO_0002595": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -176045,7 +175186,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -176135,7 +175276,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -176331,11 +175472,6 @@ "entity" ] }, - "RO:0002331": { - "url": "http://purl.obolibrary.org/obo/RO_0002331", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002331" - }, "http://purl.obolibrary.org/obo/RO_0002595": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -176438,7 +175574,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -176482,7 +175618,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -176650,18 +175786,13 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "RO:0002333": { - "url": "http://purl.obolibrary.org/obo/RO_0002333", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002333" - }, "http://purl.obolibrary.org/obo/RO_0000057": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -176701,7 +175832,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -176899,18 +176030,13 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", "entity" ] }, - "RO:0002334": { - "url": "http://purl.obolibrary.org/obo/RO_0002334", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002334" - }, "http://purl.obolibrary.org/obo/RO_0002427": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -176969,7 +176095,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -176992,7 +176118,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -177015,7 +176141,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -177229,18 +176355,13 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "RO:0002335": { - "url": "http://purl.obolibrary.org/obo/RO_0002335", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002335" - }, "http://purl.obolibrary.org/obo/RO_0002334": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -177280,7 +176401,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -177471,18 +176592,13 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "RO:0002336": { - "url": "http://purl.obolibrary.org/obo/RO_0002336", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002336" - }, "http://purl.obolibrary.org/obo/RO_0002334": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -177545,7 +176661,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -177736,18 +176852,13 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "RO:0002352": { - "url": "http://purl.obolibrary.org/obo/RO_0002352", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002352" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -177764,7 +176875,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -177877,11 +176988,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002384": { - "url": "http://purl.obolibrary.org/obo/RO_0002384", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002384" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -177919,7 +177025,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -177942,7 +177048,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -177985,7 +177091,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -178098,11 +177204,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002385": { - "url": "http://purl.obolibrary.org/obo/RO_0002385", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002385" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -178140,7 +177241,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -178186,7 +177287,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -178299,11 +177400,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002387": { - "url": "http://purl.obolibrary.org/obo/RO_0002387", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002387" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -178341,7 +177437,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -178387,7 +177483,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -178503,11 +177599,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002388": { - "url": "http://purl.obolibrary.org/obo/RO_0002388", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002388" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -178545,7 +177636,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -178614,7 +177705,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -178734,6 +177825,48 @@ "gitissue502" ], "linkedEntities": { + "http://purl.obolibrary.org/obo/RO_0002427": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "causally downstream of or within" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RO:0002427" + }, + "type": [ + "property", + "objectProperty", + "entity" + ] + }, + "http://purl.obolibrary.org/obo/RO_0002501": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "causal relation between processes" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RO:0002501" + }, + "type": [ + "property", + "objectProperty", + "entity" + ] + }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -178755,69 +177888,45 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002086": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "ends after", - "lang": "en" - }, - "curie": { - "type": [ - "literal" - ], - "value": "RO:0002086" - }, - "type": [ - "property", - "objectProperty", - "entity" - ] - }, - "RO:0002404": { - "url": "http://purl.obolibrary.org/obo/RO_0002404", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002404" - }, - "http://purl.obolibrary.org/obo/RO_0002427": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "value": "causally downstream of or within" + "value": "subPropertyOf" }, "curie": { "type": [ "literal" ], - "value": "RO:0002427" + "value": "RDFS:subPropertyOf" }, "type": [ "property", - "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002501": { + "http://purl.obolibrary.org/obo/RO_0002222": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "causal relation between processes" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "temporally related to", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0002501" + "value": "RO:0002222" }, "type": [ "property", @@ -178825,30 +177934,7 @@ "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, - "label": { - "type": [ - "literal" - ], - "value": "subPropertyOf" - }, - "curie": { - "type": [ - "literal" - ], - "value": "subPropertyOf" - }, - "type": [ - "property", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/RO_0002222": { + "http://purl.obolibrary.org/obo/RO_0002086": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -178856,14 +177942,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "temporally related to", + "value": "ends after", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0002222" + "value": "RO:0002086" }, "type": [ "property", @@ -178910,7 +177996,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -179029,11 +178115,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002405": { - "url": "http://purl.obolibrary.org/obo/RO_0002405", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002405" - }, "http://purl.obolibrary.org/obo/RO_0002404": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -179115,7 +178196,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -179230,7 +178311,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -179466,11 +178547,6 @@ "entity" ] }, - "RO:0002407": { - "url": "http://purl.obolibrary.org/obo/RO_0002407", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002407" - }, "http://purl.obolibrary.org/obo/RO_0002501": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -179550,7 +178626,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -179684,7 +178760,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -179962,11 +179038,6 @@ "entity" ] }, - "RO:0002409": { - "url": "http://purl.obolibrary.org/obo/RO_0002409", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002409" - }, "http://purl.obolibrary.org/obo/RO_0002630": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -180046,7 +179117,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -180157,7 +179228,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -180371,50 +179442,45 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000115": { + "http://purl.obolibrary.org/obo/RO_0002501": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "IAO_0000115" + "value": "causal relation between processes" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000115" + "value": "RO:0002501" }, "type": [ "property", - "annotationProperty", + "objectProperty", "entity" ] }, - "RO:0002411": { - "url": "http://purl.obolibrary.org/obo/RO_0002411", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002411" - }, - "http://purl.obolibrary.org/obo/RO_0002501": { + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "causal relation between processes" + "value": "IAO_0000115" }, "curie": { "type": [ "literal" ], - "value": "RO:0002501" + "value": "IAO:0000115" }, "type": [ "property", - "objectProperty", + "annotationProperty", "entity" ] }, @@ -180434,7 +179500,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -180501,7 +179567,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -180712,11 +179778,6 @@ "entity" ] }, - "RO:0002412": { - "url": "http://purl.obolibrary.org/obo/RO_0002412", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002412" - }, "http://purl.obolibrary.org/obo/RO_0002501": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -180754,7 +179815,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -180844,7 +179905,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -181086,18 +180147,13 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "RO:0002418": { - "url": "http://purl.obolibrary.org/obo/RO_0002418", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002418" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -181114,7 +180170,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -181221,11 +180277,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002427": { - "url": "http://purl.obolibrary.org/obo/RO_0002427", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002427" - }, "http://purl.obolibrary.org/obo/RO_0002501": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -181284,7 +180335,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -181328,7 +180379,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -181453,11 +180504,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002428": { - "url": "http://purl.obolibrary.org/obo/RO_0002428", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002428" - }, "http://purl.obolibrary.org/obo/RO_0002595": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -181627,7 +180673,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -181692,7 +180738,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -181812,27 +180858,20 @@ "gitissue502" ], "linkedEntities": { - "RO:0002429": { - "url": "http://purl.obolibrary.org/obo/RO_0002429", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002429" - }, - "http://purl.obolibrary.org/obo/RO_0002331": { + "http://purl.obolibrary.org/obo/RO_0002595": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "involved in", - "lang": "en" + "value": "causal relation between material entity and a process" }, "curie": { "type": [ "literal" ], - "value": "RO:0002331" + "value": "RO:0002595" }, "type": [ "property", @@ -181840,7 +180879,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002327": { + "http://purl.obolibrary.org/obo/RO_0002331": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -181848,14 +180887,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "enables", + "value": "involved in", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0002327" + "value": "RO:0002331" }, "type": [ "property", @@ -181863,41 +180902,43 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000115": { + "http://purl.obolibrary.org/obo/RO_0002431": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "IAO_0000115" + "value": "involved in or involved in regulation of" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000115" + "value": "RO:0002431" }, "type": [ "property", - "annotationProperty", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002595": { + "http://purl.obolibrary.org/obo/RO_0002327": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "causal relation between material entity and a process" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "enables", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0002595" + "value": "RO:0002327" }, "type": [ "property", @@ -181905,20 +180946,20 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002431": { + "http://purl.obolibrary.org/obo/RO_0002428": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "involved in or involved in regulation of" + "value": "involved in regulation of" }, "curie": { "type": [ "literal" ], - "value": "RO:0002431" + "value": "RO:0002428" }, "type": [ "property", @@ -181926,20 +180967,20 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002428": { + "http://purl.obolibrary.org/obo/RO_0002500": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "involved in regulation of" + "value": "causal agent in process" }, "curie": { "type": [ "literal" ], - "value": "RO:0002428" + "value": "RO:0002500" }, "type": [ "property", @@ -181947,24 +180988,24 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002500": { + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "causal agent in process" + "value": "IAO_0000115" }, "curie": { "type": [ "literal" ], - "value": "RO:0002500" + "value": "IAO:0000115" }, "type": [ "property", - "objectProperty", + "annotationProperty", "entity" ] }, @@ -181984,7 +181025,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -182072,7 +181113,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -182192,22 +181233,20 @@ "gitissue502" ], "linkedEntities": { - "http://purl.obolibrary.org/obo/RO_0002331": { + "http://purl.obolibrary.org/obo/RO_0002595": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "involved in", - "lang": "en" + "value": "causal relation between material entity and a process" }, "curie": { "type": [ "literal" ], - "value": "RO:0002331" + "value": "RO:0002595" }, "type": [ "property", @@ -182215,7 +181254,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002212": { + "http://purl.obolibrary.org/obo/RO_0002331": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -182223,14 +181262,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "negatively regulates", + "value": "involved in", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0002212" + "value": "RO:0002331" }, "type": [ "property", @@ -182238,22 +181277,20 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002327": { + "http://purl.obolibrary.org/obo/RO_0002431": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "enables", - "lang": "en" + "value": "involved in or involved in regulation of" }, "curie": { "type": [ "literal" ], - "value": "RO:0002327" + "value": "RO:0002431" }, "type": [ "property", @@ -182261,41 +181298,45 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000115": { + "http://purl.obolibrary.org/obo/RO_0002212": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "IAO_0000115" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "negatively regulates", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000115" + "value": "RO:0002212" }, "type": [ "property", - "annotationProperty", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002595": { + "http://purl.obolibrary.org/obo/RO_0002327": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "causal relation between material entity and a process" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "enables", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0002595" + "value": "RO:0002327" }, "type": [ "property", @@ -182303,20 +181344,20 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002431": { + "http://purl.obolibrary.org/obo/RO_0002428": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "involved in or involved in regulation of" + "value": "involved in regulation of" }, "curie": { "type": [ "literal" ], - "value": "RO:0002431" + "value": "RO:0002428" }, "type": [ "property", @@ -182324,20 +181365,20 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002428": { + "http://purl.obolibrary.org/obo/RO_0002500": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "involved in regulation of" + "value": "causal agent in process" }, "curie": { "type": [ "literal" ], - "value": "RO:0002428" + "value": "RO:0002500" }, "type": [ "property", @@ -182345,24 +181386,24 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002500": { + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "causal agent in process" + "value": "IAO_0000115" }, "curie": { "type": [ "literal" ], - "value": "RO:0002500" + "value": "IAO:0000115" }, "type": [ "property", - "objectProperty", + "annotationProperty", "entity" ] }, @@ -182382,7 +181423,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -182410,11 +181451,6 @@ "entity" ] }, - "RO:0002430": { - "url": "http://purl.obolibrary.org/obo/RO_0002430", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002430" - }, "http://purl.obolibrary.org/obo/RO_0002263": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -182452,7 +181488,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -182677,7 +181713,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -182705,11 +181741,6 @@ "entity" ] }, - "RO:0002431": { - "url": "http://purl.obolibrary.org/obo/RO_0002431", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002431" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -182726,7 +181757,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -182918,7 +181949,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -182941,18 +181972,13 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", "entity" ] }, - "RO:0002434": { - "url": "http://purl.obolibrary.org/obo/RO_0002434", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002434" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -182969,7 +181995,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -183118,11 +182144,6 @@ "entity" ] }, - "RO:0002436": { - "url": "http://purl.obolibrary.org/obo/RO_0002436", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002436" - }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { "definedBy": [ "rdfs" @@ -183139,7 +182160,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -183183,7 +182204,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -183277,11 +182298,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002447": { - "url": "http://purl.obolibrary.org/obo/RO_0002447", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002447" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -183319,7 +182335,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -183384,7 +182400,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -183654,7 +182670,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -183725,11 +182741,6 @@ "entity" ] }, - "RO:0002448": { - "url": "http://purl.obolibrary.org/obo/RO_0002448", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002448" - }, "http://purl.obolibrary.org/obo/RO_0002506": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -183767,7 +182778,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -183790,7 +182801,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -183813,7 +182824,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -184076,7 +183087,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -184147,11 +183158,6 @@ "entity" ] }, - "RO:0002449": { - "url": "http://purl.obolibrary.org/obo/RO_0002449", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002449" - }, "http://purl.obolibrary.org/obo/RO_0002630": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -184210,7 +183216,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -184233,7 +183239,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -184256,7 +183262,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -184519,18 +183525,13 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", "entity" ] }, - "RO:0002450": { - "url": "http://purl.obolibrary.org/obo/RO_0002450", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002450" - }, "http://purl.obolibrary.org/obo/RO_0002434": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -184653,7 +183654,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -184676,7 +183677,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -184699,7 +183700,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -184890,7 +183891,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -184913,18 +183914,13 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "RO:0002473": { - "url": "http://purl.obolibrary.org/obo/RO_0002473", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002473" - }, "http://www.w3.org/2000/01/rdf-schema#domain": { "definedBy": [ "rdfs" @@ -184941,7 +183937,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -184964,7 +183960,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -185126,7 +184122,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -185171,18 +184167,13 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", "entity" ] }, - "RO:0002479": { - "url": "http://purl.obolibrary.org/obo/RO_0002479", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002479" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -185199,7 +184190,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -185298,11 +184289,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002487": { - "url": "http://purl.obolibrary.org/obo/RO_0002487", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002487" - }, "http://www.w3.org/2000/01/rdf-schema#range": { "definedBy": [ "rdfs" @@ -185319,7 +184305,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -185364,7 +184350,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -185387,7 +184373,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -185568,11 +184554,6 @@ "entity" ] }, - "RO:0002488": { - "url": "http://purl.obolibrary.org/obo/RO_0002488", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002488" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -185633,7 +184614,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -185677,7 +184658,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -185827,11 +184808,6 @@ "entity" ] }, - "RO:0002489": { - "url": "http://purl.obolibrary.org/obo/RO_0002489", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002489" - }, "http://purl.obolibrary.org/obo/RO_0002488": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -185890,7 +184866,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -185934,7 +184910,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -186074,7 +185050,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -186102,11 +185078,6 @@ "entity" ] }, - "RO:0002490": { - "url": "http://purl.obolibrary.org/obo/RO_0002490", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002490" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -186123,7 +185094,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -186342,7 +185313,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -186370,11 +185341,6 @@ "entity" ] }, - "RO:0002492": { - "url": "http://purl.obolibrary.org/obo/RO_0002492", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002492" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -186391,7 +185357,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -186599,7 +185565,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -186627,11 +185593,6 @@ "entity" ] }, - "RO:0002493": { - "url": "http://purl.obolibrary.org/obo/RO_0002493", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002493" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -186648,7 +185609,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -186817,18 +185778,13 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "RO:0002494": { - "url": "http://purl.obolibrary.org/obo/RO_0002494", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002494" - }, "http://purl.obolibrary.org/obo/RO_0002258": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -186868,7 +185824,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -187086,18 +186042,13 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "RO:0002495": { - "url": "http://purl.obolibrary.org/obo/RO_0002495", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002495" - }, "http://purl.obolibrary.org/obo/RO_0002258": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -187137,7 +186088,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -187322,7 +186273,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -187352,11 +186303,6 @@ "entity" ] }, - "RO:0002496": { - "url": "http://purl.obolibrary.org/obo/RO_0002496", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002496" - }, "http://purl.obolibrary.org/obo/RO_0002487": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -187417,7 +186363,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -187625,7 +186571,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -187678,11 +186624,6 @@ "entity" ] }, - "RO:0002497": { - "url": "http://purl.obolibrary.org/obo/RO_0002497", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002497" - }, "http://purl.obolibrary.org/obo/RO_0002487": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -187720,7 +186661,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -187868,11 +186809,6 @@ "entity" ] }, - "RO:0002500": { - "url": "http://purl.obolibrary.org/obo/RO_0002500", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002500" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -187931,7 +186867,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -187954,7 +186890,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -188057,11 +186993,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002501": { - "url": "http://purl.obolibrary.org/obo/RO_0002501", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002501" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -188099,7 +187030,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -188122,7 +187053,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -188145,7 +187076,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -188258,11 +187189,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002506": { - "url": "http://purl.obolibrary.org/obo/RO_0002506", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002506" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -188300,7 +187226,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -188323,7 +187249,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -188346,7 +187272,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -188504,18 +187430,13 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "RO:0002559": { - "url": "http://purl.obolibrary.org/obo/RO_0002559", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002559" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -188532,7 +187453,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -188650,7 +187571,7 @@ "gitissue502" ], "linkedEntities": { - "http://purl.obolibrary.org/obo/RO_0002333": { + "http://purl.obolibrary.org/obo/RO_0002233": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -188658,14 +187579,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "enabled by", + "value": "has input", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0002333" + "value": "RO:0002233" }, "type": [ "property", @@ -188673,7 +187594,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002327": { + "http://purl.obolibrary.org/obo/RO_0002333": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -188681,14 +187602,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "enables", + "value": "enabled by", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0002327" + "value": "RO:0002333" }, "type": [ "property", @@ -188696,64 +187617,43 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000115": { + "http://purl.obolibrary.org/obo/RO_0002327": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "IAO_0000115" - }, - "curie": { - "type": [ - "literal" - ], - "value": "IAO:0000115" - }, - "type": [ - "property", - "annotationProperty", - "entity" - ] - }, - "http://www.w3.org/2000/01/rdf-schema#range": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, - "label": { - "type": [ - "literal" - ], - "value": "range" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "enables", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "range" + "value": "RO:0002327" }, "type": [ "property", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002559": { + "http://purl.obolibrary.org/obo/RO_0002506": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "causally influenced by" + "value": "causal relation between entities" }, "curie": { "type": [ "literal" ], - "value": "RO:0002559" + "value": "RO:0002506" }, "type": [ "property", @@ -188761,78 +187661,74 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000002": { + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "continuant", - "lang": "en" + "value": "IAO_0000115" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000002" + "value": "IAO:0000115" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002233": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#range": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "has input", - "lang": "en" + "value": "range" }, "curie": { "type": [ "literal" ], - "value": "RO:0002233" + "value": "RDFS:range" }, "type": [ "property", - "objectProperty", "entity" ] }, - "RO:0002566": { - "url": "http://purl.obolibrary.org/obo/RO_0002566", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002566" - }, - "http://purl.obolibrary.org/obo/RO_0002506": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "value": "causal relation between entities" + "value": "subPropertyOf" }, "curie": { "type": [ "literal" ], - "value": "RO:0002506" + "value": "RDFS:subPropertyOf" }, "type": [ "property", - "objectProperty", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "http://www.w3.org/2000/01/rdf-schema#domain": { "definedBy": [ "rdfs" ], @@ -188842,39 +187738,37 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "domain" }, "curie": { "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:domain" }, "type": [ "property", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#domain": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/RO_0002559": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "domain" + "value": "causally influenced by" }, "curie": { "type": [ "literal" ], - "value": "domain" + "value": "RO:0002559" }, "type": [ "property", + "objectProperty", "entity" ] }, @@ -188917,12 +187811,34 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", "entity" ] + }, + "http://purl.obolibrary.org/obo/BFO_0000002": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "continuant", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "BFO:0000002" + }, + "type": [ + "class", + "entity" + ] } } }, @@ -189082,50 +187998,45 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000115": { + "http://purl.obolibrary.org/obo/RO_0002501": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "IAO_0000115" + "value": "causal relation between processes" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000115" + "value": "RO:0002501" }, "type": [ "property", - "annotationProperty", + "objectProperty", "entity" ] }, - "RO:0002578": { - "url": "http://purl.obolibrary.org/obo/RO_0002578", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002578" - }, - "http://purl.obolibrary.org/obo/RO_0002501": { + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "causal relation between processes" + "value": "IAO_0000115" }, "curie": { "type": [ "literal" ], - "value": "RO:0002501" + "value": "IAO:0000115" }, "type": [ "property", - "objectProperty", + "annotationProperty", "entity" ] }, @@ -189145,7 +188056,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -189279,7 +188190,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -189430,11 +188341,6 @@ "entity" ] }, - "RO:0002584": { - "url": "http://purl.obolibrary.org/obo/RO_0002584", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002584" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -189495,7 +188401,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -189541,7 +188447,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -189736,18 +188642,13 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", "entity" ] }, - "RO:0002595": { - "url": "http://purl.obolibrary.org/obo/RO_0002595", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002595" - }, "http://www.w3.org/2000/01/rdf-schema#domain": { "definedBy": [ "rdfs" @@ -189764,7 +188665,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -189787,7 +188688,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -190021,18 +188922,13 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "RO:0002596": { - "url": "http://purl.obolibrary.org/obo/RO_0002596", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002596" - }, "http://purl.obolibrary.org/obo/RO_0002215": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -190072,7 +188968,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -190306,18 +189202,13 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "RO:0002597": { - "url": "http://purl.obolibrary.org/obo/RO_0002597", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002597" - }, "http://purl.obolibrary.org/obo/RO_0002215": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -190357,7 +189248,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -190568,18 +189459,13 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "RO:0002598": { - "url": "http://purl.obolibrary.org/obo/RO_0002598", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002598" - }, "http://purl.obolibrary.org/obo/RO_0002213": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -190642,7 +189528,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -190744,11 +189630,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002608": { - "url": "http://purl.obolibrary.org/obo/RO_0002608", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002608" - }, "http://purl.obolibrary.org/obo/RO_0002500": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -190807,7 +189688,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -190930,11 +189811,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0002629": { - "url": "http://purl.obolibrary.org/obo/RO_0002629", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002629" - }, "http://purl.obolibrary.org/obo/RO_0002090": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -191060,7 +189936,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -191259,7 +190135,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -191553,7 +190429,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -191625,11 +190501,6 @@ "entity" ] }, - "RO:0002630": { - "url": "http://purl.obolibrary.org/obo/RO_0002630", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002630" - }, "http://purl.obolibrary.org/obo/RO_0002418": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -191734,7 +190605,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -191925,18 +190796,13 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", "entity" ] }, - "RO:0003000": { - "url": "http://purl.obolibrary.org/obo/RO_0003000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0003000" - }, "http://www.w3.org/2000/01/rdf-schema#domain": { "definedBy": [ "rdfs" @@ -191953,7 +190819,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -191976,7 +190842,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -192166,18 +191032,13 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", "entity" ] }, - "RO:0003001": { - "url": "http://purl.obolibrary.org/obo/RO_0003001", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0003001" - }, "http://www.w3.org/2000/01/rdf-schema#domain": { "definedBy": [ "rdfs" @@ -192194,7 +191055,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -192217,7 +191078,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -192333,7 +191194,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -192376,18 +191237,13 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", "entity" ] }, - "RO:0004019": { - "url": "http://purl.obolibrary.org/obo/RO_0004019", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0004019" - }, "http://purl.obolibrary.org/obo/RO_0004023": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -192425,7 +191281,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -192714,7 +191570,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -192793,19 +191649,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -192834,11 +191695,6 @@ "entity" ] }, - "RO:0004021": { - "url": "http://purl.obolibrary.org/obo/RO_0004021", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0004021" - }, "http://www.w3.org/2000/01/rdf-schema#comment": { "definedBy": [ "rdfs" @@ -192855,13 +191711,18 @@ "type": [ "literal" ], - "value": "comment" + "value": "RDFS:comment" }, "type": [ "property", "entity" ] }, + "RO:0004021": { + "url": "http://purl.obolibrary.org/obo/RO_0004021", + "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", + "curie": "RO:0004021" + }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { "definedBy": [ "rdfs" @@ -192878,7 +191739,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -192901,7 +191762,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -192977,11 +191838,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0004023": { - "url": "http://purl.obolibrary.org/obo/RO_0004023", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0004023" - }, "http://purl.obolibrary.org/obo/OGMS_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -193018,7 +191874,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -193041,7 +191897,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -193299,7 +192155,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -193328,19 +192184,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -193390,7 +192251,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -193433,7 +192294,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -193456,7 +192317,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -193756,7 +192617,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -193786,19 +192647,24 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -193868,7 +192734,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -193891,7 +192757,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -194028,19 +192894,24 @@ ], "linkedEntities": { "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "numAppearsIn": 1, + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "type": [ "property", @@ -194175,7 +193046,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -194198,7 +193069,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -194364,7 +193235,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -194413,11 +193284,6 @@ "entity" ] }, - "RO:0004032": { - "url": "http://purl.obolibrary.org/obo/RO_0004032", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0004032" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -194434,7 +193300,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -194600,7 +193466,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -194649,11 +193515,6 @@ "entity" ] }, - "RO:0004033": { - "url": "http://purl.obolibrary.org/obo/RO_0004033", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0004033" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "definedBy": [ "rdfs" @@ -194670,7 +193531,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -194933,7 +193794,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -194961,11 +193822,6 @@ "entity" ] }, - "RO:0004034": { - "url": "http://purl.obolibrary.org/obo/RO_0004034", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0004034" - }, "http://purl.obolibrary.org/obo/RO_0002263": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -195003,7 +193859,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -195266,18 +194122,13 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "RO:0004035": { - "url": "http://purl.obolibrary.org/obo/RO_0004035", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0004035" - }, "http://purl.obolibrary.org/obo/RO_0002264": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -195336,7 +194187,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -195416,11 +194267,167 @@ "gitissue502" ], "linkedEntities": { - "RO:0004046": { - "url": "http://purl.obolibrary.org/obo/RO_0004046", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0004046" + "http://purl.obolibrary.org/obo/RO_0002501": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "causal relation between processes" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RO:0002501" + }, + "type": [ + "property", + "objectProperty", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "subPropertyOf" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:subPropertyOf" + }, + "type": [ + "property", + "entity" + ] }, + "http://purl.obolibrary.org/obo/RO_0002418": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "causally upstream of or within" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RO:0002418" + }, + "type": [ + "property", + "objectProperty", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://purl.obolibrary.org/obo/RO_0004047", + "type": [ + "property", + "objectProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "RO:0004047" + }, + "directAncestor": [ + "http://purl.obolibrary.org/obo/RO_0002418", + "http://purl.obolibrary.org/obo/RO_0002501" + ], + "directParent": "http://purl.obolibrary.org/obo/RO_0002418", + "hasDirectChildren": true, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#ObjectProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "causally upstream of or within, positive effect" + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://purl.obolibrary.org/obo/RO_0002418", + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "value": "causally upstream of or within, positive effect" + }, + "numDescendants": 4, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "gitissue502" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://purl.obolibrary.org/obo/mondo.owl" + }, + "ontologyPreferredPrefix": { + "type": [ + "literal" + ], + "value": "gitIssue502" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "RO_0004047" + }, + "isDefiningOntology": false, + "appearsIn": [ + "gitissue502" + ], + "linkedEntities": { "http://purl.obolibrary.org/obo/RO_0002501": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -195458,7 +194465,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -195502,7 +194509,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -195512,7 +194519,7 @@ } }, { - "iri": "http://purl.obolibrary.org/obo/RO_0004047", + "iri": "http://purl.obolibrary.org/obo/RO_0011002", "type": [ "property", "objectProperty", @@ -195522,25 +194529,45 @@ "type": [ "literal" ], - "value": "RO:0004047" + "value": "RO:0011002" + }, + "definition": { + "type": [ + "literal" + ], + "value": "The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B." + }, + "definitionProperty": { + "type": [ + "literal" + ], + "value": "http://purl.obolibrary.org/obo/IAO_0000115" }, "directAncestor": [ - "http://purl.obolibrary.org/obo/RO_0002418", - "http://purl.obolibrary.org/obo/RO_0002501" + "http://purl.obolibrary.org/obo/RO_0002566", + "http://purl.obolibrary.org/obo/RO_0002506" ], - "directParent": "http://purl.obolibrary.org/obo/RO_0002418", + "directParent": "http://purl.obolibrary.org/obo/RO_0002566", "hasDirectChildren": true, "hasDirectParents": true, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, + "http://purl.obolibrary.org/obo/IAO_0000115": { + "type": [ + "literal" + ], + "value": "The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B." + }, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#ObjectProperty", + "http://www.w3.org/2000/01/rdf-schema#domain": "http://purl.obolibrary.org/obo/BFO_0000040", "http://www.w3.org/2000/01/rdf-schema#label": { "type": [ "literal" ], - "value": "causally upstream of or within, positive effect" + "value": "regulates activity of" }, - "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://purl.obolibrary.org/obo/RO_0002418", + "http://www.w3.org/2000/01/rdf-schema#range": "http://purl.obolibrary.org/obo/BFO_0000040", + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://purl.obolibrary.org/obo/RO_0002566", "imported": false, "isObsolete": false, "isPreferredRoot": false, @@ -195548,9 +194575,9 @@ "type": [ "literal" ], - "value": "causally upstream of or within, positive effect" + "value": "regulates activity of" }, - "numDescendants": 4, + "numDescendants": 3, "numHierarchicalDescendants": 0, "ontologyId": { "type": [ @@ -195570,37 +194597,61 @@ ], "value": "gitIssue502" }, - "searchableAnnotationValues": false, + "searchableAnnotationValues": [ + { + "type": [ + "literal" + ], + "value": "The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B." + }, + false + ], "shortForm": { "type": [ "literal" ], - "value": "RO_0004047" + "value": "RO_0011002" }, "isDefiningOntology": false, "appearsIn": [ "gitissue502" ], "linkedEntities": { - "RO:0004047": { - "url": "http://purl.obolibrary.org/obo/RO_0004047", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0004047" + "http://purl.obolibrary.org/obo/RO_0002506": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "causal relation between entities" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RO:0002506" + }, + "type": [ + "property", + "objectProperty", + "entity" + ] }, - "http://purl.obolibrary.org/obo/RO_0002501": { + "http://purl.obolibrary.org/obo/RO_0002566": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "causal relation between processes" + "value": "causally influences" }, "curie": { "type": [ "literal" ], - "value": "RO:0002501" + "value": "RO:0002566" }, "type": [ "property", @@ -195608,6 +194659,50 @@ "entity" ] }, + "http://purl.obolibrary.org/obo/IAO_0000115": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "IAO_0000115" + }, + "curie": { + "type": [ + "literal" + ], + "value": "IAO:0000115" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#range": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "range" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:range" + }, + "type": [ + "property", + "entity" + ] + }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { "definedBy": [ "rdfs" @@ -195624,31 +194719,33 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002418": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#domain": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "value": "causally upstream of or within" + "value": "domain" }, "curie": { "type": [ "literal" ], - "value": "RO:0002418" + "value": "RDFS:domain" }, "type": [ "property", - "objectProperty", "entity" ] }, @@ -195668,17 +194765,39 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", "entity" ] + }, + "http://purl.obolibrary.org/obo/BFO_0000040": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "material entity", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "BFO:0000040" + }, + "type": [ + "class", + "entity" + ] } } }, { - "iri": "http://purl.obolibrary.org/obo/RO_0011002", + "iri": "http://purl.obolibrary.org/obo/RO_0012011", "type": [ "property", "objectProperty", @@ -195688,13 +194807,13 @@ "type": [ "literal" ], - "value": "RO:0011002" + "value": "RO:0012011" }, "definition": { "type": [ "literal" ], - "value": "The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B." + "value": "p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q." }, "definitionProperty": { "type": [ @@ -195703,10 +194822,13 @@ "value": "http://purl.obolibrary.org/obo/IAO_0000115" }, "directAncestor": [ - "http://purl.obolibrary.org/obo/RO_0002566", - "http://purl.obolibrary.org/obo/RO_0002506" + "http://purl.obolibrary.org/obo/RO_0002411", + "http://purl.obolibrary.org/obo/BFO_0000063", + "http://purl.obolibrary.org/obo/RO_0002222", + "http://purl.obolibrary.org/obo/RO_0002418", + "http://purl.obolibrary.org/obo/RO_0002501" ], - "directParent": "http://purl.obolibrary.org/obo/RO_0002566", + "directParent": "http://purl.obolibrary.org/obo/RO_0002411", "hasDirectChildren": true, "hasDirectParents": true, "hasHierarchicalChildren": false, @@ -195715,18 +194837,18 @@ "type": [ "literal" ], - "value": "The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B." + "value": "p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q." }, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#ObjectProperty", - "http://www.w3.org/2000/01/rdf-schema#domain": "http://purl.obolibrary.org/obo/BFO_0000040", "http://www.w3.org/2000/01/rdf-schema#label": { "type": [ "literal" ], - "value": "regulates activity of" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "indirectly causally upstream of", + "lang": "en" }, - "http://www.w3.org/2000/01/rdf-schema#range": "http://purl.obolibrary.org/obo/BFO_0000040", - "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://purl.obolibrary.org/obo/RO_0002566", + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://purl.obolibrary.org/obo/RO_0002411", "imported": false, "isObsolete": false, "isPreferredRoot": false, @@ -195734,7 +194856,9 @@ "type": [ "literal" ], - "value": "regulates activity of" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "indirectly causally upstream of", + "lang": "en" }, "numDescendants": 3, "numHierarchicalDescendants": 0, @@ -195761,7 +194885,7 @@ "type": [ "literal" ], - "value": "The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B." + "value": "p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q." }, false ], @@ -195769,32 +194893,27 @@ "type": [ "literal" ], - "value": "RO_0011002" + "value": "RO_0012011" }, "isDefiningOntology": false, "appearsIn": [ "gitissue502" ], "linkedEntities": { - "RO:0011002": { - "url": "http://purl.obolibrary.org/obo/RO_0011002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0011002" - }, - "http://purl.obolibrary.org/obo/RO_0002506": { + "http://purl.obolibrary.org/obo/RO_0002501": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "causal relation between entities" + "value": "causal relation between processes" }, "curie": { "type": [ "literal" ], - "value": "RO:0002506" + "value": "RO:0002501" }, "type": [ "property", @@ -195802,114 +194921,114 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0002566": { + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "causally influences" + "value": "IAO_0000115" }, "curie": { "type": [ "literal" ], - "value": "RO:0002566" + "value": "IAO:0000115" }, "type": [ "property", - "objectProperty", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000115": { - "numAppearsIn": 1, - "hasLocalDefinition": true, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, "label": { "type": [ "literal" ], - "value": "IAO_0000115" + "value": "subPropertyOf" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000115" + "value": "RDFS:subPropertyOf" }, "type": [ "property", - "annotationProperty", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#range": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/RO_0002222": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "range" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "temporally related to", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "range" + "value": "RO:0002222" }, "type": [ "property", + "objectProperty", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/RO_0002418": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "subPropertyOf" + "value": "causally upstream of or within" }, "curie": { "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RO:0002418" }, "type": [ "property", + "objectProperty", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#domain": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, + "http://purl.obolibrary.org/obo/RO_0002411": { + "numAppearsIn": 1, + "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "domain" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "causally upstream of", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "domain" + "value": "RO:0002411" }, "type": [ "property", + "objectProperty", "entity" ] }, @@ -195929,14 +195048,14 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000040": { + "http://purl.obolibrary.org/obo/BFO_0000063": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -195944,24 +195063,25 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "material entity", + "value": "precedes", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000040" + "value": "BFO:0000063" }, "type": [ - "class", + "property", + "objectProperty", "entity" ] } } }, { - "iri": "http://purl.obolibrary.org/obo/RO_0012011", + "iri": "http://purl.obolibrary.org/obo/RO_0012012", "type": [ "property", "objectProperty", @@ -195971,13 +195091,13 @@ "type": [ "literal" ], - "value": "RO:0012011" + "value": "RO:0012012" }, "definition": { "type": [ "literal" ], - "value": "p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q." + "value": "p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q." }, "definitionProperty": { "type": [ @@ -195986,13 +195106,18 @@ "value": "http://purl.obolibrary.org/obo/IAO_0000115" }, "directAncestor": [ + "http://purl.obolibrary.org/obo/RO_0002211", "http://purl.obolibrary.org/obo/RO_0002411", "http://purl.obolibrary.org/obo/BFO_0000063", "http://purl.obolibrary.org/obo/RO_0002222", "http://purl.obolibrary.org/obo/RO_0002418", - "http://purl.obolibrary.org/obo/RO_0002501" + "http://purl.obolibrary.org/obo/RO_0002501", + "http://purl.obolibrary.org/obo/RO_0012011" + ], + "directParent": [ + "http://purl.obolibrary.org/obo/RO_0002211", + "http://purl.obolibrary.org/obo/RO_0012011" ], - "directParent": "http://purl.obolibrary.org/obo/RO_0002411", "hasDirectChildren": true, "hasDirectParents": true, "hasHierarchicalChildren": false, @@ -196001,7 +195126,7 @@ "type": [ "literal" ], - "value": "p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q." + "value": "p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q." }, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#ObjectProperty", "http://www.w3.org/2000/01/rdf-schema#label": { @@ -196009,10 +195134,13 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "indirectly causally upstream of", + "value": "indirectly regulates", "lang": "en" }, - "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://purl.obolibrary.org/obo/RO_0002411", + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [ + "http://purl.obolibrary.org/obo/RO_0002211", + "http://purl.obolibrary.org/obo/RO_0012011" + ], "imported": false, "isObsolete": false, "isPreferredRoot": false, @@ -196021,10 +195149,10 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "indirectly causally upstream of", + "value": "indirectly regulates", "lang": "en" }, - "numDescendants": 3, + "numDescendants": 2, "numHierarchicalDescendants": 0, "ontologyId": { "type": [ @@ -196049,7 +195177,7 @@ "type": [ "literal" ], - "value": "p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q." + "value": "p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q." }, false ], @@ -196057,17 +195185,35 @@ "type": [ "literal" ], - "value": "RO_0012011" + "value": "RO_0012012" }, "isDefiningOntology": false, "appearsIn": [ "gitissue502" ], "linkedEntities": { - "RO:0012011": { - "url": "http://purl.obolibrary.org/obo/RO_0012011", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0012011" + "http://purl.obolibrary.org/obo/RO_0002211": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "regulates", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RO:0002211" + }, + "type": [ + "property", + "objectProperty", + "entity" + ] }, "http://purl.obolibrary.org/obo/RO_0002501": { "numAppearsIn": 1, @@ -196127,7 +195273,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -196217,327 +195363,7 @@ "type": [ "literal" ], - "value": "label" - }, - "type": [ - "property", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/BFO_0000063": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "precedes", - "lang": "en" - }, - "curie": { - "type": [ - "literal" - ], - "value": "BFO:0000063" - }, - "type": [ - "property", - "objectProperty", - "entity" - ] - } - } - }, - { - "iri": "http://purl.obolibrary.org/obo/RO_0012012", - "type": [ - "property", - "objectProperty", - "entity" - ], - "curie": { - "type": [ - "literal" - ], - "value": "RO:0012012" - }, - "definition": { - "type": [ - "literal" - ], - "value": "p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q." - }, - "definitionProperty": { - "type": [ - "literal" - ], - "value": "http://purl.obolibrary.org/obo/IAO_0000115" - }, - "directAncestor": [ - "http://purl.obolibrary.org/obo/RO_0002211", - "http://purl.obolibrary.org/obo/RO_0002411", - "http://purl.obolibrary.org/obo/BFO_0000063", - "http://purl.obolibrary.org/obo/RO_0002222", - "http://purl.obolibrary.org/obo/RO_0002418", - "http://purl.obolibrary.org/obo/RO_0002501", - "http://purl.obolibrary.org/obo/RO_0012011" - ], - "directParent": [ - "http://purl.obolibrary.org/obo/RO_0002211", - "http://purl.obolibrary.org/obo/RO_0012011" - ], - "hasDirectChildren": true, - "hasDirectParents": true, - "hasHierarchicalChildren": false, - "hasHierarchicalParents": false, - "http://purl.obolibrary.org/obo/IAO_0000115": { - "type": [ - "literal" - ], - "value": "p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q." - }, - "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#ObjectProperty", - "http://www.w3.org/2000/01/rdf-schema#label": { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "indirectly regulates", - "lang": "en" - }, - "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": [ - "http://purl.obolibrary.org/obo/RO_0002211", - "http://purl.obolibrary.org/obo/RO_0012011" - ], - "imported": false, - "isObsolete": false, - "isPreferredRoot": false, - "label": { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "indirectly regulates", - "lang": "en" - }, - "numDescendants": 2, - "numHierarchicalDescendants": 0, - "ontologyId": { - "type": [ - "literal" - ], - "value": "gitissue502" - }, - "ontologyIri": { - "type": [ - "literal" - ], - "value": "http://purl.obolibrary.org/obo/mondo.owl" - }, - "ontologyPreferredPrefix": { - "type": [ - "literal" - ], - "value": "gitIssue502" - }, - "searchableAnnotationValues": [ - { - "type": [ - "literal" - ], - "value": "p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q." - }, - false - ], - "shortForm": { - "type": [ - "literal" - ], - "value": "RO_0012012" - }, - "isDefiningOntology": false, - "appearsIn": [ - "gitissue502" - ], - "linkedEntities": { - "http://purl.obolibrary.org/obo/RO_0002211": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "regulates", - "lang": "en" - }, - "curie": { - "type": [ - "literal" - ], - "value": "RO:0002211" - }, - "type": [ - "property", - "objectProperty", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/IAO_0000115": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "IAO_0000115" - }, - "curie": { - "type": [ - "literal" - ], - "value": "IAO:0000115" - }, - "type": [ - "property", - "annotationProperty", - "entity" - ] - }, - "RO:0012012": { - "url": "http://purl.obolibrary.org/obo/RO_0012012", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0012012" - }, - "http://purl.obolibrary.org/obo/RO_0002501": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "causal relation between processes" - }, - "curie": { - "type": [ - "literal" - ], - "value": "RO:0002501" - }, - "type": [ - "property", - "objectProperty", - "entity" - ] - }, - "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 2, - "hasLocalDefinition": false, - "label": { - "type": [ - "literal" - ], - "value": "subPropertyOf" - }, - "curie": { - "type": [ - "literal" - ], - "value": "subPropertyOf" - }, - "type": [ - "property", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/RO_0002222": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "temporally related to", - "lang": "en" - }, - "curie": { - "type": [ - "literal" - ], - "value": "RO:0002222" - }, - "type": [ - "property", - "objectProperty", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/RO_0002418": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "causally upstream of or within" - }, - "curie": { - "type": [ - "literal" - ], - "value": "RO:0002418" - }, - "type": [ - "property", - "objectProperty", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/RO_0002411": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "causally upstream of", - "lang": "en" - }, - "curie": { - "type": [ - "literal" - ], - "value": "RO:0002411" - }, - "type": [ - "property", - "objectProperty", - "entity" - ] - }, - "http://www.w3.org/2000/01/rdf-schema#label": { - "definedBy": [ - "rdfs" - ], - "numAppearsIn": 3, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "label" - }, - "curie": { - "type": [ - "literal" - ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -196690,11 +195516,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0019000": { - "url": "http://purl.obolibrary.org/obo/RO_0019000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0019000" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -196797,7 +195618,7 @@ "type": [ "literal" ], - "value": "range" + "value": "RDFS:range" }, "type": [ "property", @@ -196820,7 +195641,7 @@ "type": [ "literal" ], - "value": "domain" + "value": "RDFS:domain" }, "type": [ "property", @@ -196843,7 +195664,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -196950,11 +195771,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0019001": { - "url": "http://purl.obolibrary.org/obo/RO_0019001", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0019001" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -196992,7 +195808,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -197059,7 +195875,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -197172,11 +195988,6 @@ "gitissue502" ], "linkedEntities": { - "RO:0019002": { - "url": "http://purl.obolibrary.org/obo/RO_0019002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0019002" - }, "http://purl.obolibrary.org/obo/RO_0002212": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -197237,7 +196048,7 @@ "type": [ "literal" ], - "value": "subPropertyOf" + "value": "RDFS:subPropertyOf" }, "type": [ "property", @@ -197325,7 +196136,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "type": [ "property", @@ -197650,7 +196461,7 @@ "type": [ "literal" ], - "value": "hasBroadSynonym" + "value": "OIO:hasBroadSynonym" }, "directAncestor": [], "hasDirectChildren": false, @@ -197692,10 +196503,14 @@ "type": [ "literal" ], - "value": "hasBroadSynonym" + "value": "OIO_hasBroadSynonym" }, "isDefiningOntology": false, + "definedBy": [ + "oio" + ], "appearsIn": [ + "oio", "gitissue502" ], "linkedEntities": {} @@ -197711,7 +196526,7 @@ "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO:hasDbXref" }, "directAncestor": [], "hasDirectChildren": false, @@ -197753,10 +196568,14 @@ "type": [ "literal" ], - "value": "hasDbXref" + "value": "OIO_hasDbXref" }, "isDefiningOntology": false, + "definedBy": [ + "oio" + ], "appearsIn": [ + "oio", "gitissue502" ], "linkedEntities": {} @@ -197772,7 +196591,7 @@ "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO:hasExactSynonym" }, "directAncestor": [], "hasDirectChildren": false, @@ -197814,10 +196633,14 @@ "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "OIO_hasExactSynonym" }, "isDefiningOntology": false, + "definedBy": [ + "oio" + ], "appearsIn": [ + "oio", "gitissue502" ], "linkedEntities": {} @@ -197833,7 +196656,7 @@ "type": [ "literal" ], - "value": "hasNarrowSynonym" + "value": "OIO:hasNarrowSynonym" }, "directAncestor": [], "hasDirectChildren": false, @@ -197875,10 +196698,14 @@ "type": [ "literal" ], - "value": "hasNarrowSynonym" + "value": "OIO_hasNarrowSynonym" }, "isDefiningOntology": false, + "definedBy": [ + "oio" + ], "appearsIn": [ + "oio", "gitissue502" ], "linkedEntities": {} @@ -197894,7 +196721,7 @@ "type": [ "literal" ], - "value": "hasRelatedSynonym" + "value": "OIO:hasRelatedSynonym" }, "directAncestor": [], "hasDirectChildren": false, @@ -197936,10 +196763,14 @@ "type": [ "literal" ], - "value": "hasRelatedSynonym" + "value": "OIO_hasRelatedSynonym" }, "isDefiningOntology": false, + "definedBy": [ + "oio" + ], "appearsIn": [ + "oio", "gitissue502" ], "linkedEntities": {} @@ -197955,7 +196786,7 @@ "type": [ "literal" ], - "value": "hasSynonymType" + "value": "OIO:hasSynonymType" }, "directAncestor": [], "hasDirectChildren": false, @@ -197997,10 +196828,14 @@ "type": [ "literal" ], - "value": "hasSynonymType" + "value": "OIO_hasSynonymType" }, "isDefiningOntology": false, + "definedBy": [ + "oio" + ], "appearsIn": [ + "oio", "gitissue502" ], "linkedEntities": {} @@ -198077,7 +196912,7 @@ "type": [ "literal" ], - "value": "inSubset" + "value": "OIO:inSubset" }, "directAncestor": [], "hasDirectChildren": false, @@ -198119,10 +196954,14 @@ "type": [ "literal" ], - "value": "inSubset" + "value": "OIO_inSubset" }, "isDefiningOntology": false, + "definedBy": [ + "oio" + ], "appearsIn": [ + "oio", "gitissue502" ], "linkedEntities": {} @@ -198260,7 +197099,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS:label" }, "directAncestor": [], "hasDirectChildren": false, @@ -198302,7 +197141,7 @@ "type": [ "literal" ], - "value": "label" + "value": "RDFS_label" }, "isDefiningOntology": false, "definedBy": [ @@ -198326,7 +197165,7 @@ "type": [ "literal" ], - "value": "closeMatch" + "value": "SKOS:closeMatch" }, "directAncestor": [], "hasDirectChildren": false, @@ -198368,7 +197207,7 @@ "type": [ "literal" ], - "value": "closeMatch" + "value": "SKOS_closeMatch" }, "isDefiningOntology": false, "definedBy": [ @@ -198391,7 +197230,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS:exactMatch" }, "directAncestor": [], "hasDirectChildren": false, @@ -198433,7 +197272,7 @@ "type": [ "literal" ], - "value": "exactMatch" + "value": "SKOS_exactMatch" }, "isDefiningOntology": false, "definedBy": [ @@ -198448,6 +197287,7488 @@ ], "individuals": [], "linkedEntities": {} + }, + { + "ontologyId": "oio", + "importsFrom": [], + "exportsTo": [ + "gitissue502" + ], + "iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_purl": "https://gist.githubusercontent.com/haideriqbal/4a2b1a9aa81d9fa26cae81e0b0b7730b/raw/527665128b9be9d7d6133f9a796379600151c737/oboInOwl.owl", + "base_uri": [ + "http://www.geneontology.org/formats/oboInOwl#" + ], + "type": [ + "ontology" + ], + "definition": [ + { + "type": [ + "literal" + ], + "value": "OBO Format metamodel. This meta-ontology is self-describing. OBO metamodel properties are described using OBO metamodel properties" + }, + { + "type": [ + "literal" + ], + "value": "\n This is an OWL translation of an ontology whose native representational form is .obo. The translation was performed using the oboInOwl xslt library. For details, see http://www.berkeleybop.org/obo-conv.cgi\n " + } + ], + "directAncestor": [], + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Ontology", + "http://www.w3.org/2000/01/rdf-schema#comment": [ + { + "type": [ + "literal" + ], + "value": "OBO Format metamodel. This meta-ontology is self-describing. OBO metamodel properties are described using OBO metamodel properties" + }, + { + "type": [ + "literal" + ], + "value": "\n This is an OWL translation of an ontology whose native representational form is .obo. The translation was performed using the oboInOwl xslt library. For details, see http://www.berkeleybop.org/obo-conv.cgi\n " + } + ], + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "" + }, + "imported": false, + "isObsolete": false, + "label": { + "type": [ + "literal" + ], + "value": "" + }, + "language": { + "type": [ + "literal" + ], + "value": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "numberOfClasses": { + "type": [ + "literal" + ], + "value": "12" + }, + "numberOfEntities": { + "type": [ + "literal" + ], + "value": "56" + }, + "numberOfIndividuals": { + "type": [ + "literal" + ], + "value": "0" + }, + "numberOfProperties": { + "type": [ + "literal" + ], + "value": "44" + }, + "searchableAnnotationValues": [ + false, + { + "type": [ + "literal" + ], + "value": "en" + }, + { + "type": [ + "literal" + ], + "value": "12" + }, + { + "type": [ + "literal" + ], + "value": "56" + }, + { + "type": [ + "literal" + ], + "value": "0" + }, + { + "type": [ + "literal" + ], + "value": "44" + } + ], + "classes": [ + { + "iri": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "type": [ + "class", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "hierarchicalAncestor": [], + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_DbXref" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#Definition", + "type": [ + "class", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "definition": { + "type": [ + "literal" + ], + "value": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + }, + "definitionProperty": { + "type": [ + "literal" + ], + "value": "http://www.w3.org/2000/01/rdf-schema#comment" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "hierarchicalAncestor": [], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://www.obofoundry.org/wiki/index.php/Definitions" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "URL:http://www.obofoundry.org/wiki/index.php/Definitions" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "The textual definition of the current term. There must be zero or one instances of this tag per term description", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#comment": { + "type": [ + "literal" + ], + "value": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_Definition" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#comment": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "comment" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:comment" + }, + "type": [ + "property", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "oboInOwl:cjm": { + "url": "http://www.geneontology.org/formats/oboInOwl#cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:cjm" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#ObsoleteClass", + "type": [ + "class", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:ObsoleteClass" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "hierarchicalAncestor": [], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "pseudo-class. in the oboInOwl translation, all obsolete classes are subclasses of this class. Note that this is not a metaclass", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "obsolete_class", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "obsolete_class", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_ObsoleteClass" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "oboInOwl:cjm": { + "url": "http://www.geneontology.org/formats/oboInOwl#cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:cjm" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#Subset", + "type": [ + "class", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Subset" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "hierarchicalAncestor": [], + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_subsetdef" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:subsetdef" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "A grouping of terms from an ontology or ontologies. Note that this is not a metaclass - classes are linked to subsets via oboInOwl:inSubset", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "slim", + "lang": "en" + }, + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "GO-slim", + "lang": "en" + }, + "isObsolete": false + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "view", + "lang": "en" + }, + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "partition", + "lang": "en" + }, + "isObsolete": false + } + ], + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "subset", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "subset", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_Subset" + }, + "synonym": [ + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "slim", + "lang": "en" + }, + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "GO-slim", + "lang": "en" + }, + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "view", + "lang": "en" + }, + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "partition", + "lang": "en" + }, + "isObsolete": false + } + ], + "synonymProperty": [ + { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym" + }, + { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym" + } + ], + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#Synonym": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "synonym", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Synonym" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "oboFormat:subsetdef": { + "url": "http://www.geneontology.org/formats/oboInOwl#subsetdef", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboFormat:subsetdef" + }, + "oboInOwl:cjm": { + "url": "http://www.geneontology.org/formats/oboInOwl#cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:cjm" + }, + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_related_synonym", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasRelatedSynonym" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_narrow_synonym", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasNarrowSynonym" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "type": [ + "class", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Synonym" + }, + "definition": { + "type": [ + "literal" + ], + "value": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + }, + "definitionProperty": { + "type": [ + "literal" + ], + "value": "http://www.w3.org/2000/01/rdf-schema#comment" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "hierarchicalAncestor": [], + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An instance of synonym usage. synonym instances are linked to classes via oboInOwl:has*Synonym properties", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#comment": { + "type": [ + "literal" + ], + "value": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "synonym", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "synonym", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_Synonym" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#comment": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "comment" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:comment" + }, + "type": [ + "property", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "oboInOwl:cjm": { + "url": "http://www.geneontology.org/formats/oboInOwl#cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:cjm" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#SynonymType", + "type": [ + "class", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:SynonymType" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "hierarchicalAncestor": [], + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "synonym_type", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "synonym_type", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_SynonymType" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + } + ], + "properties": [ + { + "iri": "http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty", + "type": [ + "property", + "objectProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:ObsoleteProperty" + }, + "definition": { + "type": [ + "literal" + ], + "value": "Note that this is not a metaclass" + }, + "definitionProperty": { + "type": [ + "literal" + ], + "value": "http://www.w3.org/2000/01/rdf-schema#comment" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "pseudo-property. in the oboInOwl translation, all obsolete relations are subProperties of this class", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#ObjectProperty", + "http://www.w3.org/2000/01/rdf-schema#comment": { + "type": [ + "literal" + ], + "value": "Note that this is not a metaclass" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "obsolete_property", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "obsolete_property", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_ObsoleteProperty" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#comment": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "comment" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:comment" + }, + "type": [ + "property", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "oboInOwl:cjm": { + "url": "http://www.geneontology.org/formats/oboInOwl#cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:cjm" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#SubsetProperty", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:SubsetProperty" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "This annotation property groups all subsets declared in the ontology", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "subset_property", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "subset_property", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_SubsetProperty" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + }, + "oboInOwl:GOC": { + "url": "http://www.geneontology.org/formats/oboInOwl#GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:GOC" + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:SynonymTypeProperty" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "This annotation property groups all synonym types declared in the ontology", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "synonym_type_property", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "synonym_type_property", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_SynonymTypeProperty" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + }, + "oboInOwl:GOC": { + "url": "http://www.geneontology.org/formats/oboInOwl#GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:GOC" + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#consider", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:consider" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_consider" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:consider" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "Gives a term which may be an appropriate substitute for an obsolete term, but needs to be looked at carefully by a human expert before the replacement is done", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "consider", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "consider", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_consider" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "oboFormat:consider": { + "url": "http://www.geneontology.org/formats/oboInOwl#consider", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboFormat:consider" + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "oboInOwl:cjm": { + "url": "http://www.geneontology.org/formats/oboInOwl#cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:cjm" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasAlternativeId" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_alt_id" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:alt_id" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An alternative identifier for this class; should follow ID syntax. These can result from class merges", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_alternative_id", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_alternative_id", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasAlternativeId" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "oboFormat:alt_id": { + "url": "http://www.geneontology.org/formats/oboInOwl#alt_id", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboFormat:alt_id" + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "oboInOwl:cjm": { + "url": "http://www.geneontology.org/formats/oboInOwl#cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:cjm" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasBroadSynonym" + }, + "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "hasDirectChildren": false, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_broad_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:broad_synonym" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An alias in which the alias is broader than the primary class name. Example: cell division is a broad synonym of cytokinesis", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_broad_synonym", + "lang": "en" + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_broad_synonym", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasBroadSynonym" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio", + "gitissue502" + ], + "linkedEntities": { + "oboFormat:broad_synonym": { + "url": "http://www.geneontology.org/formats/oboInOwl#broad_synonym", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboFormat:broad_synonym" + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_synonym", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasSynonym" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "subPropertyOf" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:subPropertyOf" + }, + "type": [ + "property", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + }, + "oboInOwl:GOC": { + "url": "http://www.geneontology.org/formats/oboInOwl#GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:GOC" + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDate", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDate" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_date" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:date" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_date", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_date", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasDate" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "oboFormat:date": { + "url": "http://www.geneontology.org/formats/oboInOwl#date", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboFormat:date" + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDbXref", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_xref" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:xref" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasDbXref" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio", + "gitissue502" + ], + "linkedEntities": { + "oboFormat:xref": { + "url": "http://www.geneontology.org/formats/oboInOwl#xref", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboFormat:xref" + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDefaultNamespace", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefaultNamespace" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_default-namespace" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:default-namespace" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_default_namespace", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_default_namespace", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasDefaultNamespace" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDefinition", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "definition": { + "type": [ + "literal" + ], + "value": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + }, + "definitionProperty": { + "type": [ + "literal" + ], + "value": "http://www.w3.org/2000/01/rdf-schema#comment" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_def" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:def" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "a relation between a class and an instance of a oboInOwl:Definition", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#comment": { + "type": [ + "literal" + ], + "value": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasDefinition" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "oboFormat:def": { + "url": "http://www.geneontology.org/formats/oboInOwl#def", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboFormat:def" + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#comment": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "comment" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:comment" + }, + "type": [ + "property", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "oboInOwl:cjm": { + "url": "http://www.geneontology.org/formats/oboInOwl#cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:cjm" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasExactSynonym" + }, + "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "hasDirectChildren": false, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_exact_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:exact_synonym" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An alias in which the alias exhibits true synonymy. Example: ornithine cycle is an exact synonym of urea cycle", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_exact_synonym", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasExactSynonym" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio", + "gitissue502" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_synonym", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasSynonym" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "subPropertyOf" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:subPropertyOf" + }, + "type": [ + "property", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "oboFormat:exact_synonym": { + "url": "http://www.geneontology.org/formats/oboInOwl#exact_synonym", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboFormat:exact_synonym" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + }, + "oboInOwl:GOC": { + "url": "http://www.geneontology.org/formats/oboInOwl#GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:GOC" + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasNarrowSynonym" + }, + "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "hasDirectChildren": false, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_narrow_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:narrow_synonym" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An alias in which the alias is narrower than the primary class name. Example: pyrimidine-dimer repair by photolyase is a narrow synonym of photoreactive repair", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_narrow_synonym", + "lang": "en" + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_narrow_synonym", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasNarrowSynonym" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio", + "gitissue502" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "oboFormat:narrow_synonym": { + "url": "http://www.geneontology.org/formats/oboInOwl#narrow_synonym", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboFormat:narrow_synonym" + }, + "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_synonym", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasSynonym" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "subPropertyOf" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:subPropertyOf" + }, + "type": [ + "property", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + }, + "oboInOwl:GOC": { + "url": "http://www.geneontology.org/formats/oboInOwl#GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:GOC" + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasOBONamespace" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_namespace" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:namespace" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "A relation between a class and an OBO namespace string. OBO namespaces are to be distinguished from IDspaces; for example, biological_process is a namespace, GO is an idspace.", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_obo_namespace", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_obo_namespace", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasOBONamespace" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "oboFormat:namespace": { + "url": "http://www.geneontology.org/formats/oboInOwl#namespace", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboFormat:namespace" + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + }, + "oboInOwl:GOC": { + "url": "http://www.geneontology.org/formats/oboInOwl#GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:GOC" + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasRelatedSynonym" + }, + "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "hasDirectChildren": false, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_related_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:related_synonym" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An alias in which the alias is related the primary class name, but not necessarily broader or narrower. Example: cytochrome bc1 complex is a related synonym of ubiquinol-cytochrome-c reductase activity; virulence is a related synonym of pathogenesis", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_related_synonym", + "lang": "en" + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_related_synonym", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasRelatedSynonym" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio", + "gitissue502" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_synonym", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasSynonym" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "subPropertyOf" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:subPropertyOf" + }, + "type": [ + "property", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "oboFormat:related_synonym": { + "url": "http://www.geneontology.org/formats/oboInOwl#related_synonym", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboFormat:related_synonym" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + }, + "oboInOwl:GOC": { + "url": "http://www.geneontology.org/formats/oboInOwl#GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:GOC" + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSubset", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasSubset" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "relation between an ontology and a oboInOwl:Subset, indicating classes in the ontology belong to the subset", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_subset", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_subset", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasSubset" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "oboInOwl:cjm": { + "url": "http://www.geneontology.org/formats/oboInOwl#cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:cjm" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasSynonym" + }, + "definition": { + "type": [ + "literal" + ], + "value": "Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL" + }, + "definitionProperty": { + "type": [ + "literal" + ], + "value": "http://www.w3.org/2000/01/rdf-schema#comment" + }, + "directAncestor": [], + "hasDirectChildren": true, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:synonym" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "A relation between a class and an alias term.", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#comment": { + "type": [ + "literal" + ], + "value": "Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_synonym", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_synonym", + "lang": "en" + }, + "numDescendants": 4, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasSynonym" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "oboFormat:synonym": { + "url": "http://www.geneontology.org/formats/oboInOwl#synonym", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboFormat:synonym" + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#comment": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "comment" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:comment" + }, + "type": [ + "property", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + }, + "oboInOwl:GOC": { + "url": "http://www.geneontology.org/formats/oboInOwl#GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:GOC" + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSynonymType", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasSynonymType" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://www.geneontology.org/GO.usage.shtml#type" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "URL:http://www.geneontology.org/GO.usage.shtml#type" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_synonym_type", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_synonym_type", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasSynonymType" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio", + "gitissue502" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasURI", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasURI" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#hasVersion", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasVersion" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_version" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:version" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_version", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_version", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_hasVersion" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "oboFormat:version": { + "url": "http://www.geneontology.org/formats/oboInOwl#version", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboFormat:version" + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#inSubset", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:inSubset" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_subset" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:subset" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "relation between a class and a oboInOwl:Subset, indicating the class belongs (is a member of) the subset", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "in_subset", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_inSubset" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio", + "gitissue502" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "oboFormat:subset": { + "url": "http://www.geneontology.org/formats/oboInOwl#subset", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboFormat:subset" + }, + "oboInOwl:cjm": { + "url": "http://www.geneontology.org/formats/oboInOwl#cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:cjm" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#isCyclic", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:isCyclic" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_is_cyclic" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:is_cyclic" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "is_cyclic", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "is_cyclic", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_isCyclic" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "oboFormat:is_cyclic": { + "url": "http://www.geneontology.org/formats/oboInOwl#is_cyclic", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboFormat:is_cyclic" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#replacedBy", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:replacedBy" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_replaced_by" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:replaced_by" + }, + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "Gives a term which replaces an obsolete term. The value is the id of the replacement term. The value of this tag can safely be used to automatically reassign links to an obsolete term. The replaced_by tag may only be specified for obsolete terms. A single obsolete term may have more than one replaced_by tag. This tag can be used in conjunction with the consider tag.", + "lang": "en" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "replaced_by", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "replaced_by", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_replacedBy" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDefinition" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "definition", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:Definition" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "oboInOwl:cjm": { + "url": "http://www.geneontology.org/formats/oboInOwl#cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboInOwl:cjm" + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + }, + "oboFormat:replaced_by": { + "url": "http://www.geneontology.org/formats/oboInOwl#replaced_by", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboFormat:replaced_by" + } + } + }, + { + "iri": "http://www.geneontology.org/formats/oboInOwl#savedBy", + "type": [ + "property", + "annotationProperty", + "entity" + ], + "curie": { + "type": [ + "literal" + ], + "value": "OIO:savedBy" + }, + "directAncestor": [], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_saved_by" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:saved_by" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "saved_by", + "lang": "en" + }, + "imported": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "saved_by", + "lang": "en" + }, + "numDescendants": 0, + "numHierarchicalDescendants": 0, + "ontologyId": { + "type": [ + "literal" + ], + "value": "oio" + }, + "ontologyIri": { + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/formats/oboInOwl" + }, + "searchableAnnotationValues": false, + "shortForm": { + "type": [ + "literal" + ], + "value": "OIO_savedBy" + }, + "isDefiningOntology": true, + "definedBy": [ + "oio" + ], + "appearsIn": [ + "oio" + ], + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 2, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_dbxref", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasDbXref" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "oboFormat:saved_by": { + "url": "http://www.geneontology.org/formats/oboInOwl#saved_by", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "oboFormat:saved_by" + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has_URI", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:hasURI" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "definedBy": [ + "oio" + ], + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "database_cross_reference", + "lang": "en" + }, + "curie": { + "type": [ + "literal" + ], + "value": "OIO:DbXref" + }, + "type": [ + "class", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } + } + ], + "individuals": [], + "linkedEntities": { + "http://www.w3.org/2000/01/rdf-schema#comment": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 2, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "comment" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:comment" + }, + "type": [ + "property", + "entity" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "definedBy": [ + "rdfs" + ], + "numAppearsIn": 3, + "hasLocalDefinition": false, + "label": { + "type": [ + "literal" + ], + "value": "label" + }, + "curie": { + "type": [ + "literal" + ], + "value": "RDFS:label" + }, + "type": [ + "property", + "entity" + ] + } + } } ] } \ No newline at end of file diff --git a/testcases_expected_output/annotation-properties/gitIssue502/owl_classes.csv b/testcases_expected_output/annotation-properties/gitIssue502/owl_classes.csv index e0ed00721..265f83a78 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/owl_classes.csv +++ b/testcases_expected_output/annotation-properties/gitIssue502/owl_classes.csv @@ -1,35 +1,35 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","hierarchicalProperty:string[]","numHierarchicalDescendants:string[]","type:string[]","definitionProperty:string[]","http__//www.w3.org/2000/01/rdf-schema#subClassOf:string[]","hasDirectParents:string[]","http__//www.w3.org/2000/01/rdf-schema#comment:string[]","imported:string[]","definition:string[]","ontologyIri:string[]","hierarchicalParent:string[]","iri","hierarchicalAncestor:string[]","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy:string[]","numDescendants:string[]","isObsolete:string[]","label:string[]","directParent:string[]","directAncestor:string[]","curie:string[]","shortForm:string[]","definedBy:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"owl+class+http://www.w3.org/2000/01/rdf-schema#Class","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Class"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Class""},""definition"":{""type"":[""literal""],""value"":""The class of classes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of classes.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Class""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Class""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""Class""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of classes.","true","The class of classes.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#","5.0","false","Class","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","Class","Class","rdfs","Class","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2000/01/rdf-schema#Container","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Container"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Container""},""definition"":{""type"":[""literal""],""value"":""The class of RDF containers.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of RDF containers.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Container""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Container""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""Container""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of RDF containers.","true","The class of RDF containers.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Container","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#","0.0","false","Container","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","Container","Container","rdfs","Container","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""ContainerMembershipProperty""},""definition"":{""type"":[""literal""],""value"":""The class of container membership properties, rdf:_1, rdf:_2, ...,\n all of which are sub-properties of \u0027member\u0027.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of container membership properties, rdf:_1, rdf:_2, ...,\n all of which are sub-properties of \u0027member\u0027.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""ContainerMembershipProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""ContainerMembershipProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""ContainerMembershipProperty""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","The class of container membership properties, rdf:_1, rdf:_2, ..., +"owl+class+http://www.w3.org/2000/01/rdf-schema#Class","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Class"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""definition"":{""type"":[""literal""],""value"":""The class of classes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of classes.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Class""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Class""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RDFS_Class""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of classes.","true","The class of classes.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#","5.0","false","Class","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","RDFS:Class","RDFS_Class","rdfs","Class","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2000/01/rdf-schema#Container","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Container"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:Container""},""definition"":{""type"":[""literal""],""value"":""The class of RDF containers.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of RDF containers.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Container""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Container""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RDFS_Container""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of RDF containers.","true","The class of RDF containers.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Container","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#","0.0","false","Container","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","RDFS:Container","RDFS_Container","rdfs","Container","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:ContainerMembershipProperty""},""definition"":{""type"":[""literal""],""value"":""The class of container membership properties, rdf:_1, rdf:_2, ...,\n all of which are sub-properties of \u0027member\u0027.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of container membership properties, rdf:_1, rdf:_2, ...,\n all of which are sub-properties of \u0027member\u0027.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""ContainerMembershipProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""ContainerMembershipProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RDFS_ContainerMembershipProperty""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","The class of container membership properties, rdf:_1, rdf:_2, ..., all of which are sub-properties of 'member'.","true","The class of container membership properties, rdf:_1, rdf:_2, ..., - all of which are sub-properties of 'member'.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty","","http://www.w3.org/2000/01/rdf-schema#","0.0","false","ContainerMembershipProperty","","","ContainerMembershipProperty","ContainerMembershipProperty","rdfs","ContainerMembershipProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2000/01/rdf-schema#Datatype","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Datatype""},""definition"":{""type"":[""literal""],""value"":""The class of RDF datatypes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""directParent"":""http://www.w3.org/2000/01/rdf-schema#Class"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Class"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of RDF datatypes.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Datatype""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Datatype""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""Datatype""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Class","true","The class of RDF datatypes.","true","The class of RDF datatypes.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Datatype","http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#","1.0","false","Datatype","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","Datatype","Datatype","rdfs","Datatype","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2000/01/rdf-schema#Literal","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Literal""},""definition"":{""type"":[""literal""],""value"":""The class of literal values, eg. textual strings and integers.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of literal values, eg. textual strings and integers.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Literal""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Literal""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""Literal""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of literal values, eg. textual strings and integers.","true","The class of literal values, eg. textual strings and integers.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Literal","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#","0.0","false","Literal","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","Literal","Literal","rdfs","Literal","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2000/01/rdf-schema#Resource","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Resource""},""definition"":{""type"":[""literal""],""value"":""The class resource, everything.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class resource, everything.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Resource""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Resource""},""numDescendants"":15.0,""numHierarchicalDescendants"":15.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""Resource""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","true","false","","","15.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","","false","The class resource, everything.","true","The class resource, everything.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2000/01/rdf-schema#","15.0","false","Resource","","","Resource","Resource","rdfs","Resource","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#AllDifferent","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#AllDifferent"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""AllDifferent""},""definition"":{""type"":[""literal""],""value"":""The class of collections of pairwise different individuals.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of collections of pairwise different individuals.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""AllDifferent""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""AllDifferent""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""AllDifferent""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of collections of pairwise different individuals.","false","The class of collections of pairwise different individuals.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#AllDifferent","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","AllDifferent","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","AllDifferent","AllDifferent","owl","AllDifferent","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#AllDisjointClasses","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#AllDisjointClasses"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""AllDisjointClasses""},""definition"":{""type"":[""literal""],""value"":""The class of collections of pairwise disjoint classes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of collections of pairwise disjoint classes.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""AllDisjointClasses""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""AllDisjointClasses""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""AllDisjointClasses""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of collections of pairwise disjoint classes.","false","The class of collections of pairwise disjoint classes.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#AllDisjointClasses","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","AllDisjointClasses","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","AllDisjointClasses","AllDisjointClasses","owl","AllDisjointClasses","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#AllDisjointProperties","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#AllDisjointProperties"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""AllDisjointProperties""},""definition"":{""type"":[""literal""],""value"":""The class of collections of pairwise disjoint properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of collections of pairwise disjoint properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""AllDisjointProperties""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""AllDisjointProperties""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""AllDisjointProperties""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of collections of pairwise disjoint properties.","false","The class of collections of pairwise disjoint properties.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#AllDisjointProperties","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","AllDisjointProperties","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","AllDisjointProperties","AllDisjointProperties","owl","AllDisjointProperties","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#Annotation","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#Annotation"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Annotation""},""definition"":{""type"":[""literal""],""value"":""The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Annotation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Annotation""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""Annotation""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.","false","The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#Annotation","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","Annotation","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","Annotation","Annotation","owl","Annotation","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#AnnotationProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""AnnotationProperty""},""definition"":{""type"":[""literal""],""value"":""The class of annotation properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of annotation properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""AnnotationProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""AnnotationProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""AnnotationProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","The class of annotation properties.","false","The class of annotation properties.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2002/07/owl#AnnotationProperty","","http://www.w3.org/2002/07/owl#","0.0","false","AnnotationProperty","","","AnnotationProperty","AnnotationProperty","owl","AnnotationProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#AsymmetricProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#AsymmetricProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""AsymmetricProperty""},""definition"":{""type"":[""literal""],""value"":""The class of asymmetric properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""directParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of asymmetric properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""AsymmetricProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""AsymmetricProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""AsymmetricProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#ObjectProperty","true","The class of asymmetric properties.","false","The class of asymmetric properties.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#AsymmetricProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#","0.0","false","AsymmetricProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#ObjectProperty","AsymmetricProperty","AsymmetricProperty","owl","AsymmetricProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#Axiom","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#Axiom"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Axiom""},""definition"":{""type"":[""literal""],""value"":""The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Axiom""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Axiom""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""Axiom""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.","false","The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#Axiom","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","Axiom","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","Axiom","Axiom","owl","Axiom","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#Class","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#Class"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Class""},""definition"":{""type"":[""literal""],""value"":""The class of OWL classes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""directParent"":""http://www.w3.org/2000/01/rdf-schema#Class"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Class"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of OWL classes.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Class""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Class""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""Class""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","true","true","true","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Class","true","The class of OWL classes.","false","The class of OWL classes.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2002/07/owl#Class","http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","1.0","false","Class","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","Class","Class","owl","Class","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#DataRange","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#DataRange"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DataRange""},""definition"":{""type"":[""literal""],""value"":""The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Datatype"",""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""directParent"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Datatype"",""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""DataRange""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""DataRange""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""DataRange""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Datatype"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Datatype""},""curie"":{""type"":[""literal""],""value"":""Datatype""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Datatype","true","The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead.","false","The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Datatype","http://www.w3.org/2002/07/owl#DataRange","http://www.w3.org/2000/01/rdf-schema#Datatype|http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","DataRange","http://www.w3.org/2000/01/rdf-schema#Datatype","http://www.w3.org/2000/01/rdf-schema#Datatype|http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","DataRange","DataRange","owl","DataRange","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#DatatypeProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#DatatypeProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DatatypeProperty""},""definition"":{""type"":[""literal""],""value"":""The class of data properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of data properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""DatatypeProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""DatatypeProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""DatatypeProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","The class of data properties.","false","The class of data properties.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2002/07/owl#DatatypeProperty","","http://www.w3.org/2002/07/owl#","0.0","false","DatatypeProperty","","","DatatypeProperty","DatatypeProperty","owl","DatatypeProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#DeprecatedClass","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#DeprecatedClass"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DeprecatedClass""},""definition"":{""type"":[""literal""],""value"":""The class of deprecated classes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""directParent"":""http://www.w3.org/2000/01/rdf-schema#Class"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Class"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of deprecated classes.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""DeprecatedClass""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""DeprecatedClass""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""DeprecatedClass""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Class","true","The class of deprecated classes.","false","The class of deprecated classes.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2002/07/owl#DeprecatedClass","http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","DeprecatedClass","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","DeprecatedClass","DeprecatedClass","owl","DeprecatedClass","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#DeprecatedProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#DeprecatedProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DeprecatedProperty""},""definition"":{""type"":[""literal""],""value"":""The class of deprecated properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of deprecated properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""DeprecatedProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""DeprecatedProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""DeprecatedProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","The class of deprecated properties.","false","The class of deprecated properties.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2002/07/owl#DeprecatedProperty","","http://www.w3.org/2002/07/owl#","0.0","false","DeprecatedProperty","","","DeprecatedProperty","DeprecatedProperty","owl","DeprecatedProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#FunctionalProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#FunctionalProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""FunctionalProperty""},""definition"":{""type"":[""literal""],""value"":""The class of functional properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of functional properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""FunctionalProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""FunctionalProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""FunctionalProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","The class of functional properties.","false","The class of functional properties.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2002/07/owl#FunctionalProperty","","http://www.w3.org/2002/07/owl#","0.0","false","FunctionalProperty","","","FunctionalProperty","FunctionalProperty","owl","FunctionalProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#InverseFunctionalProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#InverseFunctionalProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""InverseFunctionalProperty""},""definition"":{""type"":[""literal""],""value"":""The class of inverse-functional properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""directParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of inverse-functional properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""InverseFunctionalProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""InverseFunctionalProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""InverseFunctionalProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#ObjectProperty","true","The class of inverse-functional properties.","false","The class of inverse-functional properties.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#InverseFunctionalProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#","0.0","false","InverseFunctionalProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#ObjectProperty","InverseFunctionalProperty","InverseFunctionalProperty","owl","InverseFunctionalProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#IrreflexiveProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#IrreflexiveProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IrreflexiveProperty""},""definition"":{""type"":[""literal""],""value"":""The class of irreflexive properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""directParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of irreflexive properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""IrreflexiveProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IrreflexiveProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IrreflexiveProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#ObjectProperty","true","The class of irreflexive properties.","false","The class of irreflexive properties.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#IrreflexiveProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#","0.0","false","IrreflexiveProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#ObjectProperty","IrreflexiveProperty","IrreflexiveProperty","owl","IrreflexiveProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#NamedIndividual","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#NamedIndividual"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NamedIndividual""},""definition"":{""type"":[""literal""],""value"":""The class of named individuals.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2002/07/owl#Thing"",""directParent"":""http://www.w3.org/2002/07/owl#Thing"",""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":""http://www.w3.org/2002/07/owl#Thing"",""hierarchicalParent"":""http://www.w3.org/2002/07/owl#Thing"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of named individuals.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""NamedIndividual""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""NamedIndividual""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NamedIndividual""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#Thing","false","The class of named individuals.","false","The class of named individuals.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Thing","http://www.w3.org/2002/07/owl#NamedIndividual","http://www.w3.org/2002/07/owl#Thing","http://www.w3.org/2002/07/owl#","0.0","false","NamedIndividual","http://www.w3.org/2002/07/owl#Thing","http://www.w3.org/2002/07/owl#Thing","NamedIndividual","NamedIndividual","owl","NamedIndividual","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#NegativePropertyAssertion","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#NegativePropertyAssertion"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""NegativePropertyAssertion""},""definition"":{""type"":[""literal""],""value"":""The class of negative property assertions.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of negative property assertions.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""NegativePropertyAssertion""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""NegativePropertyAssertion""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""NegativePropertyAssertion""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of negative property assertions.","false","The class of negative property assertions.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#NegativePropertyAssertion","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","NegativePropertyAssertion","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","NegativePropertyAssertion","NegativePropertyAssertion","owl","NegativePropertyAssertion","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#Nothing","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#Nothing"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Nothing""},""definition"":{""type"":[""literal""],""value"":""This is the empty class.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2002/07/owl#Thing"",""directParent"":""http://www.w3.org/2002/07/owl#Thing"",""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":""http://www.w3.org/2002/07/owl#Thing"",""hierarchicalParent"":""http://www.w3.org/2002/07/owl#Thing"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""This is the empty class.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Nothing""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Nothing""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""Nothing""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#Thing","false","This is the empty class.","false","This is the empty class.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Thing","http://www.w3.org/2002/07/owl#Nothing","http://www.w3.org/2002/07/owl#Thing","http://www.w3.org/2002/07/owl#","0.0","false","Nothing","http://www.w3.org/2002/07/owl#Thing","http://www.w3.org/2002/07/owl#Thing","Nothing","Nothing","owl","Nothing","owl","http://www.w3.org/2002/07/owl#Class" -"owl+class+http://www.w3.org/2002/07/owl#ObjectProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""ObjectProperty""},""definition"":{""type"":[""literal""],""value"":""The class of object properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of object properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""ObjectProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""ObjectProperty""},""numDescendants"":6.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""ObjectProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","true","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","The class of object properties.","false","The class of object properties.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2002/07/owl#ObjectProperty","","http://www.w3.org/2002/07/owl#","6.0","false","ObjectProperty","","","ObjectProperty","ObjectProperty","owl","ObjectProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#Ontology","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#Ontology"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Ontology""},""definition"":{""type"":[""literal""],""value"":""The class of ontologies.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of ontologies.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Ontology""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Ontology""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""Ontology""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of ontologies.","false","The class of ontologies.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#Ontology","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","Ontology","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","Ontology","Ontology","owl","Ontology","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#OntologyProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#OntologyProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OntologyProperty""},""definition"":{""type"":[""literal""],""value"":""The class of ontology properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of ontology properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""OntologyProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""OntologyProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OntologyProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","The class of ontology properties.","false","The class of ontology properties.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2002/07/owl#OntologyProperty","","http://www.w3.org/2002/07/owl#","0.0","false","OntologyProperty","","","OntologyProperty","OntologyProperty","owl","OntologyProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#ReflexiveProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#ReflexiveProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""ReflexiveProperty""},""definition"":{""type"":[""literal""],""value"":""The class of reflexive properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""directParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of reflexive properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""ReflexiveProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""ReflexiveProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""ReflexiveProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#ObjectProperty","true","The class of reflexive properties.","false","The class of reflexive properties.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#ReflexiveProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#","0.0","false","ReflexiveProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#ObjectProperty","ReflexiveProperty","ReflexiveProperty","owl","ReflexiveProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#Restriction","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#Restriction"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Restriction""},""definition"":{""type"":[""literal""],""value"":""The class of property restrictions.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""directParent"":""http://www.w3.org/2002/07/owl#Class"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""hierarchicalParent"":""http://www.w3.org/2002/07/owl#Class"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of property restrictions.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Restriction""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Restriction""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""Restriction""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#Class","true","The class of property restrictions.","false","The class of property restrictions.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Class","http://www.w3.org/2002/07/owl#Restriction","http://www.w3.org/2002/07/owl#Class|http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","Restriction","http://www.w3.org/2002/07/owl#Class","http://www.w3.org/2002/07/owl#Class|http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","Restriction","Restriction","owl","Restriction","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#SymmetricProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#SymmetricProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""SymmetricProperty""},""definition"":{""type"":[""literal""],""value"":""The class of symmetric properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""directParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of symmetric properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""SymmetricProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""SymmetricProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""SymmetricProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#ObjectProperty","true","The class of symmetric properties.","false","The class of symmetric properties.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#","0.0","false","SymmetricProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#ObjectProperty","SymmetricProperty","SymmetricProperty","owl","SymmetricProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" -"owl+class+http://www.w3.org/2002/07/owl#Thing","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#Thing"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Thing""},""definition"":{""type"":[""literal""],""value"":""The class of OWL individuals.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of OWL individuals.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Thing""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Thing""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""Thing""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","","2.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","","false","The class of OWL individuals.","false","The class of OWL individuals.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2002/07/owl#Thing","","http://www.w3.org/2002/07/owl#","2.0","false","Thing","","","Thing","Thing","owl","Thing","owl","http://www.w3.org/2002/07/owl#Class" -"owl+class+http://www.w3.org/2002/07/owl#TransitiveProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#TransitiveProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""TransitiveProperty""},""definition"":{""type"":[""literal""],""value"":""The class of transitive properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""directParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of transitive properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""TransitiveProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""TransitiveProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""TransitiveProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#ObjectProperty","true","The class of transitive properties.","false","The class of transitive properties.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#","0.0","false","TransitiveProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#ObjectProperty","TransitiveProperty","TransitiveProperty","owl","TransitiveProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" + all of which are sub-properties of 'member'.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty","","http://www.w3.org/2000/01/rdf-schema#","0.0","false","ContainerMembershipProperty","","","RDFS:ContainerMembershipProperty","RDFS_ContainerMembershipProperty","rdfs","ContainerMembershipProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2000/01/rdf-schema#Datatype","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:Datatype""},""definition"":{""type"":[""literal""],""value"":""The class of RDF datatypes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""directParent"":""http://www.w3.org/2000/01/rdf-schema#Class"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Class"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of RDF datatypes.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Datatype""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Datatype""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RDFS_Datatype""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Class","true","The class of RDF datatypes.","true","The class of RDF datatypes.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Datatype","http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#","1.0","false","Datatype","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","RDFS:Datatype","RDFS_Datatype","rdfs","Datatype","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2000/01/rdf-schema#Literal","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:Literal""},""definition"":{""type"":[""literal""],""value"":""The class of literal values, eg. textual strings and integers.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of literal values, eg. textual strings and integers.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Literal""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Literal""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RDFS_Literal""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of literal values, eg. textual strings and integers.","true","The class of literal values, eg. textual strings and integers.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Literal","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#","0.0","false","Literal","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","RDFS:Literal","RDFS_Literal","rdfs","Literal","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2000/01/rdf-schema#Resource","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""definition"":{""type"":[""literal""],""value"":""The class resource, everything.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class resource, everything.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Resource""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Resource""},""numDescendants"":15.0,""numHierarchicalDescendants"":15.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RDFS_Resource""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","true","false","","","15.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","","false","The class resource, everything.","true","The class resource, everything.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2000/01/rdf-schema#","15.0","false","Resource","","","RDFS:Resource","RDFS_Resource","rdfs","Resource","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#AllDifferent","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#AllDifferent"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:AllDifferent""},""definition"":{""type"":[""literal""],""value"":""The class of collections of pairwise different individuals.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of collections of pairwise different individuals.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""AllDifferent""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""AllDifferent""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_AllDifferent""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of collections of pairwise different individuals.","false","The class of collections of pairwise different individuals.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#AllDifferent","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","AllDifferent","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","OWL:AllDifferent","OWL_AllDifferent","owl","AllDifferent","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#AllDisjointClasses","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#AllDisjointClasses"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:AllDisjointClasses""},""definition"":{""type"":[""literal""],""value"":""The class of collections of pairwise disjoint classes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of collections of pairwise disjoint classes.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""AllDisjointClasses""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""AllDisjointClasses""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_AllDisjointClasses""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of collections of pairwise disjoint classes.","false","The class of collections of pairwise disjoint classes.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#AllDisjointClasses","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","AllDisjointClasses","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","OWL:AllDisjointClasses","OWL_AllDisjointClasses","owl","AllDisjointClasses","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#AllDisjointProperties","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#AllDisjointProperties"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:AllDisjointProperties""},""definition"":{""type"":[""literal""],""value"":""The class of collections of pairwise disjoint properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of collections of pairwise disjoint properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""AllDisjointProperties""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""AllDisjointProperties""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_AllDisjointProperties""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of collections of pairwise disjoint properties.","false","The class of collections of pairwise disjoint properties.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#AllDisjointProperties","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","AllDisjointProperties","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","OWL:AllDisjointProperties","OWL_AllDisjointProperties","owl","AllDisjointProperties","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#Annotation","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#Annotation"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:Annotation""},""definition"":{""type"":[""literal""],""value"":""The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Annotation""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Annotation""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_Annotation""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.","false","The class of annotated annotations for which the RDF serialization consists of an annotated subject, predicate and object.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#Annotation","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","Annotation","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","OWL:Annotation","OWL_Annotation","owl","Annotation","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#AnnotationProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:AnnotationProperty""},""definition"":{""type"":[""literal""],""value"":""The class of annotation properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of annotation properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""AnnotationProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""AnnotationProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_AnnotationProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","The class of annotation properties.","false","The class of annotation properties.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2002/07/owl#AnnotationProperty","","http://www.w3.org/2002/07/owl#","0.0","false","AnnotationProperty","","","OWL:AnnotationProperty","OWL_AnnotationProperty","owl","AnnotationProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#AsymmetricProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#AsymmetricProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:AsymmetricProperty""},""definition"":{""type"":[""literal""],""value"":""The class of asymmetric properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""directParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of asymmetric properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""AsymmetricProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""AsymmetricProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_AsymmetricProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#ObjectProperty","true","The class of asymmetric properties.","false","The class of asymmetric properties.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#AsymmetricProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#","0.0","false","AsymmetricProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#ObjectProperty","OWL:AsymmetricProperty","OWL_AsymmetricProperty","owl","AsymmetricProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#Axiom","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#Axiom"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:Axiom""},""definition"":{""type"":[""literal""],""value"":""The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Axiom""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Axiom""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_Axiom""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.","false","The class of annotated axioms for which the RDF serialization consists of an annotated subject, predicate and object.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#Axiom","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","Axiom","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","OWL:Axiom","OWL_Axiom","owl","Axiom","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#Class","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#Class"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:Class""},""definition"":{""type"":[""literal""],""value"":""The class of OWL classes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""directParent"":""http://www.w3.org/2000/01/rdf-schema#Class"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Class"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of OWL classes.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Class""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Class""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_Class""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","true","true","true","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Class","true","The class of OWL classes.","false","The class of OWL classes.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2002/07/owl#Class","http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","1.0","false","Class","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","OWL:Class","OWL_Class","owl","Class","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#DataRange","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#DataRange"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:DataRange""},""definition"":{""type"":[""literal""],""value"":""The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Datatype"",""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""directParent"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Datatype"",""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""DataRange""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""DataRange""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_DataRange""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Datatype"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Datatype""},""curie"":{""type"":[""literal""],""value"":""RDFS:Datatype""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Datatype","true","The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead.","false","The class of OWL data ranges, which are special kinds of datatypes. Note: The use of the IRI owl:DataRange has been deprecated as of OWL 2. The IRI rdfs:Datatype SHOULD be used instead.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Datatype","http://www.w3.org/2002/07/owl#DataRange","http://www.w3.org/2000/01/rdf-schema#Datatype|http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","DataRange","http://www.w3.org/2000/01/rdf-schema#Datatype","http://www.w3.org/2000/01/rdf-schema#Datatype|http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","OWL:DataRange","OWL_DataRange","owl","DataRange","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#DatatypeProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#DatatypeProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:DatatypeProperty""},""definition"":{""type"":[""literal""],""value"":""The class of data properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of data properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""DatatypeProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""DatatypeProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_DatatypeProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","The class of data properties.","false","The class of data properties.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2002/07/owl#DatatypeProperty","","http://www.w3.org/2002/07/owl#","0.0","false","DatatypeProperty","","","OWL:DatatypeProperty","OWL_DatatypeProperty","owl","DatatypeProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#DeprecatedClass","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#DeprecatedClass"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:DeprecatedClass""},""definition"":{""type"":[""literal""],""value"":""The class of deprecated classes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""directParent"":""http://www.w3.org/2000/01/rdf-schema#Class"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Class"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of deprecated classes.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""DeprecatedClass""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""DeprecatedClass""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_DeprecatedClass""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Class","true","The class of deprecated classes.","false","The class of deprecated classes.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2002/07/owl#DeprecatedClass","http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","DeprecatedClass","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","OWL:DeprecatedClass","OWL_DeprecatedClass","owl","DeprecatedClass","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#DeprecatedProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#DeprecatedProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:DeprecatedProperty""},""definition"":{""type"":[""literal""],""value"":""The class of deprecated properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of deprecated properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""DeprecatedProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""DeprecatedProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_DeprecatedProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","The class of deprecated properties.","false","The class of deprecated properties.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2002/07/owl#DeprecatedProperty","","http://www.w3.org/2002/07/owl#","0.0","false","DeprecatedProperty","","","OWL:DeprecatedProperty","OWL_DeprecatedProperty","owl","DeprecatedProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#FunctionalProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#FunctionalProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:FunctionalProperty""},""definition"":{""type"":[""literal""],""value"":""The class of functional properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of functional properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""FunctionalProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""FunctionalProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_FunctionalProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","The class of functional properties.","false","The class of functional properties.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2002/07/owl#FunctionalProperty","","http://www.w3.org/2002/07/owl#","0.0","false","FunctionalProperty","","","OWL:FunctionalProperty","OWL_FunctionalProperty","owl","FunctionalProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#InverseFunctionalProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#InverseFunctionalProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:InverseFunctionalProperty""},""definition"":{""type"":[""literal""],""value"":""The class of inverse-functional properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""directParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of inverse-functional properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""InverseFunctionalProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""InverseFunctionalProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_InverseFunctionalProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#ObjectProperty","true","The class of inverse-functional properties.","false","The class of inverse-functional properties.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#InverseFunctionalProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#","0.0","false","InverseFunctionalProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#ObjectProperty","OWL:InverseFunctionalProperty","OWL_InverseFunctionalProperty","owl","InverseFunctionalProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#IrreflexiveProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#IrreflexiveProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:IrreflexiveProperty""},""definition"":{""type"":[""literal""],""value"":""The class of irreflexive properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""directParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of irreflexive properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""IrreflexiveProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IrreflexiveProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_IrreflexiveProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#ObjectProperty","true","The class of irreflexive properties.","false","The class of irreflexive properties.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#IrreflexiveProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#","0.0","false","IrreflexiveProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#ObjectProperty","OWL:IrreflexiveProperty","OWL_IrreflexiveProperty","owl","IrreflexiveProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#NamedIndividual","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#NamedIndividual"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:NamedIndividual""},""definition"":{""type"":[""literal""],""value"":""The class of named individuals.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2002/07/owl#Thing"",""directParent"":""http://www.w3.org/2002/07/owl#Thing"",""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":""http://www.w3.org/2002/07/owl#Thing"",""hierarchicalParent"":""http://www.w3.org/2002/07/owl#Thing"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of named individuals.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""NamedIndividual""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""NamedIndividual""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_NamedIndividual""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#Thing","false","The class of named individuals.","false","The class of named individuals.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Thing","http://www.w3.org/2002/07/owl#NamedIndividual","http://www.w3.org/2002/07/owl#Thing","http://www.w3.org/2002/07/owl#","0.0","false","NamedIndividual","http://www.w3.org/2002/07/owl#Thing","http://www.w3.org/2002/07/owl#Thing","OWL:NamedIndividual","OWL_NamedIndividual","owl","NamedIndividual","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#NegativePropertyAssertion","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#NegativePropertyAssertion"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:NegativePropertyAssertion""},""definition"":{""type"":[""literal""],""value"":""The class of negative property assertions.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of negative property assertions.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""NegativePropertyAssertion""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""NegativePropertyAssertion""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_NegativePropertyAssertion""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of negative property assertions.","false","The class of negative property assertions.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#NegativePropertyAssertion","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","NegativePropertyAssertion","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","OWL:NegativePropertyAssertion","OWL_NegativePropertyAssertion","owl","NegativePropertyAssertion","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#Nothing","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#Nothing"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:Nothing""},""definition"":{""type"":[""literal""],""value"":""This is the empty class.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2002/07/owl#Thing"",""directParent"":""http://www.w3.org/2002/07/owl#Thing"",""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":""http://www.w3.org/2002/07/owl#Thing"",""hierarchicalParent"":""http://www.w3.org/2002/07/owl#Thing"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""This is the empty class.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Nothing""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Nothing""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_Nothing""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#Thing","false","This is the empty class.","false","This is the empty class.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Thing","http://www.w3.org/2002/07/owl#Nothing","http://www.w3.org/2002/07/owl#Thing","http://www.w3.org/2002/07/owl#","0.0","false","Nothing","http://www.w3.org/2002/07/owl#Thing","http://www.w3.org/2002/07/owl#Thing","OWL:Nothing","OWL_Nothing","owl","Nothing","owl","http://www.w3.org/2002/07/owl#Class" +"owl+class+http://www.w3.org/2002/07/owl#ObjectProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:ObjectProperty""},""definition"":{""type"":[""literal""],""value"":""The class of object properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of object properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""ObjectProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""ObjectProperty""},""numDescendants"":6.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_ObjectProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","true","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","The class of object properties.","false","The class of object properties.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2002/07/owl#ObjectProperty","","http://www.w3.org/2002/07/owl#","6.0","false","ObjectProperty","","","OWL:ObjectProperty","OWL_ObjectProperty","owl","ObjectProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#Ontology","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#Ontology"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:Ontology""},""definition"":{""type"":[""literal""],""value"":""The class of ontologies.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of ontologies.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Ontology""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Ontology""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_Ontology""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of ontologies.","false","The class of ontologies.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#Ontology","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","Ontology","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","OWL:Ontology","OWL_Ontology","owl","Ontology","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#OntologyProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#OntologyProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:OntologyProperty""},""definition"":{""type"":[""literal""],""value"":""The class of ontology properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of ontology properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""OntologyProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""OntologyProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_OntologyProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","The class of ontology properties.","false","The class of ontology properties.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2002/07/owl#OntologyProperty","","http://www.w3.org/2002/07/owl#","0.0","false","OntologyProperty","","","OWL:OntologyProperty","OWL_OntologyProperty","owl","OntologyProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#ReflexiveProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#ReflexiveProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:ReflexiveProperty""},""definition"":{""type"":[""literal""],""value"":""The class of reflexive properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""directParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of reflexive properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""ReflexiveProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""ReflexiveProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_ReflexiveProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#ObjectProperty","true","The class of reflexive properties.","false","The class of reflexive properties.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#ReflexiveProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#","0.0","false","ReflexiveProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#ObjectProperty","OWL:ReflexiveProperty","OWL_ReflexiveProperty","owl","ReflexiveProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#Restriction","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#Restriction"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:Restriction""},""definition"":{""type"":[""literal""],""value"":""The class of property restrictions.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""directParent"":""http://www.w3.org/2002/07/owl#Class"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""hierarchicalParent"":""http://www.w3.org/2002/07/owl#Class"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of property restrictions.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Restriction""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Restriction""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_Restriction""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#Class","true","The class of property restrictions.","false","The class of property restrictions.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Class","http://www.w3.org/2002/07/owl#Restriction","http://www.w3.org/2002/07/owl#Class|http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2002/07/owl#","0.0","false","Restriction","http://www.w3.org/2002/07/owl#Class","http://www.w3.org/2002/07/owl#Class|http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","OWL:Restriction","OWL_Restriction","owl","Restriction","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#SymmetricProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#SymmetricProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:SymmetricProperty""},""definition"":{""type"":[""literal""],""value"":""The class of symmetric properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""directParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of symmetric properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""SymmetricProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""SymmetricProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_SymmetricProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#ObjectProperty","true","The class of symmetric properties.","false","The class of symmetric properties.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#","0.0","false","SymmetricProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#ObjectProperty","OWL:SymmetricProperty","OWL_SymmetricProperty","owl","SymmetricProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" +"owl+class+http://www.w3.org/2002/07/owl#Thing","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#Thing"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:Thing""},""definition"":{""type"":[""literal""],""value"":""The class of OWL individuals.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of OWL individuals.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Thing""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Thing""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_Thing""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","","2.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","","false","The class of OWL individuals.","false","The class of OWL individuals.","http://www.w3.org/2002/07/owl","","http://www.w3.org/2002/07/owl#Thing","","http://www.w3.org/2002/07/owl#","2.0","false","Thing","","","OWL:Thing","OWL_Thing","owl","Thing","owl","http://www.w3.org/2002/07/owl#Class" +"owl+class+http://www.w3.org/2002/07/owl#TransitiveProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2002/07/owl#TransitiveProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:TransitiveProperty""},""definition"":{""type"":[""literal""],""value"":""The class of transitive properties.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""directParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalParent"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of transitive properties.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""TransitiveProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""TransitiveProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_TransitiveProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2002/07/owl#ObjectProperty","true","The class of transitive properties.","false","The class of transitive properties.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#","0.0","false","TransitiveProperty","http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#ObjectProperty","OWL:TransitiveProperty","OWL_TransitiveProperty","owl","TransitiveProperty","owl","http://www.w3.org/2000/01/rdf-schema#Class" diff --git a/testcases_expected_output/annotation-properties/gitIssue502/owl_ontologies.csv b/testcases_expected_output/annotation-properties/gitIssue502/owl_ontologies.csv index ea5f199c0..2ff6119d4 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/owl_ontologies.csv +++ b/testcases_expected_output/annotation-properties/gitIssue502/owl_ontologies.csv @@ -1,36 +1,36 @@ "id:ID",":LABEL","_json","http__//purl.org/dc/elements/1.1/title:string[]","linkedEntities:string[]","ontology_purl:string[]","http__//www.w3.org/2002/07/owl#imports:string[]","numberOfProperties:string[]","numberOfClasses:string[]","language:string[]","numHierarchicalDescendants:string[]","type:string[]","base_uri:string[]","http__//www.w3.org/2000/01/rdf-schema#comment:string[]","imported:string[]","numberOfEntities:string[]","definition:string[]","http__//www.w3.org/2002/07/owl#versionIRI:string[]","iri","http__//www.w3.org/2003/g/data-view#namespaceTransformation:string[]","numberOfIndividuals:string[]","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy:string[]","numDescendants:string[]","isObsolete:string[]","label:string[]","importsFrom:string[]","directAncestor:string[]","exportsTo:string[]","ontologyId:string[]","http__//www.w3.org/2000/01/rdf-schema#seeAlso:string[]","http__//www.w3.org/2002/07/owl#versionInfo:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"owl+ontology+http://www.w3.org/2002/07/owl","Ontology","{""ontologyId"":""owl"",""importsFrom"":[""rdfs""],""exportsTo"":[],""iri"":""http://www.w3.org/2002/07/owl"",""ontology_purl"":""https://www.w3.org/2002/07/owl"",""base_uri"":[""http://www.w3.org/2002/07/owl#""],""type"":[""ontology""],""definition"":{""type"":[""literal""],""value"":""\r\n This ontology partially describes the built-in classes and\r\n properties that together form the basis of the RDF/XML syntax of OWL 2.\r\n The content of this ontology is based on Tables 6.1 and 6.2\r\n in Section 6.4 of the OWL 2 RDF-Based Semantics specification,\r\n available at http://www.w3.org/TR/owl2-rdf-based-semantics/.\r\n Please note that those tables do not include the different annotations\r\n (labels, comments and rdfs:isDefinedBy links) used in this file.\r\n Also note that the descriptions provided in this ontology do not\r\n provide a complete and correct formal description of either the syntax\r\n or the semantics of the introduced terms (please see the OWL 2\r\n recommendations for the complete and normative specifications).\r\n Furthermore, the information provided by this ontology may be\r\n misleading if not used with care. This ontology SHOULD NOT be imported\r\n into OWL ontologies. Importing this file into an OWL 2 DL ontology\r\n will cause it to become an OWL 2 Full ontology and may have other,\r\n unexpected, consequences.\r\n ""},""directAncestor"":[],""http://purl.org/dc/elements/1.1/title"":{""type"":[""literal""],""value"":""The OWL 2 Schema vocabulary (OWL 2)""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Ontology"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""\r\n This ontology partially describes the built-in classes and\r\n properties that together form the basis of the RDF/XML syntax of OWL 2.\r\n The content of this ontology is based on Tables 6.1 and 6.2\r\n in Section 6.4 of the OWL 2 RDF-Based Semantics specification,\r\n available at http://www.w3.org/TR/owl2-rdf-based-semantics/.\r\n Please note that those tables do not include the different annotations\r\n (labels, comments and rdfs:isDefinedBy links) used in this file.\r\n Also note that the descriptions provided in this ontology do not\r\n provide a complete and correct formal description of either the syntax\r\n or the semantics of the introduced terms (please see the OWL 2\r\n recommendations for the complete and normative specifications).\r\n Furthermore, the information provided by this ontology may be\r\n misleading if not used with care. This ontology SHOULD NOT be imported\r\n into OWL ontologies. Importing this file into an OWL 2 DL ontology\r\n will cause it to become an OWL 2 Full ontology and may have other,\r\n unexpected, consequences.\r\n ""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":[""http://www.w3.org/TR/owl2-mapping-to-rdf/"",""http://www.w3.org/TR/owl2-rdf-based-semantics/"",""http://www.w3.org/TR/owl2-syntax/""],""http://www.w3.org/2000/01/rdf-schema#seeAlso"":[""http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-classes"",""http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-properties""],""http://www.w3.org/2002/07/owl#imports"":""http://www.w3.org/2000/01/rdf-schema"",""http://www.w3.org/2002/07/owl#versionIRI"":""http://www.w3.org/2002/07/owl"",""http://www.w3.org/2002/07/owl#versionInfo"":{""type"":[""literal""],""value"":""$Date: 2009/11/15 10:54:12 $""},""http://www.w3.org/2003/g/data-view#namespaceTransformation"":""http://dev.w3.org/cvsweb/2009/owl-grddl/owx2rdf.xsl"",""imported"":false,""isObsolete"":false,""label"":{""type"":[""literal""],""value"":""The OWL 2 Schema vocabulary (OWL 2)""},""language"":{""type"":[""literal""],""value"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""numberOfClasses"":{""type"":[""literal""],""value"":""32""},""numberOfEntities"":{""type"":[""literal""],""value"":""90""},""numberOfIndividuals"":{""type"":[""literal""],""value"":""0""},""numberOfProperties"":{""type"":[""literal""],""value"":""58""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The OWL 2 Schema vocabulary (OWL 2)""},false,{""type"":[""literal""],""value"":""en""},{""type"":[""literal""],""value"":""32""},{""type"":[""literal""],""value"":""90""},{""type"":[""literal""],""value"":""0""},{""type"":[""literal""],""value"":""58""}],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""entity""]}}}","The OWL 2 Schema vocabulary (OWL 2)","","https://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema","58","32","en","0.0","ontology","http://www.w3.org/2002/07/owl#"," - This ontology partially describes the built-in classes and - properties that together form the basis of the RDF/XML syntax of OWL 2. - The content of this ontology is based on Tables 6.1 and 6.2 - in Section 6.4 of the OWL 2 RDF-Based Semantics specification, - available at http://www.w3.org/TR/owl2-rdf-based-semantics/. - Please note that those tables do not include the different annotations - (labels, comments and rdfs:isDefinedBy links) used in this file. - Also note that the descriptions provided in this ontology do not - provide a complete and correct formal description of either the syntax - or the semantics of the introduced terms (please see the OWL 2 - recommendations for the complete and normative specifications). - Furthermore, the information provided by this ontology may be - misleading if not used with care. This ontology SHOULD NOT be imported - into OWL ontologies. Importing this file into an OWL 2 DL ontology - will cause it to become an OWL 2 Full ontology and may have other, - unexpected, consequences. - ","false","90"," - This ontology partially describes the built-in classes and - properties that together form the basis of the RDF/XML syntax of OWL 2. - The content of this ontology is based on Tables 6.1 and 6.2 - in Section 6.4 of the OWL 2 RDF-Based Semantics specification, - available at http://www.w3.org/TR/owl2-rdf-based-semantics/. - Please note that those tables do not include the different annotations - (labels, comments and rdfs:isDefinedBy links) used in this file. - Also note that the descriptions provided in this ontology do not - provide a complete and correct formal description of either the syntax - or the semantics of the introduced terms (please see the OWL 2 - recommendations for the complete and normative specifications). - Furthermore, the information provided by this ontology may be - misleading if not used with care. This ontology SHOULD NOT be imported - into OWL ontologies. Importing this file into an OWL 2 DL ontology - will cause it to become an OWL 2 Full ontology and may have other, - unexpected, consequences. +"owl+ontology+http://www.w3.org/2002/07/owl","Ontology","{""ontologyId"":""owl"",""importsFrom"":[""rdfs""],""exportsTo"":[],""iri"":""http://www.w3.org/2002/07/owl"",""ontology_purl"":""https://www.w3.org/2002/07/owl"",""base_uri"":[""http://www.w3.org/2002/07/owl#""],""type"":[""ontology""],""definition"":{""type"":[""literal""],""value"":""\r\n This ontology partially describes the built-in classes and\r\n properties that together form the basis of the RDF/XML syntax of OWL 2.\r\n The content of this ontology is based on Tables 6.1 and 6.2\r\n in Section 6.4 of the OWL 2 RDF-Based Semantics specification,\r\n available at http://www.w3.org/TR/owl2-rdf-based-semantics/.\r\n Please note that those tables do not include the different annotations\r\n (labels, comments and rdfs:isDefinedBy links) used in this file.\r\n Also note that the descriptions provided in this ontology do not\r\n provide a complete and correct formal description of either the syntax\r\n or the semantics of the introduced terms (please see the OWL 2\r\n recommendations for the complete and normative specifications).\r\n Furthermore, the information provided by this ontology may be\r\n misleading if not used with care. This ontology SHOULD NOT be imported\r\n into OWL ontologies. Importing this file into an OWL 2 DL ontology\r\n will cause it to become an OWL 2 Full ontology and may have other,\r\n unexpected, consequences.\r\n ""},""directAncestor"":[],""http://purl.org/dc/elements/1.1/title"":{""type"":[""literal""],""value"":""The OWL 2 Schema vocabulary (OWL 2)""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Ontology"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""\r\n This ontology partially describes the built-in classes and\r\n properties that together form the basis of the RDF/XML syntax of OWL 2.\r\n The content of this ontology is based on Tables 6.1 and 6.2\r\n in Section 6.4 of the OWL 2 RDF-Based Semantics specification,\r\n available at http://www.w3.org/TR/owl2-rdf-based-semantics/.\r\n Please note that those tables do not include the different annotations\r\n (labels, comments and rdfs:isDefinedBy links) used in this file.\r\n Also note that the descriptions provided in this ontology do not\r\n provide a complete and correct formal description of either the syntax\r\n or the semantics of the introduced terms (please see the OWL 2\r\n recommendations for the complete and normative specifications).\r\n Furthermore, the information provided by this ontology may be\r\n misleading if not used with care. This ontology SHOULD NOT be imported\r\n into OWL ontologies. Importing this file into an OWL 2 DL ontology\r\n will cause it to become an OWL 2 Full ontology and may have other,\r\n unexpected, consequences.\r\n ""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":[""http://www.w3.org/TR/owl2-mapping-to-rdf/"",""http://www.w3.org/TR/owl2-rdf-based-semantics/"",""http://www.w3.org/TR/owl2-syntax/""],""http://www.w3.org/2000/01/rdf-schema#seeAlso"":[""http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-classes"",""http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-properties""],""http://www.w3.org/2002/07/owl#imports"":""http://www.w3.org/2000/01/rdf-schema"",""http://www.w3.org/2002/07/owl#versionIRI"":""http://www.w3.org/2002/07/owl"",""http://www.w3.org/2002/07/owl#versionInfo"":{""type"":[""literal""],""value"":""$Date: 2009/11/15 10:54:12 $""},""http://www.w3.org/2003/g/data-view#namespaceTransformation"":""http://dev.w3.org/cvsweb/2009/owl-grddl/owx2rdf.xsl"",""imported"":false,""isObsolete"":false,""label"":{""type"":[""literal""],""value"":""The OWL 2 Schema vocabulary (OWL 2)""},""language"":{""type"":[""literal""],""value"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""numberOfClasses"":{""type"":[""literal""],""value"":""32""},""numberOfEntities"":{""type"":[""literal""],""value"":""90""},""numberOfIndividuals"":{""type"":[""literal""],""value"":""0""},""numberOfProperties"":{""type"":[""literal""],""value"":""58""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The OWL 2 Schema vocabulary (OWL 2)""},false,{""type"":[""literal""],""value"":""en""},{""type"":[""literal""],""value"":""32""},{""type"":[""literal""],""value"":""90""},{""type"":[""literal""],""value"":""0""},{""type"":[""literal""],""value"":""58""}],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""RDFS:seeAlso""},""type"":[""property"",""entity""]}}}","The OWL 2 Schema vocabulary (OWL 2)","","https://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema","58","32","en","0.0","ontology","http://www.w3.org/2002/07/owl#"," + This ontology partially describes the built-in classes and + properties that together form the basis of the RDF/XML syntax of OWL 2. + The content of this ontology is based on Tables 6.1 and 6.2 + in Section 6.4 of the OWL 2 RDF-Based Semantics specification, + available at http://www.w3.org/TR/owl2-rdf-based-semantics/. + Please note that those tables do not include the different annotations + (labels, comments and rdfs:isDefinedBy links) used in this file. + Also note that the descriptions provided in this ontology do not + provide a complete and correct formal description of either the syntax + or the semantics of the introduced terms (please see the OWL 2 + recommendations for the complete and normative specifications). + Furthermore, the information provided by this ontology may be + misleading if not used with care. This ontology SHOULD NOT be imported + into OWL ontologies. Importing this file into an OWL 2 DL ontology + will cause it to become an OWL 2 Full ontology and may have other, + unexpected, consequences. + ","false","90"," + This ontology partially describes the built-in classes and + properties that together form the basis of the RDF/XML syntax of OWL 2. + The content of this ontology is based on Tables 6.1 and 6.2 + in Section 6.4 of the OWL 2 RDF-Based Semantics specification, + available at http://www.w3.org/TR/owl2-rdf-based-semantics/. + Please note that those tables do not include the different annotations + (labels, comments and rdfs:isDefinedBy links) used in this file. + Also note that the descriptions provided in this ontology do not + provide a complete and correct formal description of either the syntax + or the semantics of the introduced terms (please see the OWL 2 + recommendations for the complete and normative specifications). + Furthermore, the information provided by this ontology may be + misleading if not used with care. This ontology SHOULD NOT be imported + into OWL ontologies. Importing this file into an OWL 2 DL ontology + will cause it to become an OWL 2 Full ontology and may have other, + unexpected, consequences. ","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl","http://dev.w3.org/cvsweb/2009/owl-grddl/owx2rdf.xsl","0","http://www.w3.org/TR/owl2-mapping-to-rdf/|http://www.w3.org/TR/owl2-rdf-based-semantics/|http://www.w3.org/TR/owl2-syntax/","0.0","false","The OWL 2 Schema vocabulary (OWL 2)","rdfs","","","owl","http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-classes|http://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-properties","$Date: 2009/11/15 10:54:12 $","http://www.w3.org/2002/07/owl#Ontology" diff --git a/testcases_expected_output/annotation-properties/gitIssue502/owl_properties.csv b/testcases_expected_output/annotation-properties/gitIssue502/owl_properties.csv index 4b8acd427..a9ecf35e9 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/owl_properties.csv +++ b/testcases_expected_output/annotation-properties/gitIssue502/owl_properties.csv @@ -1,59 +1,59 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","numHierarchicalDescendants:string[]","type:string[]","definitionProperty:string[]","hasDirectParents:string[]","http__//www.w3.org/2000/01/rdf-schema#comment:string[]","imported:string[]","definition:string[]","ontologyIri:string[]","http__//www.w3.org/2000/01/rdf-schema#range:string[]","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf:string[]","iri","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy:string[]","numDescendants:string[]","http__//www.w3.org/2000/01/rdf-schema#domain:string[]","isObsolete:string[]","label:string[]","directParent:string[]","directAncestor:string[]","curie:string[]","shortForm:string[]","definedBy:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"owl+property+http://www.w3.org/2000/01/rdf-schema#comment","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#comment"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""comment""},""definition"":{""type"":[""literal""],""value"":""A description of the subject resource.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A description of the subject resource.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""comment""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""comment""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""comment""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Literal"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Literal""},""curie"":{""type"":[""literal""],""value"":""Literal""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A description of the subject resource.","true","A description of the subject resource.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Literal","","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","comment","","","comment","comment","rdfs","comment","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2000/01/rdf-schema#domain","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#domain"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""domain""},""definition"":{""type"":[""literal""],""value"":""A domain of the subject property.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A domain of the subject property.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""domain""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""domain""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""domain""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A domain of the subject property.","true","A domain of the subject property.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2000/01/rdf-schema#domain","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","domain","","","domain","domain","rdfs","domain","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2000/01/rdf-schema#isDefinedBy","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""definition"":{""type"":[""literal""],""value"":""The defininition of the subject resource.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#seeAlso"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#seeAlso"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The defininition of the subject resource.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""isDefinedBy""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2000/01/rdf-schema#seeAlso"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""isDefinedBy""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","true","The defininition of the subject resource.","true","The defininition of the subject resource.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#seeAlso","http://www.w3.org/2000/01/rdf-schema#isDefinedBy","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","isDefinedBy","http://www.w3.org/2000/01/rdf-schema#seeAlso","http://www.w3.org/2000/01/rdf-schema#seeAlso","isDefinedBy","isDefinedBy","rdfs","isDefinedBy","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2000/01/rdf-schema#label","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#label"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""label""},""definition"":{""type"":[""literal""],""value"":""A human-readable name for the subject.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A human-readable name for the subject.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""label""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""label""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""label""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""gitissue502"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Literal"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Literal""},""curie"":{""type"":[""literal""],""value"":""Literal""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A human-readable name for the subject.","true","A human-readable name for the subject.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Literal","","http://www.w3.org/2000/01/rdf-schema#label","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","label","","","label","label","rdfs","label","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2000/01/rdf-schema#member","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#member"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""member""},""definition"":{""type"":[""literal""],""value"":""A member of the subject resource.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A member of the subject resource.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""member""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""member""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""member""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A member of the subject resource.","true","A member of the subject resource.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2000/01/rdf-schema#member","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","member","","","member","member","rdfs","member","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2000/01/rdf-schema#range","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#range"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""range""},""definition"":{""type"":[""literal""],""value"":""A range of the subject property.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A range of the subject property.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""range""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""range""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""range""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A range of the subject property.","true","A range of the subject property.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2000/01/rdf-schema#range","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","range","","","range","range","rdfs","range","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2000/01/rdf-schema#seeAlso","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#seeAlso"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""seeAlso""},""definition"":{""type"":[""literal""],""value"":""Further information about the subject resource.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Further information about the subject resource.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""seeAlso""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""seeAlso""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""seeAlso""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","Further information about the subject resource.","true","Further information about the subject resource.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2000/01/rdf-schema#seeAlso","http://www.w3.org/2000/01/rdf-schema#","1.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","seeAlso","","","seeAlso","seeAlso","rdfs","seeAlso","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2000/01/rdf-schema#subClassOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#subClassOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""subClassOf""},""definition"":{""type"":[""literal""],""value"":""The subject is a subclass of a class.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The subject is a subclass of a class.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""subClassOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""subClassOf""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The subject is a subclass of a class.","true","The subject is a subclass of a class.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2000/01/rdf-schema#subClassOf","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Class","false","subClassOf","","","subClassOf","subClassOf","rdfs","subClassOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2000/01/rdf-schema#subPropertyOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""definition"":{""type"":[""literal""],""value"":""The subject is a subproperty of a property.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The subject is a subproperty of a property.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""subPropertyOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""subPropertyOf""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The subject is a subproperty of a property.","true","The subject is a subproperty of a property.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","","http://www.w3.org/2000/01/rdf-schema#subPropertyOf","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","subPropertyOf","","","subPropertyOf","subPropertyOf","rdfs","subPropertyOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#allValuesFrom","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#allValuesFrom"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""allValuesFrom""},""definition"":{""type"":[""literal""],""value"":""The property that determines the class that a universal property restriction refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the class that a universal property restriction refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""allValuesFrom""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""allValuesFrom""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""allValuesFrom""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the class that a universal property restriction refers to.","false","The property that determines the class that a universal property restriction refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2002/07/owl#allValuesFrom","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","allValuesFrom","","","allValuesFrom","allValuesFrom","owl","allValuesFrom","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#annotatedProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#annotatedProperty"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""annotatedProperty""},""definition"":{""type"":[""literal""],""value"":""The property that determines the predicate of an annotated axiom or annotated annotation.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the predicate of an annotated axiom or annotated annotation.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""annotatedProperty""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""annotatedProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""annotatedProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the predicate of an annotated axiom or annotated annotation.","false","The property that determines the predicate of an annotated axiom or annotated annotation.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2002/07/owl#annotatedProperty","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","annotatedProperty","","","annotatedProperty","annotatedProperty","owl","annotatedProperty","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#annotatedSource","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#annotatedSource"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""annotatedSource""},""definition"":{""type"":[""literal""],""value"":""The property that determines the subject of an annotated axiom or annotated annotation.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the subject of an annotated axiom or annotated annotation.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""annotatedSource""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""annotatedSource""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""annotatedSource""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the subject of an annotated axiom or annotated annotation.","false","The property that determines the subject of an annotated axiom or annotated annotation.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2002/07/owl#annotatedSource","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","annotatedSource","","","annotatedSource","annotatedSource","owl","annotatedSource","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#annotatedTarget","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#annotatedTarget"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""annotatedTarget""},""definition"":{""type"":[""literal""],""value"":""The property that determines the object of an annotated axiom or annotated annotation.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the object of an annotated axiom or annotated annotation.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""annotatedTarget""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""annotatedTarget""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""annotatedTarget""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the object of an annotated axiom or annotated annotation.","false","The property that determines the object of an annotated axiom or annotated annotation.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2002/07/owl#annotatedTarget","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","annotatedTarget","","","annotatedTarget","annotatedTarget","owl","annotatedTarget","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#assertionProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#assertionProperty"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""assertionProperty""},""definition"":{""type"":[""literal""],""value"":""The property that determines the predicate of a negative property assertion.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the predicate of a negative property assertion.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#NegativePropertyAssertion"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""assertionProperty""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""assertionProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""assertionProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the predicate of a negative property assertion.","false","The property that determines the predicate of a negative property assertion.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","","http://www.w3.org/2002/07/owl#assertionProperty","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#NegativePropertyAssertion","false","assertionProperty","","","assertionProperty","assertionProperty","owl","assertionProperty","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#backwardCompatibleWith","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#backwardCompatibleWith"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""backwardCompatibleWith""},""definition"":{""type"":[""literal""],""value"":""The annotation property that indicates that a given ontology is backward compatible with another ontology.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2002/07/owl#OntologyProperty""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The annotation property that indicates that a given ontology is backward compatible with another ontology.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Ontology"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""backwardCompatibleWith""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Ontology"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""backwardCompatibleWith""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""backwardCompatibleWith""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The annotation property that indicates that a given ontology is backward compatible with another ontology.","false","The annotation property that indicates that a given ontology is backward compatible with another ontology.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Ontology","","http://www.w3.org/2002/07/owl#backwardCompatibleWith","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Ontology","false","backwardCompatibleWith","","","backwardCompatibleWith","backwardCompatibleWith","owl","backwardCompatibleWith","owl","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/2002/07/owl#OntologyProperty" -"owl+property+http://www.w3.org/2002/07/owl#bottomDataProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#bottomDataProperty"",""type"":[""dataProperty"",""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""bottomDataProperty""},""definition"":{""type"":[""literal""],""value"":""The data property that does not relate any individual to any data value.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#DatatypeProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The data property that does not relate any individual to any data value.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Thing"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""bottomDataProperty""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""bottomDataProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""bottomDataProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Literal"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Literal""},""curie"":{""type"":[""literal""],""value"":""Literal""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","dataProperty|property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The data property that does not relate any individual to any data value.","false","The data property that does not relate any individual to any data value.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Literal","","http://www.w3.org/2002/07/owl#bottomDataProperty","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Thing","false","bottomDataProperty","","","bottomDataProperty","bottomDataProperty","owl","bottomDataProperty","owl","http://www.w3.org/2002/07/owl#DatatypeProperty" -"owl+property+http://www.w3.org/2002/07/owl#bottomObjectProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#bottomObjectProperty"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""bottomObjectProperty""},""definition"":{""type"":[""literal""],""value"":""The object property that does not relate any two individuals.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The object property that does not relate any two individuals.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Thing"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""bottomObjectProperty""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""bottomObjectProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""bottomObjectProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The object property that does not relate any two individuals.","false","The object property that does not relate any two individuals.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Thing","","http://www.w3.org/2002/07/owl#bottomObjectProperty","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Thing","false","bottomObjectProperty","","","bottomObjectProperty","bottomObjectProperty","owl","bottomObjectProperty","owl","http://www.w3.org/2002/07/owl#ObjectProperty" -"owl+property+http://www.w3.org/2002/07/owl#cardinality","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#cardinality"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""cardinality""},""definition"":{""type"":[""literal""],""value"":""The property that determines the cardinality of an exact cardinality restriction.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the cardinality of an exact cardinality restriction.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cardinality""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cardinality""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""cardinality""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the cardinality of an exact cardinality restriction.","false","The property that determines the cardinality of an exact cardinality restriction.","http://www.w3.org/2002/07/owl","http://www.w3.org/2001/XMLSchema#nonNegativeInteger","","http://www.w3.org/2002/07/owl#cardinality","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","cardinality","","","cardinality","cardinality","owl","cardinality","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#complementOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#complementOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""complementOf""},""definition"":{""type"":[""literal""],""value"":""The property that determines that a given class is the complement of another class.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that a given class is the complement of another class.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""complementOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""complementOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""complementOf""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that a given class is the complement of another class.","false","The property that determines that a given class is the complement of another class.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Class","","http://www.w3.org/2002/07/owl#complementOf","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Class","false","complementOf","","","complementOf","complementOf","owl","complementOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#datatypeComplementOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#datatypeComplementOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""datatypeComplementOf""},""definition"":{""type"":[""literal""],""value"":""The property that determines that a given data range is the complement of another data range with respect to the data domain.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that a given data range is the complement of another data range with respect to the data domain.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""datatypeComplementOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""datatypeComplementOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""datatypeComplementOf""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Datatype"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Datatype""},""curie"":{""type"":[""literal""],""value"":""Datatype""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that a given data range is the complement of another data range with respect to the data domain.","false","The property that determines that a given data range is the complement of another data range with respect to the data domain.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Datatype","","http://www.w3.org/2002/07/owl#datatypeComplementOf","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Datatype","false","datatypeComplementOf","","","datatypeComplementOf","datatypeComplementOf","owl","datatypeComplementOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#deprecated","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#deprecated"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""deprecated""},""definition"":{""type"":[""literal""],""value"":""The annotation property that indicates that a given entity has been deprecated.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The annotation property that indicates that a given entity has been deprecated.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""deprecated""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""deprecated""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""deprecated""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The annotation property that indicates that a given entity has been deprecated.","false","The annotation property that indicates that a given entity has been deprecated.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2002/07/owl#deprecated","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","deprecated","","","deprecated","deprecated","owl","deprecated","owl","http://www.w3.org/2002/07/owl#AnnotationProperty" -"owl+property+http://www.w3.org/2002/07/owl#differentFrom","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#differentFrom"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""differentFrom""},""definition"":{""type"":[""literal""],""value"":""The property that determines that two given individuals are different.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that two given individuals are different.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Thing"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""differentFrom""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""differentFrom""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""differentFrom""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that two given individuals are different.","false","The property that determines that two given individuals are different.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Thing","","http://www.w3.org/2002/07/owl#differentFrom","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Thing","false","differentFrom","","","differentFrom","differentFrom","owl","differentFrom","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#disjointUnionOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#disjointUnionOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""disjointUnionOf""},""definition"":{""type"":[""literal""],""value"":""The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disjointUnionOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disjointUnionOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""disjointUnionOf""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.","false","The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#disjointUnionOf","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Class","false","disjointUnionOf","","","disjointUnionOf","disjointUnionOf","owl","disjointUnionOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#disjointWith","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#disjointWith"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""disjointWith""},""definition"":{""type"":[""literal""],""value"":""The property that determines that two given classes are disjoint.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that two given classes are disjoint.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disjointWith""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disjointWith""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""disjointWith""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that two given classes are disjoint.","false","The property that determines that two given classes are disjoint.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Class","","http://www.w3.org/2002/07/owl#disjointWith","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Class","false","disjointWith","","","disjointWith","disjointWith","owl","disjointWith","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#distinctMembers","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#distinctMembers"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""distinctMembers""},""definition"":{""type"":[""literal""],""value"":""The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#AllDifferent"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""distinctMembers""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""distinctMembers""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""distinctMembers""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.","false","The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#distinctMembers","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#AllDifferent","false","distinctMembers","","","distinctMembers","distinctMembers","owl","distinctMembers","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#equivalentClass","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#equivalentClass"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""equivalentClass""},""definition"":{""type"":[""literal""],""value"":""The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""equivalentClass""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""equivalentClass""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""equivalentClass""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.","false","The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2002/07/owl#equivalentClass","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Class","false","equivalentClass","","","equivalentClass","equivalentClass","owl","equivalentClass","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#equivalentProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#equivalentProperty"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""equivalentProperty""},""definition"":{""type"":[""literal""],""value"":""The property that determines that two given properties are equivalent.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that two given properties are equivalent.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""equivalentProperty""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""equivalentProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""equivalentProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that two given properties are equivalent.","false","The property that determines that two given properties are equivalent.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","","http://www.w3.org/2002/07/owl#equivalentProperty","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","equivalentProperty","","","equivalentProperty","equivalentProperty","owl","equivalentProperty","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#hasKey","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#hasKey"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""hasKey""},""definition"":{""type"":[""literal""],""value"":""The property that determines the collection of properties that jointly build a key.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the collection of properties that jointly build a key.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hasKey""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasKey""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""hasKey""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the collection of properties that jointly build a key.","false","The property that determines the collection of properties that jointly build a key.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#hasKey","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Class","false","hasKey","","","hasKey","hasKey","owl","hasKey","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#hasSelf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#hasSelf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""hasSelf""},""definition"":{""type"":[""literal""],""value"":""The property that determines the property that a self restriction refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the property that a self restriction refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hasSelf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasSelf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""hasSelf""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the property that a self restriction refers to.","false","The property that determines the property that a self restriction refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2002/07/owl#hasSelf","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","hasSelf","","","hasSelf","hasSelf","owl","hasSelf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#hasValue","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#hasValue"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""hasValue""},""definition"":{""type"":[""literal""],""value"":""The property that determines the individual that a has-value restriction refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the individual that a has-value restriction refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hasValue""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasValue""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""hasValue""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the individual that a has-value restriction refers to.","false","The property that determines the individual that a has-value restriction refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2002/07/owl#hasValue","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","hasValue","","","hasValue","hasValue","owl","hasValue","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#incompatibleWith","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#incompatibleWith"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""incompatibleWith""},""definition"":{""type"":[""literal""],""value"":""The annotation property that indicates that a given ontology is incompatible with another ontology.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2002/07/owl#OntologyProperty""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The annotation property that indicates that a given ontology is incompatible with another ontology.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Ontology"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""incompatibleWith""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Ontology"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""incompatibleWith""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""incompatibleWith""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The annotation property that indicates that a given ontology is incompatible with another ontology.","false","The annotation property that indicates that a given ontology is incompatible with another ontology.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Ontology","","http://www.w3.org/2002/07/owl#incompatibleWith","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Ontology","false","incompatibleWith","","","incompatibleWith","incompatibleWith","owl","incompatibleWith","owl","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/2002/07/owl#OntologyProperty" -"owl+property+http://www.w3.org/2002/07/owl#intersectionOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#intersectionOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""intersectionOf""},""definition"":{""type"":[""literal""],""value"":""The property that determines the collection of classes or data ranges that build an intersection.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the collection of classes or data ranges that build an intersection.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""intersectionOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""intersectionOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""intersectionOf""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the collection of classes or data ranges that build an intersection.","false","The property that determines the collection of classes or data ranges that build an intersection.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#intersectionOf","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Class","false","intersectionOf","","","intersectionOf","intersectionOf","owl","intersectionOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#inverseOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#inverseOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""inverseOf""},""definition"":{""type"":[""literal""],""value"":""The property that determines that two given properties are inverse.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that two given properties are inverse.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""inverseOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""inverseOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""inverseOf""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that two given properties are inverse.","false","The property that determines that two given properties are inverse.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#ObjectProperty","","http://www.w3.org/2002/07/owl#inverseOf","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#ObjectProperty","false","inverseOf","","","inverseOf","inverseOf","owl","inverseOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#maxCardinality","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#maxCardinality"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""maxCardinality""},""definition"":{""type"":[""literal""],""value"":""The property that determines the cardinality of a maximum cardinality restriction.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the cardinality of a maximum cardinality restriction.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""maxCardinality""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""maxCardinality""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""maxCardinality""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the cardinality of a maximum cardinality restriction.","false","The property that determines the cardinality of a maximum cardinality restriction.","http://www.w3.org/2002/07/owl","http://www.w3.org/2001/XMLSchema#nonNegativeInteger","","http://www.w3.org/2002/07/owl#maxCardinality","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","maxCardinality","","","maxCardinality","maxCardinality","owl","maxCardinality","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#maxQualifiedCardinality","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#maxQualifiedCardinality"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""maxQualifiedCardinality""},""definition"":{""type"":[""literal""],""value"":""The property that determines the cardinality of a maximum qualified cardinality restriction.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the cardinality of a maximum qualified cardinality restriction.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""maxQualifiedCardinality""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""maxQualifiedCardinality""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""maxQualifiedCardinality""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the cardinality of a maximum qualified cardinality restriction.","false","The property that determines the cardinality of a maximum qualified cardinality restriction.","http://www.w3.org/2002/07/owl","http://www.w3.org/2001/XMLSchema#nonNegativeInteger","","http://www.w3.org/2002/07/owl#maxQualifiedCardinality","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","maxQualifiedCardinality","","","maxQualifiedCardinality","maxQualifiedCardinality","owl","maxQualifiedCardinality","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#members","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#members"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""members""},""definition"":{""type"":[""literal""],""value"":""The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""members""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""members""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""members""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.","false","The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#members","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","members","","","members","members","owl","members","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#minCardinality","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#minCardinality"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""minCardinality""},""definition"":{""type"":[""literal""],""value"":""The property that determines the cardinality of a minimum cardinality restriction.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the cardinality of a minimum cardinality restriction.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""minCardinality""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""minCardinality""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""minCardinality""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the cardinality of a minimum cardinality restriction.","false","The property that determines the cardinality of a minimum cardinality restriction.","http://www.w3.org/2002/07/owl","http://www.w3.org/2001/XMLSchema#nonNegativeInteger","","http://www.w3.org/2002/07/owl#minCardinality","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","minCardinality","","","minCardinality","minCardinality","owl","minCardinality","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#minQualifiedCardinality","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#minQualifiedCardinality"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""minQualifiedCardinality""},""definition"":{""type"":[""literal""],""value"":""The property that determines the cardinality of a minimum qualified cardinality restriction.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the cardinality of a minimum qualified cardinality restriction.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""minQualifiedCardinality""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""minQualifiedCardinality""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""minQualifiedCardinality""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the cardinality of a minimum qualified cardinality restriction.","false","The property that determines the cardinality of a minimum qualified cardinality restriction.","http://www.w3.org/2002/07/owl","http://www.w3.org/2001/XMLSchema#nonNegativeInteger","","http://www.w3.org/2002/07/owl#minQualifiedCardinality","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","minQualifiedCardinality","","","minQualifiedCardinality","minQualifiedCardinality","owl","minQualifiedCardinality","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#onClass","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#onClass"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""onClass""},""definition"":{""type"":[""literal""],""value"":""The property that determines the class that a qualified object cardinality restriction refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the class that a qualified object cardinality restriction refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""onClass""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""onClass""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""onClass""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the class that a qualified object cardinality restriction refers to.","false","The property that determines the class that a qualified object cardinality restriction refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Class","","http://www.w3.org/2002/07/owl#onClass","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","onClass","","","onClass","onClass","owl","onClass","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#onDataRange","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#onDataRange"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""onDataRange""},""definition"":{""type"":[""literal""],""value"":""The property that determines the data range that a qualified data cardinality restriction refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the data range that a qualified data cardinality restriction refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""onDataRange""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""onDataRange""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""onDataRange""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Datatype"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Datatype""},""curie"":{""type"":[""literal""],""value"":""Datatype""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the data range that a qualified data cardinality restriction refers to.","false","The property that determines the data range that a qualified data cardinality restriction refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Datatype","","http://www.w3.org/2002/07/owl#onDataRange","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","onDataRange","","","onDataRange","onDataRange","owl","onDataRange","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#onDatatype","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#onDatatype"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""onDatatype""},""definition"":{""type"":[""literal""],""value"":""The property that determines the datatype that a datatype restriction refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the datatype that a datatype restriction refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""onDatatype""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""onDatatype""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""onDatatype""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Datatype"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Datatype""},""curie"":{""type"":[""literal""],""value"":""Datatype""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the datatype that a datatype restriction refers to.","false","The property that determines the datatype that a datatype restriction refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Datatype","","http://www.w3.org/2002/07/owl#onDatatype","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Datatype","false","onDatatype","","","onDatatype","onDatatype","owl","onDatatype","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#onProperties","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#onProperties"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""onProperties""},""definition"":{""type"":[""literal""],""value"":""The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""onProperties""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""onProperties""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""onProperties""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.","false","The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#onProperties","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","onProperties","","","onProperties","onProperties","owl","onProperties","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#onProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#onProperty"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""onProperty""},""definition"":{""type"":[""literal""],""value"":""The property that determines the property that a property restriction refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the property that a property restriction refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""onProperty""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""onProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""onProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the property that a property restriction refers to.","false","The property that determines the property that a property restriction refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","","http://www.w3.org/2002/07/owl#onProperty","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","onProperty","","","onProperty","onProperty","owl","onProperty","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#oneOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#oneOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""oneOf""},""definition"":{""type"":[""literal""],""value"":""The property that determines the collection of individuals or data values that build an enumeration.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the collection of individuals or data values that build an enumeration.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oneOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""oneOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""oneOf""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the collection of individuals or data values that build an enumeration.","false","The property that determines the collection of individuals or data values that build an enumeration.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#oneOf","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Class","false","oneOf","","","oneOf","oneOf","owl","oneOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#priorVersion","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#priorVersion"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""priorVersion""},""definition"":{""type"":[""literal""],""value"":""The annotation property that indicates the predecessor ontology of a given ontology.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2002/07/owl#OntologyProperty""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The annotation property that indicates the predecessor ontology of a given ontology.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Ontology"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""priorVersion""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Ontology"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""priorVersion""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""priorVersion""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The annotation property that indicates the predecessor ontology of a given ontology.","false","The annotation property that indicates the predecessor ontology of a given ontology.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Ontology","","http://www.w3.org/2002/07/owl#priorVersion","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Ontology","false","priorVersion","","","priorVersion","priorVersion","owl","priorVersion","owl","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/2002/07/owl#OntologyProperty" -"owl+property+http://www.w3.org/2002/07/owl#propertyChainAxiom","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#propertyChainAxiom"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""propertyChainAxiom""},""definition"":{""type"":[""literal""],""value"":""The property that determines the n-tuple of properties that build a sub property chain of a given property.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the n-tuple of properties that build a sub property chain of a given property.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""propertyChainAxiom""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""propertyChainAxiom""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""propertyChainAxiom""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the n-tuple of properties that build a sub property chain of a given property.","false","The property that determines the n-tuple of properties that build a sub property chain of a given property.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#propertyChainAxiom","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#ObjectProperty","false","propertyChainAxiom","","","propertyChainAxiom","propertyChainAxiom","owl","propertyChainAxiom","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#propertyDisjointWith","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#propertyDisjointWith"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""propertyDisjointWith""},""definition"":{""type"":[""literal""],""value"":""The property that determines that two given properties are disjoint.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that two given properties are disjoint.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""propertyDisjointWith""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""propertyDisjointWith""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""propertyDisjointWith""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that two given properties are disjoint.","false","The property that determines that two given properties are disjoint.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","","http://www.w3.org/2002/07/owl#propertyDisjointWith","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","propertyDisjointWith","","","propertyDisjointWith","propertyDisjointWith","owl","propertyDisjointWith","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#qualifiedCardinality","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#qualifiedCardinality"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""qualifiedCardinality""},""definition"":{""type"":[""literal""],""value"":""The property that determines the cardinality of an exact qualified cardinality restriction.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the cardinality of an exact qualified cardinality restriction.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""qualifiedCardinality""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""qualifiedCardinality""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""qualifiedCardinality""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the cardinality of an exact qualified cardinality restriction.","false","The property that determines the cardinality of an exact qualified cardinality restriction.","http://www.w3.org/2002/07/owl","http://www.w3.org/2001/XMLSchema#nonNegativeInteger","","http://www.w3.org/2002/07/owl#qualifiedCardinality","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","qualifiedCardinality","","","qualifiedCardinality","qualifiedCardinality","owl","qualifiedCardinality","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#sameAs","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#sameAs"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""sameAs""},""definition"":{""type"":[""literal""],""value"":""The property that determines that two given individuals are equal.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that two given individuals are equal.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Thing"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""sameAs""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""sameAs""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""sameAs""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that two given individuals are equal.","false","The property that determines that two given individuals are equal.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Thing","","http://www.w3.org/2002/07/owl#sameAs","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Thing","false","sameAs","","","sameAs","sameAs","owl","sameAs","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#someValuesFrom","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#someValuesFrom"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""someValuesFrom""},""definition"":{""type"":[""literal""],""value"":""The property that determines the class that an existential property restriction refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the class that an existential property restriction refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""someValuesFrom""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""someValuesFrom""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""someValuesFrom""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the class that an existential property restriction refers to.","false","The property that determines the class that an existential property restriction refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2002/07/owl#someValuesFrom","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","someValuesFrom","","","someValuesFrom","someValuesFrom","owl","someValuesFrom","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#sourceIndividual","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#sourceIndividual"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""sourceIndividual""},""definition"":{""type"":[""literal""],""value"":""The property that determines the subject of a negative property assertion.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the subject of a negative property assertion.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#NegativePropertyAssertion"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""sourceIndividual""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""sourceIndividual""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""sourceIndividual""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the subject of a negative property assertion.","false","The property that determines the subject of a negative property assertion.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Thing","","http://www.w3.org/2002/07/owl#sourceIndividual","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#NegativePropertyAssertion","false","sourceIndividual","","","sourceIndividual","sourceIndividual","owl","sourceIndividual","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#targetIndividual","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#targetIndividual"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""targetIndividual""},""definition"":{""type"":[""literal""],""value"":""The property that determines the object of a negative object property assertion.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the object of a negative object property assertion.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#NegativePropertyAssertion"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""targetIndividual""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""targetIndividual""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""targetIndividual""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the object of a negative object property assertion.","false","The property that determines the object of a negative object property assertion.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Thing","","http://www.w3.org/2002/07/owl#targetIndividual","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#NegativePropertyAssertion","false","targetIndividual","","","targetIndividual","targetIndividual","owl","targetIndividual","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#targetValue","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#targetValue"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""targetValue""},""definition"":{""type"":[""literal""],""value"":""The property that determines the value of a negative data property assertion.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the value of a negative data property assertion.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#NegativePropertyAssertion"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""targetValue""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""targetValue""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""targetValue""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Literal"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Literal""},""curie"":{""type"":[""literal""],""value"":""Literal""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the value of a negative data property assertion.","false","The property that determines the value of a negative data property assertion.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Literal","","http://www.w3.org/2002/07/owl#targetValue","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#NegativePropertyAssertion","false","targetValue","","","targetValue","targetValue","owl","targetValue","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#topDataProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#topDataProperty"",""type"":[""dataProperty"",""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""topDataProperty""},""definition"":{""type"":[""literal""],""value"":""The data property that relates every individual to every data value.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#DatatypeProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The data property that relates every individual to every data value.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Thing"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""topDataProperty""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""topDataProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""topDataProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Literal"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Literal""},""curie"":{""type"":[""literal""],""value"":""Literal""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","dataProperty|property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The data property that relates every individual to every data value.","false","The data property that relates every individual to every data value.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Literal","","http://www.w3.org/2002/07/owl#topDataProperty","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Thing","false","topDataProperty","","","topDataProperty","topDataProperty","owl","topDataProperty","owl","http://www.w3.org/2002/07/owl#DatatypeProperty" -"owl+property+http://www.w3.org/2002/07/owl#topObjectProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#topObjectProperty"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""topObjectProperty""},""definition"":{""type"":[""literal""],""value"":""The object property that relates every two individuals.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The object property that relates every two individuals.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Thing"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""topObjectProperty""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""topObjectProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""topObjectProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The object property that relates every two individuals.","false","The object property that relates every two individuals.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Thing","","http://www.w3.org/2002/07/owl#topObjectProperty","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Thing","false","topObjectProperty","","","topObjectProperty","topObjectProperty","owl","topObjectProperty","owl","http://www.w3.org/2002/07/owl#ObjectProperty" -"owl+property+http://www.w3.org/2002/07/owl#unionOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#unionOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""unionOf""},""definition"":{""type"":[""literal""],""value"":""The property that determines the collection of classes or data ranges that build a union.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the collection of classes or data ranges that build a union.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""unionOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""unionOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""unionOf""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the collection of classes or data ranges that build a union.","false","The property that determines the collection of classes or data ranges that build a union.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#unionOf","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Class","false","unionOf","","","unionOf","unionOf","owl","unionOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"owl+property+http://www.w3.org/2002/07/owl#versionInfo","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#versionInfo"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""versionInfo""},""definition"":{""type"":[""literal""],""value"":""The annotation property that provides version information for an ontology or another OWL construct.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The annotation property that provides version information for an ontology or another OWL construct.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""versionInfo""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""versionInfo""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""versionInfo""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The annotation property that provides version information for an ontology or another OWL construct.","false","The annotation property that provides version information for an ontology or another OWL construct.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2002/07/owl#versionInfo","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","versionInfo","","","versionInfo","versionInfo","owl","versionInfo","owl","http://www.w3.org/2002/07/owl#AnnotationProperty" -"owl+property+http://www.w3.org/2002/07/owl#withRestrictions","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#withRestrictions"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""withRestrictions""},""definition"":{""type"":[""literal""],""value"":""The property that determines the collection of facet-value pairs that define a datatype restriction.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the collection of facet-value pairs that define a datatype restriction.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""withRestrictions""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""withRestrictions""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""withRestrictions""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Datatype"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Datatype""},""curie"":{""type"":[""literal""],""value"":""Datatype""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the collection of facet-value pairs that define a datatype restriction.","false","The property that determines the collection of facet-value pairs that define a datatype restriction.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#withRestrictions","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Datatype","false","withRestrictions","","","withRestrictions","withRestrictions","owl","withRestrictions","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2000/01/rdf-schema#comment","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#comment"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""definition"":{""type"":[""literal""],""value"":""A description of the subject resource.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A description of the subject resource.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""comment""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""comment""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RDFS_comment""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Literal"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Literal""},""curie"":{""type"":[""literal""],""value"":""RDFS:Literal""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A description of the subject resource.","true","A description of the subject resource.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Literal","","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","comment","","","RDFS:comment","RDFS_comment","rdfs","comment","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2000/01/rdf-schema#domain","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#domain"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""definition"":{""type"":[""literal""],""value"":""A domain of the subject property.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A domain of the subject property.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""domain""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""domain""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RDFS_domain""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A domain of the subject property.","true","A domain of the subject property.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2000/01/rdf-schema#domain","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","domain","","","RDFS:domain","RDFS_domain","rdfs","domain","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2000/01/rdf-schema#isDefinedBy","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""definition"":{""type"":[""literal""],""value"":""The defininition of the subject resource.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#seeAlso"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#seeAlso"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The defininition of the subject resource.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""isDefinedBy""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2000/01/rdf-schema#seeAlso"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RDFS_isDefinedBy""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""RDFS:seeAlso""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","true","The defininition of the subject resource.","true","The defininition of the subject resource.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#seeAlso","http://www.w3.org/2000/01/rdf-schema#isDefinedBy","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","isDefinedBy","http://www.w3.org/2000/01/rdf-schema#seeAlso","http://www.w3.org/2000/01/rdf-schema#seeAlso","RDFS:isDefinedBy","RDFS_isDefinedBy","rdfs","isDefinedBy","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2000/01/rdf-schema#label","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#label"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""definition"":{""type"":[""literal""],""value"":""A human-readable name for the subject.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A human-readable name for the subject.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""label""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""label""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RDFS_label""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""gitissue502"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Literal"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Literal""},""curie"":{""type"":[""literal""],""value"":""RDFS:Literal""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A human-readable name for the subject.","true","A human-readable name for the subject.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Literal","","http://www.w3.org/2000/01/rdf-schema#label","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","label","","","RDFS:label","RDFS_label","rdfs","label","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2000/01/rdf-schema#member","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#member"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:member""},""definition"":{""type"":[""literal""],""value"":""A member of the subject resource.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A member of the subject resource.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""member""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""member""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RDFS_member""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A member of the subject resource.","true","A member of the subject resource.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2000/01/rdf-schema#member","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","member","","","RDFS:member","RDFS_member","rdfs","member","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2000/01/rdf-schema#range","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#range"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""definition"":{""type"":[""literal""],""value"":""A range of the subject property.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A range of the subject property.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""range""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""range""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RDFS_range""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A range of the subject property.","true","A range of the subject property.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2000/01/rdf-schema#range","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","range","","","RDFS:range","RDFS_range","rdfs","range","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2000/01/rdf-schema#seeAlso","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#seeAlso"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:seeAlso""},""definition"":{""type"":[""literal""],""value"":""Further information about the subject resource.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Further information about the subject resource.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""seeAlso""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""seeAlso""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RDFS_seeAlso""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","true","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","Further information about the subject resource.","true","Further information about the subject resource.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2000/01/rdf-schema#seeAlso","http://www.w3.org/2000/01/rdf-schema#","1.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","seeAlso","","","RDFS:seeAlso","RDFS_seeAlso","rdfs","seeAlso","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2000/01/rdf-schema#subClassOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#subClassOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""definition"":{""type"":[""literal""],""value"":""The subject is a subclass of a class.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The subject is a subclass of a class.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""subClassOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RDFS_subClassOf""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The subject is a subclass of a class.","true","The subject is a subclass of a class.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2000/01/rdf-schema#subClassOf","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Class","false","subClassOf","","","RDFS:subClassOf","RDFS_subClassOf","rdfs","subClassOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2000/01/rdf-schema#subPropertyOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""definition"":{""type"":[""literal""],""value"":""The subject is a subproperty of a property.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The subject is a subproperty of a property.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""subPropertyOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RDFS_subPropertyOf""},""isDefiningOntology"":false,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","false","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The subject is a subproperty of a property.","true","The subject is a subproperty of a property.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","","http://www.w3.org/2000/01/rdf-schema#subPropertyOf","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","subPropertyOf","","","RDFS:subPropertyOf","RDFS_subPropertyOf","rdfs","subPropertyOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#allValuesFrom","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#allValuesFrom"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:allValuesFrom""},""definition"":{""type"":[""literal""],""value"":""The property that determines the class that a universal property restriction refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the class that a universal property restriction refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""allValuesFrom""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""allValuesFrom""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_allValuesFrom""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the class that a universal property restriction refers to.","false","The property that determines the class that a universal property restriction refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2002/07/owl#allValuesFrom","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","allValuesFrom","","","OWL:allValuesFrom","OWL_allValuesFrom","owl","allValuesFrom","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#annotatedProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#annotatedProperty"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:annotatedProperty""},""definition"":{""type"":[""literal""],""value"":""The property that determines the predicate of an annotated axiom or annotated annotation.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the predicate of an annotated axiom or annotated annotation.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""annotatedProperty""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""annotatedProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_annotatedProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the predicate of an annotated axiom or annotated annotation.","false","The property that determines the predicate of an annotated axiom or annotated annotation.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2002/07/owl#annotatedProperty","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","annotatedProperty","","","OWL:annotatedProperty","OWL_annotatedProperty","owl","annotatedProperty","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#annotatedSource","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#annotatedSource"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:annotatedSource""},""definition"":{""type"":[""literal""],""value"":""The property that determines the subject of an annotated axiom or annotated annotation.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the subject of an annotated axiom or annotated annotation.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""annotatedSource""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""annotatedSource""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_annotatedSource""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the subject of an annotated axiom or annotated annotation.","false","The property that determines the subject of an annotated axiom or annotated annotation.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2002/07/owl#annotatedSource","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","annotatedSource","","","OWL:annotatedSource","OWL_annotatedSource","owl","annotatedSource","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#annotatedTarget","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#annotatedTarget"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:annotatedTarget""},""definition"":{""type"":[""literal""],""value"":""The property that determines the object of an annotated axiom or annotated annotation.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the object of an annotated axiom or annotated annotation.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""annotatedTarget""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""annotatedTarget""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_annotatedTarget""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the object of an annotated axiom or annotated annotation.","false","The property that determines the object of an annotated axiom or annotated annotation.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2002/07/owl#annotatedTarget","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","annotatedTarget","","","OWL:annotatedTarget","OWL_annotatedTarget","owl","annotatedTarget","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#assertionProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#assertionProperty"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:assertionProperty""},""definition"":{""type"":[""literal""],""value"":""The property that determines the predicate of a negative property assertion.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the predicate of a negative property assertion.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#NegativePropertyAssertion"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""assertionProperty""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""assertionProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_assertionProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the predicate of a negative property assertion.","false","The property that determines the predicate of a negative property assertion.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","","http://www.w3.org/2002/07/owl#assertionProperty","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#NegativePropertyAssertion","false","assertionProperty","","","OWL:assertionProperty","OWL_assertionProperty","owl","assertionProperty","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#backwardCompatibleWith","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#backwardCompatibleWith"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:backwardCompatibleWith""},""definition"":{""type"":[""literal""],""value"":""The annotation property that indicates that a given ontology is backward compatible with another ontology.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2002/07/owl#OntologyProperty""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The annotation property that indicates that a given ontology is backward compatible with another ontology.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Ontology"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""backwardCompatibleWith""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Ontology"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""backwardCompatibleWith""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_backwardCompatibleWith""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The annotation property that indicates that a given ontology is backward compatible with another ontology.","false","The annotation property that indicates that a given ontology is backward compatible with another ontology.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Ontology","","http://www.w3.org/2002/07/owl#backwardCompatibleWith","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Ontology","false","backwardCompatibleWith","","","OWL:backwardCompatibleWith","OWL_backwardCompatibleWith","owl","backwardCompatibleWith","owl","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/2002/07/owl#OntologyProperty" +"owl+property+http://www.w3.org/2002/07/owl#bottomDataProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#bottomDataProperty"",""type"":[""dataProperty"",""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:bottomDataProperty""},""definition"":{""type"":[""literal""],""value"":""The data property that does not relate any individual to any data value.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#DatatypeProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The data property that does not relate any individual to any data value.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Thing"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""bottomDataProperty""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""bottomDataProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_bottomDataProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Literal"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Literal""},""curie"":{""type"":[""literal""],""value"":""RDFS:Literal""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","dataProperty|property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The data property that does not relate any individual to any data value.","false","The data property that does not relate any individual to any data value.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Literal","","http://www.w3.org/2002/07/owl#bottomDataProperty","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Thing","false","bottomDataProperty","","","OWL:bottomDataProperty","OWL_bottomDataProperty","owl","bottomDataProperty","owl","http://www.w3.org/2002/07/owl#DatatypeProperty" +"owl+property+http://www.w3.org/2002/07/owl#bottomObjectProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#bottomObjectProperty"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:bottomObjectProperty""},""definition"":{""type"":[""literal""],""value"":""The object property that does not relate any two individuals.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The object property that does not relate any two individuals.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Thing"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""bottomObjectProperty""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""bottomObjectProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_bottomObjectProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The object property that does not relate any two individuals.","false","The object property that does not relate any two individuals.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Thing","","http://www.w3.org/2002/07/owl#bottomObjectProperty","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Thing","false","bottomObjectProperty","","","OWL:bottomObjectProperty","OWL_bottomObjectProperty","owl","bottomObjectProperty","owl","http://www.w3.org/2002/07/owl#ObjectProperty" +"owl+property+http://www.w3.org/2002/07/owl#cardinality","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#cardinality"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:cardinality""},""definition"":{""type"":[""literal""],""value"":""The property that determines the cardinality of an exact cardinality restriction.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the cardinality of an exact cardinality restriction.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cardinality""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cardinality""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_cardinality""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the cardinality of an exact cardinality restriction.","false","The property that determines the cardinality of an exact cardinality restriction.","http://www.w3.org/2002/07/owl","http://www.w3.org/2001/XMLSchema#nonNegativeInteger","","http://www.w3.org/2002/07/owl#cardinality","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","cardinality","","","OWL:cardinality","OWL_cardinality","owl","cardinality","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#complementOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#complementOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:complementOf""},""definition"":{""type"":[""literal""],""value"":""The property that determines that a given class is the complement of another class.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that a given class is the complement of another class.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""complementOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""complementOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_complementOf""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that a given class is the complement of another class.","false","The property that determines that a given class is the complement of another class.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Class","","http://www.w3.org/2002/07/owl#complementOf","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Class","false","complementOf","","","OWL:complementOf","OWL_complementOf","owl","complementOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#datatypeComplementOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#datatypeComplementOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:datatypeComplementOf""},""definition"":{""type"":[""literal""],""value"":""The property that determines that a given data range is the complement of another data range with respect to the data domain.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that a given data range is the complement of another data range with respect to the data domain.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""datatypeComplementOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""datatypeComplementOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_datatypeComplementOf""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Datatype"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Datatype""},""curie"":{""type"":[""literal""],""value"":""RDFS:Datatype""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that a given data range is the complement of another data range with respect to the data domain.","false","The property that determines that a given data range is the complement of another data range with respect to the data domain.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Datatype","","http://www.w3.org/2002/07/owl#datatypeComplementOf","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Datatype","false","datatypeComplementOf","","","OWL:datatypeComplementOf","OWL_datatypeComplementOf","owl","datatypeComplementOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#deprecated","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#deprecated"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:deprecated""},""definition"":{""type"":[""literal""],""value"":""The annotation property that indicates that a given entity has been deprecated.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The annotation property that indicates that a given entity has been deprecated.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""deprecated""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""deprecated""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_deprecated""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The annotation property that indicates that a given entity has been deprecated.","false","The annotation property that indicates that a given entity has been deprecated.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2002/07/owl#deprecated","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","deprecated","","","OWL:deprecated","OWL_deprecated","owl","deprecated","owl","http://www.w3.org/2002/07/owl#AnnotationProperty" +"owl+property+http://www.w3.org/2002/07/owl#differentFrom","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#differentFrom"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:differentFrom""},""definition"":{""type"":[""literal""],""value"":""The property that determines that two given individuals are different.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that two given individuals are different.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Thing"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""differentFrom""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""differentFrom""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_differentFrom""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that two given individuals are different.","false","The property that determines that two given individuals are different.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Thing","","http://www.w3.org/2002/07/owl#differentFrom","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Thing","false","differentFrom","","","OWL:differentFrom","OWL_differentFrom","owl","differentFrom","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#disjointUnionOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#disjointUnionOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:disjointUnionOf""},""definition"":{""type"":[""literal""],""value"":""The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disjointUnionOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disjointUnionOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_disjointUnionOf""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.","false","The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#disjointUnionOf","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Class","false","disjointUnionOf","","","OWL:disjointUnionOf","OWL_disjointUnionOf","owl","disjointUnionOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#disjointWith","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#disjointWith"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:disjointWith""},""definition"":{""type"":[""literal""],""value"":""The property that determines that two given classes are disjoint.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that two given classes are disjoint.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disjointWith""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disjointWith""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_disjointWith""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that two given classes are disjoint.","false","The property that determines that two given classes are disjoint.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Class","","http://www.w3.org/2002/07/owl#disjointWith","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Class","false","disjointWith","","","OWL:disjointWith","OWL_disjointWith","owl","disjointWith","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#distinctMembers","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#distinctMembers"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:distinctMembers""},""definition"":{""type"":[""literal""],""value"":""The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#AllDifferent"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""distinctMembers""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""distinctMembers""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_distinctMembers""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.","false","The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#distinctMembers","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#AllDifferent","false","distinctMembers","","","OWL:distinctMembers","OWL_distinctMembers","owl","distinctMembers","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#equivalentClass","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#equivalentClass"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:equivalentClass""},""definition"":{""type"":[""literal""],""value"":""The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""equivalentClass""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""equivalentClass""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_equivalentClass""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.","false","The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2002/07/owl#equivalentClass","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Class","false","equivalentClass","","","OWL:equivalentClass","OWL_equivalentClass","owl","equivalentClass","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#equivalentProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#equivalentProperty"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:equivalentProperty""},""definition"":{""type"":[""literal""],""value"":""The property that determines that two given properties are equivalent.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that two given properties are equivalent.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""equivalentProperty""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""equivalentProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_equivalentProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that two given properties are equivalent.","false","The property that determines that two given properties are equivalent.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","","http://www.w3.org/2002/07/owl#equivalentProperty","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","equivalentProperty","","","OWL:equivalentProperty","OWL_equivalentProperty","owl","equivalentProperty","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#hasKey","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#hasKey"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:hasKey""},""definition"":{""type"":[""literal""],""value"":""The property that determines the collection of properties that jointly build a key.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the collection of properties that jointly build a key.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hasKey""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasKey""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_hasKey""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the collection of properties that jointly build a key.","false","The property that determines the collection of properties that jointly build a key.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#hasKey","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Class","false","hasKey","","","OWL:hasKey","OWL_hasKey","owl","hasKey","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#hasSelf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#hasSelf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:hasSelf""},""definition"":{""type"":[""literal""],""value"":""The property that determines the property that a self restriction refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the property that a self restriction refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hasSelf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasSelf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_hasSelf""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the property that a self restriction refers to.","false","The property that determines the property that a self restriction refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2002/07/owl#hasSelf","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","hasSelf","","","OWL:hasSelf","OWL_hasSelf","owl","hasSelf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#hasValue","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#hasValue"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:hasValue""},""definition"":{""type"":[""literal""],""value"":""The property that determines the individual that a has-value restriction refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the individual that a has-value restriction refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hasValue""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hasValue""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_hasValue""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the individual that a has-value restriction refers to.","false","The property that determines the individual that a has-value restriction refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2002/07/owl#hasValue","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","hasValue","","","OWL:hasValue","OWL_hasValue","owl","hasValue","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#incompatibleWith","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#incompatibleWith"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:incompatibleWith""},""definition"":{""type"":[""literal""],""value"":""The annotation property that indicates that a given ontology is incompatible with another ontology.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2002/07/owl#OntologyProperty""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The annotation property that indicates that a given ontology is incompatible with another ontology.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Ontology"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""incompatibleWith""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Ontology"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""incompatibleWith""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_incompatibleWith""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The annotation property that indicates that a given ontology is incompatible with another ontology.","false","The annotation property that indicates that a given ontology is incompatible with another ontology.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Ontology","","http://www.w3.org/2002/07/owl#incompatibleWith","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Ontology","false","incompatibleWith","","","OWL:incompatibleWith","OWL_incompatibleWith","owl","incompatibleWith","owl","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/2002/07/owl#OntologyProperty" +"owl+property+http://www.w3.org/2002/07/owl#intersectionOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#intersectionOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:intersectionOf""},""definition"":{""type"":[""literal""],""value"":""The property that determines the collection of classes or data ranges that build an intersection.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the collection of classes or data ranges that build an intersection.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""intersectionOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""intersectionOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_intersectionOf""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the collection of classes or data ranges that build an intersection.","false","The property that determines the collection of classes or data ranges that build an intersection.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#intersectionOf","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Class","false","intersectionOf","","","OWL:intersectionOf","OWL_intersectionOf","owl","intersectionOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#inverseOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#inverseOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:inverseOf""},""definition"":{""type"":[""literal""],""value"":""The property that determines that two given properties are inverse.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that two given properties are inverse.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""inverseOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""inverseOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_inverseOf""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that two given properties are inverse.","false","The property that determines that two given properties are inverse.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#ObjectProperty","","http://www.w3.org/2002/07/owl#inverseOf","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#ObjectProperty","false","inverseOf","","","OWL:inverseOf","OWL_inverseOf","owl","inverseOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#maxCardinality","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#maxCardinality"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:maxCardinality""},""definition"":{""type"":[""literal""],""value"":""The property that determines the cardinality of a maximum cardinality restriction.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the cardinality of a maximum cardinality restriction.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""maxCardinality""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""maxCardinality""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_maxCardinality""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the cardinality of a maximum cardinality restriction.","false","The property that determines the cardinality of a maximum cardinality restriction.","http://www.w3.org/2002/07/owl","http://www.w3.org/2001/XMLSchema#nonNegativeInteger","","http://www.w3.org/2002/07/owl#maxCardinality","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","maxCardinality","","","OWL:maxCardinality","OWL_maxCardinality","owl","maxCardinality","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#maxQualifiedCardinality","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#maxQualifiedCardinality"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:maxQualifiedCardinality""},""definition"":{""type"":[""literal""],""value"":""The property that determines the cardinality of a maximum qualified cardinality restriction.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the cardinality of a maximum qualified cardinality restriction.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""maxQualifiedCardinality""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""maxQualifiedCardinality""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_maxQualifiedCardinality""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the cardinality of a maximum qualified cardinality restriction.","false","The property that determines the cardinality of a maximum qualified cardinality restriction.","http://www.w3.org/2002/07/owl","http://www.w3.org/2001/XMLSchema#nonNegativeInteger","","http://www.w3.org/2002/07/owl#maxQualifiedCardinality","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","maxQualifiedCardinality","","","OWL:maxQualifiedCardinality","OWL_maxQualifiedCardinality","owl","maxQualifiedCardinality","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#members","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#members"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:members""},""definition"":{""type"":[""literal""],""value"":""The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""members""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""members""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_members""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.","false","The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#members","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","members","","","OWL:members","OWL_members","owl","members","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#minCardinality","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#minCardinality"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:minCardinality""},""definition"":{""type"":[""literal""],""value"":""The property that determines the cardinality of a minimum cardinality restriction.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the cardinality of a minimum cardinality restriction.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""minCardinality""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""minCardinality""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_minCardinality""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the cardinality of a minimum cardinality restriction.","false","The property that determines the cardinality of a minimum cardinality restriction.","http://www.w3.org/2002/07/owl","http://www.w3.org/2001/XMLSchema#nonNegativeInteger","","http://www.w3.org/2002/07/owl#minCardinality","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","minCardinality","","","OWL:minCardinality","OWL_minCardinality","owl","minCardinality","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#minQualifiedCardinality","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#minQualifiedCardinality"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:minQualifiedCardinality""},""definition"":{""type"":[""literal""],""value"":""The property that determines the cardinality of a minimum qualified cardinality restriction.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the cardinality of a minimum qualified cardinality restriction.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""minQualifiedCardinality""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""minQualifiedCardinality""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_minQualifiedCardinality""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the cardinality of a minimum qualified cardinality restriction.","false","The property that determines the cardinality of a minimum qualified cardinality restriction.","http://www.w3.org/2002/07/owl","http://www.w3.org/2001/XMLSchema#nonNegativeInteger","","http://www.w3.org/2002/07/owl#minQualifiedCardinality","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","minQualifiedCardinality","","","OWL:minQualifiedCardinality","OWL_minQualifiedCardinality","owl","minQualifiedCardinality","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#onClass","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#onClass"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:onClass""},""definition"":{""type"":[""literal""],""value"":""The property that determines the class that a qualified object cardinality restriction refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the class that a qualified object cardinality restriction refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""onClass""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""onClass""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_onClass""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the class that a qualified object cardinality restriction refers to.","false","The property that determines the class that a qualified object cardinality restriction refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Class","","http://www.w3.org/2002/07/owl#onClass","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","onClass","","","OWL:onClass","OWL_onClass","owl","onClass","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#onDataRange","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#onDataRange"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:onDataRange""},""definition"":{""type"":[""literal""],""value"":""The property that determines the data range that a qualified data cardinality restriction refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the data range that a qualified data cardinality restriction refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""onDataRange""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""onDataRange""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_onDataRange""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Datatype"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Datatype""},""curie"":{""type"":[""literal""],""value"":""RDFS:Datatype""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the data range that a qualified data cardinality restriction refers to.","false","The property that determines the data range that a qualified data cardinality restriction refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Datatype","","http://www.w3.org/2002/07/owl#onDataRange","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","onDataRange","","","OWL:onDataRange","OWL_onDataRange","owl","onDataRange","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#onDatatype","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#onDatatype"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:onDatatype""},""definition"":{""type"":[""literal""],""value"":""The property that determines the datatype that a datatype restriction refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the datatype that a datatype restriction refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""onDatatype""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""onDatatype""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_onDatatype""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Datatype"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Datatype""},""curie"":{""type"":[""literal""],""value"":""RDFS:Datatype""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the datatype that a datatype restriction refers to.","false","The property that determines the datatype that a datatype restriction refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Datatype","","http://www.w3.org/2002/07/owl#onDatatype","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Datatype","false","onDatatype","","","OWL:onDatatype","OWL_onDatatype","owl","onDatatype","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#onProperties","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#onProperties"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:onProperties""},""definition"":{""type"":[""literal""],""value"":""The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""onProperties""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""onProperties""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_onProperties""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.","false","The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#onProperties","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","onProperties","","","OWL:onProperties","OWL_onProperties","owl","onProperties","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#onProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#onProperty"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:onProperty""},""definition"":{""type"":[""literal""],""value"":""The property that determines the property that a property restriction refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the property that a property restriction refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""onProperty""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""onProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_onProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the property that a property restriction refers to.","false","The property that determines the property that a property restriction refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","","http://www.w3.org/2002/07/owl#onProperty","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","onProperty","","","OWL:onProperty","OWL_onProperty","owl","onProperty","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#oneOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#oneOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:oneOf""},""definition"":{""type"":[""literal""],""value"":""The property that determines the collection of individuals or data values that build an enumeration.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the collection of individuals or data values that build an enumeration.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""oneOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""oneOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_oneOf""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the collection of individuals or data values that build an enumeration.","false","The property that determines the collection of individuals or data values that build an enumeration.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#oneOf","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Class","false","oneOf","","","OWL:oneOf","OWL_oneOf","owl","oneOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#priorVersion","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#priorVersion"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:priorVersion""},""definition"":{""type"":[""literal""],""value"":""The annotation property that indicates the predecessor ontology of a given ontology.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2002/07/owl#OntologyProperty""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The annotation property that indicates the predecessor ontology of a given ontology.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Ontology"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""priorVersion""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Ontology"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""priorVersion""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_priorVersion""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The annotation property that indicates the predecessor ontology of a given ontology.","false","The annotation property that indicates the predecessor ontology of a given ontology.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Ontology","","http://www.w3.org/2002/07/owl#priorVersion","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Ontology","false","priorVersion","","","OWL:priorVersion","OWL_priorVersion","owl","priorVersion","owl","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/2002/07/owl#OntologyProperty" +"owl+property+http://www.w3.org/2002/07/owl#propertyChainAxiom","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#propertyChainAxiom"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:propertyChainAxiom""},""definition"":{""type"":[""literal""],""value"":""The property that determines the n-tuple of properties that build a sub property chain of a given property.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the n-tuple of properties that build a sub property chain of a given property.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""propertyChainAxiom""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""propertyChainAxiom""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_propertyChainAxiom""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the n-tuple of properties that build a sub property chain of a given property.","false","The property that determines the n-tuple of properties that build a sub property chain of a given property.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#propertyChainAxiom","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#ObjectProperty","false","propertyChainAxiom","","","OWL:propertyChainAxiom","OWL_propertyChainAxiom","owl","propertyChainAxiom","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#propertyDisjointWith","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#propertyDisjointWith"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:propertyDisjointWith""},""definition"":{""type"":[""literal""],""value"":""The property that determines that two given properties are disjoint.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that two given properties are disjoint.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""propertyDisjointWith""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""propertyDisjointWith""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_propertyDisjointWith""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that two given properties are disjoint.","false","The property that determines that two given properties are disjoint.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","","http://www.w3.org/2002/07/owl#propertyDisjointWith","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","propertyDisjointWith","","","OWL:propertyDisjointWith","OWL_propertyDisjointWith","owl","propertyDisjointWith","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#qualifiedCardinality","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#qualifiedCardinality"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:qualifiedCardinality""},""definition"":{""type"":[""literal""],""value"":""The property that determines the cardinality of an exact qualified cardinality restriction.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the cardinality of an exact qualified cardinality restriction.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""qualifiedCardinality""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""qualifiedCardinality""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_qualifiedCardinality""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the cardinality of an exact qualified cardinality restriction.","false","The property that determines the cardinality of an exact qualified cardinality restriction.","http://www.w3.org/2002/07/owl","http://www.w3.org/2001/XMLSchema#nonNegativeInteger","","http://www.w3.org/2002/07/owl#qualifiedCardinality","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","qualifiedCardinality","","","OWL:qualifiedCardinality","OWL_qualifiedCardinality","owl","qualifiedCardinality","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#sameAs","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#sameAs"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:sameAs""},""definition"":{""type"":[""literal""],""value"":""The property that determines that two given individuals are equal.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines that two given individuals are equal.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Thing"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""sameAs""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""sameAs""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_sameAs""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines that two given individuals are equal.","false","The property that determines that two given individuals are equal.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Thing","","http://www.w3.org/2002/07/owl#sameAs","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Thing","false","sameAs","","","OWL:sameAs","OWL_sameAs","owl","sameAs","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#someValuesFrom","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#someValuesFrom"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:someValuesFrom""},""definition"":{""type"":[""literal""],""value"":""The property that determines the class that an existential property restriction refers to.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the class that an existential property restriction refers to.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""someValuesFrom""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""someValuesFrom""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_someValuesFrom""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the class that an existential property restriction refers to.","false","The property that determines the class that an existential property restriction refers to.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2002/07/owl#someValuesFrom","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Restriction","false","someValuesFrom","","","OWL:someValuesFrom","OWL_someValuesFrom","owl","someValuesFrom","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#sourceIndividual","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#sourceIndividual"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:sourceIndividual""},""definition"":{""type"":[""literal""],""value"":""The property that determines the subject of a negative property assertion.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the subject of a negative property assertion.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#NegativePropertyAssertion"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""sourceIndividual""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""sourceIndividual""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_sourceIndividual""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the subject of a negative property assertion.","false","The property that determines the subject of a negative property assertion.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Thing","","http://www.w3.org/2002/07/owl#sourceIndividual","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#NegativePropertyAssertion","false","sourceIndividual","","","OWL:sourceIndividual","OWL_sourceIndividual","owl","sourceIndividual","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#targetIndividual","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#targetIndividual"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:targetIndividual""},""definition"":{""type"":[""literal""],""value"":""The property that determines the object of a negative object property assertion.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the object of a negative object property assertion.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#NegativePropertyAssertion"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""targetIndividual""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""targetIndividual""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_targetIndividual""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the object of a negative object property assertion.","false","The property that determines the object of a negative object property assertion.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Thing","","http://www.w3.org/2002/07/owl#targetIndividual","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#NegativePropertyAssertion","false","targetIndividual","","","OWL:targetIndividual","OWL_targetIndividual","owl","targetIndividual","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#targetValue","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#targetValue"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:targetValue""},""definition"":{""type"":[""literal""],""value"":""The property that determines the value of a negative data property assertion.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the value of a negative data property assertion.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#NegativePropertyAssertion"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""targetValue""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""targetValue""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_targetValue""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Literal"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Literal""},""curie"":{""type"":[""literal""],""value"":""RDFS:Literal""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the value of a negative data property assertion.","false","The property that determines the value of a negative data property assertion.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Literal","","http://www.w3.org/2002/07/owl#targetValue","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#NegativePropertyAssertion","false","targetValue","","","OWL:targetValue","OWL_targetValue","owl","targetValue","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#topDataProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#topDataProperty"",""type"":[""dataProperty"",""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:topDataProperty""},""definition"":{""type"":[""literal""],""value"":""The data property that relates every individual to every data value.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#DatatypeProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The data property that relates every individual to every data value.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Thing"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""topDataProperty""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""topDataProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_topDataProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Literal"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Literal""},""curie"":{""type"":[""literal""],""value"":""RDFS:Literal""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","dataProperty|property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The data property that relates every individual to every data value.","false","The data property that relates every individual to every data value.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Literal","","http://www.w3.org/2002/07/owl#topDataProperty","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Thing","false","topDataProperty","","","OWL:topDataProperty","OWL_topDataProperty","owl","topDataProperty","owl","http://www.w3.org/2002/07/owl#DatatypeProperty" +"owl+property+http://www.w3.org/2002/07/owl#topObjectProperty","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#topObjectProperty"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:topObjectProperty""},""definition"":{""type"":[""literal""],""value"":""The object property that relates every two individuals.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The object property that relates every two individuals.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2002/07/owl#Thing"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""topObjectProperty""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""topObjectProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_topObjectProperty""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The object property that relates every two individuals.","false","The object property that relates every two individuals.","http://www.w3.org/2002/07/owl","http://www.w3.org/2002/07/owl#Thing","","http://www.w3.org/2002/07/owl#topObjectProperty","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2002/07/owl#Thing","false","topObjectProperty","","","OWL:topObjectProperty","OWL_topObjectProperty","owl","topObjectProperty","owl","http://www.w3.org/2002/07/owl#ObjectProperty" +"owl+property+http://www.w3.org/2002/07/owl#unionOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#unionOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:unionOf""},""definition"":{""type"":[""literal""],""value"":""The property that determines the collection of classes or data ranges that build a union.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the collection of classes or data ranges that build a union.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""unionOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""unionOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_unionOf""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the collection of classes or data ranges that build a union.","false","The property that determines the collection of classes or data ranges that build a union.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#unionOf","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Class","false","unionOf","","","OWL:unionOf","OWL_unionOf","owl","unionOf","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"owl+property+http://www.w3.org/2002/07/owl#versionInfo","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#versionInfo"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:versionInfo""},""definition"":{""type"":[""literal""],""value"":""The annotation property that provides version information for an ontology or another OWL construct.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The annotation property that provides version information for an ontology or another OWL construct.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""versionInfo""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""versionInfo""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_versionInfo""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The annotation property that provides version information for an ontology or another OWL construct.","false","The annotation property that provides version information for an ontology or another OWL construct.","http://www.w3.org/2002/07/owl","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2002/07/owl#versionInfo","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","versionInfo","","","OWL:versionInfo","OWL_versionInfo","owl","versionInfo","owl","http://www.w3.org/2002/07/owl#AnnotationProperty" +"owl+property+http://www.w3.org/2002/07/owl#withRestrictions","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2002/07/owl#withRestrictions"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""OWL:withRestrictions""},""definition"":{""type"":[""literal""],""value"":""The property that determines the collection of facet-value pairs that define a datatype restriction.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The property that determines the collection of facet-value pairs that define a datatype restriction.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2002/07/owl#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""withRestrictions""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""withRestrictions""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""owl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2002/07/owl""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""OWL_withRestrictions""},""isDefiningOntology"":true,""definedBy"":[""owl""],""appearsIn"":[""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Datatype"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Datatype""},""curie"":{""type"":[""literal""],""value"":""RDFS:Datatype""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The property that determines the collection of facet-value pairs that define a datatype restriction.","false","The property that determines the collection of facet-value pairs that define a datatype restriction.","http://www.w3.org/2002/07/owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2002/07/owl#withRestrictions","http://www.w3.org/2002/07/owl#","0.0","http://www.w3.org/2000/01/rdf-schema#Datatype","false","withRestrictions","","","OWL:withRestrictions","OWL_withRestrictions","owl","withRestrictions","owl","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" diff --git a/testcases_expected_output/annotation-properties/gitIssue502/properties.jsonl b/testcases_expected_output/annotation-properties/gitIssue502/properties.jsonl index 63db2f75a..ad005dba1 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/properties.jsonl +++ b/testcases_expected_output/annotation-properties/gitIssue502/properties.jsonl @@ -1,258 +1,281 @@ -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#comment\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A description of the subject resource.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A description of the subject resource.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Literal\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"comment","definedBy":["rdfs"],"definition":"A description of the subject resource.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A description of the subject resource.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"comment","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Literal","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#comment","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#comment","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"comment","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"comment","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#domain\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A domain of the subject property.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A domain of the subject property.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"domain","definedBy":["rdfs"],"definition":"A domain of the subject property.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A domain of the subject property.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"domain","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#domain","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#domain","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"domain","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"domain","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The defininition of the subject resource.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#seeAlso\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#seeAlso\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The defininition of the subject resource.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2000/01/rdf-schema#seeAlso\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"isDefinedBy","definedBy":["rdfs"],"definition":"The defininition of the subject resource.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#seeAlso","directParent":"http://www.w3.org/2000/01/rdf-schema#seeAlso","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The defininition of the subject resource.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"isDefinedBy","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2000/01/rdf-schema#seeAlso","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#isDefinedBy","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#isDefinedBy","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"isDefinedBy","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"isDefinedBy","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A human-readable name for the subject.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A human-readable name for the subject.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"label\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"gitissue502\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Literal\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","gitissue502","rdfs"],"curie":"label","definedBy":["rdfs"],"definition":"A human-readable name for the subject.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A human-readable name for the subject.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"label","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Literal","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#label","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#label","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"label","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#member\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"member\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A member of the subject resource.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A member of the subject resource.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"member\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"member\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"member\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"member","definedBy":["rdfs"],"definition":"A member of the subject resource.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A member of the subject resource.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"member","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#member","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#member","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"member","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"member","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#range\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A range of the subject property.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A range of the subject property.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"range\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"range","definedBy":["rdfs"],"definition":"A range of the subject property.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A range of the subject property.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"range","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#range","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#range","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"range","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"range","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#seeAlso\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Further information about the subject resource.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Further information about the subject resource.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"seeAlso","definedBy":["rdfs"],"definition":"Further information about the subject resource.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"Further information about the subject resource.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"seeAlso","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#seeAlso","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#seeAlso","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"seeAlso","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"seeAlso","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The subject is a subclass of a class.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The subject is a subclass of a class.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"subClassOf","definedBy":["rdfs"],"definition":"The subject is a subclass of a class.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The subject is a subclass of a class.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"subClassOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#subClassOf","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#subClassOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"subClassOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"subClassOf","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The subject is a subproperty of a property.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The subject is a subproperty of a property.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"subPropertyOf","definedBy":["rdfs"],"definition":"The subject is a subproperty of a property.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The subject is a subproperty of a property.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"subPropertyOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#subPropertyOf","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#subPropertyOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"subPropertyOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"subPropertyOf","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#comment\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A description of the subject resource.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A description of the subject resource.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Literal\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"comment","definedBy":["rdfs"],"definition":"A description of the subject resource.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A description of the subject resource.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"comment","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Literal","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#comment","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#comment","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"comment","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"comment","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#domain\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A domain of the subject property.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A domain of the subject property.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"domain","definedBy":["rdfs"],"definition":"A domain of the subject property.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A domain of the subject property.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"domain","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#domain","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#domain","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"domain","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"domain","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The defininition of the subject resource.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#seeAlso\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#seeAlso\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The defininition of the subject resource.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2000/01/rdf-schema#seeAlso\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"isDefinedBy","definedBy":["rdfs"],"definition":"The defininition of the subject resource.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#seeAlso","directParent":"http://www.w3.org/2000/01/rdf-schema#seeAlso","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The defininition of the subject resource.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"isDefinedBy","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2000/01/rdf-schema#seeAlso","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#isDefinedBy","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#isDefinedBy","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"isDefinedBy","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"isDefinedBy","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A human-readable name for the subject.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A human-readable name for the subject.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"label\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"gitissue502\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Literal\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","gitissue502","rdfs"],"curie":"label","definedBy":["rdfs"],"definition":"A human-readable name for the subject.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A human-readable name for the subject.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"label","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Literal","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#label","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#label","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"label","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#member\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"member\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A member of the subject resource.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A member of the subject resource.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"member\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"member\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"member\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"member","definedBy":["rdfs"],"definition":"A member of the subject resource.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A member of the subject resource.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"member","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#member","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#member","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"member","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"member","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#range\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A range of the subject property.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A range of the subject property.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"range\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"range","definedBy":["rdfs"],"definition":"A range of the subject property.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A range of the subject property.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"range","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#range","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#range","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"range","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"range","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#seeAlso\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Further information about the subject resource.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Further information about the subject resource.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"seeAlso","definedBy":["rdfs"],"definition":"Further information about the subject resource.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"Further information about the subject resource.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"seeAlso","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#seeAlso","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#seeAlso","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"seeAlso","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"seeAlso","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The subject is a subclass of a class.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The subject is a subclass of a class.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"subClassOf","definedBy":["rdfs"],"definition":"The subject is a subclass of a class.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The subject is a subclass of a class.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"subClassOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#subClassOf","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#subClassOf","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"subClassOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"subClassOf","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The subject is a subproperty of a property.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The subject is a subproperty of a property.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"subPropertyOf","definedBy":["rdfs"],"definition":"The subject is a subproperty of a property.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The subject is a subproperty of a property.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"subPropertyOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#subPropertyOf","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#subPropertyOf","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"subPropertyOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"subPropertyOf","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#allValuesFrom\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"allValuesFrom\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the class that a universal property restriction refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the class that a universal property restriction refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"allValuesFrom\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"allValuesFrom\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"allValuesFrom\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"allValuesFrom","definedBy":["owl"],"definition":"The property that determines the class that a universal property restriction refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the class that a universal property restriction refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"allValuesFrom","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+property+http://www.w3.org/2002/07/owl#allValuesFrom","imported":"false","iri":"http://www.w3.org/2002/07/owl#allValuesFrom","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"allValuesFrom","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"allValuesFrom","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#annotatedProperty\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"annotatedProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the predicate of an annotated axiom or annotated annotation.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the predicate of an annotated axiom or annotated annotation.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"annotatedProperty\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"annotatedProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"annotatedProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"annotatedProperty","definedBy":["owl"],"definition":"The property that determines the predicate of an annotated axiom or annotated annotation.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the predicate of an annotated axiom or annotated annotation.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"annotatedProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2002/07/owl#annotatedProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#annotatedProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"annotatedProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"annotatedProperty","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#annotatedSource\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"annotatedSource\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the subject of an annotated axiom or annotated annotation.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the subject of an annotated axiom or annotated annotation.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"annotatedSource\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"annotatedSource\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"annotatedSource\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"annotatedSource","definedBy":["owl"],"definition":"The property that determines the subject of an annotated axiom or annotated annotation.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the subject of an annotated axiom or annotated annotation.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"annotatedSource","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2002/07/owl#annotatedSource","imported":"false","iri":"http://www.w3.org/2002/07/owl#annotatedSource","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"annotatedSource","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"annotatedSource","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#annotatedTarget\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"annotatedTarget\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the object of an annotated axiom or annotated annotation.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the object of an annotated axiom or annotated annotation.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"annotatedTarget\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"annotatedTarget\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"annotatedTarget\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"annotatedTarget","definedBy":["owl"],"definition":"The property that determines the object of an annotated axiom or annotated annotation.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the object of an annotated axiom or annotated annotation.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"annotatedTarget","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2002/07/owl#annotatedTarget","imported":"false","iri":"http://www.w3.org/2002/07/owl#annotatedTarget","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"annotatedTarget","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"annotatedTarget","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#assertionProperty\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"assertionProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the predicate of a negative property assertion.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the predicate of a negative property assertion.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#NegativePropertyAssertion\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"assertionProperty\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"assertionProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"assertionProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"assertionProperty","definedBy":["owl"],"definition":"The property that determines the predicate of a negative property assertion.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the predicate of a negative property assertion.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#NegativePropertyAssertion","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"assertionProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+property+http://www.w3.org/2002/07/owl#assertionProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#assertionProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"assertionProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"assertionProperty","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#backwardCompatibleWith\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"backwardCompatibleWith\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The annotation property that indicates that a given ontology is backward compatible with another ontology.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2002/07/owl#OntologyProperty\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The annotation property that indicates that a given ontology is backward compatible with another ontology.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Ontology\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"backwardCompatibleWith\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Ontology\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"backwardCompatibleWith\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"backwardCompatibleWith\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"backwardCompatibleWith","definedBy":["owl"],"definition":"The annotation property that indicates that a given ontology is backward compatible with another ontology.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/2002/07/owl#OntologyProperty"],"http__//www.w3.org/2000/01/rdf-schema#comment":"The annotation property that indicates that a given ontology is backward compatible with another ontology.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Ontology","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"backwardCompatibleWith","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Ontology","id":"owl+property+http://www.w3.org/2002/07/owl#backwardCompatibleWith","imported":"false","iri":"http://www.w3.org/2002/07/owl#backwardCompatibleWith","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"backwardCompatibleWith","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"backwardCompatibleWith","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#bottomDataProperty\",\"type\":[\"dataProperty\",\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"bottomDataProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The data property that does not relate any individual to any data value.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#DatatypeProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The data property that does not relate any individual to any data value.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Thing\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"bottomDataProperty\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"bottomDataProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"bottomDataProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Literal\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"bottomDataProperty","definedBy":["owl"],"definition":"The data property that does not relate any individual to any data value.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#DatatypeProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"The data property that does not relate any individual to any data value.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Thing","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"bottomDataProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Literal","id":"owl+property+http://www.w3.org/2002/07/owl#bottomDataProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#bottomDataProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"bottomDataProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"bottomDataProperty","type":["dataProperty","property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#bottomObjectProperty\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"bottomObjectProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The object property that does not relate any two individuals.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The object property that does not relate any two individuals.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Thing\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"bottomObjectProperty\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"bottomObjectProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"bottomObjectProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"bottomObjectProperty","definedBy":["owl"],"definition":"The object property that does not relate any two individuals.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"The object property that does not relate any two individuals.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Thing","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"bottomObjectProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Thing","id":"owl+property+http://www.w3.org/2002/07/owl#bottomObjectProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#bottomObjectProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"bottomObjectProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"bottomObjectProperty","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#cardinality\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"cardinality\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of an exact cardinality restriction.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of an exact cardinality restriction.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cardinality\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cardinality\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"cardinality\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"cardinality","definedBy":["owl"],"definition":"The property that determines the cardinality of an exact cardinality restriction.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the cardinality of an exact cardinality restriction.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"cardinality","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#nonNegativeInteger","id":"owl+property+http://www.w3.org/2002/07/owl#cardinality","imported":"false","iri":"http://www.w3.org/2002/07/owl#cardinality","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"cardinality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"cardinality","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#complementOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"complementOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that a given class is the complement of another class.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that a given class is the complement of another class.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"complementOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"complementOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"complementOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"complementOf","definedBy":["owl"],"definition":"The property that determines that a given class is the complement of another class.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that a given class is the complement of another class.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"complementOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Class","id":"owl+property+http://www.w3.org/2002/07/owl#complementOf","imported":"false","iri":"http://www.w3.org/2002/07/owl#complementOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"complementOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"complementOf","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#datatypeComplementOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"datatypeComplementOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that a given data range is the complement of another data range with respect to the data domain.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that a given data range is the complement of another data range with respect to the data domain.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"datatypeComplementOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"datatypeComplementOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"datatypeComplementOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Datatype\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"datatypeComplementOf","definedBy":["owl"],"definition":"The property that determines that a given data range is the complement of another data range with respect to the data domain.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that a given data range is the complement of another data range with respect to the data domain.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Datatype","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"datatypeComplementOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Datatype","id":"owl+property+http://www.w3.org/2002/07/owl#datatypeComplementOf","imported":"false","iri":"http://www.w3.org/2002/07/owl#datatypeComplementOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"datatypeComplementOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"datatypeComplementOf","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#deprecated\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"deprecated\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The annotation property that indicates that a given entity has been deprecated.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The annotation property that indicates that a given entity has been deprecated.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"deprecated\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"deprecated\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"deprecated\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"deprecated","definedBy":["owl"],"definition":"The annotation property that indicates that a given entity has been deprecated.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"The annotation property that indicates that a given entity has been deprecated.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"deprecated","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2002/07/owl#deprecated","imported":"false","iri":"http://www.w3.org/2002/07/owl#deprecated","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"deprecated","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"deprecated","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#differentFrom\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"differentFrom\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given individuals are different.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given individuals are different.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Thing\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"differentFrom\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"differentFrom\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"differentFrom\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"differentFrom","definedBy":["owl"],"definition":"The property that determines that two given individuals are different.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that two given individuals are different.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Thing","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"differentFrom","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Thing","id":"owl+property+http://www.w3.org/2002/07/owl#differentFrom","imported":"false","iri":"http://www.w3.org/2002/07/owl#differentFrom","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"differentFrom","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"differentFrom","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#disjointUnionOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"disjointUnionOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disjointUnionOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disjointUnionOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"disjointUnionOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"disjointUnionOf","definedBy":["owl"],"definition":"The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"disjointUnionOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#disjointUnionOf","imported":"false","iri":"http://www.w3.org/2002/07/owl#disjointUnionOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"disjointUnionOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"disjointUnionOf","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#disjointWith\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"disjointWith\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given classes are disjoint.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given classes are disjoint.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disjointWith\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disjointWith\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"disjointWith\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"disjointWith","definedBy":["owl"],"definition":"The property that determines that two given classes are disjoint.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that two given classes are disjoint.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"disjointWith","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Class","id":"owl+property+http://www.w3.org/2002/07/owl#disjointWith","imported":"false","iri":"http://www.w3.org/2002/07/owl#disjointWith","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"disjointWith","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"disjointWith","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#distinctMembers\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"distinctMembers\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#AllDifferent\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"distinctMembers\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"distinctMembers\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"distinctMembers\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"distinctMembers","definedBy":["owl"],"definition":"The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#AllDifferent","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"distinctMembers","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#distinctMembers","imported":"false","iri":"http://www.w3.org/2002/07/owl#distinctMembers","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"distinctMembers","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"distinctMembers","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#equivalentClass\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"equivalentClass\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"equivalentClass\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"equivalentClass\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"equivalentClass\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"equivalentClass","definedBy":["owl"],"definition":"The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"equivalentClass","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+property+http://www.w3.org/2002/07/owl#equivalentClass","imported":"false","iri":"http://www.w3.org/2002/07/owl#equivalentClass","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"equivalentClass","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"equivalentClass","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#equivalentProperty\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"equivalentProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given properties are equivalent.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given properties are equivalent.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"equivalentProperty\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"equivalentProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"equivalentProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"equivalentProperty","definedBy":["owl"],"definition":"The property that determines that two given properties are equivalent.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that two given properties are equivalent.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"equivalentProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+property+http://www.w3.org/2002/07/owl#equivalentProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#equivalentProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"equivalentProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"equivalentProperty","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#hasKey\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"hasKey\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of properties that jointly build a key.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of properties that jointly build a key.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hasKey\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasKey\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"hasKey\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"hasKey","definedBy":["owl"],"definition":"The property that determines the collection of properties that jointly build a key.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the collection of properties that jointly build a key.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"hasKey","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#hasKey","imported":"false","iri":"http://www.w3.org/2002/07/owl#hasKey","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"hasKey","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"hasKey","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#hasSelf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"hasSelf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the property that a self restriction refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the property that a self restriction refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hasSelf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasSelf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"hasSelf\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"hasSelf","definedBy":["owl"],"definition":"The property that determines the property that a self restriction refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the property that a self restriction refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"hasSelf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2002/07/owl#hasSelf","imported":"false","iri":"http://www.w3.org/2002/07/owl#hasSelf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"hasSelf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"hasSelf","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#hasValue\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"hasValue\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the individual that a has-value restriction refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the individual that a has-value restriction refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hasValue\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasValue\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"hasValue\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"hasValue","definedBy":["owl"],"definition":"The property that determines the individual that a has-value restriction refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the individual that a has-value restriction refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"hasValue","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2002/07/owl#hasValue","imported":"false","iri":"http://www.w3.org/2002/07/owl#hasValue","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"hasValue","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"hasValue","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#incompatibleWith\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"incompatibleWith\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The annotation property that indicates that a given ontology is incompatible with another ontology.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2002/07/owl#OntologyProperty\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The annotation property that indicates that a given ontology is incompatible with another ontology.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Ontology\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"incompatibleWith\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Ontology\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"incompatibleWith\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"incompatibleWith\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"incompatibleWith","definedBy":["owl"],"definition":"The annotation property that indicates that a given ontology is incompatible with another ontology.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/2002/07/owl#OntologyProperty"],"http__//www.w3.org/2000/01/rdf-schema#comment":"The annotation property that indicates that a given ontology is incompatible with another ontology.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Ontology","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"incompatibleWith","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Ontology","id":"owl+property+http://www.w3.org/2002/07/owl#incompatibleWith","imported":"false","iri":"http://www.w3.org/2002/07/owl#incompatibleWith","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"incompatibleWith","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"incompatibleWith","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#intersectionOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"intersectionOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of classes or data ranges that build an intersection.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of classes or data ranges that build an intersection.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"intersectionOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"intersectionOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"intersectionOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"intersectionOf","definedBy":["owl"],"definition":"The property that determines the collection of classes or data ranges that build an intersection.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the collection of classes or data ranges that build an intersection.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"intersectionOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#intersectionOf","imported":"false","iri":"http://www.w3.org/2002/07/owl#intersectionOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"intersectionOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"intersectionOf","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#inverseOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"inverseOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given properties are inverse.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given properties are inverse.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"inverseOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"inverseOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"inverseOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"inverseOf","definedBy":["owl"],"definition":"The property that determines that two given properties are inverse.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that two given properties are inverse.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"inverseOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#ObjectProperty","id":"owl+property+http://www.w3.org/2002/07/owl#inverseOf","imported":"false","iri":"http://www.w3.org/2002/07/owl#inverseOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"inverseOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"inverseOf","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#maxCardinality\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"maxCardinality\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of a maximum cardinality restriction.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of a maximum cardinality restriction.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"maxCardinality\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"maxCardinality\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"maxCardinality\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"maxCardinality","definedBy":["owl"],"definition":"The property that determines the cardinality of a maximum cardinality restriction.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the cardinality of a maximum cardinality restriction.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"maxCardinality","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#nonNegativeInteger","id":"owl+property+http://www.w3.org/2002/07/owl#maxCardinality","imported":"false","iri":"http://www.w3.org/2002/07/owl#maxCardinality","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"maxCardinality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"maxCardinality","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#maxQualifiedCardinality\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"maxQualifiedCardinality\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of a maximum qualified cardinality restriction.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of a maximum qualified cardinality restriction.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"maxQualifiedCardinality\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"maxQualifiedCardinality\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"maxQualifiedCardinality\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"maxQualifiedCardinality","definedBy":["owl"],"definition":"The property that determines the cardinality of a maximum qualified cardinality restriction.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the cardinality of a maximum qualified cardinality restriction.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"maxQualifiedCardinality","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#nonNegativeInteger","id":"owl+property+http://www.w3.org/2002/07/owl#maxQualifiedCardinality","imported":"false","iri":"http://www.w3.org/2002/07/owl#maxQualifiedCardinality","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"maxQualifiedCardinality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"maxQualifiedCardinality","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#members\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"members\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"members\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"members\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"members\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"members","definedBy":["owl"],"definition":"The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"members","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#members","imported":"false","iri":"http://www.w3.org/2002/07/owl#members","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"members","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"members","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#minCardinality\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"minCardinality\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of a minimum cardinality restriction.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of a minimum cardinality restriction.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"minCardinality\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"minCardinality\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"minCardinality\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"minCardinality","definedBy":["owl"],"definition":"The property that determines the cardinality of a minimum cardinality restriction.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the cardinality of a minimum cardinality restriction.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"minCardinality","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#nonNegativeInteger","id":"owl+property+http://www.w3.org/2002/07/owl#minCardinality","imported":"false","iri":"http://www.w3.org/2002/07/owl#minCardinality","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"minCardinality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"minCardinality","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#minQualifiedCardinality\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"minQualifiedCardinality\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of a minimum qualified cardinality restriction.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of a minimum qualified cardinality restriction.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"minQualifiedCardinality\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"minQualifiedCardinality\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"minQualifiedCardinality\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"minQualifiedCardinality","definedBy":["owl"],"definition":"The property that determines the cardinality of a minimum qualified cardinality restriction.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the cardinality of a minimum qualified cardinality restriction.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"minQualifiedCardinality","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#nonNegativeInteger","id":"owl+property+http://www.w3.org/2002/07/owl#minQualifiedCardinality","imported":"false","iri":"http://www.w3.org/2002/07/owl#minQualifiedCardinality","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"minQualifiedCardinality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"minQualifiedCardinality","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#onClass\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"onClass\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the class that a qualified object cardinality restriction refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the class that a qualified object cardinality restriction refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"onClass\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"onClass\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"onClass\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"onClass","definedBy":["owl"],"definition":"The property that determines the class that a qualified object cardinality restriction refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the class that a qualified object cardinality restriction refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"onClass","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Class","id":"owl+property+http://www.w3.org/2002/07/owl#onClass","imported":"false","iri":"http://www.w3.org/2002/07/owl#onClass","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"onClass","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"onClass","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#onDataRange\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"onDataRange\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the data range that a qualified data cardinality restriction refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the data range that a qualified data cardinality restriction refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"onDataRange\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"onDataRange\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"onDataRange\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Datatype\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"onDataRange","definedBy":["owl"],"definition":"The property that determines the data range that a qualified data cardinality restriction refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the data range that a qualified data cardinality restriction refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"onDataRange","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Datatype","id":"owl+property+http://www.w3.org/2002/07/owl#onDataRange","imported":"false","iri":"http://www.w3.org/2002/07/owl#onDataRange","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"onDataRange","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"onDataRange","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#onDatatype\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"onDatatype\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the datatype that a datatype restriction refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the datatype that a datatype restriction refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"onDatatype\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"onDatatype\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"onDatatype\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Datatype\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"onDatatype","definedBy":["owl"],"definition":"The property that determines the datatype that a datatype restriction refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the datatype that a datatype restriction refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Datatype","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"onDatatype","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Datatype","id":"owl+property+http://www.w3.org/2002/07/owl#onDatatype","imported":"false","iri":"http://www.w3.org/2002/07/owl#onDatatype","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"onDatatype","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"onDatatype","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#onProperties\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"onProperties\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"onProperties\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"onProperties\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"onProperties\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"onProperties","definedBy":["owl"],"definition":"The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"onProperties","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#onProperties","imported":"false","iri":"http://www.w3.org/2002/07/owl#onProperties","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"onProperties","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"onProperties","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#onProperty\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"onProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the property that a property restriction refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the property that a property restriction refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"onProperty\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"onProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"onProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"onProperty","definedBy":["owl"],"definition":"The property that determines the property that a property restriction refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the property that a property restriction refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"onProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+property+http://www.w3.org/2002/07/owl#onProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#onProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"onProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"onProperty","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#oneOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"oneOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of individuals or data values that build an enumeration.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of individuals or data values that build an enumeration.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oneOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"oneOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"oneOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"oneOf","definedBy":["owl"],"definition":"The property that determines the collection of individuals or data values that build an enumeration.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the collection of individuals or data values that build an enumeration.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"oneOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#oneOf","imported":"false","iri":"http://www.w3.org/2002/07/owl#oneOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"oneOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"oneOf","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#priorVersion\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"priorVersion\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The annotation property that indicates the predecessor ontology of a given ontology.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2002/07/owl#OntologyProperty\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The annotation property that indicates the predecessor ontology of a given ontology.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Ontology\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"priorVersion\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Ontology\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"priorVersion\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"priorVersion\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"priorVersion","definedBy":["owl"],"definition":"The annotation property that indicates the predecessor ontology of a given ontology.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/2002/07/owl#OntologyProperty"],"http__//www.w3.org/2000/01/rdf-schema#comment":"The annotation property that indicates the predecessor ontology of a given ontology.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Ontology","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"priorVersion","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Ontology","id":"owl+property+http://www.w3.org/2002/07/owl#priorVersion","imported":"false","iri":"http://www.w3.org/2002/07/owl#priorVersion","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"priorVersion","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"priorVersion","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#propertyChainAxiom\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"propertyChainAxiom\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the n-tuple of properties that build a sub property chain of a given property.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the n-tuple of properties that build a sub property chain of a given property.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"propertyChainAxiom\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"propertyChainAxiom\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"propertyChainAxiom\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"propertyChainAxiom","definedBy":["owl"],"definition":"The property that determines the n-tuple of properties that build a sub property chain of a given property.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the n-tuple of properties that build a sub property chain of a given property.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"propertyChainAxiom","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#propertyChainAxiom","imported":"false","iri":"http://www.w3.org/2002/07/owl#propertyChainAxiom","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"propertyChainAxiom","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"propertyChainAxiom","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#propertyDisjointWith\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"propertyDisjointWith\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given properties are disjoint.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given properties are disjoint.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"propertyDisjointWith\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"propertyDisjointWith\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"propertyDisjointWith\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"propertyDisjointWith","definedBy":["owl"],"definition":"The property that determines that two given properties are disjoint.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that two given properties are disjoint.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"propertyDisjointWith","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+property+http://www.w3.org/2002/07/owl#propertyDisjointWith","imported":"false","iri":"http://www.w3.org/2002/07/owl#propertyDisjointWith","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"propertyDisjointWith","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"propertyDisjointWith","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#qualifiedCardinality\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"qualifiedCardinality\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of an exact qualified cardinality restriction.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of an exact qualified cardinality restriction.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"qualifiedCardinality\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"qualifiedCardinality\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"qualifiedCardinality\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"qualifiedCardinality","definedBy":["owl"],"definition":"The property that determines the cardinality of an exact qualified cardinality restriction.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the cardinality of an exact qualified cardinality restriction.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"qualifiedCardinality","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#nonNegativeInteger","id":"owl+property+http://www.w3.org/2002/07/owl#qualifiedCardinality","imported":"false","iri":"http://www.w3.org/2002/07/owl#qualifiedCardinality","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"qualifiedCardinality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"qualifiedCardinality","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#sameAs\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"sameAs\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given individuals are equal.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given individuals are equal.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Thing\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"sameAs\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"sameAs\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"sameAs\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"sameAs","definedBy":["owl"],"definition":"The property that determines that two given individuals are equal.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that two given individuals are equal.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Thing","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"sameAs","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Thing","id":"owl+property+http://www.w3.org/2002/07/owl#sameAs","imported":"false","iri":"http://www.w3.org/2002/07/owl#sameAs","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"sameAs","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"sameAs","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#someValuesFrom\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"someValuesFrom\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the class that an existential property restriction refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the class that an existential property restriction refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"someValuesFrom\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"someValuesFrom\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"someValuesFrom\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"someValuesFrom","definedBy":["owl"],"definition":"The property that determines the class that an existential property restriction refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the class that an existential property restriction refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"someValuesFrom","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+property+http://www.w3.org/2002/07/owl#someValuesFrom","imported":"false","iri":"http://www.w3.org/2002/07/owl#someValuesFrom","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"someValuesFrom","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"someValuesFrom","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#sourceIndividual\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"sourceIndividual\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the subject of a negative property assertion.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the subject of a negative property assertion.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#NegativePropertyAssertion\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"sourceIndividual\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"sourceIndividual\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"sourceIndividual\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"sourceIndividual","definedBy":["owl"],"definition":"The property that determines the subject of a negative property assertion.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the subject of a negative property assertion.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#NegativePropertyAssertion","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"sourceIndividual","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Thing","id":"owl+property+http://www.w3.org/2002/07/owl#sourceIndividual","imported":"false","iri":"http://www.w3.org/2002/07/owl#sourceIndividual","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"sourceIndividual","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"sourceIndividual","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#targetIndividual\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"targetIndividual\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the object of a negative object property assertion.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the object of a negative object property assertion.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#NegativePropertyAssertion\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"targetIndividual\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"targetIndividual\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"targetIndividual\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"targetIndividual","definedBy":["owl"],"definition":"The property that determines the object of a negative object property assertion.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the object of a negative object property assertion.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#NegativePropertyAssertion","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"targetIndividual","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Thing","id":"owl+property+http://www.w3.org/2002/07/owl#targetIndividual","imported":"false","iri":"http://www.w3.org/2002/07/owl#targetIndividual","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"targetIndividual","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"targetIndividual","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#targetValue\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"targetValue\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the value of a negative data property assertion.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the value of a negative data property assertion.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#NegativePropertyAssertion\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"targetValue\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"targetValue\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"targetValue\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Literal\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"targetValue","definedBy":["owl"],"definition":"The property that determines the value of a negative data property assertion.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the value of a negative data property assertion.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#NegativePropertyAssertion","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"targetValue","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Literal","id":"owl+property+http://www.w3.org/2002/07/owl#targetValue","imported":"false","iri":"http://www.w3.org/2002/07/owl#targetValue","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"targetValue","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"targetValue","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#topDataProperty\",\"type\":[\"dataProperty\",\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"topDataProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The data property that relates every individual to every data value.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#DatatypeProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The data property that relates every individual to every data value.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Thing\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"topDataProperty\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"topDataProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"topDataProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Literal\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"topDataProperty","definedBy":["owl"],"definition":"The data property that relates every individual to every data value.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#DatatypeProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"The data property that relates every individual to every data value.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Thing","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"topDataProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Literal","id":"owl+property+http://www.w3.org/2002/07/owl#topDataProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#topDataProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"topDataProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"topDataProperty","type":["dataProperty","property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#topObjectProperty\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"topObjectProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The object property that relates every two individuals.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The object property that relates every two individuals.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Thing\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"topObjectProperty\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"topObjectProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"topObjectProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"topObjectProperty","definedBy":["owl"],"definition":"The object property that relates every two individuals.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"The object property that relates every two individuals.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Thing","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"topObjectProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Thing","id":"owl+property+http://www.w3.org/2002/07/owl#topObjectProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#topObjectProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"topObjectProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"topObjectProperty","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#unionOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"unionOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of classes or data ranges that build a union.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of classes or data ranges that build a union.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"unionOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"unionOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"unionOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"unionOf","definedBy":["owl"],"definition":"The property that determines the collection of classes or data ranges that build a union.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the collection of classes or data ranges that build a union.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"unionOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#unionOf","imported":"false","iri":"http://www.w3.org/2002/07/owl#unionOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"unionOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"unionOf","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#versionInfo\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"versionInfo\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The annotation property that provides version information for an ontology or another OWL construct.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The annotation property that provides version information for an ontology or another OWL construct.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"versionInfo\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"versionInfo\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"versionInfo\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"versionInfo","definedBy":["owl"],"definition":"The annotation property that provides version information for an ontology or another OWL construct.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"The annotation property that provides version information for an ontology or another OWL construct.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"versionInfo","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2002/07/owl#versionInfo","imported":"false","iri":"http://www.w3.org/2002/07/owl#versionInfo","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"versionInfo","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"versionInfo","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#withRestrictions\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"withRestrictions\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of facet-value pairs that define a datatype restriction.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of facet-value pairs that define a datatype restriction.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"withRestrictions\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"withRestrictions\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"withRestrictions\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Datatype\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"withRestrictions","definedBy":["owl"],"definition":"The property that determines the collection of facet-value pairs that define a datatype restriction.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the collection of facet-value pairs that define a datatype restriction.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Datatype","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"withRestrictions","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#withRestrictions","imported":"false","iri":"http://www.w3.org/2002/07/owl#withRestrictions","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"withRestrictions","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"withRestrictions","type":["property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#altLabel\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"altLabel\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The range of skos:altLabel is the class of RDF plain literals.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.\",\"lang\":\"en\"}],\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The range of skos:altLabel is the class of RDF plain literals.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.\",\"lang\":\"en\"}],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An alternative lexical label for a resource.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#example\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel).\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An alternative lexical label for a resource.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel).\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"altLabel\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#example\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"example\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"altLabel","definedBy":["skos"],"definition":["The range of skos:altLabel is the class of RDF plain literals.","skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."],"definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":["The range of skos:altLabel is the class of RDF plain literals.","skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"alternative label","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2000/01/rdf-schema#label","http__//www.w3.org/2004/02/skos/core#definition":"An alternative lexical label for a resource.","http__//www.w3.org/2004/02/skos/core#example":"Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel).","id":"skos+property+http://www.w3.org/2004/02/skos/core#altLabel","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#altLabel","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"alternative label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["An alternative lexical label for a resource.","Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel).","false"],"shortForm":"altLabel","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#broadMatch\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"broadMatch\"},\"directAncestor\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"http://www.w3.org/2004/02/skos/core#broader\",\"http://www.w3.org/2004/02/skos/core#broaderTransitive\"],\"directParent\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#broader\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader match\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#broader\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://www.w3.org/2004/02/skos/core#narrowMatch\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader match\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"broadMatch\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#broaderTransitive\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader transitive\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"broaderTransitive\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#mappingRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in mapping relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"mappingRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#broader\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"broader\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#narrowMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"narrowMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"broadMatch","definedBy":["skos"],"directAncestor":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#semanticRelation","http://www.w3.org/2004/02/skos/core#broader","http://www.w3.org/2004/02/skos/core#broaderTransitive"],"directParent":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#broader"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has broader match","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#broader"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://www.w3.org/2004/02/skos/core#narrowMatch","http__//www.w3.org/2004/02/skos/core#definition":"skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.","id":"skos+property+http://www.w3.org/2004/02/skos/core#broadMatch","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#broadMatch","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has broader match","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.","false"],"shortForm":"broadMatch","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#broader\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"broader\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Broader concepts are typically rendered as parents in a concept hierarchy (tree).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2004/02/skos/core#broaderTransitive\",\"http://www.w3.org/2004/02/skos/core#semanticRelation\"],\"directParent\":\"http://www.w3.org/2004/02/skos/core#broaderTransitive\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Broader concepts are typically rendered as parents in a concept hierarchy (tree).\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#broaderTransitive\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://www.w3.org/2004/02/skos/core#narrower\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a concept to a concept that is more general in meaning.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a concept to a concept that is more general in meaning.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"broader\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#broaderTransitive\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader transitive\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"broaderTransitive\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#narrower\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"narrower\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"broader","definedBy":["skos"],"definition":"Broader concepts are typically rendered as parents in a concept hierarchy (tree).","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2004/02/skos/core#broaderTransitive","http://www.w3.org/2004/02/skos/core#semanticRelation"],"directParent":"http://www.w3.org/2004/02/skos/core#broaderTransitive","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":"Broader concepts are typically rendered as parents in a concept hierarchy (tree).","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has broader","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#broaderTransitive","http__//www.w3.org/2002/07/owl#inverseOf":"http://www.w3.org/2004/02/skos/core#narrower","http__//www.w3.org/2004/02/skos/core#definition":"Relates a concept to a concept that is more general in meaning.","http__//www.w3.org/2004/02/skos/core#scopeNote":"By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.","id":"skos+property+http://www.w3.org/2004/02/skos/core#broader","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#broader","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has broader","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates a concept to a concept that is more general in meaning.","By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.","false"],"shortForm":"broader","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#broaderTransitive\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"broaderTransitive\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader transitive\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"value\":\"skos:broaderTransitive is a transitive superproperty of skos:broader.\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader transitive\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"skos:broaderTransitive is a transitive superproperty of skos:broader.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"broaderTransitive\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower transitive\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"narrowerTransitive\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"broaderTransitive","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#semanticRelation","directParent":"http://www.w3.org/2004/02/skos/core#semanticRelation","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has broader transitive","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#semanticRelation","http__//www.w3.org/2002/07/owl#inverseOf":"http://www.w3.org/2004/02/skos/core#narrowerTransitive","http__//www.w3.org/2004/02/skos/core#definition":"skos:broaderTransitive is a transitive superproperty of skos:broader.","http__//www.w3.org/2004/02/skos/core#scopeNote":"By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.","id":"skos+property+http://www.w3.org/2004/02/skos/core#broaderTransitive","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#broaderTransitive","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has broader transitive","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["skos:broaderTransitive is a transitive superproperty of skos:broader.","By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.","false"],"shortForm":"broaderTransitive","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#changeNote\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"changeNote\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#note\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#note\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"change note\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#note\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A note about a modification to a concept.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"change note\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A note about a modification to a concept.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"changeNote\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#note\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"note\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"changeNote","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#note","directParent":"http://www.w3.org/2004/02/skos/core#note","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"change note","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#note","http__//www.w3.org/2004/02/skos/core#definition":"A note about a modification to a concept.","id":"skos+property+http://www.w3.org/2004/02/skos/core#changeNote","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#changeNote","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"change note","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A note about a modification to a concept.","false"],"shortForm":"changeNote","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#closeMatch\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"closeMatch\"},\"directAncestor\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#semanticRelation\"],\"directParent\":\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#SymmetricProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has close match\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of \\\"compound errors\\\" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has close match\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of \\\"compound errors\\\" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"closeMatch\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"gitissue502\",\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#mappingRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in mapping relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"mappingRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502","skos"],"curie":"closeMatch","definedBy":["skos"],"directAncestor":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#semanticRelation"],"directParent":"http://www.w3.org/2004/02/skos/core#mappingRelation","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has close match","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#mappingRelation","http__//www.w3.org/2004/02/skos/core#definition":"skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of \"compound errors\" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property.","id":"skos+property+http://www.w3.org/2004/02/skos/core#closeMatch","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#closeMatch","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has close match","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of \"compound errors\" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property.","false"],"shortForm":"closeMatch","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#definition\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#note\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#note\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#note\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A statement or formal explanation of the meaning of a concept.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A statement or formal explanation of the meaning of a concept.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#note\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"note\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"definition","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#note","directParent":"http://www.w3.org/2004/02/skos/core#note","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"definition","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#note","http__//www.w3.org/2004/02/skos/core#definition":"A statement or formal explanation of the meaning of a concept.","id":"skos+property+http://www.w3.org/2004/02/skos/core#definition","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#definition","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"definition","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A statement or formal explanation of the meaning of a concept.","false"],"shortForm":"definition","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#editorialNote\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"editorialNote\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#note\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#note\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editorial note\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#note\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A note for an editor, translator or maintainer of the vocabulary.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editorial note\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A note for an editor, translator or maintainer of the vocabulary.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"editorialNote\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#note\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"note\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"editorialNote","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#note","directParent":"http://www.w3.org/2004/02/skos/core#note","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"editorial note","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#note","http__//www.w3.org/2004/02/skos/core#definition":"A note for an editor, translator or maintainer of the vocabulary.","id":"skos+property+http://www.w3.org/2004/02/skos/core#editorialNote","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#editorialNote","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"editorial note","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A note for an editor, translator or maintainer of the vocabulary.","false"],"shortForm":"editorialNote","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#exactMatch\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2004/02/skos/core#closeMatch\",\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#semanticRelation\"],\"directParent\":\"http://www.w3.org/2004/02/skos/core#closeMatch\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#SymmetricProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch.\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#closeMatch\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"gitissue502\",\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#mappingRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in mapping relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"mappingRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#closeMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has close match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"closeMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502","skos"],"curie":"exactMatch","definedBy":["skos"],"definition":"skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2004/02/skos/core#closeMatch","http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#semanticRelation"],"directParent":"http://www.w3.org/2004/02/skos/core#closeMatch","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty","http://www.w3.org/2002/07/owl#TransitiveProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":"skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has exact match","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#closeMatch","http__//www.w3.org/2004/02/skos/core#definition":"skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch.","id":"skos+property+http://www.w3.org/2004/02/skos/core#exactMatch","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#exactMatch","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has exact match","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch.","false"],"shortForm":"exactMatch","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#example\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"example\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#note\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#note\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#note\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An example of the use of a concept.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An example of the use of a concept.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"example\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#note\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"note\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"example","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#note","directParent":"http://www.w3.org/2004/02/skos/core#note","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"example","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#note","http__//www.w3.org/2004/02/skos/core#definition":"An example of the use of a concept.","id":"skos+property+http://www.w3.org/2004/02/skos/core#example","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#example","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"example","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["An example of the use of a concept.","false"],"shortForm":"example","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#hasTopConcept\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"hasTopConcept\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2004/02/skos/core#ConceptScheme\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has top concept\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2004/02/skos/core#Concept\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://www.w3.org/2004/02/skos/core#topConceptOf\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has top concept\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"hasTopConcept\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#Concept\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Concept\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#topConceptOf\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is top concept in scheme\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"topConceptOf\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#ConceptScheme\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept Scheme\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ConceptScheme\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"hasTopConcept","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2004/02/skos/core#ConceptScheme","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has top concept","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2004/02/skos/core#Concept","http__//www.w3.org/2002/07/owl#inverseOf":"http://www.w3.org/2004/02/skos/core#topConceptOf","http__//www.w3.org/2004/02/skos/core#definition":"Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies.","id":"skos+property+http://www.w3.org/2004/02/skos/core#hasTopConcept","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#hasTopConcept","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has top concept","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies.","false"],"shortForm":"hasTopConcept","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#hiddenLabel\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"hiddenLabel\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The range of skos:hiddenLabel is the class of RDF plain literals.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.\",\"lang\":\"en\"}],\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The range of skos:hiddenLabel is the class of RDF plain literals.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.\",\"lang\":\"en\"}],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"hidden label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"hidden label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"hiddenLabel\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"hiddenLabel","definedBy":["skos"],"definition":["The range of skos:hiddenLabel is the class of RDF plain literals.","skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."],"definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":["The range of skos:hiddenLabel is the class of RDF plain literals.","skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"hidden label","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2000/01/rdf-schema#label","http__//www.w3.org/2004/02/skos/core#definition":"A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations.","id":"skos+property+http://www.w3.org/2004/02/skos/core#hiddenLabel","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#hiddenLabel","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"hidden label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations.","false"],"shortForm":"hiddenLabel","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#historyNote\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"historyNote\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#note\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#note\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"history note\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#note\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A note about the past state/use/meaning of a concept.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"history note\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A note about the past state/use/meaning of a concept.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"historyNote\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#note\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"note\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"historyNote","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#note","directParent":"http://www.w3.org/2004/02/skos/core#note","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"history note","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#note","http__//www.w3.org/2004/02/skos/core#definition":"A note about the past state/use/meaning of a concept.","id":"skos+property+http://www.w3.org/2004/02/skos/core#historyNote","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#historyNote","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"history note","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A note about the past state/use/meaning of a concept.","false"],"shortForm":"historyNote","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#inScheme\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"inScheme\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in scheme\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2004/02/skos/core#ConceptScheme\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a resource (for example a concept) to a concept scheme in which it is included.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A concept may be a member of more than one concept scheme.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in scheme\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a resource (for example a concept) to a concept scheme in which it is included.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A concept may be a member of more than one concept scheme.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"inScheme\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#ConceptScheme\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept Scheme\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ConceptScheme\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"inScheme","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"is in scheme","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2004/02/skos/core#ConceptScheme","http__//www.w3.org/2004/02/skos/core#definition":"Relates a resource (for example a concept) to a concept scheme in which it is included.","http__//www.w3.org/2004/02/skos/core#scopeNote":"A concept may be a member of more than one concept scheme.","id":"skos+property+http://www.w3.org/2004/02/skos/core#inScheme","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#inScheme","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"is in scheme","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates a resource (for example a concept) to a concept scheme in which it is included.","A concept may be a member of more than one concept scheme.","false"],"shortForm":"inScheme","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"mappingRelation\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice.\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in mapping relation with\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates two concepts coming, by convention, from different schemes, and that have comparable meanings\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in mapping relation with\",\"lang\":\"en\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates two concepts coming, by convention, from different schemes, and that have comparable meanings\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"mappingRelation\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"mappingRelation","definedBy":["skos"],"definition":"These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2004/02/skos/core#semanticRelation","directParent":"http://www.w3.org/2004/02/skos/core#semanticRelation","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":"These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"is in mapping relation with","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#semanticRelation","http__//www.w3.org/2004/02/skos/core#definition":"Relates two concepts coming, by convention, from different schemes, and that have comparable meanings","id":"skos+property+http://www.w3.org/2004/02/skos/core#mappingRelation","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#mappingRelation","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"is in mapping relation with","numDescendants":"5.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates two concepts coming, by convention, from different schemes, and that have comparable meanings","false"],"shortForm":"mappingRelation","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#member\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"member\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2004/02/skos/core#Collection\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has member\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#unionOf\":[\"http://www.w3.org/2004/02/skos/core#Concept\",\"http://www.w3.org/2004/02/skos/core#Collection\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a collection to one of its members.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has member\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a collection to one of its members.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"member\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#Collection\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Collection\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Collection\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#Concept\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Concept\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"member","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2004/02/skos/core#Collection","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has member","http__//www.w3.org/2004/02/skos/core#definition":"Relates a collection to one of its members.","id":"skos+property+http://www.w3.org/2004/02/skos/core#member","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#member","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has member","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates a collection to one of its members.","false"],"shortForm":"member","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#memberList\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"memberList\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For any resource, every item in the list given as the value of the\\n skos:memberList property is also a value of the skos:member property.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For any resource, every item in the list given as the value of the\\n skos:memberList property is also a value of the skos:member property.\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2004/02/skos/core#OrderedCollection\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has member list\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ordered collection to the RDF list containing its members.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has member list\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ordered collection to the RDF list containing its members.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"memberList\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#OrderedCollection\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ordered Collection\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OrderedCollection\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["skos"],"curie":"memberList","definedBy":["skos"],"definition":"For any resource, every item in the list given as the value of the\n skos:memberList property is also a value of the skos:member property.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#FunctionalProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":"For any resource, every item in the list given as the value of the\n skos:memberList property is also a value of the skos:member property.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2004/02/skos/core#OrderedCollection","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has member list","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","http__//www.w3.org/2004/02/skos/core#definition":"Relates an ordered collection to the RDF list containing its members.","id":"skos+property+http://www.w3.org/2004/02/skos/core#memberList","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#memberList","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has member list","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates an ordered collection to the RDF list containing its members.","false"],"shortForm":"memberList","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#narrowMatch\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"narrowMatch\"},\"directAncestor\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"http://www.w3.org/2004/02/skos/core#narrower\",\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\"],\"directParent\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#narrower\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower match\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#narrower\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://www.w3.org/2004/02/skos/core#broadMatch\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower match\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"narrowMatch\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#mappingRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in mapping relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"mappingRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower transitive\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"narrowerTransitive\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#narrower\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"narrower\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#broadMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"broadMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"narrowMatch","definedBy":["skos"],"directAncestor":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#semanticRelation","http://www.w3.org/2004/02/skos/core#narrower","http://www.w3.org/2004/02/skos/core#narrowerTransitive"],"directParent":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#narrower"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has narrower match","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#narrower"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://www.w3.org/2004/02/skos/core#broadMatch","http__//www.w3.org/2004/02/skos/core#definition":"skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.","id":"skos+property+http://www.w3.org/2004/02/skos/core#narrowMatch","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#narrowMatch","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has narrower match","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.","false"],"shortForm":"narrowMatch","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#narrower\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"narrower\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Narrower concepts are typically rendered as children in a concept hierarchy (tree).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\",\"http://www.w3.org/2004/02/skos/core#semanticRelation\"],\"directParent\":\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Narrower concepts are typically rendered as children in a concept hierarchy (tree).\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://www.w3.org/2004/02/skos/core#broader\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a concept to a concept that is more specific in meaning.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a concept to a concept that is more specific in meaning.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"narrower\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower transitive\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"narrowerTransitive\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#broader\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"broader\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"narrower","definedBy":["skos"],"definition":"Narrower concepts are typically rendered as children in a concept hierarchy (tree).","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2004/02/skos/core#narrowerTransitive","http://www.w3.org/2004/02/skos/core#semanticRelation"],"directParent":"http://www.w3.org/2004/02/skos/core#narrowerTransitive","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":"Narrower concepts are typically rendered as children in a concept hierarchy (tree).","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has narrower","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#narrowerTransitive","http__//www.w3.org/2002/07/owl#inverseOf":"http://www.w3.org/2004/02/skos/core#broader","http__//www.w3.org/2004/02/skos/core#definition":"Relates a concept to a concept that is more specific in meaning.","http__//www.w3.org/2004/02/skos/core#scopeNote":"By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.","id":"skos+property+http://www.w3.org/2004/02/skos/core#narrower","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#narrower","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has narrower","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates a concept to a concept that is more specific in meaning.","By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.","false"],"shortForm":"narrower","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"narrowerTransitive\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower transitive\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://www.w3.org/2004/02/skos/core#broaderTransitive\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"value\":\"skos:narrowerTransitive is a transitive superproperty of skos:narrower.\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower transitive\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"skos:narrowerTransitive is a transitive superproperty of skos:narrower.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"narrowerTransitive\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#broaderTransitive\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader transitive\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"broaderTransitive\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"narrowerTransitive","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#semanticRelation","directParent":"http://www.w3.org/2004/02/skos/core#semanticRelation","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has narrower transitive","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#semanticRelation","http__//www.w3.org/2002/07/owl#inverseOf":"http://www.w3.org/2004/02/skos/core#broaderTransitive","http__//www.w3.org/2004/02/skos/core#definition":"skos:narrowerTransitive is a transitive superproperty of skos:narrower.","http__//www.w3.org/2004/02/skos/core#scopeNote":"By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.","id":"skos+property+http://www.w3.org/2004/02/skos/core#narrowerTransitive","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#narrowerTransitive","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has narrower transitive","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["skos:narrowerTransitive is a transitive superproperty of skos:narrower.","By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.","false"],"shortForm":"narrowerTransitive","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#notation\",\"type\":[\"dataProperty\",\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"notation\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#DatatypeProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notation\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A notation, also known as classification code, is a string of characters such as \\\"T58.5\\\" or \\\"303.4833\\\" used to uniquely identify a concept within the scope of a given concept scheme.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:notation is used with a typed literal in the object position of the triple.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A notation, also known as classification code, is a string of characters such as \\\"T58.5\\\" or \\\"303.4833\\\" used to uniquely identify a concept within the scope of a given concept scheme.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:notation is used with a typed literal in the object position of the triple.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"notation\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"notation","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#DatatypeProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"notation","http__//www.w3.org/2004/02/skos/core#definition":"A notation, also known as classification code, is a string of characters such as \"T58.5\" or \"303.4833\" used to uniquely identify a concept within the scope of a given concept scheme.","http__//www.w3.org/2004/02/skos/core#scopeNote":"By convention, skos:notation is used with a typed literal in the object position of the triple.","id":"skos+property+http://www.w3.org/2004/02/skos/core#notation","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#notation","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"notation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A notation, also known as classification code, is a string of characters such as \"T58.5\" or \"303.4833\" used to uniquely identify a concept within the scope of a given concept scheme.","By convention, skos:notation is used with a typed literal in the object position of the triple.","false"],"shortForm":"notation","type":["dataProperty","property","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#note\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"note\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"note\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A general note, for any purpose.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This property may be used directly, or as a super-property for more specific note types.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"note\",\"lang\":\"en\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A general note, for any purpose.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This property may be used directly, or as a super-property for more specific note types.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"note\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"note","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"note","http__//www.w3.org/2004/02/skos/core#definition":"A general note, for any purpose.","http__//www.w3.org/2004/02/skos/core#scopeNote":"This property may be used directly, or as a super-property for more specific note types.","id":"skos+property+http://www.w3.org/2004/02/skos/core#note","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#note","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"note","numDescendants":"6.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A general note, for any purpose.","This property may be used directly, or as a super-property for more specific note types.","false"],"shortForm":"note","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#prefLabel\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"prefLabel\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The range of skos:prefLabel is the class of RDF plain literals.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise\\n disjoint properties.\",\"lang\":\"en\"}],\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The range of skos:prefLabel is the class of RDF plain literals.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise\\n disjoint properties.\",\"lang\":\"en\"}],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preferred label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The preferred lexical label for a resource, in a given language.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preferred label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The preferred lexical label for a resource, in a given language.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"prefLabel\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"prefLabel","definedBy":["skos"],"definition":["A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag.","The range of skos:prefLabel is the class of RDF plain literals.","skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise\n disjoint properties."],"definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":["A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag.","The range of skos:prefLabel is the class of RDF plain literals.","skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise\n disjoint properties."],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"preferred label","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2000/01/rdf-schema#label","http__//www.w3.org/2004/02/skos/core#definition":"The preferred lexical label for a resource, in a given language.","id":"skos+property+http://www.w3.org/2004/02/skos/core#prefLabel","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#prefLabel","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"preferred label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["The preferred lexical label for a resource, in a given language.","false"],"shortForm":"prefLabel","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#related\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"related\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:related is disjoint with skos:broaderTransitive\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#SymmetricProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:related is disjoint with skos:broaderTransitive\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has related\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a concept to a concept with which there is an associative semantic relationship.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has related\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a concept to a concept with which there is an associative semantic relationship.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"related\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"related","definedBy":["skos"],"definition":"skos:related is disjoint with skos:broaderTransitive","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2004/02/skos/core#semanticRelation","directParent":"http://www.w3.org/2004/02/skos/core#semanticRelation","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":"skos:related is disjoint with skos:broaderTransitive","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has related","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#semanticRelation","http__//www.w3.org/2004/02/skos/core#definition":"Relates a concept to a concept with which there is an associative semantic relationship.","id":"skos+property+http://www.w3.org/2004/02/skos/core#related","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#related","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has related","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates a concept to a concept with which there is an associative semantic relationship.","false"],"shortForm":"related","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#relatedMatch\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"relatedMatch\"},\"directAncestor\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"http://www.w3.org/2004/02/skos/core#related\"],\"directParent\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#related\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#SymmetricProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has related match\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#related\"],\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has related match\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"relatedMatch\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#related\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has related\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"related\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#mappingRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in mapping relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"mappingRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"relatedMatch","definedBy":["skos"],"directAncestor":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#semanticRelation","http://www.w3.org/2004/02/skos/core#related"],"directParent":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#related"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has related match","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#related"],"http__//www.w3.org/2004/02/skos/core#definition":"skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes.","id":"skos+property+http://www.w3.org/2004/02/skos/core#relatedMatch","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#relatedMatch","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has related match","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes.","false"],"shortForm":"relatedMatch","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#scopeNote\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"scopeNote\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#note\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#note\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#note\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A note that helps to clarify the meaning and/or the use of a concept.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A note that helps to clarify the meaning and/or the use of a concept.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"scopeNote\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#note\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"note\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"scopeNote","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#note","directParent":"http://www.w3.org/2004/02/skos/core#note","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"scope note","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#note","http__//www.w3.org/2004/02/skos/core#definition":"A note that helps to clarify the meaning and/or the use of a concept.","id":"skos+property+http://www.w3.org/2004/02/skos/core#scopeNote","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#scopeNote","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"scope note","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A note that helps to clarify the meaning and/or the use of a concept.","false"],"shortForm":"scopeNote","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"semanticRelation\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2004/02/skos/core#Concept\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2004/02/skos/core#Concept\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Links a concept to a concept related by meaning.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"numDescendants\":11.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Links a concept to a concept related by meaning.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"semanticRelation\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#Concept\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Concept\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"semanticRelation","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2004/02/skos/core#Concept","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"is in semantic relation with","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2004/02/skos/core#Concept","http__//www.w3.org/2004/02/skos/core#definition":"Links a concept to a concept related by meaning.","http__//www.w3.org/2004/02/skos/core#scopeNote":"This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts.","id":"skos+property+http://www.w3.org/2004/02/skos/core#semanticRelation","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#semanticRelation","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"is in semantic relation with","numDescendants":"11.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Links a concept to a concept related by meaning.","This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts.","false"],"shortForm":"semanticRelation","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#topConceptOf\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"topConceptOf\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#inScheme\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#inScheme\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2004/02/skos/core#Concept\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is top concept in scheme\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2004/02/skos/core#ConceptScheme\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#inScheme\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://www.w3.org/2004/02/skos/core#hasTopConcept\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a concept to the concept scheme that it is a top level concept of.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is top concept in scheme\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a concept to the concept scheme that it is a top level concept of.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"topConceptOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#hasTopConcept\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has top concept\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasTopConcept\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#inScheme\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in scheme\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inScheme\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#Concept\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"Concept\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#ConceptScheme\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept Scheme\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ConceptScheme\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"topConceptOf","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#inScheme","directParent":"http://www.w3.org/2004/02/skos/core#inScheme","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2004/02/skos/core#Concept","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"is top concept in scheme","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2004/02/skos/core#ConceptScheme","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#inScheme","http__//www.w3.org/2002/07/owl#inverseOf":"http://www.w3.org/2004/02/skos/core#hasTopConcept","http__//www.w3.org/2004/02/skos/core#definition":"Relates a concept to the concept scheme that it is a top level concept of.","id":"skos+property+http://www.w3.org/2004/02/skos/core#topConceptOf","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#topConceptOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"is top concept in scheme","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates a concept to the concept scheme that it is a top level concept of.","false"],"shortForm":"topConceptOf","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002131\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002131\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\\n\\nA continuant cannot be part of an occurrent: use \\u0027participates in\\u0027. An occurrent cannot be part of a continuant: use \\u0027has participant\\u0027. A material entity cannot be part of an immaterial entity: use \\u0027has location\\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \\u0027inheres in\\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \\u0027bearer of\\u0027.\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\\n\\nA continuant cannot be part of an occurrent: use \\u0027participates in\\u0027. An occurrent cannot be part of a continuant: use \\u0027has participant\\u0027. A material entity cannot be part of an immaterial entity: use \\u0027has location\\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \\u0027inheres in\\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \\u0027bearer of\\u0027.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000050\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"BFO:0000050\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000050\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000050","definition":"a core relation that holds between a part and its whole","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002131","directParent":"http://purl.obolibrary.org/obo/RO_0002131","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a core relation that holds between a part and its whole","http__//purl.obolibrary.org/obo/IAO_0000116":["Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"part of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002131","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000050","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000050","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"part of","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a core relation that holds between a part and its whole","Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027.","false"],"shortForm":"BFO_0000050","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a whole and its part\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002131\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002131\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a whole and its part\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\\n\\nA continuant cannot have an occurrent as part: use \\u0027participates in\\u0027. An occurrent cannot have a continuant as part: use \\u0027has participant\\u0027. An immaterial entity cannot have a material entity as part: use \\u0027location of\\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \\u0027bearer of\\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \\u0027inheres in\\u0027.\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a whole and its part\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\\n\\nA continuant cannot have an occurrent as part: use \\u0027participates in\\u0027. An occurrent cannot have a continuant as part: use \\u0027has participant\\u0027. An immaterial entity cannot have a material entity as part: use \\u0027location of\\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \\u0027bearer of\\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \\u0027inheres in\\u0027.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000051\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000051\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000051\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000051","definition":"a core relation that holds between a whole and its part","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002131","directParent":"http://purl.obolibrary.org/obo/RO_0002131","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a core relation that holds between a whole and its part","http__//purl.obolibrary.org/obo/IAO_0000116":["Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use \u0027participates in\u0027. An occurrent cannot have a continuant as part: use \u0027has participant\u0027. An immaterial entity cannot have a material entity as part: use \u0027location of\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \u0027bearer of\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \u0027inheres in\u0027."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"has part","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002131","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000050","id":"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000051","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000051","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has part","numDescendants":"10.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a core relation that holds between a whole and its part","Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use \u0027participates in\u0027. An occurrent cannot have a continuant as part: use \u0027has participant\u0027. An immaterial entity cannot have a material entity as part: use \u0027location of\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \u0027bearer of\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \u0027inheres in\u0027.","false"],"shortForm":"BFO_0000051","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \\u003c\\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002086\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002086\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \\u003c\\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002086\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/BFO_0000062\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \\u003c\\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000062\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"BFO:0000062\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000062\"},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends after\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000062","definition":"x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \u003c\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002086","http://purl.obolibrary.org/obo/RO_0002222"],"directParent":"http://purl.obolibrary.org/obo/RO_0002086","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \u003c\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http__//purl.obolibrary.org/obo/IAO_0000116":"An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#label":"preceded by","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002086","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000063","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/BFO_0000062"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000062","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000062","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"preceded by","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \u003c\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other.","false"],"shortForm":"BFO_0000062","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \\u003c\\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \\u003c\\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/BFO_0000063\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"numDescendants\":15.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \\u003c\\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000063\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"BFO:0000063\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000063\"},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000063","definition":"x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \u003c\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002222","directParent":"http://purl.obolibrary.org/obo/RO_0002222","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \u003c\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#label":"precedes","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002222","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000062","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/BFO_0000063"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000063","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000063","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"precedes","numDescendants":"15.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \u003c\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","false"],"shortForm":"BFO_0000063","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000066\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/BFO_0000066\"],[\"http://purl.obolibrary.org/obo/BFO_0000066\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000066\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000067\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contains process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000067\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"BFO:0000066\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000066\"}}}","appearsIn":["gitissue502"],"curie":"BFO:0000066","definition":"b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#label":"occurs in","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000067","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/BFO_0000066\"]","[\"http://purl.obolibrary.org/obo/BFO_0000066\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000066","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000066","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"occurs in","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","false"],"shortForm":"BFO_0000066","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000067\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"[copied from inverse property \\u0027occurs in\\u0027] b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"[copied from inverse property \\u0027occurs in\\u0027] b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contains process\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contains process\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"[copied from inverse property \\u0027occurs in\\u0027] b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000067\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000066\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"BFO:0000067\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000067\"}}}","appearsIn":["gitissue502"],"curie":"BFO:0000067","definition":"[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"contains process","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000066","id":"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000067","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000067","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"contains process","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","false"],"shortForm":"BFO_0000067","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000115\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"IAO:0000115\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000115\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000115\"}}}","appearsIn":["gitissue502"],"curie":"IAO:0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://purl.obolibrary.org/obo/IAO_0000115","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000115","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000115","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"IAO_0000115","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000116\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"IAO:0000116\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000116\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000116\"}}}","appearsIn":["gitissue502"],"curie":"IAO:0000116","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://purl.obolibrary.org/obo/IAO_0000116","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000116","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000116","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"IAO_0000116","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000233\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"IAO:0000233\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000233\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000233\"}}}","appearsIn":["gitissue502"],"curie":"IAO:0000233","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://purl.obolibrary.org/obo/IAO_0000233","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000233","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000233","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"IAO_0000233","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0006012\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0006012\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0006012\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0006012\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"IAO:0006012\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0006012\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0006012\"}}}","appearsIn":["gitissue502"],"curie":"IAO:0006012","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://purl.obolibrary.org/obo/IAO_0006012","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0006012","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0006012","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"IAO_0006012","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000052\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0000052\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000052\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000052","definition":"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"characteristic of","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000053","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000052","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000052","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"characteristic of","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","false"],"shortForm":"RO_0000052","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of characteristic_of\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of characteristic_of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.\",\"lang\":\"en\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"has_characteristic\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"has_characteristic\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#InverseFunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of characteristic_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},{\"type\":[\"literal\"],\"value\":\"has_characteristic\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000053\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0000053\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000053\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000053","definition":"Inverse of characteristic_of","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Inverse of characteristic_of","http__//purl.obolibrary.org/obo/IAO_0000116":"A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"RO:0000053","http__//www.geneontology.org/formats/oboInOwl#id":"has_characteristic","http__//www.geneontology.org/formats/oboInOwl#shorthand":"has_characteristic","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#InverseFunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":["has characteristic","has characteristic"],"http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000020","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000052","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000053","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000053","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":["has characteristic","has characteristic"],"numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Inverse of characteristic_of","A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.","RO:0000053","has_characteristic","false"],"shortForm":"RO_0000053","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000056\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a continuant and a process, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a continuant and a process, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a continuant and a process, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000056\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"RO:0000056\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000056\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000056","definition":"a relation between a continuant and a process, in which the continuant is somehow involved in the process","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a continuant and a process, in which the continuant is somehow involved in the process","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2000/01/rdf-schema#label":"participates in","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000057","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000056","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000056","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"participates in","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between a continuant and a process, in which the continuant is somehow involved in the process","false"],"shortForm":"RO_0000056","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a process and a continuant, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a process and a continuant, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0000057\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a process and a continuant, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000057\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000056\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000056\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0000057\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000057\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000057","definition":"a relation between a process and a continuant, in which the continuant is somehow involved in the process","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a process and a continuant, in which the continuant is somehow involved in the process","http__//purl.obolibrary.org/obo/IAO_0000116":"Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#label":"has participant","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000056","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0000057"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000057","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000057","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has participant","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between a process and a continuant, in which the continuant is somehow involved in the process","Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.","false"],"shortForm":"RO_0000057","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000079\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000079\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000034\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000085\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000079\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0000079\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000079\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000079\"},\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000034\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000034\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000085\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has function\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000085\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000079","definition":"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000052","directParent":"http://purl.obolibrary.org/obo/RO_0000052","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000034","http__//www.w3.org/2000/01/rdf-schema#label":"function of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000052","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000085","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000079","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000079","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"function of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.","false"],"shortForm":"RO_0000079","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000080\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000080\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A quality inheres in its bearer at all times for which the quality exists.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A quality inheres in its bearer at all times for which the quality exists.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000080\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0000080\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000080\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000080\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000080","definition":"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000052","directParent":"http://purl.obolibrary.org/obo/RO_0000052","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A quality inheres in its bearer at all times for which the quality exists.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"quality of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000052","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000086","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000080","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000080","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"quality of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","A quality inheres in its bearer at all times for which the quality exists.","false"],"shortForm":"RO_0000080","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000081\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000081\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000087\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000081\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0000081\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000081\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000081\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000087\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has role\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000087\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000081","definition":"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000052","directParent":"http://purl.obolibrary.org/obo/RO_0000052","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"role of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000052","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000087","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000081","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000081","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"role of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.","false"],"shortForm":"RO_0000081","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000085\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000085\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has function\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000034\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000079\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has function\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000085\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0000085\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000085\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000085\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000034\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000034\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000079\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000079\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000085","definition":"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000053","directParent":"http://purl.obolibrary.org/obo/RO_0000053","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"has function","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000034","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000053","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000079","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000085","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000085","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has function","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.","false"],"shortForm":"RO_0000085","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000080\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000086\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"RO:0000086\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000086\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000080\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000080\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000086","definition":"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000053","directParent":"http://purl.obolibrary.org/obo/RO_0000053","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has quality","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000019","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000053","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000080","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000086","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000086","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has quality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.","false"],"shortForm":"RO_0000086","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000087\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000087\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has role\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000081\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has role\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000087\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0000087\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000087\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000087\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000081\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000081\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000023\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000087","definition":"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000053","directParent":"http://purl.obolibrary.org/obo/RO_0000053","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"has role","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000023","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000053","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000081","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000087","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000087","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has role","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.","false"],"shortForm":"RO_0000087","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000091\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000091\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has disposition\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000092\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has disposition\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000091\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000092\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"RO:0000091\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000091\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000091\"}}}","appearsIn":["gitissue502"],"curie":"RO:0000091","definition":"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000053","directParent":"http://purl.obolibrary.org/obo/RO_0000053","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"has disposition","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000016","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000053","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000092","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000091","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000091","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has disposition","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","false"],"shortForm":"RO_0000091","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000092\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000092\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of has disposition\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of has disposition\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000091\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of has disposition\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000092\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0000091\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000091\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"RO:0000092\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000092\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000092\"}}}","appearsIn":["gitissue502"],"curie":"RO:0000092","definition":"inverse of has disposition","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000052","directParent":"http://purl.obolibrary.org/obo/RO_0000052","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of has disposition","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"disposition of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000052","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000091","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000092","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000092","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disposition of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of has disposition","false"],"shortForm":"RO_0000092","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002000\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002000\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2D boundary of\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2D boundary of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002000\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002000\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002000\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has 2D boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002002\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002000","definition":"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","http__//purl.obolibrary.org/obo/IAO_0000116":["A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.","Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"2D boundary of","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002002","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002000","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"2D boundary of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.","Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.","false"],"shortForm":"RO_0002000","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002002\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has 2D boundary\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has 2D boundary\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2D boundary of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002000\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"RO:0002002\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002002\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002002","definition":"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","http__//purl.obolibrary.org/obo/IAO_0000116":["A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.","Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"has 2D boundary","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000141","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002000","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002002","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002002","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has 2D boundary","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.","Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.","false"],"shortForm":"RO_0002002","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002013\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002013\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A \\u0027has regulatory component activity\\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002017\",\"http://purl.obolibrary.org/obo/RO_0002018\",\"http://purl.obolibrary.org/obo/RO_0002180\",\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002017\",\"http://purl.obolibrary.org/obo/RO_0002334\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A \\u0027has regulatory component activity\\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has regulatory component activity\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002017\",\"http://purl.obolibrary.org/obo/RO_0002334\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has regulatory component activity\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A \\u0027has regulatory component activity\\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002013\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002180\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002013\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002013\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002013\"},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002017\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002018\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002013","definition":"A \u0027has regulatory component activity\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002017","http://purl.obolibrary.org/obo/RO_0002018","http://purl.obolibrary.org/obo/RO_0002180","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131","http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":["http://purl.obolibrary.org/obo/RO_0002017","http://purl.obolibrary.org/obo/RO_0002334"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A \u0027has regulatory component activity\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has regulatory component activity","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002017","http://purl.obolibrary.org/obo/RO_0002334"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002013","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002013","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has regulatory component activity","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A \u0027has regulatory component activity\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.","false"],"shortForm":"RO_0002013","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002014\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002014\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \\u0027has regulatory component activity\\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002013\",\"http://purl.obolibrary.org/obo/RO_0002017\",\"http://purl.obolibrary.org/obo/RO_0002018\",\"http://purl.obolibrary.org/obo/RO_0002180\",\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002335\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002013\",\"http://purl.obolibrary.org/obo/RO_0002335\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \\u0027has regulatory component activity\\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has negative regulatory component activity\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002013\",\"http://purl.obolibrary.org/obo/RO_0002335\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has negative regulatory component activity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \\u0027has regulatory component activity\\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002014\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002013\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has regulatory component activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002013\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002014\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002014\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002014\"},\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002180\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002335\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002335\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002017\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002018\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002014","definition":"A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002013","http://purl.obolibrary.org/obo/RO_0002017","http://purl.obolibrary.org/obo/RO_0002018","http://purl.obolibrary.org/obo/RO_0002180","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131","http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002335"],"directParent":["http://purl.obolibrary.org/obo/RO_0002013","http://purl.obolibrary.org/obo/RO_0002335"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has negative regulatory component activity","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002013","http://purl.obolibrary.org/obo/RO_0002335"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002014","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002014","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has negative regulatory component activity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.","false"],"shortForm":"RO_0002014","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002015\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002015\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \\u0027has regulatory component activity\\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002013\",\"http://purl.obolibrary.org/obo/RO_0002017\",\"http://purl.obolibrary.org/obo/RO_0002018\",\"http://purl.obolibrary.org/obo/RO_0002180\",\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002336\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002013\",\"http://purl.obolibrary.org/obo/RO_0002336\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \\u0027has regulatory component activity\\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has positive regulatory component activity\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002013\",\"http://purl.obolibrary.org/obo/RO_0002336\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has positive regulatory component activity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \\u0027has regulatory component activity\\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002015\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002013\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has regulatory component activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002013\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002015\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002015\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002015\"},\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002180\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002017\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002336\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002336\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002018\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002015","definition":"A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002013","http://purl.obolibrary.org/obo/RO_0002017","http://purl.obolibrary.org/obo/RO_0002018","http://purl.obolibrary.org/obo/RO_0002180","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131","http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002336"],"directParent":["http://purl.obolibrary.org/obo/RO_0002013","http://purl.obolibrary.org/obo/RO_0002336"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has positive regulatory component activity","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002013","http://purl.obolibrary.org/obo/RO_0002336"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002015","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002015","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has positive regulatory component activity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.","false"],"shortForm":"RO_0002015","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002017\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002017\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002018\",\"http://purl.obolibrary.org/obo/RO_0002180\",\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002018\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has component activity\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002018\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has component activity\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002017\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002180\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002017\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002017\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002017\"},\"http://purl.obolibrary.org/obo/RO_0002018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002018\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002017","directAncestor":["http://purl.obolibrary.org/obo/RO_0002018","http://purl.obolibrary.org/obo/RO_0002180","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131"],"directParent":"http://purl.obolibrary.org/obo/RO_0002018","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has component activity","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002018","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002017","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002017","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has component activity","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002017","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002018\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002018\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"w \\u0027has process component\\u0027 p if p and w are processes, w \\u0027has part\\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002180\",\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002180\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"w \\u0027has process component\\u0027 p if p and w are processes, w \\u0027has part\\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has component process\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002180\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has component process\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"w \\u0027has process component\\u0027 p if p and w are processes, w \\u0027has part\\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002018\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"RO:0002018\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002018\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002018\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002180\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002018","definition":"w \u0027has process component\u0027 p if p and w are processes, w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002180","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131"],"directParent":"http://purl.obolibrary.org/obo/RO_0002180","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"w \u0027has process component\u0027 p if p and w are processes, w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#label":"has component process","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002180","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002018","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002018","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has component process","numDescendants":"5.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["w \u0027has process component\u0027 p if p and w are processes, w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","false"],"shortForm":"RO_0002018","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002022\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002022\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002334\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly regulated by\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002578\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulated by\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002022\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002022\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002022\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002022\"},\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002578\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002578\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002022","directAncestor":["http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002334","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"directly regulated by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002334","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002578","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002022","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002022","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly regulated by","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002022","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002023\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002023\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002022\",\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002022\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulated by\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002022\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002630\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulated by\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002023\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002023\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002023\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002023\"},\"http://purl.obolibrary.org/obo/RO_0002630\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002630\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002022\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulated by\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002022\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002023","directAncestor":["http://purl.obolibrary.org/obo/RO_0002022","http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002022","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"directly negatively regulated by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002022","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002630","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002023","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002023","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly negatively regulated by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002023","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002024\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002024\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002022\",\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002022\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulated by\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002022\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002629\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulated by\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002024\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002024\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002024\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002024\"},\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002629\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002629\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002022\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulated by\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002022\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002024","directAncestor":["http://purl.obolibrary.org/obo/RO_0002022","http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002022","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"directly positively regulated by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002022","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002629","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002024","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002024","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly positively regulated by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002024","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002025\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002025\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002017\",\"http://purl.obolibrary.org/obo/RO_0002018\",\"http://purl.obolibrary.org/obo/RO_0002180\",\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002017\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has effector activity\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002017\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has effector activity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002025\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002025\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002025\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002025\"},\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002180\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002017\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002018\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002025","directAncestor":["http://purl.obolibrary.org/obo/RO_0002017","http://purl.obolibrary.org/obo/RO_0002018","http://purl.obolibrary.org/obo/RO_0002180","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131"],"directParent":"http://purl.obolibrary.org/obo/RO_0002017","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"has effector activity","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002017","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002025","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002025","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has effector activity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002025","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002081\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002081\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"before or simultaneous with\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"before or simultaneous with\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002081\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002081\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002081\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002081\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002081","directAncestor":"http://purl.obolibrary.org/obo/RO_0002222","directParent":"http://purl.obolibrary.org/obo/RO_0002222","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"before or simultaneous with","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002222","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002081","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002081","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"before or simultaneous with","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002081","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x simultaneous with y iff ω(x) \\u003d ω(y) and ω(α ) \\u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \\u0027\\u003d\\u0027 indicates the same instance in time.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002081\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002081\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x simultaneous with y iff ω(x) \\u003d ω(y) and ω(α ) \\u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \\u0027\\u003d\\u0027 indicates the same instance in time.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#SymmetricProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002081\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x simultaneous with y iff ω(x) \\u003d ω(y) and ω(α ) \\u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \\u0027\\u003d\\u0027 indicates the same instance in time.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002082\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002082\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002082\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002081\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"before or simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002081\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002082","definition":"x simultaneous with y iff ω(x) \u003d ω(y) and ω(α ) \u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \u0027\u003d\u0027 indicates the same instance in time.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002081","http://purl.obolibrary.org/obo/RO_0002222"],"directParent":"http://purl.obolibrary.org/obo/RO_0002081","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x simultaneous with y iff ω(x) \u003d ω(y) and ω(α ) \u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \u0027\u003d\u0027 indicates the same instance in time.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"simultaneous with","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002081","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002082","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002082","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"simultaneous with","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x simultaneous with y iff ω(x) \u003d ω(y) and ω(α ) \u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \u0027\u003d\u0027 indicates the same instance in time.","false"],"shortForm":"RO_0002082","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002086\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002086\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends after\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends after\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002086\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002086\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002086\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002086\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002086","directAncestor":"http://purl.obolibrary.org/obo/RO_0002222","directParent":"http://purl.obolibrary.org/obo/RO_0002222","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"ends after","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002222","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002086","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002086","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ends after","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002086","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002087\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002087\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://purl.obolibrary.org/obo/RO_0002086\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately preceded by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002090\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002224\",\"http://purl.obolibrary.org/obo/RO_0002230\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately preceded by\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002087\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002090\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002090\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002087\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002087\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002087\"},\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002224\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002224\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends after\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002087","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000062","http://purl.obolibrary.org/obo/RO_0002086","http://purl.obolibrary.org/obo/RO_0002222"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000062","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"immediately preceded by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000062","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002090","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002224","http://purl.obolibrary.org/obo/RO_0002230"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002087","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002087","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"immediately preceded by","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002087","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002090\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002090\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately precedes\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002087\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://purl.obolibrary.org/obo/RO_0002224\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately precedes\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002090\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002224\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002224\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002087\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002087\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002090\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002090\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002090\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002090","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000063","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"immediately precedes","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000063","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002087","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002230","http://purl.obolibrary.org/obo/RO_0002224"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002090","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002090","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"immediately precedes","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002090","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002131\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x overlaps y if and only if there exists some z such that x has part z and z part of y\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x overlaps y if and only if there exists some z such that x has part z and z part of y\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#SymmetricProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\"],[\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"numDescendants\":14.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x overlaps y if and only if there exists some z such that x has part z and z part of y\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002131\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002131\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002131\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002131\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002131","definition":"x overlaps y if and only if there exists some z such that x has part z and z part of y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x overlaps y if and only if there exists some z such that x has part z and z part of y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"overlaps","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]","[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\"]","[\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002131","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002131","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"overlaps","numDescendants":"14.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x overlaps y if and only if there exists some z such that x has part z and z part of y","false"],"shortForm":"RO_0002131","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\\u003dz a and x is in taxon z.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\\u003dz a and x is in taxon z.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"The original intent was to treat this as a macro that expands to \\u0027in taxon\\u0027 only ?Y - however, this is not necessary if we instead have supplemental axioms that state that each pair of sibling tax have a disjointness axiom using the \\u0027in taxon\\u0027 property - e.g.\\n\\n \\u0027in taxon\\u0027 some Eukaryota DisjointWith \\u0027in taxon\\u0027 some Eubacteria\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\\u003dz a and x is in taxon z.\"},{\"type\":[\"literal\"],\"value\":\"The original intent was to treat this as a macro that expands to \\u0027in taxon\\u0027 only ?Y - however, this is not necessary if we instead have supplemental axioms that state that each pair of sibling tax have a disjointness axiom using the \\u0027in taxon\\u0027 property - e.g.\\n\\n \\u0027in taxon\\u0027 some Eukaryota DisjointWith \\u0027in taxon\\u0027 some Eubacteria\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002160\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002160\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002160\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002162\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002162\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002160","definition":"x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\u003dz a and x is in taxon z.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002162","directParent":"http://purl.obolibrary.org/obo/RO_0002162","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\u003dz a and x is in taxon z.","http__//purl.obolibrary.org/obo/IAO_0000116":"The original intent was to treat this as a macro that expands to \u0027in taxon\u0027 only ?Y - however, this is not necessary if we instead have supplemental axioms that state that each pair of sibling tax have a disjointness axiom using the \u0027in taxon\u0027 property - e.g.\n\n \u0027in taxon\u0027 some Eukaryota DisjointWith \u0027in taxon\u0027 some Eubacteria","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"only in taxon","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002162","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002160","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002160","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"only in taxon","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\u003dz a and x is in taxon z.","The original intent was to treat this as a macro that expands to \u0027in taxon\u0027 only ?Y - however, this is not necessary if we instead have supplemental axioms that state that each pair of sibling tax have a disjointness axiom using the \u0027in taxon\u0027 property - e.g.\n\n \u0027in taxon\u0027 some Eukaryota DisjointWith \u0027in taxon\u0027 some Eubacteria","false"],"shortForm":"RO_0002160","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002162\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"RO:0002162\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"in_taxon\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"in_taxon\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"in taxon\"},\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002162\"],[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002162\"],[\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://purl.obolibrary.org/obo/RO_0002162\"],[\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://purl.obolibrary.org/obo/RO_0002162\"],[\"http://purl.obolibrary.org/obo/RO_0002225\",\"http://purl.obolibrary.org/obo/RO_0002162\"],[\"http://purl.obolibrary.org/obo/RO_0002254\",\"http://purl.obolibrary.org/obo/RO_0002162\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"in taxon\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.\"},{\"type\":[\"literal\"],\"value\":\"RO:0002162\"},{\"type\":[\"literal\"],\"value\":\"in_taxon\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002162\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002254\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental contribution from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002254\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002225\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002225\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002162\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002162\"},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002162","definition":"x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"RO:0002162","http__//www.geneontology.org/formats/oboInOwl#id":"in_taxon","http__//www.geneontology.org/formats/oboInOwl#shorthand":"in_taxon","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"in taxon","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002162\"]","[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002162\"]","[\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://purl.obolibrary.org/obo/RO_0002162\"]","[\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://purl.obolibrary.org/obo/RO_0002162\"]","[\"http://purl.obolibrary.org/obo/RO_0002225\",\"http://purl.obolibrary.org/obo/RO_0002162\"]","[\"http://purl.obolibrary.org/obo/RO_0002254\",\"http://purl.obolibrary.org/obo/RO_0002162\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002162","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002162","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"in taxon","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.","RO:0002162","in_taxon","false"],"shortForm":"RO_0002162","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002175\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002175\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002175\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002175\"}}}","appearsIn":["gitissue502"],"curie":"RO:0002175","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002175","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002175","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"RO_0002175","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002175","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002180\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002180\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"w \\u0027has component\\u0027 p if w \\u0027has part\\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"w \\u0027has component\\u0027 p if w \\u0027has part\\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"The definition of \\u0027has component\\u0027 is still under discussion. The challenge is in providing a definition that does not imply transitivity.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"w \\u0027has component\\u0027 p if w \\u0027has part\\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.\"},{\"type\":[\"literal\"],\"value\":\"The definition of \\u0027has component\\u0027 is still under discussion. The challenge is in providing a definition that does not imply transitivity.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002180\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002180\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002180\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002180\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002180","definition":"w \u0027has component\u0027 p if w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000051","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"w \u0027has component\u0027 p if w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","http__//purl.obolibrary.org/obo/IAO_0000116":"The definition of \u0027has component\u0027 is still under discussion. The challenge is in providing a definition that does not imply transitivity.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has component","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002180","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002180","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has component","numDescendants":"6.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["w \u0027has component\u0027 p if w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","The definition of \u0027has component\u0027 is still under discussion. The challenge is in providing a definition that does not imply transitivity.","false"],"shortForm":"RO_0002180","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002258\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002258\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002258\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002203\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002202\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002203\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002203\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"RO:0002202\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002202\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002258\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002202","definition":"x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002258","directParent":"http://purl.obolibrary.org/obo/RO_0002258","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"develops from","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002258","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002203","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002202","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002202","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"develops from","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y","false"],"shortForm":"RO_0002202","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002203\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002203\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of develops from\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002384\",\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://purl.obolibrary.org/obo/RO_0002388\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://purl.obolibrary.org/obo/RO_0002388\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of develops from\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops into\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://purl.obolibrary.org/obo/RO_0002388\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops into\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of develops from\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002203\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002286\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally succeeded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002286\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002203\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002203\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002203\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002388\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to directly develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002388\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002384\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002203","definition":"inverse of develops from","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002384","http://purl.obolibrary.org/obo/RO_0002387","http://purl.obolibrary.org/obo/RO_0002388"],"directParent":["http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002387","http://purl.obolibrary.org/obo/RO_0002388"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of develops from","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"develops into","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002387","http://purl.obolibrary.org/obo/RO_0002388"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002202","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002203","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002203","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"develops into","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of develops from","false"],"shortForm":"RO_0002203","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002207\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002207\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://purl.obolibrary.org/obo/RO_0002258\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#unionOf\":[\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0010000\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops from\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#unionOf\":[\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0010000\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002210\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops from\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002207\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002210\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002210\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"RO:0002207\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002207\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002207\"},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"GO:0032502\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0032502\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0032502\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002258\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002207","definition":"Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002202","http://purl.obolibrary.org/obo/RO_0002258"],"directParent":"http://purl.obolibrary.org/obo/RO_0002202","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"directly develops from","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002202","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002210","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002207","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002207","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly develops from","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.","false"],"shortForm":"RO_0002207","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002210\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002210\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of directly develops from\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002203\",\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002384\",\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://purl.obolibrary.org/obo/RO_0002388\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002203\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of directly develops from\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops into\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002203\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002207\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops into\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of directly develops from\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002210\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002207\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002207\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002203\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002203\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002286\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally succeeded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002286\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002210\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002210\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002210\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002388\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to directly develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002388\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002384\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002210","definition":"inverse of directly develops from","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002203","http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002384","http://purl.obolibrary.org/obo/RO_0002387","http://purl.obolibrary.org/obo/RO_0002388"],"directParent":"http://purl.obolibrary.org/obo/RO_0002203","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of directly develops from","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"directly develops into","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002203","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002207","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002210","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002210","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly develops into","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of directly develops from","false"],"shortForm":"RO_0002210","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002411\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002025\"],[\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://purl.obolibrary.org/obo/RO_0002211\"],[\"http://purl.obolibrary.org/obo/RO_0002578\",\"http://purl.obolibrary.org/obo/RO_0002578\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002211\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"RO:0002211\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002211\"},\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002025\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has effector activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002025\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002578\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002578\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002211","definition":"p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002411","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#label":"regulates","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002411","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002334","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002025\"]","[\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://purl.obolibrary.org/obo/RO_0002211\"]","[\"http://purl.obolibrary.org/obo/RO_0002578\",\"http://purl.obolibrary.org/obo/RO_0002578\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002211","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002211","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulates","numDescendants":"8.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.","false"],"shortForm":"RO_0002211","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002212\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002212\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002305\",\"http://purl.obolibrary.org/obo/RO_0004046\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002305\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002305\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002335\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://purl.obolibrary.org/obo/RO_0002212\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002212\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0002212\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002212\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002212\"},\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002305\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002305\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004046\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004046\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002335\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002335\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002212","definition":"p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002305","http://purl.obolibrary.org/obo/RO_0004046"],"directParent":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002305"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"negatively regulates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002305"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002335","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002230","http://purl.obolibrary.org/obo/RO_0002212"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002212","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002212","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"negatively regulates","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.","false"],"shortForm":"RO_0002212","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002213\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002304\",\"http://purl.obolibrary.org/obo/RO_0004047\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002304\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002304\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002336\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0002212\"],[\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://purl.obolibrary.org/obo/RO_0002213\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002213\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002212\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002212\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0002213\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002213\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002213\"},\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002304\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002304\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004047\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004047\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002336\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002336\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002213","definition":"p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002304","http://purl.obolibrary.org/obo/RO_0004047"],"directParent":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002304"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"positively regulates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002304"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002336","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0002212\"]","[\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://purl.obolibrary.org/obo/RO_0002213\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002213","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002213","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"positively regulates","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.","false"],"shortForm":"RO_0002213","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. \"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. \"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. \"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002215\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"RO:0002215\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002215\"},\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002216\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002216\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002215","definition":"A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. ","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002216","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002216","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"capable of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002216","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002215","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002215","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"capable of","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. ","false"],"shortForm":"RO_0002215","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002216\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c stands in this relationship to p if and only if there exists some p\\u0027 such that c is capable_of p\\u0027, and p\\u0027 is part_of p.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002500\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c stands in this relationship to p if and only if there exists some p\\u0027 such that c is capable_of p\\u0027, and p\\u0027 is part_of p.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002500\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c stands in this relationship to p if and only if there exists some p\\u0027 such that c is capable_of p\\u0027, and p\\u0027 is part_of p.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002216\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0002216\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002216\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002216","definition":"c stands in this relationship to p if and only if there exists some p\u0027 such that c is capable_of p\u0027, and p\u0027 is part_of p.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002500","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c stands in this relationship to p if and only if there exists some p\u0027 such that c is capable_of p\u0027, and p\u0027 is part_of p.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"capable of part of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002500","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002216","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002216","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"capable of part of","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c stands in this relationship to p if and only if there exists some p\u0027 such that c is capable_of p\u0027, and p\u0027 is part_of p.","false"],"shortForm":"RO_0002216","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"numDescendants\":27.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002222\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002222\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002222\"},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002222","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#label":"temporally related to","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000003","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002222","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002222","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"temporally related to","numDescendants":"27.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002222","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002223\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002223\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of starts with\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"directParent\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of starts with\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002224\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of starts with\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002223\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002223\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002223\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002223\"},\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002224\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002224\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002223","definition":"inverse of starts with","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0002131","http://purl.obolibrary.org/obo/RO_0002222"],"directParent":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0002222"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of starts with","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"starts","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0002222"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002224","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002223","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002223","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"starts","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of starts with","false"],"shortForm":"RO_0002223","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002224\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002224\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \\u003d α(x) ∧ ω(y) \\u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"directParent\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \\u003d α(x) ∧ ω(y) \\u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts with\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002223\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts with\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \\u003d α(x) ∧ ω(y) \\u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002224\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002224\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002224\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002224\"},\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002223\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002223\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002224","definition":"x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \u003d α(x) ∧ ω(y) \u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131","http://purl.obolibrary.org/obo/RO_0002222"],"directParent":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002222"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \u003d α(x) ∧ ω(y) \u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"starts with","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002222"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002223","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002224","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002224","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"starts with","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \u003d α(x) ∧ ω(y) \u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","false"],"shortForm":"RO_0002224","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002225\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002225\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x develops from part of y if and only if there exists some z such that x develops from z and z is part of y\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://purl.obolibrary.org/obo/RO_0002258\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x develops from part of y if and only if there exists some z such that x develops from z and z is part of y\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from part of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002207\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from part of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x develops from part of y if and only if there exists some z such that x develops from z and z is part of y\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002225\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002225\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002225\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002225\"},\"http://purl.obolibrary.org/obo/RO_0002207\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002207\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002258\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002225","definition":"x develops from part of y if and only if there exists some z such that x develops from z and z is part of y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002202","http://purl.obolibrary.org/obo/RO_0002258"],"directParent":"http://purl.obolibrary.org/obo/RO_0002202","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x develops from part of y if and only if there exists some z such that x develops from z and z is part of y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"develops from part of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002202","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002207","http://purl.obolibrary.org/obo/BFO_0000050"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002225","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002225","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"develops from part of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x develops from part of y if and only if there exists some z such that x develops from z and z is part of y","false"],"shortForm":"RO_0002225","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002229\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002229\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of ends with\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"directParent\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of ends with\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002230\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of ends with\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002229\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002229\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002229\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002229\"},\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002229","definition":"inverse of ends with","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0002131","http://purl.obolibrary.org/obo/RO_0002222"],"directParent":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0002222"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of ends with","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"ends","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0002222"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002230","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002229","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002229","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ends","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of ends with","false"],"shortForm":"RO_0002229","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002230\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \\u003e α(x) ∧ ω(y) \\u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"directParent\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \\u003e α(x) ∧ ω(y) \\u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002229\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \\u003e α(x) ∧ ω(y) \\u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002230\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002229\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002229\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"RO:0002230\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002230\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002230\"},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002230","definition":"x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \u003e α(x) ∧ ω(y) \u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131","http://purl.obolibrary.org/obo/RO_0002222"],"directParent":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002222"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \u003e α(x) ∧ ω(y) \u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"ends with","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002222"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002229","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002230","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002230","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ends with","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \u003e α(x) ∧ ω(y) \u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","false"],"shortForm":"RO_0002230","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002231\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002231\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x \\u0027has starts location\\u0027 y if and only if there exists some process z such that x \\u0027starts with\\u0027 z and z \\u0027occurs in\\u0027 y\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002479\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002479\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x \\u0027has starts location\\u0027 y if and only if there exists some process z such that x \\u0027starts with\\u0027 z and z \\u0027occurs in\\u0027 y\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has start location\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002479\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002224\",\"http://purl.obolibrary.org/obo/BFO_0000066\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has start location\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x \\u0027has starts location\\u0027 y if and only if there exists some process z such that x \\u0027starts with\\u0027 z and z \\u0027occurs in\\u0027 y\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002231\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002479\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has part that occurs in\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002479\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002224\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002224\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"RO:0002231\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002231\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002231\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000066\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002231","definition":"x \u0027has starts location\u0027 y if and only if there exists some process z such that x \u0027starts with\u0027 z and z \u0027occurs in\u0027 y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002479","directParent":"http://purl.obolibrary.org/obo/RO_0002479","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x \u0027has starts location\u0027 y if and only if there exists some process z such that x \u0027starts with\u0027 z and z \u0027occurs in\u0027 y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#label":"has start location","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002479","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002224","http://purl.obolibrary.org/obo/BFO_0000066"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002231","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002231","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has start location","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x \u0027has starts location\u0027 y if and only if there exists some process z such that x \u0027starts with\u0027 z and z \u0027occurs in\u0027 y","false"],"shortForm":"RO_0002231","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002232\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002232\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x \\u0027has end location\\u0027 y if and only if there exists some process z such that x \\u0027ends with\\u0027 z and z \\u0027occurs in\\u0027 y\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002479\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002479\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x \\u0027has end location\\u0027 y if and only if there exists some process z such that x \\u0027ends with\\u0027 z and z \\u0027occurs in\\u0027 y\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has end location\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002479\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://purl.obolibrary.org/obo/BFO_0000066\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has end location\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x \\u0027has end location\\u0027 y if and only if there exists some process z such that x \\u0027ends with\\u0027 z and z \\u0027occurs in\\u0027 y\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002232\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002479\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has part that occurs in\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002479\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"RO:0002232\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002232\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002232\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000066\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002232","definition":"x \u0027has end location\u0027 y if and only if there exists some process z such that x \u0027ends with\u0027 z and z \u0027occurs in\u0027 y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002479","directParent":"http://purl.obolibrary.org/obo/RO_0002479","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x \u0027has end location\u0027 y if and only if there exists some process z such that x \u0027ends with\u0027 z and z \u0027occurs in\u0027 y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#label":"has end location","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002479","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002230","http://purl.obolibrary.org/obo/BFO_0000066"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002232","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002232","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has end location","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x \u0027has end location\u0027 y if and only if there exists some process z such that x \u0027ends with\u0027 z and z \u0027occurs in\u0027 y","false"],"shortForm":"RO_0002232","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002233\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002233\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has input\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002352\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002224\",\"http://purl.obolibrary.org/obo/RO_0002233\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has input\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002233\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002352\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"input of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002352\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002224\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002224\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"RO:0002233\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002233\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002233\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002233","definition":"p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000057","directParent":"http://purl.obolibrary.org/obo/RO_0000057","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#label":"has input","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000057","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002352","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002224","http://purl.obolibrary.org/obo/RO_0002233"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002233","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002233","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has input","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.","false"],"shortForm":"RO_0002233","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002254\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002254\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has developmental contribution from y iff x has some part z such that z develops from y\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002258\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002258\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has developmental contribution from y iff x has some part z such that z develops from y\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental contribution from\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002258\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002255\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002202\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental contribution from\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has developmental contribution from y iff x has some part z such that z develops from y\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002254\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002255\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally contributes to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002255\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"RO:0002254\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002254\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002254\"},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002258\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002254","definition":"x has developmental contribution from y iff x has some part z such that z develops from y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002258","directParent":"http://purl.obolibrary.org/obo/RO_0002258","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x has developmental contribution from y iff x has some part z such that z develops from y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/UBERON_0001062","http__//www.w3.org/2000/01/rdf-schema#label":"has developmental contribution from","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/UBERON_0001062","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002258","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002255","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002202"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002254","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002254","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has developmental contribution from","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x has developmental contribution from y iff x has some part z such that z develops from y","false"],"shortForm":"RO_0002254","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002255\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002255\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of has developmental contribution from\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002384\",\"http://purl.obolibrary.org/obo/RO_0002385\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002385\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of has developmental contribution from\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally contributes to\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002385\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002254\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002203\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally contributes to\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of has developmental contribution from\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002255\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002254\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental contribution from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002254\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002203\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002203\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002286\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally succeeded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002286\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002255\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002255\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002255\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002385\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to developmentally contribute to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002385\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002384\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002255","definition":"inverse of has developmental contribution from","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002384","http://purl.obolibrary.org/obo/RO_0002385"],"directParent":["http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002385"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of has developmental contribution from","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"developmentally contributes to","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002385"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002254","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002203","http://purl.obolibrary.org/obo/BFO_0000050"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002255","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002255","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"developmentally contributes to","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of has developmental contribution from","false"],"shortForm":"RO_0002255","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002258\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002286\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002258\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"GO:0032502\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0032502\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0032502\"},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002286\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally succeeded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002286\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"RO:0002258\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002258\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002258\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002258","definition":"Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p","http__//purl.obolibrary.org/obo/IAO_0000116":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2000/01/rdf-schema#label":"developmentally preceded by","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002286","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002258","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002258","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"developmentally preceded by","numDescendants":"6.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p","false"],"shortForm":"RO_0002258","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002263\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002263\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c acts upstream of p if and only if c enables some f that is involved in p\\u0027 and p\\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\\u0027 are processes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002264\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c acts upstream of p if and only if c enables some f that is involved in p\\u0027 and p\\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\\u0027 are processes.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002411\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c acts upstream of p if and only if c enables some f that is involved in p\\u0027 and p\\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\\u0027 are processes.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002263\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002263\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002263\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002263\"},\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002263","definition":"c acts upstream of p if and only if c enables some f that is involved in p\u0027 and p\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\u0027 are processes.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002264","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c acts upstream of p if and only if c enables some f that is involved in p\u0027 and p\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\u0027 are processes.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"acts upstream of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002264","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0002411"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002263","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002263","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"acts upstream of","numDescendants":"5.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c acts upstream of p if and only if c enables some f that is involved in p\u0027 and p\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\u0027 are processes.","false"],"shortForm":"RO_0002263","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002264\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002500\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002418\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002264\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002264\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002264\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002264\"},\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002264","definition":"c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002500","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"acts upstream of or within","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002500","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0002418"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002264","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002264","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"acts upstream of or within","numDescendants":"10.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.","false"],"shortForm":"RO_0002264","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002286\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002286\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Inverse of developmentally preceded by\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Inverse of developmentally preceded by\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally succeeded by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002258\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally succeeded by\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Inverse of developmentally preceded by\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002286\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002286\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002286\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002286\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002384\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002258\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002286","definition":"Inverse of developmentally preceded by","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002384","directParent":"http://purl.obolibrary.org/obo/RO_0002384","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Inverse of developmentally preceded by","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"developmentally succeeded by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002384","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002258","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002286","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002286","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"developmentally succeeded by","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Inverse of developmentally preceded by","false"],"shortForm":"RO_0002286","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002287\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002287\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002384\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002286\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of developmental precursor of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002210\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of developmental precursor of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002287\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002210\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002210\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002287\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002287\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002287\"},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002286\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally succeeded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002286\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002384\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002287","directAncestor":["http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002384"],"directParent":"http://purl.obolibrary.org/obo/RO_0002286","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"part of developmental precursor of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002286","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0002210"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002287","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002287","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"part of developmental precursor of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002287","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002304\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002304\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0004047\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0004047\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, positive effect\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0004047\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, positive effect\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002304\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002304\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002304\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002304\"},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004047\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004047\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002304","definition":"p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0004047"],"directParent":["http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0004047"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"causally upstream of, positive effect","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0004047"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002304","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002304","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally upstream of, positive effect","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.","false"],"shortForm":"RO_0002304","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002305\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002305\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0004046\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0004046\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, negative effect\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0004046\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, negative effect\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002305\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002305\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002305\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002305\"},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004046\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004046\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002305","definition":"p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0004046"],"directParent":["http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0004046"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"causally upstream of, negative effect","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0004046"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002305","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002305","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally upstream of, negative effect","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.","false"],"shortForm":"RO_0002305","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002327\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c enables p iff c is capable of p and c acts to execute p.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c enables p iff c is capable of p and c acts to execute p.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002333\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/BFO_0000051\"],[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002017\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c enables p iff c is capable of p and c acts to execute p.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002327\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002333\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enabled by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002333\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002327\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002327\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002327\"},\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002017\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002216\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002216\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002327","definition":"c enables p iff c is capable of p and c acts to execute p.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002215","http://purl.obolibrary.org/obo/RO_0002216","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002215","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c enables p iff c is capable of p and c acts to execute p.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"enables","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002215","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002333","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/BFO_0000051\"]","[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002017\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002327","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002327","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"enables","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c enables p iff c is capable of p and c acts to execute p.","false"],"shortForm":"RO_0002327","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002331\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002331\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c involved_in p if and only if c enables some process p\\u0027, and p\\u0027 is part of p\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0000056\",\"http://purl.obolibrary.org/obo/RO_0002431\",\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0000056\",\"http://purl.obolibrary.org/obo/RO_0002431\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c involved_in p if and only if c enables some process p\\u0027, and p\\u0027 is part of p\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"involved in\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0000056\",\"http://purl.obolibrary.org/obo/RO_0002431\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],[\"http://purl.obolibrary.org/obo/RO_0002331\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"involved in\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c involved_in p if and only if c enables some process p\\u0027, and p\\u0027 is part of p\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002331\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0002331\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002331\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002331\"},\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002431\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in or involved in regulation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002431\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000056\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000056\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002331","definition":"c involved_in p if and only if c enables some process p\u0027, and p\u0027 is part of p","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0000056","http://purl.obolibrary.org/obo/RO_0002431","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":["http://purl.obolibrary.org/obo/RO_0000056","http://purl.obolibrary.org/obo/RO_0002431"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c involved_in p if and only if c enables some process p\u0027, and p\u0027 is part of p","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"involved in","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0000056","http://purl.obolibrary.org/obo/RO_0002431"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]","[\"http://purl.obolibrary.org/obo/RO_0002331\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002331","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002331","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"involved in","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c involved_in p if and only if c enables some process p\u0027, and p\u0027 is part of p","false"],"shortForm":"RO_0002331","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002333\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002333\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of enables\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of enables\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enabled by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002327\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enabled by\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of enables\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002333\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"RO:0002333\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002333\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002333\"},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002333","definition":"inverse of enables","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000057","directParent":"http://purl.obolibrary.org/obo/RO_0000057","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of enables","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"enabled by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000057","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002327","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002333","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002333","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"enabled by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of enables","false"],"shortForm":"RO_0002333","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002334\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of regulates\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002427\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of regulates\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of regulates\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002334\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"RO:0002334\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002334\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002334\"},\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002334","definition":"inverse of regulates","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002427","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of regulates","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#label":"regulated by","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002427","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002211","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002334","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002334","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulated by","numDescendants":"8.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of regulates","false"],"shortForm":"RO_0002334","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002335\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002335\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of negatively regulates\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002334\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of negatively regulates\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulated by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002212\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulated by\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of negatively regulates\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002335\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002212\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002212\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"RO:0002335\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002335\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002335\"},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002335","definition":"inverse of negatively regulates","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002334","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of negatively regulates","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"negatively regulated by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002334","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002212","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002335","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002335","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"negatively regulated by","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of negatively regulates","false"],"shortForm":"RO_0002335","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002336\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002336\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of positively regulates\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002334\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of positively regulates\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulated by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002213\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulated by\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of positively regulates\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002336\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"RO:0002336\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002336\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002336\"},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002336","definition":"inverse of positively regulates","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002334","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of positively regulates","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"positively regulated by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002334","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002213","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002336","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002336","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"positively regulated by","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of positively regulates","false"],"shortForm":"RO_0002336","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002352\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002352\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of has input\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of has input\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"input of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002233\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"input of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of has input\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002352\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002233\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000056\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000056\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"RO:0002352\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002352\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002352\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002352","definition":"inverse of has input","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000056","directParent":"http://purl.obolibrary.org/obo/RO_0000056","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of has input","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"input of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000056","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002233","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002352","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002352","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"input of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of has input","false"],"shortForm":"RO_0002352","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction).\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction).\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002384\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002384\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002384\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002384","definition":"x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction).","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/UBERON_0001062","http__//www.w3.org/2000/01/rdf-schema#label":"has developmental potential involving","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/UBERON_0001062","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002384","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002384","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has developmental potential involving","numDescendants":"8.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction).","false"],"shortForm":"RO_0002384","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002385\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002385\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to developmentally contribute to\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to developmentally contribute to\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002385\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002385\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002385\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002385\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002384\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002385","definition":"x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002384","directParent":"http://purl.obolibrary.org/obo/RO_0002384","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has potential to developmentally contribute to","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002384","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002385","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002385","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has potential to developmentally contribute to","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y","false"],"shortForm":"RO_0002385","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has the potential to develop into y iff x develops into y or if x is capable of developing into y\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has the potential to develop into y iff x develops into y or if x is capable of developing into y\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has the potential to develop into y iff x develops into y or if x is capable of developing into y\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002387\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002387\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002387\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002384\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002387","definition":"x has the potential to develop into y iff x develops into y or if x is capable of developing into y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002384","directParent":"http://purl.obolibrary.org/obo/RO_0002384","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x has the potential to develop into y iff x develops into y or if x is capable of developing into y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has potential to develop into","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002384","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002387","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002387","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has potential to develop into","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x has the potential to develop into y iff x develops into y or if x is capable of developing into y","false"],"shortForm":"RO_0002387","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002388\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002388\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://purl.obolibrary.org/obo/RO_0002384\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to directly develop into\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to directly develop into\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002388\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002388\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002388\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002388\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002384\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002388","definition":"x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002387","http://purl.obolibrary.org/obo/RO_0002384"],"directParent":"http://purl.obolibrary.org/obo/RO_0002387","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has potential to directly develop into","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002387","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002388","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002388","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has potential to directly develop into","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y","false"],"shortForm":"RO_0002388","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002404\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002404\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of upstream of\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://purl.obolibrary.org/obo/RO_0002086\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":[\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://purl.obolibrary.org/obo/RO_0002427\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of upstream of\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally downstream of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://purl.obolibrary.org/obo/RO_0002427\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002411\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally downstream of\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of upstream of\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002404\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends after\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002404\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002404\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002404\"},\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002404","definition":"inverse of upstream of","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000062","http://purl.obolibrary.org/obo/RO_0002086","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":["http://purl.obolibrary.org/obo/BFO_0000062","http://purl.obolibrary.org/obo/RO_0002427"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of upstream of","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"causally downstream of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/BFO_0000062","http://purl.obolibrary.org/obo/RO_0002427"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002411","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002404","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002404","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally downstream of","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of upstream of","false"],"shortForm":"RO_0002404","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002405\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002405\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002087\",\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://purl.obolibrary.org/obo/RO_0002086\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002404\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002087\",\"http://purl.obolibrary.org/obo/RO_0002404\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally downstream of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002087\",\"http://purl.obolibrary.org/obo/RO_0002404\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002412\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally downstream of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002405\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002405\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002405\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002405\"},\"http://purl.obolibrary.org/obo/RO_0002404\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally downstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002404\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends after\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002087\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002087\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002412\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002405","directAncestor":["http://purl.obolibrary.org/obo/RO_0002087","http://purl.obolibrary.org/obo/BFO_0000062","http://purl.obolibrary.org/obo/RO_0002086","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002404","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":["http://purl.obolibrary.org/obo/RO_0002087","http://purl.obolibrary.org/obo/RO_0002404"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"immediately causally downstream of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002087","http://purl.obolibrary.org/obo/RO_0002404"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002412","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002405","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002405","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"immediately causally downstream of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002405","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002407\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002407\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002304\",\"http://purl.obolibrary.org/obo/RO_0004047\",\"http://purl.obolibrary.org/obo/RO_0012012\",\"http://purl.obolibrary.org/obo/RO_0012011\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0012012\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly positively regulates\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0012012\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002407\",\"http://purl.obolibrary.org/obo/RO_0002629\"],[\"http://purl.obolibrary.org/obo/RO_0002409\",\"http://purl.obolibrary.org/obo/RO_0002409\"],[\"http://purl.obolibrary.org/obo/RO_0002629\",\"http://purl.obolibrary.org/obo/RO_0002407\"],[\"http://purl.obolibrary.org/obo/RO_0002629\",\"http://purl.obolibrary.org/obo/RO_0002629\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly positively regulates\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002407\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002409\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly negatively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002409\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002407\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002407\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002407\"},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002304\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002304\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002629\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002629\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004047\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004047\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0012012\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0012012\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0012011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0012011\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002407","definition":"p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002213","http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002304","http://purl.obolibrary.org/obo/RO_0004047","http://purl.obolibrary.org/obo/RO_0012012","http://purl.obolibrary.org/obo/RO_0012011"],"directParent":["http://purl.obolibrary.org/obo/RO_0002213","http://purl.obolibrary.org/obo/RO_0012012"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"indirectly positively regulates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002213","http://purl.obolibrary.org/obo/RO_0012012"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002407\",\"http://purl.obolibrary.org/obo/RO_0002629\"]","[\"http://purl.obolibrary.org/obo/RO_0002409\",\"http://purl.obolibrary.org/obo/RO_0002409\"]","[\"http://purl.obolibrary.org/obo/RO_0002629\",\"http://purl.obolibrary.org/obo/RO_0002407\"]","[\"http://purl.obolibrary.org/obo/RO_0002629\",\"http://purl.obolibrary.org/obo/RO_0002629\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002407","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002407","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"indirectly positively regulates","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.","false"],"shortForm":"RO_0002407","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002409\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002409\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002305\",\"http://purl.obolibrary.org/obo/RO_0004046\",\"http://purl.obolibrary.org/obo/RO_0012012\",\"http://purl.obolibrary.org/obo/RO_0012011\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0012012\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly negatively regulates\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0012012\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002409\",\"http://purl.obolibrary.org/obo/RO_0002630\"],[\"http://purl.obolibrary.org/obo/RO_0002630\",\"http://purl.obolibrary.org/obo/RO_0002409\"],[\"http://purl.obolibrary.org/obo/RO_0002630\",\"http://purl.obolibrary.org/obo/RO_0002630\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly negatively regulates\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002409\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002212\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002212\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0002409\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002409\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002409\"},\"http://purl.obolibrary.org/obo/RO_0002630\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002630\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002305\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002305\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004046\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004046\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0012012\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0012012\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0012011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0012011\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002409","definition":"p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002212","http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002305","http://purl.obolibrary.org/obo/RO_0004046","http://purl.obolibrary.org/obo/RO_0012012","http://purl.obolibrary.org/obo/RO_0012011"],"directParent":["http://purl.obolibrary.org/obo/RO_0002212","http://purl.obolibrary.org/obo/RO_0012012"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"indirectly negatively regulates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002212","http://purl.obolibrary.org/obo/RO_0012012"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002409\",\"http://purl.obolibrary.org/obo/RO_0002630\"]","[\"http://purl.obolibrary.org/obo/RO_0002630\",\"http://purl.obolibrary.org/obo/RO_0002409\"]","[\"http://purl.obolibrary.org/obo/RO_0002630\",\"http://purl.obolibrary.org/obo/RO_0002630\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002409","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002409","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"indirectly negatively regulates","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.","false"],"shortForm":"RO_0002409","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002411\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":[\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002418\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002418\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002404\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"numDescendants\":13.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002411\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002404\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally downstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002404\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0002411\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002411\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002411\"},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002411","definition":"p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":["http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002418"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"causally upstream of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002418"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002404","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002411","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002411","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally upstream of","numDescendants":"13.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.","false"],"shortForm":"RO_0002411","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002412\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002412\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002090\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002090\",\"http://purl.obolibrary.org/obo/RO_0002411\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally upstream of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002090\",\"http://purl.obolibrary.org/obo/RO_0002411\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002405\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally upstream of\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002412\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002090\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002090\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002405\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally downstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002405\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0002412\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002412\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002412\"},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002412","definition":"p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002090","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":["http://purl.obolibrary.org/obo/RO_0002090","http://purl.obolibrary.org/obo/RO_0002411"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"immediately causally upstream of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002090","http://purl.obolibrary.org/obo/RO_0002411"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002405","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002412","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002412","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"immediately causally upstream of","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.","false"],"shortForm":"RO_0002412","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002418\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p is \\u0027causally upstream or within\\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002501\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002501\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p is \\u0027causally upstream or within\\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"We would like to make this disjoint with \\u0027preceded by\\u0027, but this is prohibited in OWL2\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002427\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"numDescendants\":16.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p is \\u0027causally upstream or within\\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.\"},{\"type\":[\"literal\"],\"value\":\"We would like to make this disjoint with \\u0027preceded by\\u0027, but this is prohibited in OWL2\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002418\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"RO:0002418\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002418\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002418\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002418","definition":"p is \u0027causally upstream or within\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002501","directParent":"http://purl.obolibrary.org/obo/RO_0002501","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p is \u0027causally upstream or within\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.","http__//purl.obolibrary.org/obo/IAO_0000116":"We would like to make this disjoint with \u0027preceded by\u0027, but this is prohibited in OWL2","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"causally upstream of or within","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002501","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002427","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002418","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002418","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally upstream of or within","numDescendants":"16.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p is \u0027causally upstream or within\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.","We would like to make this disjoint with \u0027preceded by\u0027, but this is prohibited in OWL2","false"],"shortForm":"RO_0002418","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002427\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of causally upstream of or within\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002501\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002501\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of causally upstream of or within\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002418\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"numDescendants\":11.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of causally upstream of or within\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002427\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002427\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002427\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002427\"},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002427","definition":"inverse of causally upstream of or within","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002501","directParent":"http://purl.obolibrary.org/obo/RO_0002501","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of causally upstream of or within","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"causally downstream of or within","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002501","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002418","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002427","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002427","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally downstream of or within","numDescendants":"11.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of causally upstream of or within","false"],"shortForm":"RO_0002427","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002428\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002428\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 regulates some p\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\",\"http://purl.obolibrary.org/obo/RO_0002431\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0002431\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 regulates some p\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"involved in regulation of\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0002431\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002211\"],[\"http://purl.obolibrary.org/obo/RO_0002331\",\"http://purl.obolibrary.org/obo/RO_0002211\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in regulation of\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 regulates some p\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002428\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002428\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002428\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002428\"},\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002331\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"involved in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002331\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002431\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in or involved in regulation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002431\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002263\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002428","definition":"c involved in regulation of p if c is involved in some p\u0027 and p\u0027 regulates some p","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595","http://purl.obolibrary.org/obo/RO_0002431"],"directParent":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0002431"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c involved in regulation of p if c is involved in some p\u0027 and p\u0027 regulates some p","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"involved in regulation of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0002431"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002211\"]","[\"http://purl.obolibrary.org/obo/RO_0002331\",\"http://purl.obolibrary.org/obo/RO_0002211\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002428","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002428","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"involved in regulation of","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c involved in regulation of p if c is involved in some p\u0027 and p\u0027 regulates some p","false"],"shortForm":"RO_0002428","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002429\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002429\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 positively regulates some p\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002428\",\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\",\"http://purl.obolibrary.org/obo/RO_0002431\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002428\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 positively regulates some p\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"involved in positive regulation of\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002428\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002213\"],[\"http://purl.obolibrary.org/obo/RO_0002331\",\"http://purl.obolibrary.org/obo/RO_0002213\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in positive regulation of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 positively regulates some p\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002429\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002429\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002429\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002429\"},\"http://purl.obolibrary.org/obo/RO_0002331\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"involved in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002331\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002431\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in or involved in regulation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002431\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in regulation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002428\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002263\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002429","definition":"c involved in regulation of p if c is involved in some p\u0027 and p\u0027 positively regulates some p","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002428","http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595","http://purl.obolibrary.org/obo/RO_0002431"],"directParent":"http://purl.obolibrary.org/obo/RO_0002428","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c involved in regulation of p if c is involved in some p\u0027 and p\u0027 positively regulates some p","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"involved in positive regulation of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002428","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002213\"]","[\"http://purl.obolibrary.org/obo/RO_0002331\",\"http://purl.obolibrary.org/obo/RO_0002213\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002429","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002429","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"involved in positive regulation of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c involved in regulation of p if c is involved in some p\u0027 and p\u0027 positively regulates some p","false"],"shortForm":"RO_0002429","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002430\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002430\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 negatively regulates some p\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002428\",\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\",\"http://purl.obolibrary.org/obo/RO_0002431\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002428\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 negatively regulates some p\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"involved in negative regulation of\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002428\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002212\"],[\"http://purl.obolibrary.org/obo/RO_0002331\",\"http://purl.obolibrary.org/obo/RO_0002212\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in negative regulation of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 negatively regulates some p\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002430\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002331\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"involved in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002331\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002212\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002212\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002431\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in or involved in regulation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002431\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in regulation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002428\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002430\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002430\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002430\"},\"http://purl.obolibrary.org/obo/RO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002263\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002430","definition":"c involved in regulation of p if c is involved in some p\u0027 and p\u0027 negatively regulates some p","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002428","http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595","http://purl.obolibrary.org/obo/RO_0002431"],"directParent":"http://purl.obolibrary.org/obo/RO_0002428","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c involved in regulation of p if c is involved in some p\u0027 and p\u0027 negatively regulates some p","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"involved in negative regulation of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002428","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002212\"]","[\"http://purl.obolibrary.org/obo/RO_0002331\",\"http://purl.obolibrary.org/obo/RO_0002212\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002430","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002430","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"involved in negative regulation of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c involved in regulation of p if c is involved in some p\u0027 and p\u0027 negatively regulates some p","false"],"shortForm":"RO_0002430","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002431\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002431\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"OWL does not allow defining object properties via a Union\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"involved in or involved in regulation of\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in or involved in regulation of\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p\"},{\"type\":[\"literal\"],\"value\":\"OWL does not allow defining object properties via a Union\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002431\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002431\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002431\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002431\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002431","definition":"c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":["http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p","http__//purl.obolibrary.org/obo/IAO_0000116":"OWL does not allow defining object properties via a Union","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"involved in or involved in regulation of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002431","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002431","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"involved in or involved in regulation of","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p","OWL does not allow defining object properties via a Union","false"],"shortForm":"RO_0002431","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002434\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002434\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between two entities in which the processes executed by the two entities are causally connected.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between two entities in which the processes executed by the two entities are causally connected.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"Considering relabeling as \\u0027pairwise interacts with\\u0027\"},{\"type\":[\"literal\"],\"value\":\"This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact.\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#SymmetricProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"interacts with\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"interacts with\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship that holds between two entities in which the processes executed by the two entities are causally connected.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"Considering relabeling as \\u0027pairwise interacts with\\u0027\"},{\"type\":[\"literal\"],\"value\":\"This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002434\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"RO:0002434\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002434\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002434\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002434","definition":"A relationship that holds between two entities in which the processes executed by the two entities are causally connected.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship that holds between two entities in which the processes executed by the two entities are causally connected.","http__//purl.obolibrary.org/obo/IAO_0000116":["Considering relabeling as \u0027pairwise interacts with\u0027","This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"interacts with","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000040","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002434","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002434","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"interacts with","numDescendants":"5.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship that holds between two entities in which the processes executed by the two entities are causally connected.","Considering relabeling as \u0027pairwise interacts with\u0027","This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact.","false"],"shortForm":"RO_0002434","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002436\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002436\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002434\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002434\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#SymmetricProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"molecularly interacts with\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002434\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"molecularly interacts with\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002436\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0002436\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002436\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002436\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002434\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002434\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002436","definition":"An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002434","directParent":"http://purl.obolibrary.org/obo/RO_0002434","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"molecularly interacts with","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002434","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002436","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002436","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"molecularly interacts with","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.","false"],"shortForm":"RO_0002436","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002447\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002447\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002436\",\"http://purl.obolibrary.org/obo/RO_0002434\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002436\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"Axiomatization to GO to be added later\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"phosphorylates\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002436\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"phosphorylates\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Axiomatization to GO to be added later\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002447\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002447\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002447\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002447\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002434\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002434\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002436\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecularly interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002436\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002447","directAncestor":["http://purl.obolibrary.org/obo/RO_0002436","http://purl.obolibrary.org/obo/RO_0002434"],"directParent":"http://purl.obolibrary.org/obo/RO_0002436","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000116":"Axiomatization to GO to be added later","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"phosphorylates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002436","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002447","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002447","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"phosphorylates","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Axiomatization to GO to be added later","false"],"shortForm":"RO_0002447","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002448\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002448\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\\n\\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002436\",\"http://purl.obolibrary.org/obo/RO_0002434\",\"http://purl.obolibrary.org/obo/RO_0011002\",\"http://purl.obolibrary.org/obo/RO_0002566\",\"http://purl.obolibrary.org/obo/RO_0002506\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002436\",\"http://purl.obolibrary.org/obo/RO_0011002\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\\n\\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly regulates activity of\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002436\",\"http://purl.obolibrary.org/obo/RO_0011002\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002333\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulates activity of\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\\n\\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002448\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0011002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulates activity of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0011002\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002333\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enabled by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002333\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002566\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally influences\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002566\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002434\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002434\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002436\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecularly interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002436\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"RO:0002448\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002448\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002448\"},\"http://purl.obolibrary.org/obo/RO_0002506\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between entities\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002506\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002448","definition":"The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\n\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002436","http://purl.obolibrary.org/obo/RO_0002434","http://purl.obolibrary.org/obo/RO_0011002","http://purl.obolibrary.org/obo/RO_0002566","http://purl.obolibrary.org/obo/RO_0002506"],"directParent":["http://purl.obolibrary.org/obo/RO_0002436","http://purl.obolibrary.org/obo/RO_0011002"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\n\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"directly regulates activity of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002436","http://purl.obolibrary.org/obo/RO_0011002"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002333"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002448","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002448","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly regulates activity of","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\n\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.","false"],"shortForm":"RO_0002448","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002449\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002449\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \\nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002448\",\"http://purl.obolibrary.org/obo/RO_0002436\",\"http://purl.obolibrary.org/obo/RO_0002434\",\"http://purl.obolibrary.org/obo/RO_0011002\",\"http://purl.obolibrary.org/obo/RO_0002566\",\"http://purl.obolibrary.org/obo/RO_0002506\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002448\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \\nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulates activity of\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002448\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002630\",\"http://purl.obolibrary.org/obo/RO_0002333\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulates activity of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \\nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002449\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0011002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulates activity of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0011002\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002333\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enabled by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002333\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002448\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulates activity of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002448\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002566\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally influences\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002566\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002434\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002434\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002436\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecularly interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002436\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"RO:0002449\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002449\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002449\"},\"http://purl.obolibrary.org/obo/RO_0002630\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002630\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002506\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between entities\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002506\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002449","definition":"The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002448","http://purl.obolibrary.org/obo/RO_0002436","http://purl.obolibrary.org/obo/RO_0002434","http://purl.obolibrary.org/obo/RO_0011002","http://purl.obolibrary.org/obo/RO_0002566","http://purl.obolibrary.org/obo/RO_0002506"],"directParent":"http://purl.obolibrary.org/obo/RO_0002448","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"directly negatively regulates activity of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002448","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0002630","http://purl.obolibrary.org/obo/RO_0002333"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002449","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002449","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly negatively regulates activity of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.","false"],"shortForm":"RO_0002449","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002450\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002450\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \\nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002448\",\"http://purl.obolibrary.org/obo/RO_0002436\",\"http://purl.obolibrary.org/obo/RO_0002434\",\"http://purl.obolibrary.org/obo/RO_0011002\",\"http://purl.obolibrary.org/obo/RO_0002566\",\"http://purl.obolibrary.org/obo/RO_0002506\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002448\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \\nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulates activity of\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002448\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002629\",\"http://purl.obolibrary.org/obo/RO_0002333\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulates activity of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \\nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002450\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0011002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulates activity of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0011002\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002333\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enabled by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002333\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002448\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulates activity of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002448\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002566\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally influences\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002566\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"RO:0002450\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002450\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002450\"},\"http://purl.obolibrary.org/obo/RO_0002434\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002434\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002436\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecularly interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002436\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002506\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between entities\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002506\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002629\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002629\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002450","definition":"The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002448","http://purl.obolibrary.org/obo/RO_0002436","http://purl.obolibrary.org/obo/RO_0002434","http://purl.obolibrary.org/obo/RO_0011002","http://purl.obolibrary.org/obo/RO_0002566","http://purl.obolibrary.org/obo/RO_0002506"],"directParent":"http://purl.obolibrary.org/obo/RO_0002448","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"directly positively regulates activity of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002448","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0002629","http://purl.obolibrary.org/obo/RO_0002333"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002450","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002450","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly positively regulates activity of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.","false"],"shortForm":"RO_0002450","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002473\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"RO:0002473\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002473\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002473","definition":"x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000051","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"composed primarily of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002473","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002473","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"composed primarily of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.","false"],"shortForm":"RO_0002473","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002479\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002479\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has part that occurs in\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has part that occurs in\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002479\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"RO:0002479\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002479\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002479\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002479","definition":"p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#label":"has part that occurs in","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000004","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002479","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002479","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has part that occurs in","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.","false"],"shortForm":"RO_0002479","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002487\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"numDescendants\":7.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002487\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002487\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002487\"},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002487","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"relation between physical entity and a process or stage","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000003","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002487","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002487","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"relation between physical entity and a process or stage","numDescendants":"7.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002487","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002488\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002488\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \\u003e\\u003d α(y) \\u0026 α(x) \\u003c\\u003d ω(y).\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002490\",\"http://purl.obolibrary.org/obo/RO_0002487\",\"http://purl.obolibrary.org/obo/RO_0002496\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002490\",\"http://purl.obolibrary.org/obo/RO_0002496\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \\u003e\\u003d α(y) \\u0026 α(x) \\u003c\\u003d ω(y).\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"existence starts during\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002490\",\"http://purl.obolibrary.org/obo/RO_0002496\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002488\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts during\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \\u003e\\u003d α(y) \\u0026 α(x) \\u003c\\u003d ω(y).\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002488\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002490\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence overlaps\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002490\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002496\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts during or after\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002496\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002488\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002488\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002488\"},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002487\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002487\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002488","definition":"x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002490","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/RO_0002496"],"directParent":["http://purl.obolibrary.org/obo/RO_0002490","http://purl.obolibrary.org/obo/RO_0002496"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y).","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"existence starts during","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002490","http://purl.obolibrary.org/obo/RO_0002496"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002488","http://purl.obolibrary.org/obo/BFO_0000050"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002488","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002488","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"existence starts during","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y).","false"],"shortForm":"RO_0002488","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002489\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002489\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \\u003d α(y).\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002488\",\"http://purl.obolibrary.org/obo/RO_0002490\",\"http://purl.obolibrary.org/obo/RO_0002487\",\"http://purl.obolibrary.org/obo/RO_0002496\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002488\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \\u003d α(y).\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"existence starts with\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002488\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts with\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \\u003d α(y).\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002489\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002490\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence overlaps\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002490\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002496\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts during or after\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002496\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002489\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002489\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002489\"},\"http://purl.obolibrary.org/obo/RO_0002488\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts during\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002488\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002487\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002487\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002489","definition":"x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \u003d α(y).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002488","http://purl.obolibrary.org/obo/RO_0002490","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/RO_0002496"],"directParent":"http://purl.obolibrary.org/obo/RO_0002488","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \u003d α(y).","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"existence starts with","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002488","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002489","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002489","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"existence starts with","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \u003d α(y).","false"],"shortForm":"RO_0002489","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002490\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002490\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \\u003e\\u003d α(y) \\u0026 α(x) \\u003c\\u003d ω(y)) OR (ω(x) \\u003c\\u003d ω(y) \\u0026 ω(x) \\u003e\\u003d α(y))\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \\u003e\\u003d α(y) \\u0026 α(x) \\u003c\\u003d ω(y)) OR (ω(x) \\u003c\\u003d ω(y) \\u0026 ω(x) \\u003e\\u003d α(y))\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"existence overlaps\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"existence overlaps\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \\u003e\\u003d α(y) \\u0026 α(x) \\u003c\\u003d ω(y)) OR (ω(x) \\u003c\\u003d ω(y) \\u0026 ω(x) \\u003e\\u003d α(y))\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002490\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002487\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002487\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002490\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002490\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002490\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002490","definition":"x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y)) OR (ω(x) \u003c\u003d ω(y) \u0026 ω(x) \u003e\u003d α(y))","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002487","directParent":"http://purl.obolibrary.org/obo/RO_0002487","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y)) OR (ω(x) \u003c\u003d ω(y) \u0026 ω(x) \u003e\u003d α(y))","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"existence overlaps","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002487","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002490","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002490","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"existence overlaps","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y)) OR (ω(x) \u003c\u003d ω(y) \u0026 ω(x) \u003e\u003d α(y))","false"],"shortForm":"RO_0002490","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002492\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \\u003c\\u003d ω(y) and ω(x) \\u003e\\u003d α(y).\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002490\",\"http://purl.obolibrary.org/obo/RO_0002487\",\"http://purl.obolibrary.org/obo/RO_0002497\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002490\",\"http://purl.obolibrary.org/obo/RO_0002497\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \\u003c\\u003d ω(y) and ω(x) \\u003e\\u003d α(y).\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"existence ends during\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002490\",\"http://purl.obolibrary.org/obo/RO_0002497\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \\u003c\\u003d ω(y) and ω(x) \\u003e\\u003d α(y).\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002492\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002490\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence overlaps\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002490\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002497\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during or before\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002497\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002487\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002487\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002492\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002492\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002492","definition":"x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \u003c\u003d ω(y) and ω(x) \u003e\u003d α(y).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002490","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/RO_0002497"],"directParent":["http://purl.obolibrary.org/obo/RO_0002490","http://purl.obolibrary.org/obo/RO_0002497"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \u003c\u003d ω(y) and ω(x) \u003e\u003d α(y).","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"existence ends during","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002490","http://purl.obolibrary.org/obo/RO_0002497"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002492","http://purl.obolibrary.org/obo/BFO_0000050"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002492","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002492","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"existence ends during","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \u003c\u003d ω(y) and ω(x) \u003e\u003d α(y).","false"],"shortForm":"RO_0002492","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002493\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002493\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \\u003d ω(y).\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://purl.obolibrary.org/obo/RO_0002490\",\"http://purl.obolibrary.org/obo/RO_0002487\",\"http://purl.obolibrary.org/obo/RO_0002497\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \\u003d ω(y).\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"existence ends with\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends with\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \\u003d ω(y).\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002493\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002490\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence overlaps\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002490\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002497\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during or before\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002497\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002492\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002492\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002487\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002487\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002493\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002493\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002493\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002493","definition":"x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \u003d ω(y).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002492","http://purl.obolibrary.org/obo/RO_0002490","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/RO_0002497"],"directParent":"http://purl.obolibrary.org/obo/RO_0002492","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \u003d ω(y).","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"existence ends with","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002492","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002493","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002493","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"existence ends with","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \u003d ω(y).","false"],"shortForm":"RO_0002493","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002494\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002494\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://purl.obolibrary.org/obo/RO_0002258\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"transformation of\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"transformation of\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002494\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"RO:0002494\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002494\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002494\"},\"http://purl.obolibrary.org/obo/RO_0002258\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002494","definition":"x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002202","http://purl.obolibrary.org/obo/RO_0002258"],"directParent":"http://purl.obolibrary.org/obo/RO_0002202","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"transformation of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002202","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002494","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002494","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"transformation of","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships","false"],"shortForm":"RO_0002494","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002495\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002495\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002207\",\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://purl.obolibrary.org/obo/RO_0002258\",\"http://purl.obolibrary.org/obo/RO_0002494\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002207\",\"http://purl.obolibrary.org/obo/RO_0002494\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"immediate transformation of\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002207\",\"http://purl.obolibrary.org/obo/RO_0002494\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"immediate transformation of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002495\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002494\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transformation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002494\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002207\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002207\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"RO:0002495\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002495\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002495\"},\"http://purl.obolibrary.org/obo/RO_0002258\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002495","definition":"x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002207","http://purl.obolibrary.org/obo/RO_0002202","http://purl.obolibrary.org/obo/RO_0002258","http://purl.obolibrary.org/obo/RO_0002494"],"directParent":["http://purl.obolibrary.org/obo/RO_0002207","http://purl.obolibrary.org/obo/RO_0002494"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"immediate transformation of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002207","http://purl.obolibrary.org/obo/RO_0002494"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002495","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002495","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"immediate transformation of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t","false"],"shortForm":"RO_0002495","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002496\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002496\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \\u003e\\u003d α (y).\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \\u003e\\u003d α (y).\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"existence starts during or after\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002496\"],[\"http://purl.obolibrary.org/obo/RO_0002258\",\"http://purl.obolibrary.org/obo/RO_0002496\"],[\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],[\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://purl.obolibrary.org/obo/BFO_0000062\"],[\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://purl.obolibrary.org/obo/RO_0002082\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts during or after\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \\u003e\\u003d α (y).\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002496\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002496\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002496\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002496\"},\"http://purl.obolibrary.org/obo/RO_0002487\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002487\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002258\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002496","definition":"x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \u003e\u003d α (y).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002487","directParent":"http://purl.obolibrary.org/obo/RO_0002487","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \u003e\u003d α (y).","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"existence starts during or after","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002487","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002496\"]","[\"http://purl.obolibrary.org/obo/RO_0002258\",\"http://purl.obolibrary.org/obo/RO_0002496\"]","[\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]","[\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://purl.obolibrary.org/obo/BFO_0000062\"]","[\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://purl.obolibrary.org/obo/RO_0002082\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002496","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002496","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"existence starts during or after","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \u003e\u003d α (y).","false"],"shortForm":"RO_0002496","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002497\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002497\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"existence ends during or before\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002497\"],[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002497\"],[\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],[\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://purl.obolibrary.org/obo/BFO_0000063\"],[\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://purl.obolibrary.org/obo/RO_0002082\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during or before\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002497\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002286\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally succeeded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002286\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002497\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002497\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002497\"},\"http://purl.obolibrary.org/obo/RO_0002487\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002487\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002497","definition":"x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002487","directParent":"http://purl.obolibrary.org/obo/RO_0002487","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"existence ends during or before","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002487","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002497\"]","[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002497\"]","[\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]","[\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://purl.obolibrary.org/obo/BFO_0000063\"]","[\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://purl.obolibrary.org/obo/RO_0002082\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002497","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002497","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"existence ends during or before","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.","false"],"shortForm":"RO_0002497","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002500\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship between a material entity and a process where the material entity has some causal role that influences the process\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002595\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002595\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship between a material entity and a process where the material entity has some causal role that influences the process\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002595\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002608\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"numDescendants\":17.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship between a material entity and a process where the material entity has some causal role that influences the process\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002500\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002500\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002500\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002500\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002608\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"process has causal agent\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002608\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002500","definition":"A relationship between a material entity and a process where the material entity has some causal role that influences the process","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002595","directParent":"http://purl.obolibrary.org/obo/RO_0002595","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship between a material entity and a process where the material entity has some causal role that influences the process","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"causal agent in process","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002595","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002608","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002500","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002500","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causal agent in process","numDescendants":"17.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship between a material entity and a process where the material entity has some causal role that influences the process","false"],"shortForm":"RO_0002500","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002501\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"numDescendants\":29.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002501\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002501\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002501\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002501\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002501","definition":"p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#label":"causal relation between processes","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000003","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002501","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002501","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causal relation between processes","numDescendants":"29.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.","false"],"shortForm":"RO_0002501","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002506\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002506\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causal relation between entities\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between entities\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002506\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002506\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002506\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002506\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002506","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000116":"The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2000/01/rdf-schema#label":"causal relation between entities","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000002","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002506","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002506","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causal relation between entities","numDescendants":"6.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch","false"],"shortForm":"RO_0002506","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002559\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002559\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002506\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002506\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causally influenced by\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002506\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002566\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causally influenced by\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002559\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002506\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between entities\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002506\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002566\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally influences\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002566\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"RO:0002559\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002559\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002559\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002559","directAncestor":"http://purl.obolibrary.org/obo/RO_0002506","directParent":"http://purl.obolibrary.org/obo/RO_0002506","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"causally influenced by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002506","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002566","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002559","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002559","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally influenced by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002559","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002566\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002566\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002506\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002506\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causally influences\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002506\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002559\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0002233\"],[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0002333\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causally influences\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002566\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002333\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enabled by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002333\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002559\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally influenced by\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002559\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002233\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002566\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002566\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002566\"},\"http://purl.obolibrary.org/obo/RO_0002506\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between entities\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002506\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002566","definition":"The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002506","directParent":"http://purl.obolibrary.org/obo/RO_0002506","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2000/01/rdf-schema#label":"causally influences","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002506","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002559","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0002233\"]","[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0002333\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002566","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002566","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally influences","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).","false"],"shortForm":"RO_0002566","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002578\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002578\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p directly regulates q iff p is immediately causally upstream of q and p regulates q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002412\",\"http://purl.obolibrary.org/obo/RO_0002090\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002412\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p directly regulates q iff p is immediately causally upstream of q and p regulates q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly regulates\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002412\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002022\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulates\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p directly regulates q iff p is immediately causally upstream of q and p regulates q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002578\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002090\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002090\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0002578\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002578\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002578\"},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002022\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulated by\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002022\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002412\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002578","definition":"p directly regulates q iff p is immediately causally upstream of q and p regulates q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002412","http://purl.obolibrary.org/obo/RO_0002090"],"directParent":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002412"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p directly regulates q iff p is immediately causally upstream of q and p regulates q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"directly regulates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002412"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002022","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002578","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002578","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly regulates","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p directly regulates q iff p is immediately causally upstream of q and p regulates q.","false"],"shortForm":"RO_0002578","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002584\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002584\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"s \\u0027has part structure that is capable of\\u0027 p if and only if there exists some part x such that s \\u0027has part\\u0027 x and x \\u0027capable of\\u0027 p\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002595\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002595\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"s \\u0027has part structure that is capable of\\u0027 p if and only if there exists some part x such that s \\u0027has part\\u0027 x and x \\u0027capable of\\u0027 p\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has part structure that is capable of\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002595\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002215\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has part structure that is capable of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"s \\u0027has part structure that is capable of\\u0027 p if and only if there exists some part x such that s \\u0027has part\\u0027 x and x \\u0027capable of\\u0027 p\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002584\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002584\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002584\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002584\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002584","definition":"s \u0027has part structure that is capable of\u0027 p if and only if there exists some part x such that s \u0027has part\u0027 x and x \u0027capable of\u0027 p","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002595","directParent":"http://purl.obolibrary.org/obo/RO_0002595","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"s \u0027has part structure that is capable of\u0027 p if and only if there exists some part x such that s \u0027has part\u0027 x and x \u0027capable of\u0027 p","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has part structure that is capable of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002595","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002215"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002584","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002584","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has part structure that is capable of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["s \u0027has part structure that is capable of\u0027 p if and only if there exists some part x such that s \u0027has part\u0027 x and x \u0027capable of\u0027 p","false"],"shortForm":"RO_0002584","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002595\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"numDescendants\":19.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.\"},{\"type\":[\"literal\"],\"value\":\"Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002595\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"RO:0002595\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002595\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002595\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002595","definition":"A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.","http__//purl.obolibrary.org/obo/IAO_0000116":"Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"causal relation between material entity and a process","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002595","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002595","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causal relation between material entity and a process","numDescendants":"19.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.","Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.","false"],"shortForm":"RO_0002595","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002596\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002596\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a regulates p.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002500\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a regulates p.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"capable of regulating\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://purl.obolibrary.org/obo/RO_0002211\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"capable of regulating\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a regulates p.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002596\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"RO:0002596\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002596\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002596\"},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002596","definition":"Holds between c and p if and only if c is capable of some activity a, and a regulates p.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002500","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Holds between c and p if and only if c is capable of some activity a, and a regulates p.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"capable of regulating","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002500","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002215","http://purl.obolibrary.org/obo/RO_0002211"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002596","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002596","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"capable of regulating","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Holds between c and p if and only if c is capable of some activity a, and a regulates p.","false"],"shortForm":"RO_0002596","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002597\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002597\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002596\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002596\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"capable of negatively regulating\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002596\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://purl.obolibrary.org/obo/RO_0002212\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"capable of negatively regulating\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002597\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002596\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"capable of regulating\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002596\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002212\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002212\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"RO:0002597\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002597\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002597\"},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002597","definition":"Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002596","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002596","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"capable of negatively regulating","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002596","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002215","http://purl.obolibrary.org/obo/RO_0002212"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002597","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002597","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"capable of negatively regulating","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.","false"],"shortForm":"RO_0002597","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002598\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002598\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002596\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002596\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"capable of positively regulating\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002596\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://purl.obolibrary.org/obo/RO_0002213\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"capable of positively regulating\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002598\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002596\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"capable of regulating\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002596\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"RO:0002598\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002598\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002598\"},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002598","definition":"Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002596","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002596","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"capable of positively regulating","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002596","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002215","http://purl.obolibrary.org/obo/RO_0002213"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002598","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002598","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"capable of positively regulating","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.","false"],"shortForm":"RO_0002598","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002608\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002608\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Inverse of \\u0027causal agent in process\\u0027\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Inverse of \\u0027causal agent in process\\u0027\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"process has causal agent\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002500\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"process has causal agent\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Inverse of \\u0027causal agent in process\\u0027\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002608\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002608\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002608\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002608\"},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002608","definition":"Inverse of \u0027causal agent in process\u0027","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Inverse of \u0027causal agent in process\u0027","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"process has causal agent","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002500","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002608","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002608","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"process has causal agent","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Inverse of \u0027causal agent in process\u0027","false"],"shortForm":"RO_0002608","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002629\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002629\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002304\",\"http://purl.obolibrary.org/obo/RO_0004047\",\"http://purl.obolibrary.org/obo/RO_0002578\",\"http://purl.obolibrary.org/obo/RO_0002412\",\"http://purl.obolibrary.org/obo/RO_0002090\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0002578\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulates\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0002578\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002024\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulates\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002629\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0002629\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002629\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002629\"},\"http://purl.obolibrary.org/obo/RO_0002090\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002090\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002304\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002304\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004047\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004047\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002024\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulated by\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002024\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002412\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002578\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002578\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002629","definition":"p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002213","http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002304","http://purl.obolibrary.org/obo/RO_0004047","http://purl.obolibrary.org/obo/RO_0002578","http://purl.obolibrary.org/obo/RO_0002412","http://purl.obolibrary.org/obo/RO_0002090"],"directParent":["http://purl.obolibrary.org/obo/RO_0002213","http://purl.obolibrary.org/obo/RO_0002578"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"directly positively regulates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002213","http://purl.obolibrary.org/obo/RO_0002578"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002024","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002629","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002629","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly positively regulates","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.","false"],"shortForm":"RO_0002629","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002630\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002630\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002305\",\"http://purl.obolibrary.org/obo/RO_0004046\",\"http://purl.obolibrary.org/obo/RO_0002578\",\"http://purl.obolibrary.org/obo/RO_0002412\",\"http://purl.obolibrary.org/obo/RO_0002090\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0002578\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulates\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0002578\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002023\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulates\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002630\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002090\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002090\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002212\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002212\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002305\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002305\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004046\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004046\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulated by\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002023\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002630\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002630\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002630\"},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002412\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002578\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002578\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002630","definition":"p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002212","http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002305","http://purl.obolibrary.org/obo/RO_0004046","http://purl.obolibrary.org/obo/RO_0002578","http://purl.obolibrary.org/obo/RO_0002412","http://purl.obolibrary.org/obo/RO_0002090"],"directParent":["http://purl.obolibrary.org/obo/RO_0002212","http://purl.obolibrary.org/obo/RO_0002578"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"directly negatively regulates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002212","http://purl.obolibrary.org/obo/RO_0002578"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002023","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002630","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002630","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly negatively regulates","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.","false"],"shortForm":"RO_0002630","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0003000\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0003000\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"produces\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0003001\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"produces\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0003000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0003001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"produced by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0003001\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"RO:0003000\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0003000\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0003000\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0003000","definition":"a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"produces","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0003001","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0003000","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0003000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"produces","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.","false"],"shortForm":"RO_0003000","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0003001\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0003001\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"a produced_by b iff some process that occurs_in b has_output a.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"a produced_by b iff some process that occurs_in b has_output a.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"produced by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0003000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"produced by\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"a produced_by b iff some process that occurs_in b has_output a.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0003001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0003000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"produces\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0003000\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"RO:0003001\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0003001\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0003001\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0003001","definition":"a produced_by b iff some process that occurs_in b has_output a.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a produced_by b iff some process that occurs_in b has_output a.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"produced by","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0003000","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0003001","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0003001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"produced by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a produced_by b iff some process that occurs_in b has_output a.","false"],"shortForm":"RO_0003001","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004019\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004019\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0004023\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0004023\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disease has basis in\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0004023\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has basis in\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004019\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"RO:0004019\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004019\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004019\"},\"http://purl.obolibrary.org/obo/RO_0004023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relationship with disease as subject\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004023\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004019","directAncestor":"http://purl.obolibrary.org/obo/RO_0004023","directParent":"http://purl.obolibrary.org/obo/RO_0004023","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/OGMS_0000031","http__//www.w3.org/2000/01/rdf-schema#label":"disease has basis in","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0004023","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004019","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004019","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disease has basis in","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0004019","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004021\"},\"definition\":[{\"type\":[\"literal\"],\"value\":\"A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.\"},{\"type\":[\"literal\"],\"value\":\"Editor note: TODO property chain: disease_has_location \\u003c- dhbido o occurs_in\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0004019\",\"http://purl.obolibrary.org/obo/RO_0004023\",\"http://purl.obolibrary.org/obo/RO_0004024\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0004019\",\"http://purl.obolibrary.org/obo/RO_0004024\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"RO:0004021\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"disease_has_basis_in_disruption_of\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"disease_has_basis_in_disruption_of\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Editor note: TODO property chain: disease_has_location \\u003c- dhbido o occurs_in\"},\"http://www.w3.org/2000/01/rdf-schema#label\":[{\"type\":[\"literal\"],\"value\":\"disease caused by disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease has basis in disruption of\"}],\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0004019\",\"http://purl.obolibrary.org/obo/RO_0004024\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease caused by disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease has basis in disruption of\"}],\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.\"},{\"type\":[\"literal\"],\"value\":\"RO:0004021\"},{\"type\":[\"literal\"],\"value\":\"disease_has_basis_in_disruption_of\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004021\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004024\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease causes disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease disrupts\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004024\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relationship with disease as subject\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004023\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has basis in\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004019\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0004021\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004021\"},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004021","definition":["A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.","Editor note: TODO property chain: disease_has_location \u003c- dhbido o occurs_in"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/RO_0004019","http://purl.obolibrary.org/obo/RO_0004023","http://purl.obolibrary.org/obo/RO_0004024"],"directParent":["http://purl.obolibrary.org/obo/RO_0004019","http://purl.obolibrary.org/obo/RO_0004024"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"RO:0004021","http__//www.geneontology.org/formats/oboInOwl#id":"disease_has_basis_in_disruption_of","http__//www.geneontology.org/formats/oboInOwl#shorthand":"disease_has_basis_in_disruption_of","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Editor note: TODO property chain: disease_has_location \u003c- dhbido o occurs_in","http__//www.w3.org/2000/01/rdf-schema#label":["disease caused by disruption of","disease has basis in disruption of"],"http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0004019","http://purl.obolibrary.org/obo/RO_0004024"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0004021","http://purl.obolibrary.org/obo/BFO_0000050"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004021","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004021","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":["disease caused by disruption of","disease has basis in disruption of"],"numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.","RO:0004021","disease_has_basis_in_disruption_of","false"],"shortForm":"RO_0004021","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004023\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004023\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causal relationship with disease as subject\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relationship with disease as subject\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004023\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0004023\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004023\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004023\"},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004023","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/OGMS_0000031","http__//www.w3.org/2000/01/rdf-schema#label":"causal relationship with disease as subject","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004023","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004023","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causal relationship with disease as subject","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0004023","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004024\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004024\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and a process where the disease process disrupts the execution of the process.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0004023\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0004023\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and a process where the disease process disrupts the execution of the process.\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"RO:0004024\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"disease_disrupts\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"disease_disrupts\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://www.w3.org/2000/01/rdf-schema#label\":[{\"type\":[\"literal\"],\"value\":\"disease causes disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease disrupts\"}],\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0004023\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0004024\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease causes disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease disrupts\"}],\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and a process where the disease process disrupts the execution of the process.\"},{\"type\":[\"literal\"],\"value\":\"RO:0004024\"},{\"type\":[\"literal\"],\"value\":\"disease_disrupts\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004024\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relationship with disease as subject\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004023\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0004024\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004024\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004024\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004024","definition":"A relationship between a disease and a process where the disease process disrupts the execution of the process.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0004023","directParent":"http://purl.obolibrary.org/obo/RO_0004023","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship between a disease and a process where the disease process disrupts the execution of the process.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"RO:0004024","http__//www.geneontology.org/formats/oboInOwl#id":"disease_disrupts","http__//www.geneontology.org/formats/oboInOwl#shorthand":"disease_disrupts","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/OGMS_0000031","http__//www.w3.org/2000/01/rdf-schema#label":["disease causes disruption of","disease disrupts"],"http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0004023","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0004024","http://purl.obolibrary.org/obo/BFO_0000050"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004024","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004024","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":["disease causes disruption of","disease disrupts"],"numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship between a disease and a process where the disease process disrupts the execution of the process.","RO:0004024","disease_disrupts","false"],"shortForm":"RO_0004024","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"TODO: complete range axiom once more of CARO has been mireoted in to this ontology\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"disease_has_location\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"disease_has_location\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"http://www.w3.org/2000/01/rdf-schema#range\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#unionOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/UBERON_0000466\"]}],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.\"},{\"type\":[\"literal\"],\"value\":\"TODO: complete range axiom once more of CARO has been mireoted in to this ontology\"},{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},{\"type\":[\"literal\"],\"value\":\"disease_has_location\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004026\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000466\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"immaterial anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000466\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0004026\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004026\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004026","definition":"A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.","http__//purl.obolibrary.org/obo/IAO_0000116":"TODO: complete range axiom once more of CARO has been mireoted in to this ontology","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"RO:0004026","http__//www.geneontology.org/formats/oboInOwl#id":"disease_has_location","http__//www.geneontology.org/formats/oboInOwl#shorthand":"disease_has_location","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/OGMS_0000031","http__//www.w3.org/2000/01/rdf-schema#label":"disease has location","http__//www.w3.org/2000/01/rdf-schema#range":["http://purl.obolibrary.org/obo/BFO_0000004"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0004026","http://purl.obolibrary.org/obo/BFO_0000050"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004026","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004026","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disease has location","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.","TODO: complete range axiom once more of CARO has been mireoted in to this ontology","RO:0004026","disease_has_location","false"],"shortForm":"RO_0004026","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004029\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004029\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"RO:0004029\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"disease_has_feature\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"disease_has_feature\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disease has feature\"},\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0004029\",\"http://purl.obolibrary.org/obo/BFO_0000051\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has feature\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.\"},{\"type\":[\"literal\"],\"value\":\"RO:0004029\"},{\"type\":[\"literal\"],\"value\":\"disease_has_feature\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004029\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0004029\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004029\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004029\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004029","definition":"A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"RO:0004029","http__//www.geneontology.org/formats/oboInOwl#id":"disease_has_feature","http__//www.geneontology.org/formats/oboInOwl#shorthand":"disease_has_feature","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/OGMS_0000031","http__//www.w3.org/2000/01/rdf-schema#label":"disease has feature","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0004029","http://purl.obolibrary.org/obo/BFO_0000051"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004029","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004029","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disease has feature","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.","RO:0004029","disease_has_feature","false"],"shortForm":"RO_0004029","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004032\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004032\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002264\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within, positive effect\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0004047\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within, positive effect\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004032\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004047\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004047\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0004032\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004032\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004032\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004032","directAncestor":["http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002264","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"acts upstream of or within, positive effect","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002264","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0004047"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004032","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004032","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"acts upstream of or within, positive effect","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0004032","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004033\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004033\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002264\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within, negative effect\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0004046\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within, negative effect\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004033\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004046\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004046\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0004033\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004033\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004033\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004033","directAncestor":["http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002264","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"acts upstream of or within, negative effect","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002264","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0004046"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004033","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004033","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"acts upstream of or within, negative effect","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0004033","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004034\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004034\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c \\u0027acts upstream of, positive effect\\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\",\"http://purl.obolibrary.org/obo/RO_0004032\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0004032\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c \\u0027acts upstream of, positive effect\\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of, positive effect\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0004032\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002304\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of, positive effect\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c \\u0027acts upstream of, positive effect\\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004034\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004032\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004032\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002304\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002304\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0004034\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004034\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004034\"},\"http://purl.obolibrary.org/obo/RO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002263\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004034","definition":"c \u0027acts upstream of, positive effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595","http://purl.obolibrary.org/obo/RO_0004032"],"directParent":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0004032"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c \u0027acts upstream of, positive effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"acts upstream of, positive effect","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0004032"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0002304"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004034","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004034","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"acts upstream of, positive effect","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c \u0027acts upstream of, positive effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive","false"],"shortForm":"RO_0004034","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004035\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004035\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c \\u0027acts upstream of, negative effect\\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\",\"http://purl.obolibrary.org/obo/RO_0004033\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0004033\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c \\u0027acts upstream of, negative effect\\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of, negative effect\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0004033\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002305\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of, negative effect\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c \\u0027acts upstream of, negative effect\\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004035\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004033\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002305\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002305\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"RO:0004035\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004035\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004035\"},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002263\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004035","definition":"c \u0027acts upstream of, negative effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595","http://purl.obolibrary.org/obo/RO_0004033"],"directParent":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0004033"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c \u0027acts upstream of, negative effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"acts upstream of, negative effect","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0004033"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0002305"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004035","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004035","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"acts upstream of, negative effect","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c \u0027acts upstream of, negative effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative","false"],"shortForm":"RO_0004035","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004046\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004046\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002418\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, negative effect\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002418\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, negative effect\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004046\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0004046\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004046\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004046\"},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004046","directAncestor":["http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002418","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"causally upstream of or within, negative effect","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002418","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004046","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004046","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally upstream of or within, negative effect","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0004046","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004047\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004047\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002418\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, positive effect\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002418\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, positive effect\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004047\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0004047\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004047\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004047\"},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004047","directAncestor":["http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002418","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"causally upstream of or within, positive effect","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002418","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004047","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004047","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally upstream of or within, positive effect","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0004047","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0011002\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0011002\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002566\",\"http://purl.obolibrary.org/obo/RO_0002506\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002566\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"regulates activity of\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002566\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"regulates activity of\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0011002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0011002\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0011002\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0011002\"},\"http://purl.obolibrary.org/obo/RO_0002506\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between entities\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002506\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002566\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally influences\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002566\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0011002","definition":"The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002566","http://purl.obolibrary.org/obo/RO_0002506"],"directParent":"http://purl.obolibrary.org/obo/RO_0002566","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"regulates activity of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002566","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0011002","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0011002","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulates activity of","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.","false"],"shortForm":"RO_0011002","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0012011\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0012011\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002411\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly causally upstream of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002411\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly causally upstream of\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0012011\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0012011\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0012011\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0012011\"},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0012011","definition":"p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002411","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"indirectly causally upstream of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002411","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0012011","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0012011","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"indirectly causally upstream of","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.","false"],"shortForm":"RO_0012011","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0012012\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0012012\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0012011\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0012011\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly regulates\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0012011\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly regulates\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0012012\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0012012\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0012012\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0012012\"},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0012011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0012011\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0012012","definition":"p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0012011"],"directParent":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0012011"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"indirectly regulates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0012011"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0012012","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0012012","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"indirectly regulates","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.","false"],"shortForm":"RO_0012012","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0019000\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0019000\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"regulates characteristic\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0019000\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"regulates characteristic\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0019000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0019000\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0019000\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0019000\"},\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0019000","definition":"A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#label":"regulates characteristic","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/PATO_0000001","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0019000"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0019000","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0019000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulates characteristic","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.","false"],"shortForm":"RO_0019000","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0019001\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0019001\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0019000\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0019000\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"positively regulates characteristic\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0019000\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0019001\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"positively regulates characteristic\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0019001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0019001\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0019001\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0019001\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0019000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulates characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0019000\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0019001","definition":"A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0019000","directParent":"http://purl.obolibrary.org/obo/RO_0019000","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"positively regulates characteristic","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0019000","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002213","http://purl.obolibrary.org/obo/RO_0019001"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0019001","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0019001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"positively regulates characteristic","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.","false"],"shortForm":"RO_0019001","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0019002\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0019002\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0019000\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0019000\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"negatively regulates characteristic\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0019000\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0019001\"],[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0019002\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"negatively regulates characteristic\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0019002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"RO:0019002\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0019002\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0019002\"},\"http://purl.obolibrary.org/obo/RO_0002212\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002212\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0019001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"positively regulates characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0019001\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0019000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulates characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0019000\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0019002","definition":"A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0019000","directParent":"http://purl.obolibrary.org/obo/RO_0019000","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"negatively regulates characteristic","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0019000","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0019001\"]","[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0019002\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0019002","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0019002","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"negatively regulates characteristic","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.","false"],"shortForm":"RO_0019002","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#comment\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A description of the subject resource.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A description of the subject resource.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_comment\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Literal\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Literal\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"RDFS:comment","definedBy":["rdfs"],"definition":"A description of the subject resource.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A description of the subject resource.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"comment","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Literal","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#comment","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#comment","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"comment","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"RDFS_comment","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#domain\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A domain of the subject property.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A domain of the subject property.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_domain\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"RDFS:domain","definedBy":["rdfs"],"definition":"A domain of the subject property.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A domain of the subject property.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"domain","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#domain","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#domain","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"domain","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"RDFS_domain","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The defininition of the subject resource.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#seeAlso\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#seeAlso\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The defininition of the subject resource.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2000/01/rdf-schema#seeAlso\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_isDefinedBy\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:seeAlso\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"RDFS:isDefinedBy","definedBy":["rdfs"],"definition":"The defininition of the subject resource.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#seeAlso","directParent":"http://www.w3.org/2000/01/rdf-schema#seeAlso","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The defininition of the subject resource.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"isDefinedBy","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2000/01/rdf-schema#seeAlso","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#isDefinedBy","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#isDefinedBy","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"isDefinedBy","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"RDFS_isDefinedBy","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A human-readable name for the subject.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A human-readable name for the subject.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_label\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"gitissue502\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Literal\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Literal\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","gitissue502","rdfs"],"curie":"RDFS:label","definedBy":["rdfs"],"definition":"A human-readable name for the subject.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A human-readable name for the subject.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"label","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Literal","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#label","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#label","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"RDFS_label","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#member\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:member\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A member of the subject resource.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A member of the subject resource.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"member\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"member\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_member\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"RDFS:member","definedBy":["rdfs"],"definition":"A member of the subject resource.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A member of the subject resource.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"member","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#member","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#member","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"member","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"RDFS_member","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#range\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A range of the subject property.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A range of the subject property.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_range\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"RDFS:range","definedBy":["rdfs"],"definition":"A range of the subject property.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A range of the subject property.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"range","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#range","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#range","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"range","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"RDFS_range","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#seeAlso\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:seeAlso\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Further information about the subject resource.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Further information about the subject resource.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_seeAlso\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"RDFS:seeAlso","definedBy":["rdfs"],"definition":"Further information about the subject resource.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"Further information about the subject resource.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"seeAlso","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#seeAlso","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#seeAlso","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"seeAlso","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"RDFS_seeAlso","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The subject is a subclass of a class.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The subject is a subclass of a class.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_subClassOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"RDFS:subClassOf","definedBy":["rdfs"],"definition":"The subject is a subclass of a class.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The subject is a subclass of a class.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"subClassOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#subClassOf","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#subClassOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"subClassOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"RDFS_subClassOf","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The subject is a subproperty of a property.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The subject is a subproperty of a property.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"rdfs\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_subPropertyOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"RDFS:subPropertyOf","definedBy":["rdfs"],"definition":"The subject is a subproperty of a property.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The subject is a subproperty of a property.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"subPropertyOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"rdfs+property+http://www.w3.org/2000/01/rdf-schema#subPropertyOf","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#subPropertyOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"subPropertyOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"rdfs","ontologyIri":"http://www.w3.org/2000/01/rdf-schema#","searchableAnnotationValues":"false","shortForm":"RDFS_subPropertyOf","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#comment\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A description of the subject resource.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A description of the subject resource.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_comment\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Literal\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Literal\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"RDFS:comment","definedBy":["rdfs"],"definition":"A description of the subject resource.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A description of the subject resource.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"comment","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Literal","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#comment","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#comment","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"comment","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"RDFS_comment","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#domain\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A domain of the subject property.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A domain of the subject property.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_domain\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"RDFS:domain","definedBy":["rdfs"],"definition":"A domain of the subject property.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A domain of the subject property.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"domain","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#domain","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#domain","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"domain","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"RDFS_domain","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The defininition of the subject resource.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#seeAlso\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#seeAlso\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The defininition of the subject resource.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2000/01/rdf-schema#seeAlso\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_isDefinedBy\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:seeAlso\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"RDFS:isDefinedBy","definedBy":["rdfs"],"definition":"The defininition of the subject resource.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2000/01/rdf-schema#seeAlso","directParent":"http://www.w3.org/2000/01/rdf-schema#seeAlso","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The defininition of the subject resource.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"isDefinedBy","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2000/01/rdf-schema#seeAlso","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#isDefinedBy","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#isDefinedBy","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"isDefinedBy","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"RDFS_isDefinedBy","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A human-readable name for the subject.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A human-readable name for the subject.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_label\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"gitissue502\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Literal\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Literal\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","gitissue502","rdfs"],"curie":"RDFS:label","definedBy":["rdfs"],"definition":"A human-readable name for the subject.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A human-readable name for the subject.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"label","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Literal","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#label","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#label","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"RDFS_label","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#member\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:member\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A member of the subject resource.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A member of the subject resource.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"member\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"member\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_member\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"RDFS:member","definedBy":["rdfs"],"definition":"A member of the subject resource.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A member of the subject resource.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"member","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#member","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#member","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"member","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"RDFS_member","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#range\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A range of the subject property.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"A range of the subject property.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_range\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"RDFS:range","definedBy":["rdfs"],"definition":"A range of the subject property.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"A range of the subject property.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"range","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#range","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#range","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"range","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"RDFS_range","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#seeAlso\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:seeAlso\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Further information about the subject resource.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Further information about the subject resource.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_seeAlso\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"RDFS:seeAlso","definedBy":["rdfs"],"definition":"Further information about the subject resource.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"Further information about the subject resource.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"seeAlso","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#seeAlso","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#seeAlso","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"seeAlso","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"RDFS_seeAlso","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subClassOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The subject is a subclass of a class.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The subject is a subclass of a class.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subClassOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_subClassOf\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"RDFS:subClassOf","definedBy":["rdfs"],"definition":"The subject is a subclass of a class.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The subject is a subclass of a class.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"subClassOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#subClassOf","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#subClassOf","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"subClassOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"RDFS_subClassOf","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The subject is a subproperty of a property.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The subject is a subproperty of a property.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2000/01/rdf-schema#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_subPropertyOf\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"rdfs\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl","rdfs"],"curie":"RDFS:subPropertyOf","definedBy":["rdfs"],"definition":"The subject is a subproperty of a property.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The subject is a subproperty of a property.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2000/01/rdf-schema#","http__//www.w3.org/2000/01/rdf-schema#label":"subPropertyOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+property+http://www.w3.org/2000/01/rdf-schema#subPropertyOf","imported":"true","iri":"http://www.w3.org/2000/01/rdf-schema#subPropertyOf","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"subPropertyOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"true","shortForm":"RDFS_subPropertyOf","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#allValuesFrom\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:allValuesFrom\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the class that a universal property restriction refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the class that a universal property restriction refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"allValuesFrom\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"allValuesFrom\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_allValuesFrom\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:allValuesFrom","definedBy":["owl"],"definition":"The property that determines the class that a universal property restriction refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the class that a universal property restriction refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"allValuesFrom","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+property+http://www.w3.org/2002/07/owl#allValuesFrom","imported":"false","iri":"http://www.w3.org/2002/07/owl#allValuesFrom","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"allValuesFrom","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_allValuesFrom","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#annotatedProperty\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:annotatedProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the predicate of an annotated axiom or annotated annotation.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the predicate of an annotated axiom or annotated annotation.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"annotatedProperty\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"annotatedProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_annotatedProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:annotatedProperty","definedBy":["owl"],"definition":"The property that determines the predicate of an annotated axiom or annotated annotation.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the predicate of an annotated axiom or annotated annotation.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"annotatedProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2002/07/owl#annotatedProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#annotatedProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"annotatedProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_annotatedProperty","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#annotatedSource\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:annotatedSource\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the subject of an annotated axiom or annotated annotation.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the subject of an annotated axiom or annotated annotation.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"annotatedSource\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"annotatedSource\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_annotatedSource\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:annotatedSource","definedBy":["owl"],"definition":"The property that determines the subject of an annotated axiom or annotated annotation.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the subject of an annotated axiom or annotated annotation.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"annotatedSource","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2002/07/owl#annotatedSource","imported":"false","iri":"http://www.w3.org/2002/07/owl#annotatedSource","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"annotatedSource","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_annotatedSource","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#annotatedTarget\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:annotatedTarget\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the object of an annotated axiom or annotated annotation.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the object of an annotated axiom or annotated annotation.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"annotatedTarget\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"annotatedTarget\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_annotatedTarget\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:annotatedTarget","definedBy":["owl"],"definition":"The property that determines the object of an annotated axiom or annotated annotation.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the object of an annotated axiom or annotated annotation.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"annotatedTarget","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2002/07/owl#annotatedTarget","imported":"false","iri":"http://www.w3.org/2002/07/owl#annotatedTarget","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"annotatedTarget","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_annotatedTarget","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#assertionProperty\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:assertionProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the predicate of a negative property assertion.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the predicate of a negative property assertion.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#NegativePropertyAssertion\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"assertionProperty\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"assertionProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_assertionProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:assertionProperty","definedBy":["owl"],"definition":"The property that determines the predicate of a negative property assertion.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the predicate of a negative property assertion.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#NegativePropertyAssertion","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"assertionProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+property+http://www.w3.org/2002/07/owl#assertionProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#assertionProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"assertionProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_assertionProperty","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#backwardCompatibleWith\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:backwardCompatibleWith\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The annotation property that indicates that a given ontology is backward compatible with another ontology.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2002/07/owl#OntologyProperty\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The annotation property that indicates that a given ontology is backward compatible with another ontology.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Ontology\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"backwardCompatibleWith\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Ontology\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"backwardCompatibleWith\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_backwardCompatibleWith\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:backwardCompatibleWith","definedBy":["owl"],"definition":"The annotation property that indicates that a given ontology is backward compatible with another ontology.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/2002/07/owl#OntologyProperty"],"http__//www.w3.org/2000/01/rdf-schema#comment":"The annotation property that indicates that a given ontology is backward compatible with another ontology.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Ontology","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"backwardCompatibleWith","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Ontology","id":"owl+property+http://www.w3.org/2002/07/owl#backwardCompatibleWith","imported":"false","iri":"http://www.w3.org/2002/07/owl#backwardCompatibleWith","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"backwardCompatibleWith","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_backwardCompatibleWith","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#bottomDataProperty\",\"type\":[\"dataProperty\",\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:bottomDataProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The data property that does not relate any individual to any data value.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#DatatypeProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The data property that does not relate any individual to any data value.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Thing\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"bottomDataProperty\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"bottomDataProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_bottomDataProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Literal\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Literal\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:bottomDataProperty","definedBy":["owl"],"definition":"The data property that does not relate any individual to any data value.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#DatatypeProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"The data property that does not relate any individual to any data value.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Thing","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"bottomDataProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Literal","id":"owl+property+http://www.w3.org/2002/07/owl#bottomDataProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#bottomDataProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"bottomDataProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_bottomDataProperty","type":["dataProperty","property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#bottomObjectProperty\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:bottomObjectProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The object property that does not relate any two individuals.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The object property that does not relate any two individuals.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Thing\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"bottomObjectProperty\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"bottomObjectProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_bottomObjectProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:bottomObjectProperty","definedBy":["owl"],"definition":"The object property that does not relate any two individuals.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"The object property that does not relate any two individuals.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Thing","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"bottomObjectProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Thing","id":"owl+property+http://www.w3.org/2002/07/owl#bottomObjectProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#bottomObjectProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"bottomObjectProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_bottomObjectProperty","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#cardinality\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:cardinality\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of an exact cardinality restriction.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of an exact cardinality restriction.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cardinality\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cardinality\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_cardinality\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:cardinality","definedBy":["owl"],"definition":"The property that determines the cardinality of an exact cardinality restriction.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the cardinality of an exact cardinality restriction.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"cardinality","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#nonNegativeInteger","id":"owl+property+http://www.w3.org/2002/07/owl#cardinality","imported":"false","iri":"http://www.w3.org/2002/07/owl#cardinality","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"cardinality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_cardinality","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#complementOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:complementOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that a given class is the complement of another class.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that a given class is the complement of another class.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"complementOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"complementOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_complementOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:complementOf","definedBy":["owl"],"definition":"The property that determines that a given class is the complement of another class.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that a given class is the complement of another class.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"complementOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Class","id":"owl+property+http://www.w3.org/2002/07/owl#complementOf","imported":"false","iri":"http://www.w3.org/2002/07/owl#complementOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"complementOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_complementOf","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#datatypeComplementOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:datatypeComplementOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that a given data range is the complement of another data range with respect to the data domain.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that a given data range is the complement of another data range with respect to the data domain.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"datatypeComplementOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"datatypeComplementOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_datatypeComplementOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Datatype\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Datatype\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:datatypeComplementOf","definedBy":["owl"],"definition":"The property that determines that a given data range is the complement of another data range with respect to the data domain.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that a given data range is the complement of another data range with respect to the data domain.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Datatype","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"datatypeComplementOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Datatype","id":"owl+property+http://www.w3.org/2002/07/owl#datatypeComplementOf","imported":"false","iri":"http://www.w3.org/2002/07/owl#datatypeComplementOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"datatypeComplementOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_datatypeComplementOf","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#deprecated\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:deprecated\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The annotation property that indicates that a given entity has been deprecated.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The annotation property that indicates that a given entity has been deprecated.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"deprecated\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"deprecated\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_deprecated\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:deprecated","definedBy":["owl"],"definition":"The annotation property that indicates that a given entity has been deprecated.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"The annotation property that indicates that a given entity has been deprecated.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"deprecated","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2002/07/owl#deprecated","imported":"false","iri":"http://www.w3.org/2002/07/owl#deprecated","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"deprecated","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_deprecated","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#differentFrom\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:differentFrom\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given individuals are different.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given individuals are different.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Thing\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"differentFrom\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"differentFrom\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_differentFrom\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:differentFrom","definedBy":["owl"],"definition":"The property that determines that two given individuals are different.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that two given individuals are different.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Thing","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"differentFrom","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Thing","id":"owl+property+http://www.w3.org/2002/07/owl#differentFrom","imported":"false","iri":"http://www.w3.org/2002/07/owl#differentFrom","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"differentFrom","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_differentFrom","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#disjointUnionOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:disjointUnionOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disjointUnionOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disjointUnionOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_disjointUnionOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:disjointUnionOf","definedBy":["owl"],"definition":"The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that a given class is equivalent to the disjoint union of a collection of other classes.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"disjointUnionOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#disjointUnionOf","imported":"false","iri":"http://www.w3.org/2002/07/owl#disjointUnionOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"disjointUnionOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_disjointUnionOf","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#disjointWith\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:disjointWith\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given classes are disjoint.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given classes are disjoint.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disjointWith\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disjointWith\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_disjointWith\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:disjointWith","definedBy":["owl"],"definition":"The property that determines that two given classes are disjoint.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that two given classes are disjoint.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"disjointWith","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Class","id":"owl+property+http://www.w3.org/2002/07/owl#disjointWith","imported":"false","iri":"http://www.w3.org/2002/07/owl#disjointWith","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"disjointWith","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_disjointWith","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#distinctMembers\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:distinctMembers\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#AllDifferent\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"distinctMembers\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"distinctMembers\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_distinctMembers\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:distinctMembers","definedBy":["owl"],"definition":"The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the collection of pairwise different individuals in a owl:AllDifferent axiom.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#AllDifferent","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"distinctMembers","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#distinctMembers","imported":"false","iri":"http://www.w3.org/2002/07/owl#distinctMembers","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"distinctMembers","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_distinctMembers","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#equivalentClass\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:equivalentClass\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"equivalentClass\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"equivalentClass\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_equivalentClass\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:equivalentClass","definedBy":["owl"],"definition":"The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that two given classes are equivalent, and that is used to specify datatype definitions.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"equivalentClass","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+property+http://www.w3.org/2002/07/owl#equivalentClass","imported":"false","iri":"http://www.w3.org/2002/07/owl#equivalentClass","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"equivalentClass","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_equivalentClass","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#equivalentProperty\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:equivalentProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given properties are equivalent.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given properties are equivalent.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"equivalentProperty\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"equivalentProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_equivalentProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:equivalentProperty","definedBy":["owl"],"definition":"The property that determines that two given properties are equivalent.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that two given properties are equivalent.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"equivalentProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+property+http://www.w3.org/2002/07/owl#equivalentProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#equivalentProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"equivalentProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_equivalentProperty","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#hasKey\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:hasKey\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of properties that jointly build a key.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of properties that jointly build a key.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hasKey\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasKey\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_hasKey\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:hasKey","definedBy":["owl"],"definition":"The property that determines the collection of properties that jointly build a key.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the collection of properties that jointly build a key.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"hasKey","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#hasKey","imported":"false","iri":"http://www.w3.org/2002/07/owl#hasKey","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"hasKey","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_hasKey","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#hasSelf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:hasSelf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the property that a self restriction refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the property that a self restriction refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hasSelf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasSelf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_hasSelf\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:hasSelf","definedBy":["owl"],"definition":"The property that determines the property that a self restriction refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the property that a self restriction refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"hasSelf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2002/07/owl#hasSelf","imported":"false","iri":"http://www.w3.org/2002/07/owl#hasSelf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"hasSelf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_hasSelf","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#hasValue\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:hasValue\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the individual that a has-value restriction refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the individual that a has-value restriction refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hasValue\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasValue\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_hasValue\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:hasValue","definedBy":["owl"],"definition":"The property that determines the individual that a has-value restriction refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the individual that a has-value restriction refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"hasValue","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2002/07/owl#hasValue","imported":"false","iri":"http://www.w3.org/2002/07/owl#hasValue","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"hasValue","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_hasValue","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#incompatibleWith\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:incompatibleWith\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The annotation property that indicates that a given ontology is incompatible with another ontology.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2002/07/owl#OntologyProperty\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The annotation property that indicates that a given ontology is incompatible with another ontology.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Ontology\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"incompatibleWith\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Ontology\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"incompatibleWith\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_incompatibleWith\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:incompatibleWith","definedBy":["owl"],"definition":"The annotation property that indicates that a given ontology is incompatible with another ontology.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/2002/07/owl#OntologyProperty"],"http__//www.w3.org/2000/01/rdf-schema#comment":"The annotation property that indicates that a given ontology is incompatible with another ontology.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Ontology","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"incompatibleWith","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Ontology","id":"owl+property+http://www.w3.org/2002/07/owl#incompatibleWith","imported":"false","iri":"http://www.w3.org/2002/07/owl#incompatibleWith","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"incompatibleWith","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_incompatibleWith","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#intersectionOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:intersectionOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of classes or data ranges that build an intersection.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of classes or data ranges that build an intersection.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"intersectionOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"intersectionOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_intersectionOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:intersectionOf","definedBy":["owl"],"definition":"The property that determines the collection of classes or data ranges that build an intersection.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the collection of classes or data ranges that build an intersection.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"intersectionOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#intersectionOf","imported":"false","iri":"http://www.w3.org/2002/07/owl#intersectionOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"intersectionOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_intersectionOf","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#inverseOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:inverseOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given properties are inverse.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given properties are inverse.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"inverseOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"inverseOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_inverseOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:inverseOf","definedBy":["owl"],"definition":"The property that determines that two given properties are inverse.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that two given properties are inverse.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"inverseOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#ObjectProperty","id":"owl+property+http://www.w3.org/2002/07/owl#inverseOf","imported":"false","iri":"http://www.w3.org/2002/07/owl#inverseOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"inverseOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_inverseOf","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#maxCardinality\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:maxCardinality\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of a maximum cardinality restriction.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of a maximum cardinality restriction.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"maxCardinality\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"maxCardinality\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_maxCardinality\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:maxCardinality","definedBy":["owl"],"definition":"The property that determines the cardinality of a maximum cardinality restriction.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the cardinality of a maximum cardinality restriction.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"maxCardinality","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#nonNegativeInteger","id":"owl+property+http://www.w3.org/2002/07/owl#maxCardinality","imported":"false","iri":"http://www.w3.org/2002/07/owl#maxCardinality","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"maxCardinality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_maxCardinality","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#maxQualifiedCardinality\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:maxQualifiedCardinality\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of a maximum qualified cardinality restriction.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of a maximum qualified cardinality restriction.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"maxQualifiedCardinality\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"maxQualifiedCardinality\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_maxQualifiedCardinality\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:maxQualifiedCardinality","definedBy":["owl"],"definition":"The property that determines the cardinality of a maximum qualified cardinality restriction.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the cardinality of a maximum qualified cardinality restriction.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"maxQualifiedCardinality","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#nonNegativeInteger","id":"owl+property+http://www.w3.org/2002/07/owl#maxQualifiedCardinality","imported":"false","iri":"http://www.w3.org/2002/07/owl#maxQualifiedCardinality","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"maxQualifiedCardinality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_maxQualifiedCardinality","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#members\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:members\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"members\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"members\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_members\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:members","definedBy":["owl"],"definition":"The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the collection of members in either a owl:AllDifferent, owl:AllDisjointClasses or owl:AllDisjointProperties axiom.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"members","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#members","imported":"false","iri":"http://www.w3.org/2002/07/owl#members","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"members","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_members","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#minCardinality\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:minCardinality\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of a minimum cardinality restriction.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of a minimum cardinality restriction.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"minCardinality\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"minCardinality\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_minCardinality\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:minCardinality","definedBy":["owl"],"definition":"The property that determines the cardinality of a minimum cardinality restriction.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the cardinality of a minimum cardinality restriction.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"minCardinality","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#nonNegativeInteger","id":"owl+property+http://www.w3.org/2002/07/owl#minCardinality","imported":"false","iri":"http://www.w3.org/2002/07/owl#minCardinality","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"minCardinality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_minCardinality","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#minQualifiedCardinality\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:minQualifiedCardinality\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of a minimum qualified cardinality restriction.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of a minimum qualified cardinality restriction.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"minQualifiedCardinality\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"minQualifiedCardinality\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_minQualifiedCardinality\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:minQualifiedCardinality","definedBy":["owl"],"definition":"The property that determines the cardinality of a minimum qualified cardinality restriction.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the cardinality of a minimum qualified cardinality restriction.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"minQualifiedCardinality","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#nonNegativeInteger","id":"owl+property+http://www.w3.org/2002/07/owl#minQualifiedCardinality","imported":"false","iri":"http://www.w3.org/2002/07/owl#minQualifiedCardinality","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"minQualifiedCardinality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_minQualifiedCardinality","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#onClass\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:onClass\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the class that a qualified object cardinality restriction refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the class that a qualified object cardinality restriction refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"onClass\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"onClass\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_onClass\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:onClass","definedBy":["owl"],"definition":"The property that determines the class that a qualified object cardinality restriction refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the class that a qualified object cardinality restriction refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"onClass","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Class","id":"owl+property+http://www.w3.org/2002/07/owl#onClass","imported":"false","iri":"http://www.w3.org/2002/07/owl#onClass","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"onClass","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_onClass","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#onDataRange\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:onDataRange\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the data range that a qualified data cardinality restriction refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the data range that a qualified data cardinality restriction refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"onDataRange\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"onDataRange\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_onDataRange\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Datatype\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Datatype\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:onDataRange","definedBy":["owl"],"definition":"The property that determines the data range that a qualified data cardinality restriction refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the data range that a qualified data cardinality restriction refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"onDataRange","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Datatype","id":"owl+property+http://www.w3.org/2002/07/owl#onDataRange","imported":"false","iri":"http://www.w3.org/2002/07/owl#onDataRange","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"onDataRange","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_onDataRange","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#onDatatype\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:onDatatype\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the datatype that a datatype restriction refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the datatype that a datatype restriction refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"onDatatype\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"onDatatype\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_onDatatype\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Datatype\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Datatype\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:onDatatype","definedBy":["owl"],"definition":"The property that determines the datatype that a datatype restriction refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the datatype that a datatype restriction refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Datatype","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"onDatatype","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Datatype","id":"owl+property+http://www.w3.org/2002/07/owl#onDatatype","imported":"false","iri":"http://www.w3.org/2002/07/owl#onDatatype","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"onDatatype","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_onDatatype","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#onProperties\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:onProperties\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"onProperties\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"onProperties\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_onProperties\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:onProperties","definedBy":["owl"],"definition":"The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the n-tuple of properties that a property restriction on an n-ary data range refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"onProperties","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#onProperties","imported":"false","iri":"http://www.w3.org/2002/07/owl#onProperties","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"onProperties","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_onProperties","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#onProperty\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:onProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the property that a property restriction refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the property that a property restriction refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"onProperty\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"onProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_onProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:onProperty","definedBy":["owl"],"definition":"The property that determines the property that a property restriction refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the property that a property restriction refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"onProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+property+http://www.w3.org/2002/07/owl#onProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#onProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"onProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_onProperty","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#oneOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:oneOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of individuals or data values that build an enumeration.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of individuals or data values that build an enumeration.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oneOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"oneOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_oneOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:oneOf","definedBy":["owl"],"definition":"The property that determines the collection of individuals or data values that build an enumeration.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the collection of individuals or data values that build an enumeration.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"oneOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#oneOf","imported":"false","iri":"http://www.w3.org/2002/07/owl#oneOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"oneOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_oneOf","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#priorVersion\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:priorVersion\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The annotation property that indicates the predecessor ontology of a given ontology.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2002/07/owl#OntologyProperty\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The annotation property that indicates the predecessor ontology of a given ontology.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Ontology\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"priorVersion\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Ontology\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"priorVersion\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_priorVersion\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:priorVersion","definedBy":["owl"],"definition":"The annotation property that indicates the predecessor ontology of a given ontology.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/2002/07/owl#OntologyProperty"],"http__//www.w3.org/2000/01/rdf-schema#comment":"The annotation property that indicates the predecessor ontology of a given ontology.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Ontology","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"priorVersion","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Ontology","id":"owl+property+http://www.w3.org/2002/07/owl#priorVersion","imported":"false","iri":"http://www.w3.org/2002/07/owl#priorVersion","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"priorVersion","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_priorVersion","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#propertyChainAxiom\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:propertyChainAxiom\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the n-tuple of properties that build a sub property chain of a given property.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the n-tuple of properties that build a sub property chain of a given property.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"propertyChainAxiom\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"propertyChainAxiom\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_propertyChainAxiom\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:propertyChainAxiom","definedBy":["owl"],"definition":"The property that determines the n-tuple of properties that build a sub property chain of a given property.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the n-tuple of properties that build a sub property chain of a given property.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"propertyChainAxiom","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#propertyChainAxiom","imported":"false","iri":"http://www.w3.org/2002/07/owl#propertyChainAxiom","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"propertyChainAxiom","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_propertyChainAxiom","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#propertyDisjointWith\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:propertyDisjointWith\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given properties are disjoint.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given properties are disjoint.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"propertyDisjointWith\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"propertyDisjointWith\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_propertyDisjointWith\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:propertyDisjointWith","definedBy":["owl"],"definition":"The property that determines that two given properties are disjoint.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that two given properties are disjoint.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"propertyDisjointWith","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","id":"owl+property+http://www.w3.org/2002/07/owl#propertyDisjointWith","imported":"false","iri":"http://www.w3.org/2002/07/owl#propertyDisjointWith","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"propertyDisjointWith","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_propertyDisjointWith","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#qualifiedCardinality\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:qualifiedCardinality\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of an exact qualified cardinality restriction.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the cardinality of an exact qualified cardinality restriction.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"qualifiedCardinality\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"qualifiedCardinality\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_qualifiedCardinality\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:qualifiedCardinality","definedBy":["owl"],"definition":"The property that determines the cardinality of an exact qualified cardinality restriction.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the cardinality of an exact qualified cardinality restriction.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"qualifiedCardinality","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#nonNegativeInteger","id":"owl+property+http://www.w3.org/2002/07/owl#qualifiedCardinality","imported":"false","iri":"http://www.w3.org/2002/07/owl#qualifiedCardinality","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"qualifiedCardinality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_qualifiedCardinality","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#sameAs\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:sameAs\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given individuals are equal.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines that two given individuals are equal.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Thing\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"sameAs\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"sameAs\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_sameAs\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:sameAs","definedBy":["owl"],"definition":"The property that determines that two given individuals are equal.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines that two given individuals are equal.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Thing","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"sameAs","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Thing","id":"owl+property+http://www.w3.org/2002/07/owl#sameAs","imported":"false","iri":"http://www.w3.org/2002/07/owl#sameAs","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"sameAs","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_sameAs","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#someValuesFrom\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:someValuesFrom\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the class that an existential property restriction refers to.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the class that an existential property restriction refers to.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"someValuesFrom\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"someValuesFrom\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_someValuesFrom\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:someValuesFrom","definedBy":["owl"],"definition":"The property that determines the class that an existential property restriction refers to.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the class that an existential property restriction refers to.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Restriction","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"someValuesFrom","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Class","id":"owl+property+http://www.w3.org/2002/07/owl#someValuesFrom","imported":"false","iri":"http://www.w3.org/2002/07/owl#someValuesFrom","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"someValuesFrom","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_someValuesFrom","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#sourceIndividual\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:sourceIndividual\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the subject of a negative property assertion.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the subject of a negative property assertion.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#NegativePropertyAssertion\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"sourceIndividual\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"sourceIndividual\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_sourceIndividual\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:sourceIndividual","definedBy":["owl"],"definition":"The property that determines the subject of a negative property assertion.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the subject of a negative property assertion.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#NegativePropertyAssertion","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"sourceIndividual","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Thing","id":"owl+property+http://www.w3.org/2002/07/owl#sourceIndividual","imported":"false","iri":"http://www.w3.org/2002/07/owl#sourceIndividual","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"sourceIndividual","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_sourceIndividual","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#targetIndividual\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:targetIndividual\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the object of a negative object property assertion.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the object of a negative object property assertion.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#NegativePropertyAssertion\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"targetIndividual\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"targetIndividual\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_targetIndividual\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:targetIndividual","definedBy":["owl"],"definition":"The property that determines the object of a negative object property assertion.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the object of a negative object property assertion.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#NegativePropertyAssertion","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"targetIndividual","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Thing","id":"owl+property+http://www.w3.org/2002/07/owl#targetIndividual","imported":"false","iri":"http://www.w3.org/2002/07/owl#targetIndividual","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"targetIndividual","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_targetIndividual","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#targetValue\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:targetValue\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the value of a negative data property assertion.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the value of a negative data property assertion.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#NegativePropertyAssertion\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"targetValue\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"targetValue\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_targetValue\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Literal\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Literal\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:targetValue","definedBy":["owl"],"definition":"The property that determines the value of a negative data property assertion.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the value of a negative data property assertion.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#NegativePropertyAssertion","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"targetValue","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Literal","id":"owl+property+http://www.w3.org/2002/07/owl#targetValue","imported":"false","iri":"http://www.w3.org/2002/07/owl#targetValue","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"targetValue","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_targetValue","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#topDataProperty\",\"type\":[\"dataProperty\",\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:topDataProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The data property that relates every individual to every data value.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#DatatypeProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The data property that relates every individual to every data value.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Thing\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"topDataProperty\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Literal\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"topDataProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_topDataProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Literal\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Literal\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Literal\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:topDataProperty","definedBy":["owl"],"definition":"The data property that relates every individual to every data value.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#DatatypeProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"The data property that relates every individual to every data value.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Thing","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"topDataProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Literal","id":"owl+property+http://www.w3.org/2002/07/owl#topDataProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#topDataProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"topDataProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_topDataProperty","type":["dataProperty","property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#topObjectProperty\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:topObjectProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The object property that relates every two individuals.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The object property that relates every two individuals.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2002/07/owl#Thing\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"topObjectProperty\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"topObjectProperty\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_topObjectProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:topObjectProperty","definedBy":["owl"],"definition":"The object property that relates every two individuals.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"The object property that relates every two individuals.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2002/07/owl#Thing","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"topObjectProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2002/07/owl#Thing","id":"owl+property+http://www.w3.org/2002/07/owl#topObjectProperty","imported":"false","iri":"http://www.w3.org/2002/07/owl#topObjectProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"topObjectProperty","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_topObjectProperty","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#unionOf\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:unionOf\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of classes or data ranges that build a union.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of classes or data ranges that build a union.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"unionOf\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"unionOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_unionOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Class\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Class\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Class\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:unionOf","definedBy":["owl"],"definition":"The property that determines the collection of classes or data ranges that build a union.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the collection of classes or data ranges that build a union.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"unionOf","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#unionOf","imported":"false","iri":"http://www.w3.org/2002/07/owl#unionOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"unionOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_unionOf","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#versionInfo\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:versionInfo\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The annotation property that provides version information for an ontology or another OWL construct.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The annotation property that provides version information for an ontology or another OWL construct.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"versionInfo\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2000/01/rdf-schema#Resource\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"versionInfo\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_versionInfo\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Resource\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Resource\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Resource\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:versionInfo","definedBy":["owl"],"definition":"The annotation property that provides version information for an ontology or another OWL construct.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"The annotation property that provides version information for an ontology or another OWL construct.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Resource","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"versionInfo","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2000/01/rdf-schema#Resource","id":"owl+property+http://www.w3.org/2002/07/owl#versionInfo","imported":"false","iri":"http://www.w3.org/2002/07/owl#versionInfo","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"versionInfo","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_versionInfo","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2002/07/owl#withRestrictions\",\"type\":[\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OWL:withRestrictions\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of facet-value pairs that define a datatype restriction.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The property that determines the collection of facet-value pairs that define a datatype restriction.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2000/01/rdf-schema#Datatype\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2002/07/owl#\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"withRestrictions\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"withRestrictions\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"owl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2002/07/owl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OWL_withRestrictions\"},\"isDefiningOntology\":true,\"definedBy\":[\"owl\"],\"appearsIn\":[\"owl\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#Datatype\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"Datatype\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:Datatype\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["owl"],"curie":"OWL:withRestrictions","definedBy":["owl"],"definition":"The property that determines the collection of facet-value pairs that define a datatype restriction.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","http__//www.w3.org/2000/01/rdf-schema#comment":"The property that determines the collection of facet-value pairs that define a datatype restriction.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2000/01/rdf-schema#Datatype","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2002/07/owl#","http__//www.w3.org/2000/01/rdf-schema#label":"withRestrictions","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","id":"owl+property+http://www.w3.org/2002/07/owl#withRestrictions","imported":"false","iri":"http://www.w3.org/2002/07/owl#withRestrictions","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"withRestrictions","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"owl","ontologyIri":"http://www.w3.org/2002/07/owl","searchableAnnotationValues":"false","shortForm":"OWL_withRestrictions","type":["property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#altLabel\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:altLabel\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The range of skos:altLabel is the class of RDF plain literals.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.\",\"lang\":\"en\"}],\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The range of skos:altLabel is the class of RDF plain literals.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.\",\"lang\":\"en\"}],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An alternative lexical label for a resource.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#example\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel).\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An alternative lexical label for a resource.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel).\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_altLabel\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#example\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:example\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:altLabel","definedBy":["skos"],"definition":["The range of skos:altLabel is the class of RDF plain literals.","skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."],"definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":["The range of skos:altLabel is the class of RDF plain literals.","skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"alternative label","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2000/01/rdf-schema#label","http__//www.w3.org/2004/02/skos/core#definition":"An alternative lexical label for a resource.","http__//www.w3.org/2004/02/skos/core#example":"Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel).","id":"skos+property+http://www.w3.org/2004/02/skos/core#altLabel","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#altLabel","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"alternative label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["An alternative lexical label for a resource.","Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel).","false"],"shortForm":"SKOS_altLabel","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#broadMatch\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:broadMatch\"},\"directAncestor\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"http://www.w3.org/2004/02/skos/core#broader\",\"http://www.w3.org/2004/02/skos/core#broaderTransitive\"],\"directParent\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#broader\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader match\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#broader\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://www.w3.org/2004/02/skos/core#narrowMatch\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader match\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_broadMatch\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#broaderTransitive\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader transitive\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:broaderTransitive\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#mappingRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in mapping relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:mappingRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#broader\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:broader\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#narrowMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:narrowMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:broadMatch","definedBy":["skos"],"directAncestor":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#semanticRelation","http://www.w3.org/2004/02/skos/core#broader","http://www.w3.org/2004/02/skos/core#broaderTransitive"],"directParent":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#broader"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has broader match","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#broader"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://www.w3.org/2004/02/skos/core#narrowMatch","http__//www.w3.org/2004/02/skos/core#definition":"skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.","id":"skos+property+http://www.w3.org/2004/02/skos/core#broadMatch","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#broadMatch","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has broader match","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.","false"],"shortForm":"SKOS_broadMatch","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#broader\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:broader\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Broader concepts are typically rendered as parents in a concept hierarchy (tree).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2004/02/skos/core#broaderTransitive\",\"http://www.w3.org/2004/02/skos/core#semanticRelation\"],\"directParent\":\"http://www.w3.org/2004/02/skos/core#broaderTransitive\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Broader concepts are typically rendered as parents in a concept hierarchy (tree).\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#broaderTransitive\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://www.w3.org/2004/02/skos/core#narrower\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a concept to a concept that is more general in meaning.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a concept to a concept that is more general in meaning.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_broader\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#broaderTransitive\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader transitive\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:broaderTransitive\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#narrower\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:narrower\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:broader","definedBy":["skos"],"definition":"Broader concepts are typically rendered as parents in a concept hierarchy (tree).","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2004/02/skos/core#broaderTransitive","http://www.w3.org/2004/02/skos/core#semanticRelation"],"directParent":"http://www.w3.org/2004/02/skos/core#broaderTransitive","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":"Broader concepts are typically rendered as parents in a concept hierarchy (tree).","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has broader","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#broaderTransitive","http__//www.w3.org/2002/07/owl#inverseOf":"http://www.w3.org/2004/02/skos/core#narrower","http__//www.w3.org/2004/02/skos/core#definition":"Relates a concept to a concept that is more general in meaning.","http__//www.w3.org/2004/02/skos/core#scopeNote":"By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.","id":"skos+property+http://www.w3.org/2004/02/skos/core#broader","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#broader","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has broader","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates a concept to a concept that is more general in meaning.","By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.","false"],"shortForm":"SKOS_broader","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#broaderTransitive\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:broaderTransitive\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader transitive\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"value\":\"skos:broaderTransitive is a transitive superproperty of skos:broader.\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader transitive\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"skos:broaderTransitive is a transitive superproperty of skos:broader.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_broaderTransitive\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower transitive\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:narrowerTransitive\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:broaderTransitive","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#semanticRelation","directParent":"http://www.w3.org/2004/02/skos/core#semanticRelation","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has broader transitive","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#semanticRelation","http__//www.w3.org/2002/07/owl#inverseOf":"http://www.w3.org/2004/02/skos/core#narrowerTransitive","http__//www.w3.org/2004/02/skos/core#definition":"skos:broaderTransitive is a transitive superproperty of skos:broader.","http__//www.w3.org/2004/02/skos/core#scopeNote":"By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.","id":"skos+property+http://www.w3.org/2004/02/skos/core#broaderTransitive","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#broaderTransitive","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has broader transitive","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["skos:broaderTransitive is a transitive superproperty of skos:broader.","By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.","false"],"shortForm":"SKOS_broaderTransitive","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#changeNote\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:changeNote\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#note\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#note\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"change note\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#note\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A note about a modification to a concept.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"change note\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A note about a modification to a concept.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_changeNote\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#note\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:note\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:changeNote","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#note","directParent":"http://www.w3.org/2004/02/skos/core#note","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"change note","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#note","http__//www.w3.org/2004/02/skos/core#definition":"A note about a modification to a concept.","id":"skos+property+http://www.w3.org/2004/02/skos/core#changeNote","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#changeNote","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"change note","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A note about a modification to a concept.","false"],"shortForm":"SKOS_changeNote","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#closeMatch\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:closeMatch\"},\"directAncestor\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#semanticRelation\"],\"directParent\":\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#SymmetricProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has close match\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of \\\"compound errors\\\" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has close match\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of \\\"compound errors\\\" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_closeMatch\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"gitissue502\",\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#mappingRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in mapping relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:mappingRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502","skos"],"curie":"SKOS:closeMatch","definedBy":["skos"],"directAncestor":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#semanticRelation"],"directParent":"http://www.w3.org/2004/02/skos/core#mappingRelation","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has close match","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#mappingRelation","http__//www.w3.org/2004/02/skos/core#definition":"skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of \"compound errors\" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property.","id":"skos+property+http://www.w3.org/2004/02/skos/core#closeMatch","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#closeMatch","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has close match","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of \"compound errors\" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property.","false"],"shortForm":"SKOS_closeMatch","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#definition\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#note\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#note\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#note\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A statement or formal explanation of the meaning of a concept.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A statement or formal explanation of the meaning of a concept.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_definition\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#note\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:note\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:definition","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#note","directParent":"http://www.w3.org/2004/02/skos/core#note","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"definition","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#note","http__//www.w3.org/2004/02/skos/core#definition":"A statement or formal explanation of the meaning of a concept.","id":"skos+property+http://www.w3.org/2004/02/skos/core#definition","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#definition","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"definition","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A statement or formal explanation of the meaning of a concept.","false"],"shortForm":"SKOS_definition","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#editorialNote\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:editorialNote\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#note\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#note\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editorial note\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#note\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A note for an editor, translator or maintainer of the vocabulary.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editorial note\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A note for an editor, translator or maintainer of the vocabulary.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_editorialNote\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#note\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:note\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:editorialNote","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#note","directParent":"http://www.w3.org/2004/02/skos/core#note","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"editorial note","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#note","http__//www.w3.org/2004/02/skos/core#definition":"A note for an editor, translator or maintainer of the vocabulary.","id":"skos+property+http://www.w3.org/2004/02/skos/core#editorialNote","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#editorialNote","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"editorial note","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A note for an editor, translator or maintainer of the vocabulary.","false"],"shortForm":"SKOS_editorialNote","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#exactMatch\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2004/02/skos/core#closeMatch\",\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#semanticRelation\"],\"directParent\":\"http://www.w3.org/2004/02/skos/core#closeMatch\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#SymmetricProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch.\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#closeMatch\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact match\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_exactMatch\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"gitissue502\",\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#mappingRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in mapping relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:mappingRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#closeMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has close match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:closeMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502","skos"],"curie":"SKOS:exactMatch","definedBy":["skos"],"definition":"skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2004/02/skos/core#closeMatch","http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#semanticRelation"],"directParent":"http://www.w3.org/2004/02/skos/core#closeMatch","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty","http://www.w3.org/2002/07/owl#TransitiveProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":"skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has exact match","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#closeMatch","http__//www.w3.org/2004/02/skos/core#definition":"skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch.","id":"skos+property+http://www.w3.org/2004/02/skos/core#exactMatch","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#exactMatch","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has exact match","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch.","false"],"shortForm":"SKOS_exactMatch","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#example\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:example\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#note\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#note\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#note\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An example of the use of a concept.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An example of the use of a concept.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_example\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#note\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:note\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:example","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#note","directParent":"http://www.w3.org/2004/02/skos/core#note","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"example","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#note","http__//www.w3.org/2004/02/skos/core#definition":"An example of the use of a concept.","id":"skos+property+http://www.w3.org/2004/02/skos/core#example","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#example","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"example","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["An example of the use of a concept.","false"],"shortForm":"SKOS_example","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#hasTopConcept\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:hasTopConcept\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2004/02/skos/core#ConceptScheme\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has top concept\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2004/02/skos/core#Concept\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://www.w3.org/2004/02/skos/core#topConceptOf\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has top concept\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_hasTopConcept\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#Concept\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:Concept\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#topConceptOf\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is top concept in scheme\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:topConceptOf\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#ConceptScheme\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept Scheme\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:ConceptScheme\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:hasTopConcept","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2004/02/skos/core#ConceptScheme","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has top concept","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2004/02/skos/core#Concept","http__//www.w3.org/2002/07/owl#inverseOf":"http://www.w3.org/2004/02/skos/core#topConceptOf","http__//www.w3.org/2004/02/skos/core#definition":"Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies.","id":"skos+property+http://www.w3.org/2004/02/skos/core#hasTopConcept","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#hasTopConcept","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has top concept","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies.","false"],"shortForm":"SKOS_hasTopConcept","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#hiddenLabel\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:hiddenLabel\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The range of skos:hiddenLabel is the class of RDF plain literals.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.\",\"lang\":\"en\"}],\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The range of skos:hiddenLabel is the class of RDF plain literals.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.\",\"lang\":\"en\"}],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"hidden label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"hidden label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_hiddenLabel\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:hiddenLabel","definedBy":["skos"],"definition":["The range of skos:hiddenLabel is the class of RDF plain literals.","skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."],"definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":["The range of skos:hiddenLabel is the class of RDF plain literals.","skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"hidden label","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2000/01/rdf-schema#label","http__//www.w3.org/2004/02/skos/core#definition":"A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations.","id":"skos+property+http://www.w3.org/2004/02/skos/core#hiddenLabel","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#hiddenLabel","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"hidden label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations.","false"],"shortForm":"SKOS_hiddenLabel","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#historyNote\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:historyNote\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#note\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#note\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"history note\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#note\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A note about the past state/use/meaning of a concept.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"history note\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A note about the past state/use/meaning of a concept.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_historyNote\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#note\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:note\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:historyNote","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#note","directParent":"http://www.w3.org/2004/02/skos/core#note","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"history note","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#note","http__//www.w3.org/2004/02/skos/core#definition":"A note about the past state/use/meaning of a concept.","id":"skos+property+http://www.w3.org/2004/02/skos/core#historyNote","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#historyNote","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"history note","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A note about the past state/use/meaning of a concept.","false"],"shortForm":"SKOS_historyNote","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#inScheme\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:inScheme\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in scheme\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2004/02/skos/core#ConceptScheme\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a resource (for example a concept) to a concept scheme in which it is included.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A concept may be a member of more than one concept scheme.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in scheme\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a resource (for example a concept) to a concept scheme in which it is included.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A concept may be a member of more than one concept scheme.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_inScheme\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#ConceptScheme\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept Scheme\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:ConceptScheme\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:inScheme","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"is in scheme","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2004/02/skos/core#ConceptScheme","http__//www.w3.org/2004/02/skos/core#definition":"Relates a resource (for example a concept) to a concept scheme in which it is included.","http__//www.w3.org/2004/02/skos/core#scopeNote":"A concept may be a member of more than one concept scheme.","id":"skos+property+http://www.w3.org/2004/02/skos/core#inScheme","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#inScheme","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"is in scheme","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates a resource (for example a concept) to a concept scheme in which it is included.","A concept may be a member of more than one concept scheme.","false"],"shortForm":"SKOS_inScheme","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:mappingRelation\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice.\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in mapping relation with\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates two concepts coming, by convention, from different schemes, and that have comparable meanings\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in mapping relation with\",\"lang\":\"en\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates two concepts coming, by convention, from different schemes, and that have comparable meanings\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_mappingRelation\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:mappingRelation","definedBy":["skos"],"definition":"These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2004/02/skos/core#semanticRelation","directParent":"http://www.w3.org/2004/02/skos/core#semanticRelation","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":"These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice.","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"is in mapping relation with","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#semanticRelation","http__//www.w3.org/2004/02/skos/core#definition":"Relates two concepts coming, by convention, from different schemes, and that have comparable meanings","id":"skos+property+http://www.w3.org/2004/02/skos/core#mappingRelation","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#mappingRelation","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"is in mapping relation with","numDescendants":"5.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates two concepts coming, by convention, from different schemes, and that have comparable meanings","false"],"shortForm":"SKOS_mappingRelation","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#member\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:member\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2004/02/skos/core#Collection\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has member\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#unionOf\":[\"http://www.w3.org/2004/02/skos/core#Concept\",\"http://www.w3.org/2004/02/skos/core#Collection\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a collection to one of its members.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has member\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a collection to one of its members.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_member\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#Collection\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Collection\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:Collection\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#Concept\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:Concept\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:member","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2004/02/skos/core#Collection","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has member","http__//www.w3.org/2004/02/skos/core#definition":"Relates a collection to one of its members.","id":"skos+property+http://www.w3.org/2004/02/skos/core#member","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#member","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has member","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates a collection to one of its members.","false"],"shortForm":"SKOS_member","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#memberList\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:memberList\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For any resource, every item in the list given as the value of the\\n skos:memberList property is also a value of the skos:member property.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For any resource, every item in the list given as the value of the\\n skos:memberList property is also a value of the skos:member property.\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2004/02/skos/core#OrderedCollection\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has member list\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#List\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ordered collection to the RDF list containing its members.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has member list\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ordered collection to the RDF list containing its members.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_memberList\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#OrderedCollection\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ordered Collection\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:OrderedCollection\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:memberList","definedBy":["skos"],"definition":"For any resource, every item in the list given as the value of the\n skos:memberList property is also a value of the skos:member property.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#FunctionalProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":"For any resource, every item in the list given as the value of the\n skos:memberList property is also a value of the skos:member property.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2004/02/skos/core#OrderedCollection","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has member list","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/1999/02/22-rdf-syntax-ns#List","http__//www.w3.org/2004/02/skos/core#definition":"Relates an ordered collection to the RDF list containing its members.","id":"skos+property+http://www.w3.org/2004/02/skos/core#memberList","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#memberList","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has member list","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates an ordered collection to the RDF list containing its members.","false"],"shortForm":"SKOS_memberList","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#narrowMatch\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:narrowMatch\"},\"directAncestor\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"http://www.w3.org/2004/02/skos/core#narrower\",\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\"],\"directParent\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#narrower\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower match\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#narrower\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://www.w3.org/2004/02/skos/core#broadMatch\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower match\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_narrowMatch\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#mappingRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in mapping relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:mappingRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower transitive\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:narrowerTransitive\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#narrower\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:narrower\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#broadMatch\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader match\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:broadMatch\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:narrowMatch","definedBy":["skos"],"directAncestor":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#semanticRelation","http://www.w3.org/2004/02/skos/core#narrower","http://www.w3.org/2004/02/skos/core#narrowerTransitive"],"directParent":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#narrower"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has narrower match","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#narrower"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://www.w3.org/2004/02/skos/core#broadMatch","http__//www.w3.org/2004/02/skos/core#definition":"skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.","id":"skos+property+http://www.w3.org/2004/02/skos/core#narrowMatch","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#narrowMatch","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has narrower match","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.","false"],"shortForm":"SKOS_narrowMatch","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#narrower\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:narrower\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Narrower concepts are typically rendered as children in a concept hierarchy (tree).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\",\"http://www.w3.org/2004/02/skos/core#semanticRelation\"],\"directParent\":\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Narrower concepts are typically rendered as children in a concept hierarchy (tree).\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://www.w3.org/2004/02/skos/core#broader\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a concept to a concept that is more specific in meaning.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a concept to a concept that is more specific in meaning.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_narrower\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower transitive\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:narrowerTransitive\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#broader\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:broader\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:narrower","definedBy":["skos"],"definition":"Narrower concepts are typically rendered as children in a concept hierarchy (tree).","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":["http://www.w3.org/2004/02/skos/core#narrowerTransitive","http://www.w3.org/2004/02/skos/core#semanticRelation"],"directParent":"http://www.w3.org/2004/02/skos/core#narrowerTransitive","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":"Narrower concepts are typically rendered as children in a concept hierarchy (tree).","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has narrower","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#narrowerTransitive","http__//www.w3.org/2002/07/owl#inverseOf":"http://www.w3.org/2004/02/skos/core#broader","http__//www.w3.org/2004/02/skos/core#definition":"Relates a concept to a concept that is more specific in meaning.","http__//www.w3.org/2004/02/skos/core#scopeNote":"By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.","id":"skos+property+http://www.w3.org/2004/02/skos/core#narrower","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#narrower","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has narrower","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates a concept to a concept that is more specific in meaning.","By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.","false"],"shortForm":"SKOS_narrower","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#narrowerTransitive\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:narrowerTransitive\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower transitive\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://www.w3.org/2004/02/skos/core#broaderTransitive\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"value\":\"skos:narrowerTransitive is a transitive superproperty of skos:narrower.\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has narrower transitive\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"skos:narrowerTransitive is a transitive superproperty of skos:narrower.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_narrowerTransitive\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#broaderTransitive\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has broader transitive\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:broaderTransitive\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:narrowerTransitive","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#semanticRelation","directParent":"http://www.w3.org/2004/02/skos/core#semanticRelation","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has narrower transitive","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#semanticRelation","http__//www.w3.org/2002/07/owl#inverseOf":"http://www.w3.org/2004/02/skos/core#broaderTransitive","http__//www.w3.org/2004/02/skos/core#definition":"skos:narrowerTransitive is a transitive superproperty of skos:narrower.","http__//www.w3.org/2004/02/skos/core#scopeNote":"By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.","id":"skos+property+http://www.w3.org/2004/02/skos/core#narrowerTransitive","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#narrowerTransitive","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has narrower transitive","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["skos:narrowerTransitive is a transitive superproperty of skos:narrower.","By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.","false"],"shortForm":"SKOS_narrowerTransitive","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#notation\",\"type\":[\"dataProperty\",\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:notation\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#DatatypeProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notation\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A notation, also known as classification code, is a string of characters such as \\\"T58.5\\\" or \\\"303.4833\\\" used to uniquely identify a concept within the scope of a given concept scheme.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:notation is used with a typed literal in the object position of the triple.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A notation, also known as classification code, is a string of characters such as \\\"T58.5\\\" or \\\"303.4833\\\" used to uniquely identify a concept within the scope of a given concept scheme.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"By convention, skos:notation is used with a typed literal in the object position of the triple.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_notation\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:notation","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#DatatypeProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"notation","http__//www.w3.org/2004/02/skos/core#definition":"A notation, also known as classification code, is a string of characters such as \"T58.5\" or \"303.4833\" used to uniquely identify a concept within the scope of a given concept scheme.","http__//www.w3.org/2004/02/skos/core#scopeNote":"By convention, skos:notation is used with a typed literal in the object position of the triple.","id":"skos+property+http://www.w3.org/2004/02/skos/core#notation","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#notation","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"notation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A notation, also known as classification code, is a string of characters such as \"T58.5\" or \"303.4833\" used to uniquely identify a concept within the scope of a given concept scheme.","By convention, skos:notation is used with a typed literal in the object position of the triple.","false"],"shortForm":"SKOS_notation","type":["dataProperty","property","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#note\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:note\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"note\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A general note, for any purpose.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This property may be used directly, or as a super-property for more specific note types.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"note\",\"lang\":\"en\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A general note, for any purpose.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This property may be used directly, or as a super-property for more specific note types.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_note\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:note","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"note","http__//www.w3.org/2004/02/skos/core#definition":"A general note, for any purpose.","http__//www.w3.org/2004/02/skos/core#scopeNote":"This property may be used directly, or as a super-property for more specific note types.","id":"skos+property+http://www.w3.org/2004/02/skos/core#note","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#note","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"note","numDescendants":"6.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A general note, for any purpose.","This property may be used directly, or as a super-property for more specific note types.","false"],"shortForm":"SKOS_note","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#prefLabel\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:prefLabel\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The range of skos:prefLabel is the class of RDF plain literals.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise\\n disjoint properties.\",\"lang\":\"en\"}],\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The range of skos:prefLabel is the class of RDF plain literals.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise\\n disjoint properties.\",\"lang\":\"en\"}],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preferred label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The preferred lexical label for a resource, in a given language.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preferred label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The preferred lexical label for a resource, in a given language.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_prefLabel\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:prefLabel","definedBy":["skos"],"definition":["A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag.","The range of skos:prefLabel is the class of RDF plain literals.","skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise\n disjoint properties."],"definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":["A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag.","The range of skos:prefLabel is the class of RDF plain literals.","skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise\n disjoint properties."],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"preferred label","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2000/01/rdf-schema#label","http__//www.w3.org/2004/02/skos/core#definition":"The preferred lexical label for a resource, in a given language.","id":"skos+property+http://www.w3.org/2004/02/skos/core#prefLabel","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#prefLabel","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"preferred label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["The preferred lexical label for a resource, in a given language.","false"],"shortForm":"SKOS_prefLabel","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#related\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:related\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:related is disjoint with skos:broaderTransitive\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#SymmetricProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:related is disjoint with skos:broaderTransitive\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has related\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a concept to a concept with which there is an associative semantic relationship.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has related\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a concept to a concept with which there is an associative semantic relationship.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_related\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:related","definedBy":["skos"],"definition":"skos:related is disjoint with skos:broaderTransitive","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://www.w3.org/2004/02/skos/core#semanticRelation","directParent":"http://www.w3.org/2004/02/skos/core#semanticRelation","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#comment":"skos:related is disjoint with skos:broaderTransitive","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has related","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#semanticRelation","http__//www.w3.org/2004/02/skos/core#definition":"Relates a concept to a concept with which there is an associative semantic relationship.","id":"skos+property+http://www.w3.org/2004/02/skos/core#related","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#related","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has related","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates a concept to a concept with which there is an associative semantic relationship.","false"],"shortForm":"SKOS_related","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#relatedMatch\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:relatedMatch\"},\"directAncestor\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"http://www.w3.org/2004/02/skos/core#related\"],\"directParent\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#related\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#SymmetricProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has related match\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://www.w3.org/2004/02/skos/core#mappingRelation\",\"http://www.w3.org/2004/02/skos/core#related\"],\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has related match\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_relatedMatch\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#related\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has related\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:related\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#mappingRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in mapping relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:mappingRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#semanticRelation\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:semanticRelation\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:relatedMatch","definedBy":["skos"],"directAncestor":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#semanticRelation","http://www.w3.org/2004/02/skos/core#related"],"directParent":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#related"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"has related match","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#related"],"http__//www.w3.org/2004/02/skos/core#definition":"skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes.","id":"skos+property+http://www.w3.org/2004/02/skos/core#relatedMatch","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#relatedMatch","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has related match","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes.","false"],"shortForm":"SKOS_relatedMatch","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#scopeNote\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:scopeNote\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#note\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#note\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#note\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A note that helps to clarify the meaning and/or the use of a concept.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A note that helps to clarify the meaning and/or the use of a concept.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_scopeNote\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#note\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:note\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:scopeNote","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#note","directParent":"http://www.w3.org/2004/02/skos/core#note","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"scope note","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#note","http__//www.w3.org/2004/02/skos/core#definition":"A note that helps to clarify the meaning and/or the use of a concept.","id":"skos+property+http://www.w3.org/2004/02/skos/core#scopeNote","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#scopeNote","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"scope note","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["A note that helps to clarify the meaning and/or the use of a concept.","false"],"shortForm":"SKOS_scopeNote","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#semanticRelation\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:semanticRelation\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2004/02/skos/core#Concept\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2004/02/skos/core#Concept\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Links a concept to a concept related by meaning.\",\"lang\":\"en\"},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in semantic relation with\",\"lang\":\"en\"},\"numDescendants\":11.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Links a concept to a concept related by meaning.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_semanticRelation\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#Concept\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:Concept\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#scopeNote\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scope note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:scopeNote\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:semanticRelation","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2004/02/skos/core#Concept","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"is in semantic relation with","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2004/02/skos/core#Concept","http__//www.w3.org/2004/02/skos/core#definition":"Links a concept to a concept related by meaning.","http__//www.w3.org/2004/02/skos/core#scopeNote":"This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts.","id":"skos+property+http://www.w3.org/2004/02/skos/core#semanticRelation","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#semanticRelation","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"is in semantic relation with","numDescendants":"11.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Links a concept to a concept related by meaning.","This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts.","false"],"shortForm":"SKOS_semanticRelation","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#topConceptOf\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:topConceptOf\"},\"directAncestor\":\"http://www.w3.org/2004/02/skos/core#inScheme\",\"directParent\":\"http://www.w3.org/2004/02/skos/core#inScheme\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#Property\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://www.w3.org/2004/02/skos/core#Concept\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://www.w3.org/2004/02/skos/core\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is top concept in scheme\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2004/02/skos/core#ConceptScheme\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2004/02/skos/core#inScheme\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://www.w3.org/2004/02/skos/core#hasTopConcept\",\"http://www.w3.org/2004/02/skos/core#definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a concept to the concept scheme that it is a top level concept of.\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is top concept in scheme\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"skos\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2004/02/skos/core\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a concept to the concept scheme that it is a top level concept of.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_topConceptOf\"},\"isDefiningOntology\":true,\"definedBy\":[\"skos\"],\"appearsIn\":[\"skos\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#hasTopConcept\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has top concept\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:hasTopConcept\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#inScheme\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is in scheme\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:inScheme\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#Concept\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:Concept\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#definition\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:definition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:isDefinedBy\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2004/02/skos/core#ConceptScheme\":{\"definedBy\":[\"skos\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Concept Scheme\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:ConceptScheme\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["skos"],"curie":"SKOS:topConceptOf","definedBy":["skos"],"directAncestor":"http://www.w3.org/2004/02/skos/core#inScheme","directParent":"http://www.w3.org/2004/02/skos/core#inScheme","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://www.w3.org/2004/02/skos/core#Concept","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://www.w3.org/2004/02/skos/core","http__//www.w3.org/2000/01/rdf-schema#label":"is top concept in scheme","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2004/02/skos/core#ConceptScheme","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2004/02/skos/core#inScheme","http__//www.w3.org/2002/07/owl#inverseOf":"http://www.w3.org/2004/02/skos/core#hasTopConcept","http__//www.w3.org/2004/02/skos/core#definition":"Relates a concept to the concept scheme that it is a top level concept of.","id":"skos+property+http://www.w3.org/2004/02/skos/core#topConceptOf","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#topConceptOf","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"is top concept in scheme","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"skos","ontologyIri":"http://www.w3.org/2004/02/skos/core","searchableAnnotationValues":["Relates a concept to the concept scheme that it is a top level concept of.","false"],"shortForm":"SKOS_topConceptOf","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002131\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002131\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\\n\\nA continuant cannot be part of an occurrent: use \\u0027participates in\\u0027. An occurrent cannot be part of a continuant: use \\u0027has participant\\u0027. A material entity cannot be part of an immaterial entity: use \\u0027has location\\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \\u0027inheres in\\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \\u0027bearer of\\u0027.\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\\n\\nA continuant cannot be part of an occurrent: use \\u0027participates in\\u0027. An occurrent cannot be part of a continuant: use \\u0027has participant\\u0027. A material entity cannot be part of an immaterial entity: use \\u0027has location\\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \\u0027inheres in\\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \\u0027bearer of\\u0027.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000050\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000050","definition":"a core relation that holds between a part and its whole","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002131","directParent":"http://purl.obolibrary.org/obo/RO_0002131","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a core relation that holds between a part and its whole","http__//purl.obolibrary.org/obo/IAO_0000116":["Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"part of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002131","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000050","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000050","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"part of","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a core relation that holds between a part and its whole","Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027.","false"],"shortForm":"BFO_0000050","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a whole and its part\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002131\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002131\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a whole and its part\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\\n\\nA continuant cannot have an occurrent as part: use \\u0027participates in\\u0027. An occurrent cannot have a continuant as part: use \\u0027has participant\\u0027. An immaterial entity cannot have a material entity as part: use \\u0027location of\\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \\u0027bearer of\\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \\u0027inheres in\\u0027.\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a whole and its part\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\\n\\nA continuant cannot have an occurrent as part: use \\u0027participates in\\u0027. An occurrent cannot have a continuant as part: use \\u0027has participant\\u0027. An immaterial entity cannot have a material entity as part: use \\u0027location of\\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \\u0027bearer of\\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \\u0027inheres in\\u0027.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000051\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000051","definition":"a core relation that holds between a whole and its part","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002131","directParent":"http://purl.obolibrary.org/obo/RO_0002131","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a core relation that holds between a whole and its part","http__//purl.obolibrary.org/obo/IAO_0000116":["Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use \u0027participates in\u0027. An occurrent cannot have a continuant as part: use \u0027has participant\u0027. An immaterial entity cannot have a material entity as part: use \u0027location of\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \u0027bearer of\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \u0027inheres in\u0027."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"has part","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002131","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000050","id":"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000051","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000051","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has part","numDescendants":"10.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a core relation that holds between a whole and its part","Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use \u0027participates in\u0027. An occurrent cannot have a continuant as part: use \u0027has participant\u0027. An immaterial entity cannot have a material entity as part: use \u0027location of\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \u0027bearer of\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \u0027inheres in\u0027.","false"],"shortForm":"BFO_0000051","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \\u003c\\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002086\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002086\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \\u003c\\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002086\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/BFO_0000062\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \\u003c\\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000062\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends after\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000062","definition":"x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \u003c\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002086","http://purl.obolibrary.org/obo/RO_0002222"],"directParent":"http://purl.obolibrary.org/obo/RO_0002086","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \u003c\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http__//purl.obolibrary.org/obo/IAO_0000116":"An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#label":"preceded by","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002086","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000063","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/BFO_0000062"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000062","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000062","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"preceded by","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x is preceded by y if and only if the time point at which y ends is before or equivalent to the time point at which x starts. Formally: x preceded by y iff ω(y) \u003c\u003d α(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","An example is: translation preceded_by transcription; aging preceded_by development (not however death preceded_by aging). Where derives_from links classes of continuants, preceded_by links classes of processes. Clearly, however, these two relations are not independent of each other. Thus if cells of type C1 derive_from cells of type C, then any cell division involving an instance of C1 in a given lineage is preceded_by cellular processes involving an instance of C. The assertion P preceded_by P1 tells us something about Ps in general: that is, it tells us something about what happened earlier, given what we know about what happened later. Thus it does not provide information pointing in the opposite direction, concerning instances of P1 in general; that is, that each is such as to be succeeded by some instance of P. Note that an assertion to the effect that P preceded_by P1 is rather weak; it tells us little about the relations between the underlying instances in virtue of which the preceded_by relation obtains. Typically we will be interested in stronger relations, for example in the relation immediately_preceded_by, or in relations which combine preceded_by with a condition to the effect that the corresponding instances of P and P1 share participants, or that their participants are connected by relations of derivation, or (as a first step along the road to a treatment of causality) that the one process in some way affects (for example, initiates or regulates) the other.","false"],"shortForm":"BFO_0000062","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \\u003c\\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \\u003c\\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/BFO_0000063\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"numDescendants\":15.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \\u003c\\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000063\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000063","definition":"x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \u003c\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002222","directParent":"http://purl.obolibrary.org/obo/RO_0002222","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \u003c\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#label":"precedes","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002222","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000062","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/BFO_0000063"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000063","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000063","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"precedes","numDescendants":"15.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x precedes y if and only if the time point at which x ends is before or equivalent to the time point at which y starts. Formally: x precedes y iff ω(x) \u003c\u003d α(y), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","false"],"shortForm":"BFO_0000063","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000066\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/BFO_0000066\"],[\"http://purl.obolibrary.org/obo/BFO_0000066\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000066\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000067\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contains process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000067\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000066","definition":"b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#label":"occurs in","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000067","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/BFO_0000066\"]","[\"http://purl.obolibrary.org/obo/BFO_0000066\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000066","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000066","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"occurs in","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","false"],"shortForm":"BFO_0000066","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000067\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"[copied from inverse property \\u0027occurs in\\u0027] b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"[copied from inverse property \\u0027occurs in\\u0027] b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contains process\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contains process\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"[copied from inverse property \\u0027occurs in\\u0027] b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000067\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000066\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"BFO:0000067","definition":"[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"contains process","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000066","id":"gitissue502+property+http://purl.obolibrary.org/obo/BFO_0000067","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000067","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"contains process","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","false"],"shortForm":"BFO_0000067","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000115\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"IAO:0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://purl.obolibrary.org/obo/IAO_0000115","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000115","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000115","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"IAO_0000115","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000116\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"IAO:0000116","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://purl.obolibrary.org/obo/IAO_0000116","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000116","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000116","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"IAO_0000116","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000233\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"IAO:0000233","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://purl.obolibrary.org/obo/IAO_0000233","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000233","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000233","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"IAO_0000233","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0006012\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0006012\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0006012\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0006012\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"IAO:0006012","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://purl.obolibrary.org/obo/IAO_0006012","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0006012","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0006012","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"IAO_0006012","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000052\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000052","definition":"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"characteristic of","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000053","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000052","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000052","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"characteristic of","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","false"],"shortForm":"RO_0000052","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of characteristic_of\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of characteristic_of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.\",\"lang\":\"en\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"has_characteristic\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"has_characteristic\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#InverseFunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of characteristic_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},{\"type\":[\"literal\"],\"value\":\"has_characteristic\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000053\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0000053\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000053\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000053","definition":"Inverse of characteristic_of","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Inverse of characteristic_of","http__//purl.obolibrary.org/obo/IAO_0000116":"A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"RO:0000053","http__//www.geneontology.org/formats/oboInOwl#id":"has_characteristic","http__//www.geneontology.org/formats/oboInOwl#shorthand":"has_characteristic","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#InverseFunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":["has characteristic","has characteristic"],"http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000020","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000052","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000053","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000053","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":["has characteristic","has characteristic"],"numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Inverse of characteristic_of","A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.","RO:0000053","has_characteristic","false"],"shortForm":"RO_0000053","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000056\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a continuant and a process, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a continuant and a process, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a continuant and a process, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000056\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000056","definition":"a relation between a continuant and a process, in which the continuant is somehow involved in the process","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a continuant and a process, in which the continuant is somehow involved in the process","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2000/01/rdf-schema#label":"participates in","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000057","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000056","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000056","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"participates in","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between a continuant and a process, in which the continuant is somehow involved in the process","false"],"shortForm":"RO_0000056","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a process and a continuant, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a process and a continuant, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0000057\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a process and a continuant, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000057\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000056\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000056\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000057","definition":"a relation between a process and a continuant, in which the continuant is somehow involved in the process","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a process and a continuant, in which the continuant is somehow involved in the process","http__//purl.obolibrary.org/obo/IAO_0000116":"Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#label":"has participant","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000056","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0000057"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000057","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000057","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has participant","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between a process and a continuant, in which the continuant is somehow involved in the process","Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.","false"],"shortForm":"RO_0000057","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000079\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000079\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000034\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000085\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000079\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000034\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000034\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000085\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has function\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000085\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000079","definition":"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000052","directParent":"http://purl.obolibrary.org/obo/RO_0000052","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000034","http__//www.w3.org/2000/01/rdf-schema#label":"function of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000052","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000085","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000079","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000079","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"function of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.","false"],"shortForm":"RO_0000079","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000080\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000080\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A quality inheres in its bearer at all times for which the quality exists.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A quality inheres in its bearer at all times for which the quality exists.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000080\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000080","definition":"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000052","directParent":"http://purl.obolibrary.org/obo/RO_0000052","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A quality inheres in its bearer at all times for which the quality exists.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"quality of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000052","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000086","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000080","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000080","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"quality of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","A quality inheres in its bearer at all times for which the quality exists.","false"],"shortForm":"RO_0000080","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000081\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000081\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000087\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000081\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000087\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has role\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000087\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000081","definition":"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000052","directParent":"http://purl.obolibrary.org/obo/RO_0000052","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"role of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000052","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000087","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000081","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000081","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"role of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.","false"],"shortForm":"RO_0000081","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000085\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000085\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has function\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000034\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000079\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has function\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000085\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000034\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000034\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000079\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000079\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000085","definition":"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000053","directParent":"http://purl.obolibrary.org/obo/RO_0000053","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"has function","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000034","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000053","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000079","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000085","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000085","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has function","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.","false"],"shortForm":"RO_0000085","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000080\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000086\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000080\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000080\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000086","definition":"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000053","directParent":"http://purl.obolibrary.org/obo/RO_0000053","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has quality","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000019","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000053","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000080","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000086","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000086","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has quality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.","false"],"shortForm":"RO_0000086","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000087\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000087\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has role\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000081\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has role\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000087\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000081\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000081\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000023\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000087","definition":"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000053","directParent":"http://purl.obolibrary.org/obo/RO_0000053","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"has role","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000023","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000053","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000081","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000087","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000087","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has role","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.","false"],"shortForm":"RO_0000087","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000091\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000091\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has disposition\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000092\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has disposition\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000091\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0000092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000092\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has characteristic\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000091","definition":"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000053","directParent":"http://purl.obolibrary.org/obo/RO_0000053","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"has disposition","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000016","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000053","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000092","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000091","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000091","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has disposition","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","false"],"shortForm":"RO_0000091","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000092\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000092\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of has disposition\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of has disposition\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000091\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of has disposition\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000092\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0000091\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000091\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0000092","definition":"inverse of has disposition","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000052","directParent":"http://purl.obolibrary.org/obo/RO_0000052","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of has disposition","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"disposition of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000052","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000091","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0000092","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0000092","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disposition of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of has disposition","false"],"shortForm":"RO_0000092","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002000\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002000\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2D boundary of\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2D boundary of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has 2D boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002002\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002000","definition":"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","http__//purl.obolibrary.org/obo/IAO_0000116":["A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.","Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"2D boundary of","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002002","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002000","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"2D boundary of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.","Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.","false"],"shortForm":"RO_0002000","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002002\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has 2D boundary\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has 2D boundary\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2D boundary of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002000\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002002","definition":"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","http__//purl.obolibrary.org/obo/IAO_0000116":["A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.","Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"has 2D boundary","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000141","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002000","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002002","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002002","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has 2D boundary","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.","Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.","false"],"shortForm":"RO_0002002","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002013\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002013\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A \\u0027has regulatory component activity\\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002017\",\"http://purl.obolibrary.org/obo/RO_0002018\",\"http://purl.obolibrary.org/obo/RO_0002180\",\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002017\",\"http://purl.obolibrary.org/obo/RO_0002334\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A \\u0027has regulatory component activity\\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has regulatory component activity\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002017\",\"http://purl.obolibrary.org/obo/RO_0002334\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has regulatory component activity\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A \\u0027has regulatory component activity\\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002013\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002180\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002017\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002018\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002013","definition":"A \u0027has regulatory component activity\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002017","http://purl.obolibrary.org/obo/RO_0002018","http://purl.obolibrary.org/obo/RO_0002180","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131","http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":["http://purl.obolibrary.org/obo/RO_0002017","http://purl.obolibrary.org/obo/RO_0002334"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A \u0027has regulatory component activity\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has regulatory component activity","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002017","http://purl.obolibrary.org/obo/RO_0002334"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002013","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002013","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has regulatory component activity","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A \u0027has regulatory component activity\u0027 B if A and B are GO molecular functions (GO_0003674), A has_component B and A is regulated by B.","false"],"shortForm":"RO_0002013","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002014\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002014\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \\u0027has regulatory component activity\\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002013\",\"http://purl.obolibrary.org/obo/RO_0002017\",\"http://purl.obolibrary.org/obo/RO_0002018\",\"http://purl.obolibrary.org/obo/RO_0002180\",\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002335\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002013\",\"http://purl.obolibrary.org/obo/RO_0002335\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \\u0027has regulatory component activity\\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has negative regulatory component activity\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002013\",\"http://purl.obolibrary.org/obo/RO_0002335\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has negative regulatory component activity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \\u0027has regulatory component activity\\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002014\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002013\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has regulatory component activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002013\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002180\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002335\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002335\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002017\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002018\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002014","definition":"A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002013","http://purl.obolibrary.org/obo/RO_0002017","http://purl.obolibrary.org/obo/RO_0002018","http://purl.obolibrary.org/obo/RO_0002180","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131","http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002335"],"directParent":["http://purl.obolibrary.org/obo/RO_0002013","http://purl.obolibrary.org/obo/RO_0002335"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has negative regulatory component activity","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002013","http://purl.obolibrary.org/obo/RO_0002335"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002014","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002014","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has negative regulatory component activity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship that holds between a GO molecular function and a component of that molecular function that negatively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is negatively regulated by B.","false"],"shortForm":"RO_0002014","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002015\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002015\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \\u0027has regulatory component activity\\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002013\",\"http://purl.obolibrary.org/obo/RO_0002017\",\"http://purl.obolibrary.org/obo/RO_0002018\",\"http://purl.obolibrary.org/obo/RO_0002180\",\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002336\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002013\",\"http://purl.obolibrary.org/obo/RO_0002336\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \\u0027has regulatory component activity\\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has positive regulatory component activity\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002013\",\"http://purl.obolibrary.org/obo/RO_0002336\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has positive regulatory component activity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \\u0027has regulatory component activity\\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002015\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002013\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has regulatory component activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002013\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002180\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002017\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002336\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002336\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002018\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002015","definition":"A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002013","http://purl.obolibrary.org/obo/RO_0002017","http://purl.obolibrary.org/obo/RO_0002018","http://purl.obolibrary.org/obo/RO_0002180","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131","http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002336"],"directParent":["http://purl.obolibrary.org/obo/RO_0002013","http://purl.obolibrary.org/obo/RO_0002336"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has positive regulatory component activity","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002013","http://purl.obolibrary.org/obo/RO_0002336"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002015","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002015","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has positive regulatory component activity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship that holds between a GO molecular function and a component of that molecular function that positively regulates the activity of the whole. More formally, A \u0027has regulatory component activity\u0027 B iff :A and B are GO molecular functions (GO_0003674), A has_component B and A is positively regulated by B.","false"],"shortForm":"RO_0002015","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002017\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002017\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002018\",\"http://purl.obolibrary.org/obo/RO_0002180\",\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002018\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has component activity\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002018\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has component activity\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002017\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002180\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002018\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002017","directAncestor":["http://purl.obolibrary.org/obo/RO_0002018","http://purl.obolibrary.org/obo/RO_0002180","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131"],"directParent":"http://purl.obolibrary.org/obo/RO_0002018","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has component activity","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002018","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002017","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002017","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has component activity","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002017","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002018\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002018\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"w \\u0027has process component\\u0027 p if p and w are processes, w \\u0027has part\\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002180\",\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002180\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"w \\u0027has process component\\u0027 p if p and w are processes, w \\u0027has part\\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has component process\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002180\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has component process\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"w \\u0027has process component\\u0027 p if p and w are processes, w \\u0027has part\\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002018\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002180\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002018","definition":"w \u0027has process component\u0027 p if p and w are processes, w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002180","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131"],"directParent":"http://purl.obolibrary.org/obo/RO_0002180","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"w \u0027has process component\u0027 p if p and w are processes, w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#label":"has component process","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002180","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002018","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002018","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has component process","numDescendants":"5.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["w \u0027has process component\u0027 p if p and w are processes, w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","false"],"shortForm":"RO_0002018","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002022\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002022\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002334\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly regulated by\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002578\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulated by\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002022\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002578\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002578\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002022","directAncestor":["http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002334","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"directly regulated by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002334","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002578","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002022","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002022","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly regulated by","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002022","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002023\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002023\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002022\",\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002022\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulated by\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002022\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002630\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulated by\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002023\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002630\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002630\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002022\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulated by\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002022\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002023","directAncestor":["http://purl.obolibrary.org/obo/RO_0002022","http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002022","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"directly negatively regulated by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002022","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002630","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002023","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002023","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly negatively regulated by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002023","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002024\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002024\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002022\",\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002022\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulated by\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002022\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002629\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulated by\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002024\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002629\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002629\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002022\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulated by\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002022\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002024","directAncestor":["http://purl.obolibrary.org/obo/RO_0002022","http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002022","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"directly positively regulated by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002022","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002629","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002024","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002024","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly positively regulated by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002024","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002025\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002025\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002017\",\"http://purl.obolibrary.org/obo/RO_0002018\",\"http://purl.obolibrary.org/obo/RO_0002180\",\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002017\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has effector activity\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002017\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has effector activity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002025\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002180\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002017\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002018\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002025","directAncestor":["http://purl.obolibrary.org/obo/RO_0002017","http://purl.obolibrary.org/obo/RO_0002018","http://purl.obolibrary.org/obo/RO_0002180","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131"],"directParent":"http://purl.obolibrary.org/obo/RO_0002017","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"has effector activity","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002017","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002025","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002025","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has effector activity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002025","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002081\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002081\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"before or simultaneous with\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"before or simultaneous with\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002081\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002081","directAncestor":"http://purl.obolibrary.org/obo/RO_0002222","directParent":"http://purl.obolibrary.org/obo/RO_0002222","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"before or simultaneous with","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002222","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002081","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002081","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"before or simultaneous with","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002081","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002082\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x simultaneous with y iff ω(x) \\u003d ω(y) and ω(α ) \\u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \\u0027\\u003d\\u0027 indicates the same instance in time.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002081\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002081\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x simultaneous with y iff ω(x) \\u003d ω(y) and ω(α ) \\u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \\u0027\\u003d\\u0027 indicates the same instance in time.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#SymmetricProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002081\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x simultaneous with y iff ω(x) \\u003d ω(y) and ω(α ) \\u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \\u0027\\u003d\\u0027 indicates the same instance in time.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002082\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002081\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"before or simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002081\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002082","definition":"x simultaneous with y iff ω(x) \u003d ω(y) and ω(α ) \u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \u0027\u003d\u0027 indicates the same instance in time.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002081","http://purl.obolibrary.org/obo/RO_0002222"],"directParent":"http://purl.obolibrary.org/obo/RO_0002081","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x simultaneous with y iff ω(x) \u003d ω(y) and ω(α ) \u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \u0027\u003d\u0027 indicates the same instance in time.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"simultaneous with","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002081","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002082","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002082","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"simultaneous with","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x simultaneous with y iff ω(x) \u003d ω(y) and ω(α ) \u003d ω(α), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point and \u0027\u003d\u0027 indicates the same instance in time.","false"],"shortForm":"RO_0002082","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002086\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002086\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends after\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends after\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002086\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002086","directAncestor":"http://purl.obolibrary.org/obo/RO_0002222","directParent":"http://purl.obolibrary.org/obo/RO_0002222","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"ends after","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002222","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002086","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002086","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ends after","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002086","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002087\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002087\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://purl.obolibrary.org/obo/RO_0002086\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately preceded by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002090\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002224\",\"http://purl.obolibrary.org/obo/RO_0002230\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately preceded by\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002087\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002090\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002090\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002224\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002224\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends after\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002087","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000062","http://purl.obolibrary.org/obo/RO_0002086","http://purl.obolibrary.org/obo/RO_0002222"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000062","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"immediately preceded by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000062","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002090","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002224","http://purl.obolibrary.org/obo/RO_0002230"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002087","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002087","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"immediately preceded by","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002087","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002090\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002090\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately precedes\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002087\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://purl.obolibrary.org/obo/RO_0002224\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately precedes\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002090\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002224\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002224\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002087\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002087\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002090","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000063","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"immediately precedes","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000063","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002087","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002230","http://purl.obolibrary.org/obo/RO_0002224"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002090","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002090","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"immediately precedes","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002090","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002131\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x overlaps y if and only if there exists some z such that x has part z and z part of y\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x overlaps y if and only if there exists some z such that x has part z and z part of y\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#SymmetricProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\"],[\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"numDescendants\":14.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x overlaps y if and only if there exists some z such that x has part z and z part of y\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002131\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002131","definition":"x overlaps y if and only if there exists some z such that x has part z and z part of y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x overlaps y if and only if there exists some z such that x has part z and z part of y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"overlaps","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]","[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\"]","[\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002131","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002131","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"overlaps","numDescendants":"14.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x overlaps y if and only if there exists some z such that x has part z and z part of y","false"],"shortForm":"RO_0002131","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002160\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002160\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\\u003dz a and x is in taxon z.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\\u003dz a and x is in taxon z.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"The original intent was to treat this as a macro that expands to \\u0027in taxon\\u0027 only ?Y - however, this is not necessary if we instead have supplemental axioms that state that each pair of sibling tax have a disjointness axiom using the \\u0027in taxon\\u0027 property - e.g.\\n\\n \\u0027in taxon\\u0027 some Eukaryota DisjointWith \\u0027in taxon\\u0027 some Eubacteria\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"only in taxon\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\\u003dz a and x is in taxon z.\"},{\"type\":[\"literal\"],\"value\":\"The original intent was to treat this as a macro that expands to \\u0027in taxon\\u0027 only ?Y - however, this is not necessary if we instead have supplemental axioms that state that each pair of sibling tax have a disjointness axiom using the \\u0027in taxon\\u0027 property - e.g.\\n\\n \\u0027in taxon\\u0027 some Eukaryota DisjointWith \\u0027in taxon\\u0027 some Eubacteria\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002160\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002162\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"in taxon\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002162\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002160","definition":"x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\u003dz a and x is in taxon z.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002162","directParent":"http://purl.obolibrary.org/obo/RO_0002162","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\u003dz a and x is in taxon z.","http__//purl.obolibrary.org/obo/IAO_0000116":"The original intent was to treat this as a macro that expands to \u0027in taxon\u0027 only ?Y - however, this is not necessary if we instead have supplemental axioms that state that each pair of sibling tax have a disjointness axiom using the \u0027in taxon\u0027 property - e.g.\n\n \u0027in taxon\u0027 some Eukaryota DisjointWith \u0027in taxon\u0027 some Eubacteria","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"only in taxon","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002162","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002160","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002160","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"only in taxon","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x only in taxon y if and only if x is in taxon y, and there is no other organism z such that y!\u003dz a and x is in taxon z.","The original intent was to treat this as a macro that expands to \u0027in taxon\u0027 only ?Y - however, this is not necessary if we instead have supplemental axioms that state that each pair of sibling tax have a disjointness axiom using the \u0027in taxon\u0027 property - e.g.\n\n \u0027in taxon\u0027 some Eukaryota DisjointWith \u0027in taxon\u0027 some Eubacteria","false"],"shortForm":"RO_0002160","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002162\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"RO:0002162\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"in_taxon\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"in_taxon\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"in taxon\"},\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002162\"],[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002162\"],[\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://purl.obolibrary.org/obo/RO_0002162\"],[\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://purl.obolibrary.org/obo/RO_0002162\"],[\"http://purl.obolibrary.org/obo/RO_0002225\",\"http://purl.obolibrary.org/obo/RO_0002162\"],[\"http://purl.obolibrary.org/obo/RO_0002254\",\"http://purl.obolibrary.org/obo/RO_0002162\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"in taxon\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.\"},{\"type\":[\"literal\"],\"value\":\"RO:0002162\"},{\"type\":[\"literal\"],\"value\":\"in_taxon\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002162\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002254\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental contribution from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002254\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002225\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002225\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002162\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002162\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002162\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002162","definition":"x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"RO:0002162","http__//www.geneontology.org/formats/oboInOwl#id":"in_taxon","http__//www.geneontology.org/formats/oboInOwl#shorthand":"in_taxon","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"in taxon","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002162\"]","[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002162\"]","[\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://purl.obolibrary.org/obo/RO_0002162\"]","[\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://purl.obolibrary.org/obo/RO_0002162\"]","[\"http://purl.obolibrary.org/obo/RO_0002225\",\"http://purl.obolibrary.org/obo/RO_0002162\"]","[\"http://purl.obolibrary.org/obo/RO_0002254\",\"http://purl.obolibrary.org/obo/RO_0002162\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002162","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002162","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"in taxon","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x is in taxon y if an only if y is an organism, and the relationship between x and y is one of: part of (reflexive), developmentally preceded by, derives from, secreted by, expressed.","RO:0002162","in_taxon","false"],"shortForm":"RO_0002162","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002175\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002175\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002175\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"RO:0002175","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002175","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002175","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"RO_0002175","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002175","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002180\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002180\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"w \\u0027has component\\u0027 p if w \\u0027has part\\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"w \\u0027has component\\u0027 p if w \\u0027has part\\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"The definition of \\u0027has component\\u0027 is still under discussion. The challenge is in providing a definition that does not imply transitivity.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has component\",\"lang\":\"en\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"w \\u0027has component\\u0027 p if w \\u0027has part\\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.\"},{\"type\":[\"literal\"],\"value\":\"The definition of \\u0027has component\\u0027 is still under discussion. The challenge is in providing a definition that does not imply transitivity.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002180\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002180","definition":"w \u0027has component\u0027 p if w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000051","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"w \u0027has component\u0027 p if w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","http__//purl.obolibrary.org/obo/IAO_0000116":"The definition of \u0027has component\u0027 is still under discussion. The challenge is in providing a definition that does not imply transitivity.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has component","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002180","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002180","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has component","numDescendants":"6.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["w \u0027has component\u0027 p if w \u0027has part\u0027 p and w is such that it can be directly disassembled into into n parts p, p2, p3, ..., pn, where these parts are of similar type.","The definition of \u0027has component\u0027 is still under discussion. The challenge is in providing a definition that does not imply transitivity.","false"],"shortForm":"RO_0002180","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002258\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002258\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002258\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002203\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002202\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002203\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002203\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002258\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002202","definition":"x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002258","directParent":"http://purl.obolibrary.org/obo/RO_0002258","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"develops from","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002258","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002203","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002202","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002202","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"develops from","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x develops from y if and only if either (a) x directly develops from y or (b) there exists some z such that x directly develops from z and z develops from y","false"],"shortForm":"RO_0002202","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002203\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002203\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of develops from\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002384\",\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://purl.obolibrary.org/obo/RO_0002388\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://purl.obolibrary.org/obo/RO_0002388\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of develops from\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops into\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://purl.obolibrary.org/obo/RO_0002388\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops into\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of develops from\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002203\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002286\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally succeeded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002286\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002388\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to directly develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002388\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002384\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002203","definition":"inverse of develops from","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002384","http://purl.obolibrary.org/obo/RO_0002387","http://purl.obolibrary.org/obo/RO_0002388"],"directParent":["http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002387","http://purl.obolibrary.org/obo/RO_0002388"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of develops from","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"develops into","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002387","http://purl.obolibrary.org/obo/RO_0002388"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002202","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002203","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002203","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"develops into","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of develops from","false"],"shortForm":"RO_0002203","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002207\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002207\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://purl.obolibrary.org/obo/RO_0002258\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#unionOf\":[\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0010000\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops from\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#unionOf\":[\"http://purl.obolibrary.org/obo/CL_0000000\",\"http://purl.obolibrary.org/obo/UBERON_0010000\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002210\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops from\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002207\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002210\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002210\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/CL_0000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cell\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"CL:0000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular anatomical structure\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0010000\"},\"type\":[\"class\",\"entity\"]},\"GO:0032502\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0032502\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0032502\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002258\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002207","definition":"Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002202","http://purl.obolibrary.org/obo/RO_0002258"],"directParent":"http://purl.obolibrary.org/obo/RO_0002202","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"directly develops from","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002202","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002210","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002207","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002207","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly develops from","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Candidate definition: x directly_develops from y if and only if there exists some developmental process (GO:0032502) p such that x and y both participate in p, and x is the output of p and y is the input of p, and a substantial portion of the matter of x comes from y, and the start of x is coincident with or after the end of y.","false"],"shortForm":"RO_0002207","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002210\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002210\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of directly develops from\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002203\",\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002384\",\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://purl.obolibrary.org/obo/RO_0002388\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002203\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of directly develops from\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops into\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002203\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002207\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops into\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of directly develops from\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002210\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002207\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002207\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002203\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002203\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002286\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally succeeded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002286\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002388\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to directly develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002388\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002384\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002210","definition":"inverse of directly develops from","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002203","http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002384","http://purl.obolibrary.org/obo/RO_0002387","http://purl.obolibrary.org/obo/RO_0002388"],"directParent":"http://purl.obolibrary.org/obo/RO_0002203","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of directly develops from","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"directly develops into","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002203","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002207","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002210","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002210","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly develops into","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of directly develops from","false"],"shortForm":"RO_0002210","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002411\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002025\"],[\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://purl.obolibrary.org/obo/RO_0002211\"],[\"http://purl.obolibrary.org/obo/RO_0002578\",\"http://purl.obolibrary.org/obo/RO_0002578\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002211\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002025\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has effector activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002025\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002578\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002578\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002211","definition":"p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002411","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#label":"regulates","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002411","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002334","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002025\"]","[\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://purl.obolibrary.org/obo/RO_0002211\"]","[\"http://purl.obolibrary.org/obo/RO_0002578\",\"http://purl.obolibrary.org/obo/RO_0002578\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002211","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002211","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulates","numDescendants":"8.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p regulates q iff p is causally upstream of q, the execution of p is not constant and varies according to specific conditions, and p influences the rate or magnitude of execution of q due to an effect either on some enabler of q or some enabler of a part of q.","false"],"shortForm":"RO_0002211","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002212\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002212\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002305\",\"http://purl.obolibrary.org/obo/RO_0004046\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002305\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002305\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002335\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://purl.obolibrary.org/obo/RO_0002212\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002212\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002305\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002305\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004046\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004046\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002335\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002335\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002212","definition":"p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002305","http://purl.obolibrary.org/obo/RO_0004046"],"directParent":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002305"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"negatively regulates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002305"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002335","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002230","http://purl.obolibrary.org/obo/RO_0002212"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002212","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002212","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"negatively regulates","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p negatively regulates q iff p regulates q, and p decreases the rate or magnitude of execution of q.","false"],"shortForm":"RO_0002212","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002213\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002304\",\"http://purl.obolibrary.org/obo/RO_0004047\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002304\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002304\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002336\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0002212\"],[\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://purl.obolibrary.org/obo/RO_0002213\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002213\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002212\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002212\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002304\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002304\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004047\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004047\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002336\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002336\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002213","definition":"p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002304","http://purl.obolibrary.org/obo/RO_0004047"],"directParent":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002304"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"positively regulates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002304"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002336","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0002212\"]","[\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://purl.obolibrary.org/obo/RO_0002213\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002213","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002213","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"positively regulates","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p positively regulates q iff p regulates q, and p increases the rate or magnitude of execution of q.","false"],"shortForm":"RO_0002213","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. \"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. \"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. \"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002215\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002216\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002216\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002215","definition":"A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. ","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002216","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002216","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"capable of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002216","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002215","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002215","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"capable of","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relation between a material entity (such as a cell) and a process, in which the material entity has the ability to carry out the process. ","false"],"shortForm":"RO_0002215","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002216\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002216\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c stands in this relationship to p if and only if there exists some p\\u0027 such that c is capable_of p\\u0027, and p\\u0027 is part_of p.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002500\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c stands in this relationship to p if and only if there exists some p\\u0027 such that c is capable_of p\\u0027, and p\\u0027 is part_of p.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002500\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c stands in this relationship to p if and only if there exists some p\\u0027 such that c is capable_of p\\u0027, and p\\u0027 is part_of p.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002216\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002216","definition":"c stands in this relationship to p if and only if there exists some p\u0027 such that c is capable_of p\u0027, and p\u0027 is part_of p.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002500","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c stands in this relationship to p if and only if there exists some p\u0027 such that c is capable_of p\u0027, and p\u0027 is part_of p.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"capable of part of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002500","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002216","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002216","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"capable of part of","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c stands in this relationship to p if and only if there exists some p\u0027 such that c is capable_of p\u0027, and p\u0027 is part_of p.","false"],"shortForm":"RO_0002216","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002222\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"numDescendants\":27.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002222\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002222","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#label":"temporally related to","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000003","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002222","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002222","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"temporally related to","numDescendants":"27.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002222","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002223\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002223\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of starts with\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"directParent\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of starts with\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002224\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of starts with\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002223\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002224\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002224\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002223","definition":"inverse of starts with","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0002131","http://purl.obolibrary.org/obo/RO_0002222"],"directParent":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0002222"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of starts with","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"starts","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0002222"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002224","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002223","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002223","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"starts","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of starts with","false"],"shortForm":"RO_0002223","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002224\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002224\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \\u003d α(x) ∧ ω(y) \\u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"directParent\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \\u003d α(x) ∧ ω(y) \\u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts with\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002223\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts with\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \\u003d α(x) ∧ ω(y) \\u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002224\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002223\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002223\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002224","definition":"x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \u003d α(x) ∧ ω(y) \u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131","http://purl.obolibrary.org/obo/RO_0002222"],"directParent":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002222"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \u003d α(x) ∧ ω(y) \u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"starts with","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002222"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002223","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002224","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002224","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"starts with","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x starts with y if and only if x has part y and the time point at which x starts is equivalent to the time point at which y starts. Formally: α(y) \u003d α(x) ∧ ω(y) \u003c ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","false"],"shortForm":"RO_0002224","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002225\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002225\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x develops from part of y if and only if there exists some z such that x develops from z and z is part of y\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://purl.obolibrary.org/obo/RO_0002258\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x develops from part of y if and only if there exists some z such that x develops from z and z is part of y\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from part of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002207\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from part of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x develops from part of y if and only if there exists some z such that x develops from z and z is part of y\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002225\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002207\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002207\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002258\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002225","definition":"x develops from part of y if and only if there exists some z such that x develops from z and z is part of y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002202","http://purl.obolibrary.org/obo/RO_0002258"],"directParent":"http://purl.obolibrary.org/obo/RO_0002202","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x develops from part of y if and only if there exists some z such that x develops from z and z is part of y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"develops from part of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002202","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002207","http://purl.obolibrary.org/obo/BFO_0000050"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002225","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002225","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"develops from part of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x develops from part of y if and only if there exists some z such that x develops from z and z is part of y","false"],"shortForm":"RO_0002225","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002229\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002229\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of ends with\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"directParent\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of ends with\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002230\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of ends with\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002229\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002229","definition":"inverse of ends with","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0002131","http://purl.obolibrary.org/obo/RO_0002222"],"directParent":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0002222"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of ends with","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"ends","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0002222"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002230","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002229","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002229","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ends","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of ends with","false"],"shortForm":"RO_0002229","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002230\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \\u003e α(x) ∧ ω(y) \\u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"directParent\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \\u003e α(x) ∧ ω(y) \\u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002222\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002229\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \\u003e α(x) ∧ ω(y) \\u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002230\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002229\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002229\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002230","definition":"x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \u003e α(x) ∧ ω(y) \u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131","http://purl.obolibrary.org/obo/RO_0002222"],"directParent":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002222"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \u003e α(x) ∧ ω(y) \u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"ends with","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002222"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002229","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002230","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002230","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ends with","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x ends with y if and only if x has part y and the time point at which x ends is equivalent to the time point at which y ends. Formally: α(y) \u003e α(x) ∧ ω(y) \u003d ω(x), where α is a function that maps a process to a start point, and ω is a function that maps a process to an end point.","false"],"shortForm":"RO_0002230","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002231\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002231\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x \\u0027has starts location\\u0027 y if and only if there exists some process z such that x \\u0027starts with\\u0027 z and z \\u0027occurs in\\u0027 y\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002479\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002479\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x \\u0027has starts location\\u0027 y if and only if there exists some process z such that x \\u0027starts with\\u0027 z and z \\u0027occurs in\\u0027 y\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has start location\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002479\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002224\",\"http://purl.obolibrary.org/obo/BFO_0000066\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has start location\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x \\u0027has starts location\\u0027 y if and only if there exists some process z such that x \\u0027starts with\\u0027 z and z \\u0027occurs in\\u0027 y\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002231\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002479\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has part that occurs in\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002479\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002224\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002224\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000066\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002231","definition":"x \u0027has starts location\u0027 y if and only if there exists some process z such that x \u0027starts with\u0027 z and z \u0027occurs in\u0027 y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002479","directParent":"http://purl.obolibrary.org/obo/RO_0002479","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x \u0027has starts location\u0027 y if and only if there exists some process z such that x \u0027starts with\u0027 z and z \u0027occurs in\u0027 y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#label":"has start location","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002479","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002224","http://purl.obolibrary.org/obo/BFO_0000066"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002231","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002231","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has start location","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x \u0027has starts location\u0027 y if and only if there exists some process z such that x \u0027starts with\u0027 z and z \u0027occurs in\u0027 y","false"],"shortForm":"RO_0002231","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002232\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002232\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x \\u0027has end location\\u0027 y if and only if there exists some process z such that x \\u0027ends with\\u0027 z and z \\u0027occurs in\\u0027 y\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002479\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002479\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x \\u0027has end location\\u0027 y if and only if there exists some process z such that x \\u0027ends with\\u0027 z and z \\u0027occurs in\\u0027 y\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has end location\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002479\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002230\",\"http://purl.obolibrary.org/obo/BFO_0000066\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has end location\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x \\u0027has end location\\u0027 y if and only if there exists some process z such that x \\u0027ends with\\u0027 z and z \\u0027occurs in\\u0027 y\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002232\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002479\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has part that occurs in\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002479\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002230\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002230\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000066\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002232","definition":"x \u0027has end location\u0027 y if and only if there exists some process z such that x \u0027ends with\u0027 z and z \u0027occurs in\u0027 y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002479","directParent":"http://purl.obolibrary.org/obo/RO_0002479","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x \u0027has end location\u0027 y if and only if there exists some process z such that x \u0027ends with\u0027 z and z \u0027occurs in\u0027 y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#label":"has end location","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002479","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002230","http://purl.obolibrary.org/obo/BFO_0000066"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002232","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002232","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has end location","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x \u0027has end location\u0027 y if and only if there exists some process z such that x \u0027ends with\u0027 z and z \u0027occurs in\u0027 y","false"],"shortForm":"RO_0002232","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002233\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002233\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has input\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002352\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002224\",\"http://purl.obolibrary.org/obo/RO_0002233\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has input\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002233\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002352\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"input of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002352\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002224\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"starts with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002224\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002233","definition":"p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000057","directParent":"http://purl.obolibrary.org/obo/RO_0000057","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#label":"has input","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000057","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002352","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002224","http://purl.obolibrary.org/obo/RO_0002233"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002233","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002233","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has input","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p has input c iff: p is a process, c is a material entity, c is a participant in p, c is present at the start of p, and the state of c is modified during p.","false"],"shortForm":"RO_0002233","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002254\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002254\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has developmental contribution from y iff x has some part z such that z develops from y\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002258\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002258\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has developmental contribution from y iff x has some part z such that z develops from y\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental contribution from\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002258\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002255\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002202\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental contribution from\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has developmental contribution from y iff x has some part z such that z develops from y\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002254\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002255\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally contributes to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002255\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002258\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002254","definition":"x has developmental contribution from y iff x has some part z such that z develops from y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002258","directParent":"http://purl.obolibrary.org/obo/RO_0002258","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x has developmental contribution from y iff x has some part z such that z develops from y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/UBERON_0001062","http__//www.w3.org/2000/01/rdf-schema#label":"has developmental contribution from","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/UBERON_0001062","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002258","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002255","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002202"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002254","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002254","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has developmental contribution from","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x has developmental contribution from y iff x has some part z such that z develops from y","false"],"shortForm":"RO_0002254","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002255\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002255\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of has developmental contribution from\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002384\",\"http://purl.obolibrary.org/obo/RO_0002385\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002385\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of has developmental contribution from\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally contributes to\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002385\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002254\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002203\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally contributes to\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of has developmental contribution from\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002255\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002254\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental contribution from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002254\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002203\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002203\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002286\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally succeeded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002286\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002385\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to developmentally contribute to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002385\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002384\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002255","definition":"inverse of has developmental contribution from","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002384","http://purl.obolibrary.org/obo/RO_0002385"],"directParent":["http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002385"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of has developmental contribution from","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"developmentally contributes to","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002385"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002254","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002203","http://purl.obolibrary.org/obo/BFO_0000050"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002255","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002255","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"developmentally contributes to","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of has developmental contribution from","false"],"shortForm":"RO_0002255","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002258\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002286\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002258\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"GO:0032502\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0032502\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0032502\"},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002286\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally succeeded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002286\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002258","definition":"Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p","http__//purl.obolibrary.org/obo/IAO_0000116":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2000/01/rdf-schema#label":"developmentally preceded by","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002286","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002258","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002258","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"developmentally preceded by","numDescendants":"6.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Candidate definition: x developmentally related to y if and only if there exists some developmental process (GO:0032502) p such that x and y both participates in p, and x is the output of p and y is the input of p","false"],"shortForm":"RO_0002258","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002263\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002263\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c acts upstream of p if and only if c enables some f that is involved in p\\u0027 and p\\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\\u0027 are processes.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002264\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c acts upstream of p if and only if c enables some f that is involved in p\\u0027 and p\\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\\u0027 are processes.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002411\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c acts upstream of p if and only if c enables some f that is involved in p\\u0027 and p\\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\\u0027 are processes.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002263\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002263","definition":"c acts upstream of p if and only if c enables some f that is involved in p\u0027 and p\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\u0027 are processes.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002264","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c acts upstream of p if and only if c enables some f that is involved in p\u0027 and p\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\u0027 are processes.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"acts upstream of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002264","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0002411"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002263","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002263","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"acts upstream of","numDescendants":"5.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c acts upstream of p if and only if c enables some f that is involved in p\u0027 and p\u0027 occurs chronologically before p, is not part of p, and affects the execution of p. c is a material entity and f, p, p\u0027 are processes.","false"],"shortForm":"RO_0002263","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002264\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002500\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002418\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002264\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002264","definition":"c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002500","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"acts upstream of or within","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002500","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0002418"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002264","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002264","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"acts upstream of or within","numDescendants":"10.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c acts upstream of or within p if c is enables f, and f is causally upstream of or within p. c is a material entity and p is an process.","false"],"shortForm":"RO_0002264","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002286\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002286\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Inverse of developmentally preceded by\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Inverse of developmentally preceded by\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally succeeded by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002258\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally succeeded by\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Inverse of developmentally preceded by\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002286\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002384\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002258\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002286","definition":"Inverse of developmentally preceded by","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002384","directParent":"http://purl.obolibrary.org/obo/RO_0002384","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Inverse of developmentally preceded by","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"developmentally succeeded by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002384","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002258","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002286","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002286","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"developmentally succeeded by","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Inverse of developmentally preceded by","false"],"shortForm":"RO_0002286","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002287\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002287\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002384\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002286\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of developmental precursor of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002210\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of developmental precursor of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002287\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002210\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002210\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002286\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally succeeded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002286\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002384\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002287","directAncestor":["http://purl.obolibrary.org/obo/RO_0002286","http://purl.obolibrary.org/obo/RO_0002384"],"directParent":"http://purl.obolibrary.org/obo/RO_0002286","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"part of developmental precursor of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002286","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0002210"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002287","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002287","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"part of developmental precursor of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002287","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002304\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002304\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0004047\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0004047\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, positive effect\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0004047\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, positive effect\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002304\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004047\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004047\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002304","definition":"p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0004047"],"directParent":["http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0004047"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"causally upstream of, positive effect","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0004047"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002304","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002304","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally upstream of, positive effect","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p is causally upstream of, positive effect q iff p is casually upstream of q, and the execution of p is required for the execution of q.","false"],"shortForm":"RO_0002304","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002305\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002305\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0004046\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0004046\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, negative effect\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0004046\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, negative effect\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002305\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004046\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004046\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002305","definition":"p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0004046"],"directParent":["http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0004046"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"causally upstream of, negative effect","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0004046"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002305","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002305","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally upstream of, negative effect","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p is causally upstream of, negative effect q iff p is casually upstream of q, and the execution of p decreases the execution of q.","false"],"shortForm":"RO_0002305","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002327\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c enables p iff c is capable of p and c acts to execute p.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://purl.obolibrary.org/obo/RO_0002216\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c enables p iff c is capable of p and c acts to execute p.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002333\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/BFO_0000051\"],[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002017\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c enables p iff c is capable of p and c acts to execute p.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002327\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002333\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enabled by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002333\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"has component activity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002017\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002216\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002216\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002327","definition":"c enables p iff c is capable of p and c acts to execute p.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002215","http://purl.obolibrary.org/obo/RO_0002216","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002215","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c enables p iff c is capable of p and c acts to execute p.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"enables","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002215","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002333","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/BFO_0000051\"]","[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002017\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002327","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002327","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"enables","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c enables p iff c is capable of p and c acts to execute p.","false"],"shortForm":"RO_0002327","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002331\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002331\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c involved_in p if and only if c enables some process p\\u0027, and p\\u0027 is part of p\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0000056\",\"http://purl.obolibrary.org/obo/RO_0002431\",\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0000056\",\"http://purl.obolibrary.org/obo/RO_0002431\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c involved_in p if and only if c enables some process p\\u0027, and p\\u0027 is part of p\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"involved in\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0000056\",\"http://purl.obolibrary.org/obo/RO_0002431\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],[\"http://purl.obolibrary.org/obo/RO_0002331\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"involved in\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c involved_in p if and only if c enables some process p\\u0027, and p\\u0027 is part of p\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002331\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002431\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in or involved in regulation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002431\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000056\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000056\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002331","definition":"c involved_in p if and only if c enables some process p\u0027, and p\u0027 is part of p","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0000056","http://purl.obolibrary.org/obo/RO_0002431","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":["http://purl.obolibrary.org/obo/RO_0000056","http://purl.obolibrary.org/obo/RO_0002431"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c involved_in p if and only if c enables some process p\u0027, and p\u0027 is part of p","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"involved in","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0000056","http://purl.obolibrary.org/obo/RO_0002431"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]","[\"http://purl.obolibrary.org/obo/RO_0002331\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002331","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002331","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"involved in","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c involved_in p if and only if c enables some process p\u0027, and p\u0027 is part of p","false"],"shortForm":"RO_0002331","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002333\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002333\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of enables\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of enables\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enabled by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002327\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enabled by\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of enables\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002333\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002333","definition":"inverse of enables","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000057","directParent":"http://purl.obolibrary.org/obo/RO_0000057","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of enables","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"enabled by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000057","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002327","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002333","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002333","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"enabled by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of enables","false"],"shortForm":"RO_0002333","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002334\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of regulates\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002427\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of regulates\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002211\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of regulates\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002334\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002334","definition":"inverse of regulates","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002427","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of regulates","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#label":"regulated by","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002427","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002211","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002334","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002334","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulated by","numDescendants":"8.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of regulates","false"],"shortForm":"RO_0002334","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002335\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002335\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of negatively regulates\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002334\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of negatively regulates\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulated by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002212\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulated by\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of negatively regulates\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002335\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002212\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002212\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002335","definition":"inverse of negatively regulates","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002334","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of negatively regulates","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"negatively regulated by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002334","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002212","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002335","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002335","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"negatively regulated by","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of negatively regulates","false"],"shortForm":"RO_0002335","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002336\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002336\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of positively regulates\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002334\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of positively regulates\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulated by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002334\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002213\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulated by\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of positively regulates\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002336\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002334\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulated by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002334\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002336","definition":"inverse of positively regulates","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002334","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002334","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of positively regulates","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"positively regulated by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002334","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002213","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002336","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002336","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"positively regulated by","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of positively regulates","false"],"shortForm":"RO_0002336","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002352\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002352\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of has input\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of has input\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"input of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002233\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"input of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of has input\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002352\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002233\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000056\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000056\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002352","definition":"inverse of has input","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000056","directParent":"http://purl.obolibrary.org/obo/RO_0000056","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of has input","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"input of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000056","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002233","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002352","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002352","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"input of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of has input","false"],"shortForm":"RO_0002352","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction).\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/UBERON_0001062\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"numDescendants\":8.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction).\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002384\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001062\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002384","definition":"x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction).","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/UBERON_0001062","http__//www.w3.org/2000/01/rdf-schema#label":"has developmental potential involving","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/UBERON_0001062","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002384","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002384","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has developmental potential involving","numDescendants":"8.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x has developmental potential involving y iff x is capable of a developmental process with output y. y may be the successor of x, or may be a different structure in the vicinity (as for example in the case of developmental induction).","false"],"shortForm":"RO_0002384","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002385\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002385\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to developmentally contribute to\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to developmentally contribute to\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002385\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002384\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002385","definition":"x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002384","directParent":"http://purl.obolibrary.org/obo/RO_0002384","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has potential to developmentally contribute to","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002384","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002385","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002385","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has potential to developmentally contribute to","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x has potential to developmentrally contribute to y iff x developmentally contributes to y or x is capable of developmentally contributing to y","false"],"shortForm":"RO_0002385","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has the potential to develop into y iff x develops into y or if x is capable of developing into y\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has the potential to develop into y iff x develops into y or if x is capable of developing into y\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002384\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has the potential to develop into y iff x develops into y or if x is capable of developing into y\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002387\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002384\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002387","definition":"x has the potential to develop into y iff x develops into y or if x is capable of developing into y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002384","directParent":"http://purl.obolibrary.org/obo/RO_0002384","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x has the potential to develop into y iff x develops into y or if x is capable of developing into y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has potential to develop into","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002384","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002387","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002387","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has potential to develop into","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x has the potential to develop into y iff x develops into y or if x is capable of developing into y","false"],"shortForm":"RO_0002387","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002388\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002388\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002387\",\"http://purl.obolibrary.org/obo/RO_0002384\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to directly develop into\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002387\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to directly develop into\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002388\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002387\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has potential to develop into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002387\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002384\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has developmental potential involving\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002384\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002388","definition":"x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002387","http://purl.obolibrary.org/obo/RO_0002384"],"directParent":"http://purl.obolibrary.org/obo/RO_0002387","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has potential to directly develop into","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002387","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002388","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002388","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has potential to directly develop into","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x has potential to directly develop into y iff x directly develops into y or x is capable of directly developing into y","false"],"shortForm":"RO_0002388","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002404\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002404\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of upstream of\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://purl.obolibrary.org/obo/RO_0002086\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":[\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://purl.obolibrary.org/obo/RO_0002427\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of upstream of\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally downstream of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://purl.obolibrary.org/obo/RO_0002427\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002411\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally downstream of\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of upstream of\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002404\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends after\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002404","definition":"inverse of upstream of","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000062","http://purl.obolibrary.org/obo/RO_0002086","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":["http://purl.obolibrary.org/obo/BFO_0000062","http://purl.obolibrary.org/obo/RO_0002427"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of upstream of","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"causally downstream of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/BFO_0000062","http://purl.obolibrary.org/obo/RO_0002427"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002411","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002404","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002404","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally downstream of","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of upstream of","false"],"shortForm":"RO_0002404","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002405\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002405\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002087\",\"http://purl.obolibrary.org/obo/BFO_0000062\",\"http://purl.obolibrary.org/obo/RO_0002086\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002404\",\"http://purl.obolibrary.org/obo/RO_0002427\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002087\",\"http://purl.obolibrary.org/obo/RO_0002404\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally downstream of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002087\",\"http://purl.obolibrary.org/obo/RO_0002404\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002412\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally downstream of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002405\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002404\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally downstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002404\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ends after\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002087\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002087\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002412\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002405","directAncestor":["http://purl.obolibrary.org/obo/RO_0002087","http://purl.obolibrary.org/obo/BFO_0000062","http://purl.obolibrary.org/obo/RO_0002086","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002404","http://purl.obolibrary.org/obo/RO_0002427","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":["http://purl.obolibrary.org/obo/RO_0002087","http://purl.obolibrary.org/obo/RO_0002404"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"immediately causally downstream of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002087","http://purl.obolibrary.org/obo/RO_0002404"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002412","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002405","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002405","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"immediately causally downstream of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002405","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002407\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002407\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002304\",\"http://purl.obolibrary.org/obo/RO_0004047\",\"http://purl.obolibrary.org/obo/RO_0012012\",\"http://purl.obolibrary.org/obo/RO_0012011\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0012012\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly positively regulates\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0012012\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002407\",\"http://purl.obolibrary.org/obo/RO_0002629\"],[\"http://purl.obolibrary.org/obo/RO_0002409\",\"http://purl.obolibrary.org/obo/RO_0002409\"],[\"http://purl.obolibrary.org/obo/RO_0002629\",\"http://purl.obolibrary.org/obo/RO_0002407\"],[\"http://purl.obolibrary.org/obo/RO_0002629\",\"http://purl.obolibrary.org/obo/RO_0002629\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly positively regulates\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002407\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002409\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly negatively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002409\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002304\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002304\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002629\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002629\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004047\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004047\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0012012\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0012012\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0012011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0012011\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002407","definition":"p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002213","http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002304","http://purl.obolibrary.org/obo/RO_0004047","http://purl.obolibrary.org/obo/RO_0012012","http://purl.obolibrary.org/obo/RO_0012011"],"directParent":["http://purl.obolibrary.org/obo/RO_0002213","http://purl.obolibrary.org/obo/RO_0012012"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"indirectly positively regulates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002213","http://purl.obolibrary.org/obo/RO_0012012"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002407\",\"http://purl.obolibrary.org/obo/RO_0002629\"]","[\"http://purl.obolibrary.org/obo/RO_0002409\",\"http://purl.obolibrary.org/obo/RO_0002409\"]","[\"http://purl.obolibrary.org/obo/RO_0002629\",\"http://purl.obolibrary.org/obo/RO_0002407\"]","[\"http://purl.obolibrary.org/obo/RO_0002629\",\"http://purl.obolibrary.org/obo/RO_0002629\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002407","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002407","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"indirectly positively regulates","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p indirectly positively regulates q iff p is indirectly causally upstream of q and p positively regulates q.","false"],"shortForm":"RO_0002407","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002409\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002409\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002305\",\"http://purl.obolibrary.org/obo/RO_0004046\",\"http://purl.obolibrary.org/obo/RO_0012012\",\"http://purl.obolibrary.org/obo/RO_0012011\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0012012\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly negatively regulates\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0012012\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002409\",\"http://purl.obolibrary.org/obo/RO_0002630\"],[\"http://purl.obolibrary.org/obo/RO_0002630\",\"http://purl.obolibrary.org/obo/RO_0002409\"],[\"http://purl.obolibrary.org/obo/RO_0002630\",\"http://purl.obolibrary.org/obo/RO_0002630\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly negatively regulates\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002409\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002212\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002212\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002630\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002630\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002305\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002305\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004046\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004046\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0012012\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0012012\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0012011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0012011\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002409","definition":"p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002212","http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002305","http://purl.obolibrary.org/obo/RO_0004046","http://purl.obolibrary.org/obo/RO_0012012","http://purl.obolibrary.org/obo/RO_0012011"],"directParent":["http://purl.obolibrary.org/obo/RO_0002212","http://purl.obolibrary.org/obo/RO_0012012"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"indirectly negatively regulates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002212","http://purl.obolibrary.org/obo/RO_0012012"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002409\",\"http://purl.obolibrary.org/obo/RO_0002630\"]","[\"http://purl.obolibrary.org/obo/RO_0002630\",\"http://purl.obolibrary.org/obo/RO_0002409\"]","[\"http://purl.obolibrary.org/obo/RO_0002630\",\"http://purl.obolibrary.org/obo/RO_0002630\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002409","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002409","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"indirectly negatively regulates","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p indirectly negatively regulates q iff p is indirectly causally upstream of q and p negatively regulates q.","false"],"shortForm":"RO_0002409","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002411\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":[\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002418\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002418\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002404\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"numDescendants\":13.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002411\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002404\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally downstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002404\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002411","definition":"p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":["http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002418"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"causally upstream of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002418"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002404","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002411","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002411","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally upstream of","numDescendants":"13.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p is causally upstream of q iff p is causally related to q, the end of p precedes the end of q, and p is not an occurrent part of q.","false"],"shortForm":"RO_0002411","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002412\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002412\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002090\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002090\",\"http://purl.obolibrary.org/obo/RO_0002411\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally upstream of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002090\",\"http://purl.obolibrary.org/obo/RO_0002411\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002405\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally upstream of\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002412\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002090\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002090\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002405\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally downstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002405\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002412","definition":"p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002090","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":["http://purl.obolibrary.org/obo/RO_0002090","http://purl.obolibrary.org/obo/RO_0002411"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"immediately causally upstream of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002090","http://purl.obolibrary.org/obo/RO_0002411"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002405","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002412","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002412","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"immediately causally upstream of","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p is immediately causally upstream of q iff p is causally upstream of q, and the end of p is coincident with the beginning of q.","false"],"shortForm":"RO_0002412","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002418\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p is \\u0027causally upstream or within\\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002501\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002501\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p is \\u0027causally upstream or within\\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"We would like to make this disjoint with \\u0027preceded by\\u0027, but this is prohibited in OWL2\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002427\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"numDescendants\":16.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p is \\u0027causally upstream or within\\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.\"},{\"type\":[\"literal\"],\"value\":\"We would like to make this disjoint with \\u0027preceded by\\u0027, but this is prohibited in OWL2\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002418\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002427\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002418","definition":"p is \u0027causally upstream or within\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002501","directParent":"http://purl.obolibrary.org/obo/RO_0002501","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p is \u0027causally upstream or within\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.","http__//purl.obolibrary.org/obo/IAO_0000116":"We would like to make this disjoint with \u0027preceded by\u0027, but this is prohibited in OWL2","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"causally upstream of or within","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002501","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002427","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002418","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002418","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally upstream of or within","numDescendants":"16.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p is \u0027causally upstream or within\u0027 q iff p is causally related to q, and the end of p precedes, or is coincident with, the end of q.","We would like to make this disjoint with \u0027preceded by\u0027, but this is prohibited in OWL2","false"],"shortForm":"RO_0002418","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002427\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002427\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"inverse of causally upstream of or within\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002501\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002501\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"inverse of causally upstream of or within\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002418\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causally downstream of or within\"},\"numDescendants\":11.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"inverse of causally upstream of or within\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002427\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002427","definition":"inverse of causally upstream of or within","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002501","directParent":"http://purl.obolibrary.org/obo/RO_0002501","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of causally upstream of or within","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"causally downstream of or within","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002501","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002418","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002427","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002427","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally downstream of or within","numDescendants":"11.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["inverse of causally upstream of or within","false"],"shortForm":"RO_0002427","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002428\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002428\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 regulates some p\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\",\"http://purl.obolibrary.org/obo/RO_0002431\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0002431\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 regulates some p\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"involved in regulation of\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0002431\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002211\"],[\"http://purl.obolibrary.org/obo/RO_0002331\",\"http://purl.obolibrary.org/obo/RO_0002211\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in regulation of\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 regulates some p\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002428\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002331\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"involved in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002331\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002431\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in or involved in regulation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002431\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002263\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002428","definition":"c involved in regulation of p if c is involved in some p\u0027 and p\u0027 regulates some p","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595","http://purl.obolibrary.org/obo/RO_0002431"],"directParent":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0002431"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c involved in regulation of p if c is involved in some p\u0027 and p\u0027 regulates some p","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"involved in regulation of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0002431"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002211\"]","[\"http://purl.obolibrary.org/obo/RO_0002331\",\"http://purl.obolibrary.org/obo/RO_0002211\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002428","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002428","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"involved in regulation of","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c involved in regulation of p if c is involved in some p\u0027 and p\u0027 regulates some p","false"],"shortForm":"RO_0002428","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002429\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002429\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 positively regulates some p\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002428\",\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\",\"http://purl.obolibrary.org/obo/RO_0002431\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002428\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 positively regulates some p\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"involved in positive regulation of\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002428\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002213\"],[\"http://purl.obolibrary.org/obo/RO_0002331\",\"http://purl.obolibrary.org/obo/RO_0002213\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in positive regulation of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 positively regulates some p\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002429\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002331\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"involved in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002331\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002431\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in or involved in regulation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002431\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in regulation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002428\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002263\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002429","definition":"c involved in regulation of p if c is involved in some p\u0027 and p\u0027 positively regulates some p","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002428","http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595","http://purl.obolibrary.org/obo/RO_0002431"],"directParent":"http://purl.obolibrary.org/obo/RO_0002428","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c involved in regulation of p if c is involved in some p\u0027 and p\u0027 positively regulates some p","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"involved in positive regulation of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002428","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002213\"]","[\"http://purl.obolibrary.org/obo/RO_0002331\",\"http://purl.obolibrary.org/obo/RO_0002213\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002429","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002429","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"involved in positive regulation of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c involved in regulation of p if c is involved in some p\u0027 and p\u0027 positively regulates some p","false"],"shortForm":"RO_0002429","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002430\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002430\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 negatively regulates some p\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002428\",\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\",\"http://purl.obolibrary.org/obo/RO_0002431\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002428\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 negatively regulates some p\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"involved in negative regulation of\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002428\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002212\"],[\"http://purl.obolibrary.org/obo/RO_0002331\",\"http://purl.obolibrary.org/obo/RO_0002212\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in negative regulation of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c involved in regulation of p if c is involved in some p\\u0027 and p\\u0027 negatively regulates some p\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002430\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002331\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"involved in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002331\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002431\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in or involved in regulation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002431\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002212\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002212\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in regulation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002428\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002263\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002430","definition":"c involved in regulation of p if c is involved in some p\u0027 and p\u0027 negatively regulates some p","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002428","http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595","http://purl.obolibrary.org/obo/RO_0002431"],"directParent":"http://purl.obolibrary.org/obo/RO_0002428","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c involved in regulation of p if c is involved in some p\u0027 and p\u0027 negatively regulates some p","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"involved in negative regulation of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002428","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002212\"]","[\"http://purl.obolibrary.org/obo/RO_0002331\",\"http://purl.obolibrary.org/obo/RO_0002212\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002430","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002430","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"involved in negative regulation of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c involved in regulation of p if c is involved in some p\u0027 and p\u0027 negatively regulates some p","false"],"shortForm":"RO_0002430","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002431\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002431\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"OWL does not allow defining object properties via a Union\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"involved in or involved in regulation of\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"involved in or involved in regulation of\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p\"},{\"type\":[\"literal\"],\"value\":\"OWL does not allow defining object properties via a Union\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002431\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002431","definition":"c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":["http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p","http__//purl.obolibrary.org/obo/IAO_0000116":"OWL does not allow defining object properties via a Union","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"involved in or involved in regulation of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002431","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002431","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"involved in or involved in regulation of","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c involved in or regulates p if and only if either (i) c is involved in p or (ii) c is involved in regulation of p","OWL does not allow defining object properties via a Union","false"],"shortForm":"RO_0002431","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002434\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002434\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between two entities in which the processes executed by the two entities are causally connected.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between two entities in which the processes executed by the two entities are causally connected.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"Considering relabeling as \\u0027pairwise interacts with\\u0027\"},{\"type\":[\"literal\"],\"value\":\"This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact.\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#SymmetricProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"interacts with\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"interacts with\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship that holds between two entities in which the processes executed by the two entities are causally connected.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"Considering relabeling as \\u0027pairwise interacts with\\u0027\"},{\"type\":[\"literal\"],\"value\":\"This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002434\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002434","definition":"A relationship that holds between two entities in which the processes executed by the two entities are causally connected.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship that holds between two entities in which the processes executed by the two entities are causally connected.","http__//purl.obolibrary.org/obo/IAO_0000116":["Considering relabeling as \u0027pairwise interacts with\u0027","This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"interacts with","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000040","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002434","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002434","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"interacts with","numDescendants":"5.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship that holds between two entities in which the processes executed by the two entities are causally connected.","Considering relabeling as \u0027pairwise interacts with\u0027","This relation and all sub-relations can be applied to either (1) pairs of entities that are interacting at any moment of time (2) populations or species of entity whose members have the disposition to interact (3) classes whose members have the disposition to interact.","false"],"shortForm":"RO_0002434","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002436\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002436\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002434\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002434\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#SymmetricProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"molecularly interacts with\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002434\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"molecularly interacts with\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002436\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002434\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002434\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002436","definition":"An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002434","directParent":"http://purl.obolibrary.org/obo/RO_0002434","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#SymmetricProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"molecularly interacts with","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002434","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002436","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002436","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"molecularly interacts with","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["An interaction relationship in which the two partners are molecular entities that directly physically interact with each other for example via a stable binding interaction or a brief interaction during which one modifies the other.","false"],"shortForm":"RO_0002436","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002447\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002447\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002436\",\"http://purl.obolibrary.org/obo/RO_0002434\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002436\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"Axiomatization to GO to be added later\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"phosphorylates\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002436\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"phosphorylates\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Axiomatization to GO to be added later\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002447\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002434\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002434\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002436\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecularly interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002436\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002447","directAncestor":["http://purl.obolibrary.org/obo/RO_0002436","http://purl.obolibrary.org/obo/RO_0002434"],"directParent":"http://purl.obolibrary.org/obo/RO_0002436","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000116":"Axiomatization to GO to be added later","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"phosphorylates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002436","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002447","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002447","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"phosphorylates","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Axiomatization to GO to be added later","false"],"shortForm":"RO_0002447","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002448\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002448\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\\n\\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002436\",\"http://purl.obolibrary.org/obo/RO_0002434\",\"http://purl.obolibrary.org/obo/RO_0011002\",\"http://purl.obolibrary.org/obo/RO_0002566\",\"http://purl.obolibrary.org/obo/RO_0002506\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002436\",\"http://purl.obolibrary.org/obo/RO_0011002\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\\n\\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly regulates activity of\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002436\",\"http://purl.obolibrary.org/obo/RO_0011002\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002333\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulates activity of\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\\n\\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002448\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0011002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulates activity of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0011002\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002333\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enabled by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002333\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002566\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally influences\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002566\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002434\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002434\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002436\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecularly interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002436\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002506\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between entities\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002506\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002448","definition":"The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\n\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002436","http://purl.obolibrary.org/obo/RO_0002434","http://purl.obolibrary.org/obo/RO_0011002","http://purl.obolibrary.org/obo/RO_0002566","http://purl.obolibrary.org/obo/RO_0002506"],"directParent":["http://purl.obolibrary.org/obo/RO_0002436","http://purl.obolibrary.org/obo/RO_0011002"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\n\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"directly regulates activity of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002436","http://purl.obolibrary.org/obo/RO_0011002"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002333"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002448","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002448","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly regulates activity of","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["The entity A, immediately upstream of the entity B, has an activity that regulates an activity performed by B. For example, A and B may be gene products and binding of B by A regulates the kinase activity of B.\n\nA and B can be physically interacting but not necessarily. Immediately upstream means there are no intermediate entity between A and B.","false"],"shortForm":"RO_0002448","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002449\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002449\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \\nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002448\",\"http://purl.obolibrary.org/obo/RO_0002436\",\"http://purl.obolibrary.org/obo/RO_0002434\",\"http://purl.obolibrary.org/obo/RO_0011002\",\"http://purl.obolibrary.org/obo/RO_0002566\",\"http://purl.obolibrary.org/obo/RO_0002506\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002448\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \\nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulates activity of\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002448\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002630\",\"http://purl.obolibrary.org/obo/RO_0002333\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulates activity of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \\nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002449\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0011002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulates activity of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0011002\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002333\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enabled by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002333\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002448\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulates activity of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002448\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002566\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally influences\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002566\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002434\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002434\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002436\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecularly interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002436\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002630\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002630\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002506\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between entities\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002506\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002449","definition":"The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002448","http://purl.obolibrary.org/obo/RO_0002436","http://purl.obolibrary.org/obo/RO_0002434","http://purl.obolibrary.org/obo/RO_0011002","http://purl.obolibrary.org/obo/RO_0002566","http://purl.obolibrary.org/obo/RO_0002506"],"directParent":"http://purl.obolibrary.org/obo/RO_0002448","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"directly negatively regulates activity of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002448","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0002630","http://purl.obolibrary.org/obo/RO_0002333"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002449","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002449","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly negatively regulates activity of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["The entity A, immediately upstream of the entity B, has an activity that negatively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A negatively regulates the kinase activity of B.","false"],"shortForm":"RO_0002449","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002450\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002450\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \\nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002448\",\"http://purl.obolibrary.org/obo/RO_0002436\",\"http://purl.obolibrary.org/obo/RO_0002434\",\"http://purl.obolibrary.org/obo/RO_0011002\",\"http://purl.obolibrary.org/obo/RO_0002566\",\"http://purl.obolibrary.org/obo/RO_0002506\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002448\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \\nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulates activity of\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002448\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002629\",\"http://purl.obolibrary.org/obo/RO_0002333\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulates activity of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \\nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002450\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0011002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulates activity of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0011002\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002333\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enabled by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002333\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002448\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulates activity of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002448\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002566\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally influences\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002566\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002434\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002434\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002436\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"molecularly interacts with\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002436\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002506\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between entities\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002506\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002629\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002629\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002450","definition":"The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002448","http://purl.obolibrary.org/obo/RO_0002436","http://purl.obolibrary.org/obo/RO_0002434","http://purl.obolibrary.org/obo/RO_0011002","http://purl.obolibrary.org/obo/RO_0002566","http://purl.obolibrary.org/obo/RO_0002506"],"directParent":"http://purl.obolibrary.org/obo/RO_0002448","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"directly positively regulates activity of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002448","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0002629","http://purl.obolibrary.org/obo/RO_0002333"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002450","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002450","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly positively regulates activity of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["The entity A, immediately upstream of the entity B, has an activity that positively regulates an activity performed by B. \nFor example, A and B may be gene products and binding of B by A positively regulates the kinase activity of B.","false"],"shortForm":"RO_0002450","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002473\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002473\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002131\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"composed primarily of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002473\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002131\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overlaps\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002131\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002473","definition":"x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002131"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000051","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"composed primarily of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002473","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002473","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"composed primarily of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x composed_primarily_of y if and only if more than half of the mass of x is made from y or units of the same type as y.","false"],"shortForm":"RO_0002473","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002479\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002479\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has part that occurs in\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has part that occurs in\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002479\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002479","definition":"p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#label":"has part that occurs in","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000004","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002479","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002479","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has part that occurs in","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p has part that occurs in c if and only if there exists some p1, such that p has_part p1, and p1 occurs in c.","false"],"shortForm":"RO_0002479","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002487\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"numDescendants\":7.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002487\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002487","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"relation between physical entity and a process or stage","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000003","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002487","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002487","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"relation between physical entity and a process or stage","numDescendants":"7.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002487","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002488\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002488\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \\u003e\\u003d α(y) \\u0026 α(x) \\u003c\\u003d ω(y).\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002490\",\"http://purl.obolibrary.org/obo/RO_0002487\",\"http://purl.obolibrary.org/obo/RO_0002496\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002490\",\"http://purl.obolibrary.org/obo/RO_0002496\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \\u003e\\u003d α(y) \\u0026 α(x) \\u003c\\u003d ω(y).\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"existence starts during\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002490\",\"http://purl.obolibrary.org/obo/RO_0002496\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002488\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts during\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \\u003e\\u003d α(y) \\u0026 α(x) \\u003c\\u003d ω(y).\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002488\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002490\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence overlaps\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002490\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002496\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts during or after\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002496\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002487\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002487\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002488","definition":"x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002490","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/RO_0002496"],"directParent":["http://purl.obolibrary.org/obo/RO_0002490","http://purl.obolibrary.org/obo/RO_0002496"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y).","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"existence starts during","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002490","http://purl.obolibrary.org/obo/RO_0002496"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002488","http://purl.obolibrary.org/obo/BFO_0000050"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002488","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002488","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"existence starts during","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x existence starts during y if and only if the time point at which x starts is after or equivalent to the time point at which y starts and before or equivalent to the time point at which y ends. Formally: x existence starts during y iff α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y).","false"],"shortForm":"RO_0002488","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002489\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002489\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \\u003d α(y).\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002488\",\"http://purl.obolibrary.org/obo/RO_0002490\",\"http://purl.obolibrary.org/obo/RO_0002487\",\"http://purl.obolibrary.org/obo/RO_0002496\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002488\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \\u003d α(y).\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"existence starts with\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002488\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts with\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \\u003d α(y).\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002489\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002490\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence overlaps\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002490\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002496\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts during or after\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002496\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002488\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts during\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002488\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002487\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002487\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002489","definition":"x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \u003d α(y).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002488","http://purl.obolibrary.org/obo/RO_0002490","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/RO_0002496"],"directParent":"http://purl.obolibrary.org/obo/RO_0002488","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \u003d α(y).","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"existence starts with","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002488","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002489","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002489","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"existence starts with","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x starts ends with y if and only if the time point at which x starts is equivalent to the time point at which y starts. Formally: x existence starts with y iff α(x) \u003d α(y).","false"],"shortForm":"RO_0002489","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002490\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002490\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \\u003e\\u003d α(y) \\u0026 α(x) \\u003c\\u003d ω(y)) OR (ω(x) \\u003c\\u003d ω(y) \\u0026 ω(x) \\u003e\\u003d α(y))\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \\u003e\\u003d α(y) \\u0026 α(x) \\u003c\\u003d ω(y)) OR (ω(x) \\u003c\\u003d ω(y) \\u0026 ω(x) \\u003e\\u003d α(y))\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"existence overlaps\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"existence overlaps\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \\u003e\\u003d α(y) \\u0026 α(x) \\u003c\\u003d ω(y)) OR (ω(x) \\u003c\\u003d ω(y) \\u0026 ω(x) \\u003e\\u003d α(y))\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002490\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002487\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002487\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002490","definition":"x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y)) OR (ω(x) \u003c\u003d ω(y) \u0026 ω(x) \u003e\u003d α(y))","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002487","directParent":"http://purl.obolibrary.org/obo/RO_0002487","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y)) OR (ω(x) \u003c\u003d ω(y) \u0026 ω(x) \u003e\u003d α(y))","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"existence overlaps","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002487","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002490","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002490","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"existence overlaps","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x existence overlaps y if and only if either (a) the start of x is part of y or (b) the end of x is part of y. Formally: x existence starts and ends during y iff (α(x) \u003e\u003d α(y) \u0026 α(x) \u003c\u003d ω(y)) OR (ω(x) \u003c\u003d ω(y) \u0026 ω(x) \u003e\u003d α(y))","false"],"shortForm":"RO_0002490","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002492\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \\u003c\\u003d ω(y) and ω(x) \\u003e\\u003d α(y).\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002490\",\"http://purl.obolibrary.org/obo/RO_0002487\",\"http://purl.obolibrary.org/obo/RO_0002497\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002490\",\"http://purl.obolibrary.org/obo/RO_0002497\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \\u003c\\u003d ω(y) and ω(x) \\u003e\\u003d α(y).\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"existence ends during\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002490\",\"http://purl.obolibrary.org/obo/RO_0002497\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \\u003c\\u003d ω(y) and ω(x) \\u003e\\u003d α(y).\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002492\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002490\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence overlaps\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002490\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002497\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during or before\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002497\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002487\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002487\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002492","definition":"x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \u003c\u003d ω(y) and ω(x) \u003e\u003d α(y).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002490","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/RO_0002497"],"directParent":["http://purl.obolibrary.org/obo/RO_0002490","http://purl.obolibrary.org/obo/RO_0002497"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \u003c\u003d ω(y) and ω(x) \u003e\u003d α(y).","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"existence ends during","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002490","http://purl.obolibrary.org/obo/RO_0002497"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002492","http://purl.obolibrary.org/obo/BFO_0000050"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002492","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002492","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"existence ends during","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x existence ends during y if and only if the time point at which x ends is before or equivalent to the time point at which y ends and after or equivalent to the point at which y starts. Formally: x existence ends during y iff ω(x) \u003c\u003d ω(y) and ω(x) \u003e\u003d α(y).","false"],"shortForm":"RO_0002492","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002493\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002493\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \\u003d ω(y).\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002492\",\"http://purl.obolibrary.org/obo/RO_0002490\",\"http://purl.obolibrary.org/obo/RO_0002487\",\"http://purl.obolibrary.org/obo/RO_0002497\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \\u003d ω(y).\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"existence ends with\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002492\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends with\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \\u003d ω(y).\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002493\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002490\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence overlaps\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002490\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002497\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during or before\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002497\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002492\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002492\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002487\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002487\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002493","definition":"x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \u003d ω(y).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002492","http://purl.obolibrary.org/obo/RO_0002490","http://purl.obolibrary.org/obo/RO_0002487","http://purl.obolibrary.org/obo/RO_0002497"],"directParent":"http://purl.obolibrary.org/obo/RO_0002492","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \u003d ω(y).","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"existence ends with","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002492","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002493","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002493","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"existence ends with","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x existence ends with y if and only if the time point at which x ends is equivalent to the time point at which y ends. Formally: x existence ends with y iff ω(x) \u003d ω(y).","false"],"shortForm":"RO_0002493","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002494\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002494\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://purl.obolibrary.org/obo/RO_0002258\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"transformation of\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002202\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"transformation of\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002494\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002258\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002494","definition":"x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002202","http://purl.obolibrary.org/obo/RO_0002258"],"directParent":"http://purl.obolibrary.org/obo/RO_0002202","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"transformation of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002202","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002494","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002494","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"transformation of","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x transformation of y if x is the immediate transformation of y, or is linked to y through a chain of transformation relationships","false"],"shortForm":"RO_0002494","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002495\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002495\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002207\",\"http://purl.obolibrary.org/obo/RO_0002202\",\"http://purl.obolibrary.org/obo/RO_0002258\",\"http://purl.obolibrary.org/obo/RO_0002494\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002207\",\"http://purl.obolibrary.org/obo/RO_0002494\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"immediate transformation of\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002207\",\"http://purl.obolibrary.org/obo/RO_0002494\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"immediate transformation of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002495\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002494\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"transformation of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002494\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002207\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directly develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002207\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002202\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"develops from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002202\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002258\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002495","definition":"x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002207","http://purl.obolibrary.org/obo/RO_0002202","http://purl.obolibrary.org/obo/RO_0002258","http://purl.obolibrary.org/obo/RO_0002494"],"directParent":["http://purl.obolibrary.org/obo/RO_0002207","http://purl.obolibrary.org/obo/RO_0002494"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"immediate transformation of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002207","http://purl.obolibrary.org/obo/RO_0002494"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002495","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002495","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"immediate transformation of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x immediate transformation of y iff x immediately succeeds y temporally at a time boundary t, and all of the matter present in x at t is present in y at t, and all the matter in y at t is present in x at t","false"],"shortForm":"RO_0002495","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002496\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002496\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \\u003e\\u003d α (y).\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \\u003e\\u003d α (y).\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"existence starts during or after\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002496\"],[\"http://purl.obolibrary.org/obo/RO_0002258\",\"http://purl.obolibrary.org/obo/RO_0002496\"],[\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],[\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://purl.obolibrary.org/obo/BFO_0000062\"],[\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://purl.obolibrary.org/obo/RO_0002082\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"existence starts during or after\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \\u003e\\u003d α (y).\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002496\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002487\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002487\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002258\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002258\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000062\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"preceded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000062\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002496","definition":"x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \u003e\u003d α (y).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002487","directParent":"http://purl.obolibrary.org/obo/RO_0002487","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \u003e\u003d α (y).","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"existence starts during or after","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002487","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002496\"]","[\"http://purl.obolibrary.org/obo/RO_0002258\",\"http://purl.obolibrary.org/obo/RO_0002496\"]","[\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]","[\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://purl.obolibrary.org/obo/BFO_0000062\"]","[\"http://purl.obolibrary.org/obo/RO_0002496\",\"http://purl.obolibrary.org/obo/RO_0002082\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002496","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002496","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"existence starts during or after","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x existence starts during or after y if and only if the time point at which x starts is after or equivalent to the time point at which y starts. Formally: x existence starts during or after y iff α (x) \u003e\u003d α (y).","false"],"shortForm":"RO_0002496","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002497\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002497\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"existence ends during or before\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002487\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002497\"],[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002497\"],[\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],[\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://purl.obolibrary.org/obo/BFO_0000063\"],[\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://purl.obolibrary.org/obo/RO_0002082\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"existence ends during or before\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002497\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002082\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"simultaneous with\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002082\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002286\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"developmentally succeeded by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002286\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002487\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"relation between physical entity and a process or stage\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002487\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002497","definition":"x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002487","directParent":"http://purl.obolibrary.org/obo/RO_0002487","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"existence ends during or before","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002487","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/RO_0002497\"]","[\"http://purl.obolibrary.org/obo/RO_0002286\",\"http://purl.obolibrary.org/obo/RO_0002497\"]","[\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]","[\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://purl.obolibrary.org/obo/BFO_0000063\"]","[\"http://purl.obolibrary.org/obo/RO_0002497\",\"http://purl.obolibrary.org/obo/RO_0002082\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002497","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002497","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"existence ends during or before","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["x existence ends during or before y if and only if the time point at which x ends is before or equivalent to the time point at which y ends.","false"],"shortForm":"RO_0002497","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002500\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship between a material entity and a process where the material entity has some causal role that influences the process\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002595\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002595\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship between a material entity and a process where the material entity has some causal role that influences the process\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002595\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002608\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"numDescendants\":17.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship between a material entity and a process where the material entity has some causal role that influences the process\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002500\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002608\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"process has causal agent\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002608\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002500","definition":"A relationship between a material entity and a process where the material entity has some causal role that influences the process","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002595","directParent":"http://purl.obolibrary.org/obo/RO_0002595","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship between a material entity and a process where the material entity has some causal role that influences the process","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"causal agent in process","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002595","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002608","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002500","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002500","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causal agent in process","numDescendants":"17.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship between a material entity and a process where the material entity has some causal role that influences the process","false"],"shortForm":"RO_0002500","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002501\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"numDescendants\":29.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002501\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002501","definition":"p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#label":"causal relation between processes","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000003","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002501","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002501","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causal relation between processes","numDescendants":"29.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p is causally related to q if and only if p or any part of p and q or any part of q are linked by a chain of events where each event pair is one where the execution of p influences the execution of q. p may be upstream, downstream, part of, or a container of q.","false"],"shortForm":"RO_0002501","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002506\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002506\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causal relation between entities\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between entities\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002506\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002506","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000116":"The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2000/01/rdf-schema#label":"causal relation between entities","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000002","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002506","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002506","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causal relation between entities","numDescendants":"6.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["The intent is that the process branch of the causal property hierarchy is primary (causal relations hold between occurrents/processes), and that the material branch is defined in terms of the process branch","false"],"shortForm":"RO_0002506","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002559\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002559\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002506\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002506\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causally influenced by\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002506\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002566\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causally influenced by\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002559\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002506\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between entities\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002506\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002566\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally influences\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002566\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002559","directAncestor":"http://purl.obolibrary.org/obo/RO_0002506","directParent":"http://purl.obolibrary.org/obo/RO_0002506","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"causally influenced by","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002506","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002566","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002559","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002559","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally influenced by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0002559","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002566\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002566\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002506\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002506\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causally influences\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002506\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002559\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0002233\"],[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0002333\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causally influences\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002566\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002233\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002333\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enabled by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002333\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002506\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between entities\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002506\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002559\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally influenced by\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002559\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002566","definition":"The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002506","directParent":"http://purl.obolibrary.org/obo/RO_0002506","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2000/01/rdf-schema#label":"causally influences","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002506","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002559","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0002233\"]","[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/RO_0002333\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002566","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002566","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally influences","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["The entity or characteristic A is causally upstream of the entity or characteristic B, A having an effect on B. An entity corresponds to any biological type of entity as long as a mass is measurable. A characteristic corresponds to a particular specificity of an entity (e.g., phenotype, shape, size).","false"],"shortForm":"RO_0002566","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002578\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002578\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p directly regulates q iff p is immediately causally upstream of q and p regulates q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002412\",\"http://purl.obolibrary.org/obo/RO_0002090\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002412\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p directly regulates q iff p is immediately causally upstream of q and p regulates q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly regulates\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002412\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002022\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulates\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p directly regulates q iff p is immediately causally upstream of q and p regulates q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002578\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002090\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002090\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002022\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulated by\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002022\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002412\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002578","definition":"p directly regulates q iff p is immediately causally upstream of q and p regulates q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002412","http://purl.obolibrary.org/obo/RO_0002090"],"directParent":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002412"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p directly regulates q iff p is immediately causally upstream of q and p regulates q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"directly regulates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002412"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002022","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002578","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002578","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly regulates","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p directly regulates q iff p is immediately causally upstream of q and p regulates q.","false"],"shortForm":"RO_0002578","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002584\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002584\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"s \\u0027has part structure that is capable of\\u0027 p if and only if there exists some part x such that s \\u0027has part\\u0027 x and x \\u0027capable of\\u0027 p\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0002595\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002595\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"s \\u0027has part structure that is capable of\\u0027 p if and only if there exists some part x such that s \\u0027has part\\u0027 x and x \\u0027capable of\\u0027 p\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"has part structure that is capable of\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002595\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://purl.obolibrary.org/obo/RO_0002215\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"has part structure that is capable of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"s \\u0027has part structure that is capable of\\u0027 p if and only if there exists some part x such that s \\u0027has part\\u0027 x and x \\u0027capable of\\u0027 p\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002584\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002584","definition":"s \u0027has part structure that is capable of\u0027 p if and only if there exists some part x such that s \u0027has part\u0027 x and x \u0027capable of\u0027 p","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0002595","directParent":"http://purl.obolibrary.org/obo/RO_0002595","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"s \u0027has part structure that is capable of\u0027 p if and only if there exists some part x such that s \u0027has part\u0027 x and x \u0027capable of\u0027 p","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has part structure that is capable of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002595","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002215"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002584","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002584","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has part structure that is capable of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["s \u0027has part structure that is capable of\u0027 p if and only if there exists some part x such that s \u0027has part\u0027 x and x \u0027capable of\u0027 p","false"],"shortForm":"RO_0002584","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002595\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"numDescendants\":19.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.\"},{\"type\":[\"literal\"],\"value\":\"Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002595\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002595","definition":"A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.","http__//purl.obolibrary.org/obo/IAO_0000116":"Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"causal relation between material entity and a process","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002595","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002595","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causal relation between material entity and a process","numDescendants":"19.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship that holds between a material entity and a process in which causality is involved, with either the material entity or some part of the material entity exerting some influence over the process, or the process influencing some aspect of the material entity.","Do not use this relation directly. It is intended as a grouping for a diverse set of relations, all involving cause and effect.","false"],"shortForm":"RO_0002595","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002596\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002596\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a regulates p.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002500\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a regulates p.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"capable of regulating\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://purl.obolibrary.org/obo/RO_0002211\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"capable of regulating\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a regulates p.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002596\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002596","definition":"Holds between c and p if and only if c is capable of some activity a, and a regulates p.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002500","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Holds between c and p if and only if c is capable of some activity a, and a regulates p.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"capable of regulating","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002500","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002215","http://purl.obolibrary.org/obo/RO_0002211"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002596","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002596","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"capable of regulating","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Holds between c and p if and only if c is capable of some activity a, and a regulates p.","false"],"shortForm":"RO_0002596","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002597\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002597\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002596\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002596\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"capable of negatively regulating\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002596\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://purl.obolibrary.org/obo/RO_0002212\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"capable of negatively regulating\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002597\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002596\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"capable of regulating\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002596\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002212\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002212\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002597","definition":"Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002596","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002596","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"capable of negatively regulating","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002596","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002215","http://purl.obolibrary.org/obo/RO_0002212"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002597","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002597","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"capable of negatively regulating","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Holds between c and p if and only if c is capable of some activity a, and a negatively regulates p.","false"],"shortForm":"RO_0002597","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002598\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002598\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002596\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002596\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"capable of positively regulating\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002596\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002215\",\"http://purl.obolibrary.org/obo/RO_0002213\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"capable of positively regulating\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002598\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002596\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"capable of regulating\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002596\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002215\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"capable of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002215\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002598","definition":"Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002596","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002596","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"capable of positively regulating","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002596","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002215","http://purl.obolibrary.org/obo/RO_0002213"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002598","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002598","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"capable of positively regulating","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Holds between c and p if and only if c is capable of some activity a, and a positively regulates p.","false"],"shortForm":"RO_0002598","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002608\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002608\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Inverse of \\u0027causal agent in process\\u0027\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Inverse of \\u0027causal agent in process\\u0027\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"process has causal agent\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002500\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"process has causal agent\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Inverse of \\u0027causal agent in process\\u0027\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002608\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002608","definition":"Inverse of \u0027causal agent in process\u0027","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Inverse of \u0027causal agent in process\u0027","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"process has causal agent","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002500","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002608","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002608","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"process has causal agent","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["Inverse of \u0027causal agent in process\u0027","false"],"shortForm":"RO_0002608","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002629\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002629\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002304\",\"http://purl.obolibrary.org/obo/RO_0004047\",\"http://purl.obolibrary.org/obo/RO_0002578\",\"http://purl.obolibrary.org/obo/RO_0002412\",\"http://purl.obolibrary.org/obo/RO_0002090\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0002578\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulates\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0002578\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002024\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulates\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002629\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002090\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002090\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002304\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002304\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004047\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004047\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002024\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly positively regulated by\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002024\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002412\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002578\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002578\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002629","definition":"p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002213","http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002304","http://purl.obolibrary.org/obo/RO_0004047","http://purl.obolibrary.org/obo/RO_0002578","http://purl.obolibrary.org/obo/RO_0002412","http://purl.obolibrary.org/obo/RO_0002090"],"directParent":["http://purl.obolibrary.org/obo/RO_0002213","http://purl.obolibrary.org/obo/RO_0002578"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"directly positively regulates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002213","http://purl.obolibrary.org/obo/RO_0002578"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002024","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002629","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002629","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly positively regulates","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p directly positively regulates q iff p is immediately causally upstream of q, and p positively regulates q.","false"],"shortForm":"RO_0002629","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002630\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002630\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0002305\",\"http://purl.obolibrary.org/obo/RO_0004046\",\"http://purl.obolibrary.org/obo/RO_0002578\",\"http://purl.obolibrary.org/obo/RO_0002412\",\"http://purl.obolibrary.org/obo/RO_0002090\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0002578\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulates\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0002578\"],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002023\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulates\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002630\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002090\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002090\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002212\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002212\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002305\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002305\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004046\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004046\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly negatively regulated by\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002023\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immediately causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002412\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002578\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"directly regulates\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002578\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0002630","definition":"p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002212","http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0002305","http://purl.obolibrary.org/obo/RO_0004046","http://purl.obolibrary.org/obo/RO_0002578","http://purl.obolibrary.org/obo/RO_0002412","http://purl.obolibrary.org/obo/RO_0002090"],"directParent":["http://purl.obolibrary.org/obo/RO_0002212","http://purl.obolibrary.org/obo/RO_0002578"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"directly negatively regulates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002212","http://purl.obolibrary.org/obo/RO_0002578"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002023","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0002630","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002630","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directly negatively regulates","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p directly negatively regulates q iff p is immediately causally upstream of q, and p negatively regulates q.","false"],"shortForm":"RO_0002630","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0003000\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0003000\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"produces\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0003001\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"produces\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0003000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0003001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"produced by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0003001\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0003000","definition":"a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"produces","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0003001","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0003000","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0003000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"produces","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a produces b if some process that occurs_in a has_output b, where a and b are material entities. Examples: hybridoma cell line produces monoclonal antibody reagent; chondroblast produces avascular GAG-rich matrix.","false"],"shortForm":"RO_0003000","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0003001\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0003001\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"a produced_by b iff some process that occurs_in b has_output a.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"a produced_by b iff some process that occurs_in b has_output a.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"produced by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0003000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"produced by\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"a produced_by b iff some process that occurs_in b has_output a.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0003001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0003000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"produces\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0003000\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0003001","definition":"a produced_by b iff some process that occurs_in b has_output a.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a produced_by b iff some process that occurs_in b has_output a.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"produced by","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0003000","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0003001","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0003001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"produced by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["a produced_by b iff some process that occurs_in b has_output a.","false"],"shortForm":"RO_0003001","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004019\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004019\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0004023\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0004023\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disease has basis in\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0004023\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has basis in\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004019\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relationship with disease as subject\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004023\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004019","directAncestor":"http://purl.obolibrary.org/obo/RO_0004023","directParent":"http://purl.obolibrary.org/obo/RO_0004023","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/OGMS_0000031","http__//www.w3.org/2000/01/rdf-schema#label":"disease has basis in","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0004023","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004019","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004019","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disease has basis in","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0004019","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004021\"},\"definition\":[{\"type\":[\"literal\"],\"value\":\"A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.\"},{\"type\":[\"literal\"],\"value\":\"Editor note: TODO property chain: disease_has_location \\u003c- dhbido o occurs_in\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0004019\",\"http://purl.obolibrary.org/obo/RO_0004023\",\"http://purl.obolibrary.org/obo/RO_0004024\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0004019\",\"http://purl.obolibrary.org/obo/RO_0004024\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"RO:0004021\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"disease_has_basis_in_disruption_of\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"disease_has_basis_in_disruption_of\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Editor note: TODO property chain: disease_has_location \\u003c- dhbido o occurs_in\"},\"http://www.w3.org/2000/01/rdf-schema#label\":[{\"type\":[\"literal\"],\"value\":\"disease caused by disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease has basis in disruption of\"}],\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0004019\",\"http://purl.obolibrary.org/obo/RO_0004024\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0004021\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease caused by disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease has basis in disruption of\"}],\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.\"},{\"type\":[\"literal\"],\"value\":\"RO:0004021\"},{\"type\":[\"literal\"],\"value\":\"disease_has_basis_in_disruption_of\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004021\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004024\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease causes disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease disrupts\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004024\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relationship with disease as subject\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004023\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has basis in\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004019\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"RO:0004021\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004021\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004021\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004021","definition":["A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.","Editor note: TODO property chain: disease_has_location \u003c- dhbido o occurs_in"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/RO_0004019","http://purl.obolibrary.org/obo/RO_0004023","http://purl.obolibrary.org/obo/RO_0004024"],"directParent":["http://purl.obolibrary.org/obo/RO_0004019","http://purl.obolibrary.org/obo/RO_0004024"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"RO:0004021","http__//www.geneontology.org/formats/oboInOwl#id":"disease_has_basis_in_disruption_of","http__//www.geneontology.org/formats/oboInOwl#shorthand":"disease_has_basis_in_disruption_of","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Editor note: TODO property chain: disease_has_location \u003c- dhbido o occurs_in","http__//www.w3.org/2000/01/rdf-schema#label":["disease caused by disruption of","disease has basis in disruption of"],"http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0004019","http://purl.obolibrary.org/obo/RO_0004024"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0004021","http://purl.obolibrary.org/obo/BFO_0000050"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004021","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004021","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":["disease caused by disruption of","disease has basis in disruption of"],"numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relation that holds between the disease and a process where the physical basis of the disease disrupts execution of a key biological process.","RO:0004021","disease_has_basis_in_disruption_of","false"],"shortForm":"RO_0004021","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004023\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004023\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causal relationship with disease as subject\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relationship with disease as subject\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004023\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004023","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/OGMS_0000031","http__//www.w3.org/2000/01/rdf-schema#label":"causal relationship with disease as subject","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004023","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004023","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causal relationship with disease as subject","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0004023","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004024\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004024\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and a process where the disease process disrupts the execution of the process.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0004023\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0004023\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and a process where the disease process disrupts the execution of the process.\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"RO:0004024\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"disease_disrupts\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"disease_disrupts\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://www.w3.org/2000/01/rdf-schema#label\":[{\"type\":[\"literal\"],\"value\":\"disease causes disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease disrupts\"}],\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0004023\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0004024\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":[{\"type\":[\"literal\"],\"value\":\"disease causes disruption of\"},{\"type\":[\"literal\"],\"value\":\"disease disrupts\"}],\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and a process where the disease process disrupts the execution of the process.\"},{\"type\":[\"literal\"],\"value\":\"RO:0004024\"},{\"type\":[\"literal\"],\"value\":\"disease_disrupts\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004024\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relationship with disease as subject\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004023\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0004024\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004024\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004024\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004024","definition":"A relationship between a disease and a process where the disease process disrupts the execution of the process.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0004023","directParent":"http://purl.obolibrary.org/obo/RO_0004023","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship between a disease and a process where the disease process disrupts the execution of the process.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"RO:0004024","http__//www.geneontology.org/formats/oboInOwl#id":"disease_disrupts","http__//www.geneontology.org/formats/oboInOwl#shorthand":"disease_disrupts","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/OGMS_0000031","http__//www.w3.org/2000/01/rdf-schema#label":["disease causes disruption of","disease disrupts"],"http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0004023","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0004024","http://purl.obolibrary.org/obo/BFO_0000050"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004024","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004024","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":["disease causes disruption of","disease disrupts"],"numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship between a disease and a process where the disease process disrupts the execution of the process.","RO:0004024","disease_disrupts","false"],"shortForm":"RO_0004024","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"TODO: complete range axiom once more of CARO has been mireoted in to this ontology\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"disease_has_location\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"disease_has_location\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"http://www.w3.org/2000/01/rdf-schema#range\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#unionOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000465\",\"http://purl.obolibrary.org/obo/UBERON_0000466\"]}],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0004026\",\"http://purl.obolibrary.org/obo/BFO_0000050\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has location\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.\"},{\"type\":[\"literal\"],\"value\":\"TODO: complete range axiom once more of CARO has been mireoted in to this ontology\"},{\"type\":[\"literal\"],\"value\":\"RO:0004026\"},{\"type\":[\"literal\"],\"value\":\"disease_has_location\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004026\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000465\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"material anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000465\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000466\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"immaterial anatomical entity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000466\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0004026\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004026\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004026\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004026","definition":"A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.","http__//purl.obolibrary.org/obo/IAO_0000116":"TODO: complete range axiom once more of CARO has been mireoted in to this ontology","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"RO:0004026","http__//www.geneontology.org/formats/oboInOwl#id":"disease_has_location","http__//www.geneontology.org/formats/oboInOwl#shorthand":"disease_has_location","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/OGMS_0000031","http__//www.w3.org/2000/01/rdf-schema#label":"disease has location","http__//www.w3.org/2000/01/rdf-schema#range":["http://purl.obolibrary.org/obo/BFO_0000004"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0004026","http://purl.obolibrary.org/obo/BFO_0000050"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004026","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004026","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disease has location","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship between a disease and an anatomical entity where the disease has one or more features that are located in that entity.","TODO: complete range axiom once more of CARO has been mireoted in to this ontology","RO:0004026","disease_has_location","false"],"shortForm":"RO_0004026","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004029\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004029\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"RO:0004029\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"disease_has_feature\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"disease_has_feature\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disease has feature\"},\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0004029\",\"http://purl.obolibrary.org/obo/BFO_0000051\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disease has feature\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.\"},{\"type\":[\"literal\"],\"value\":\"RO:0004029\"},{\"type\":[\"literal\"],\"value\":\"disease_has_feature\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004029\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0004029\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004029\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004029\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OGMS_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004029","definition":"A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"RO:0004029","http__//www.geneontology.org/formats/oboInOwl#id":"disease_has_feature","http__//www.geneontology.org/formats/oboInOwl#shorthand":"disease_has_feature","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/OGMS_0000031","http__//www.w3.org/2000/01/rdf-schema#label":"disease has feature","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0004029","http://purl.obolibrary.org/obo/BFO_0000051"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004029","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004029","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disease has feature","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship between a disease and some feature of that disease, where the feature is either a phenotype or an isolated disease.","RO:0004029","disease_has_feature","false"],"shortForm":"RO_0004029","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004032\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004032\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002264\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within, positive effect\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0004047\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within, positive effect\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004032\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004047\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004047\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004032","directAncestor":["http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002264","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"acts upstream of or within, positive effect","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002264","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0004047"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004032","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004032","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"acts upstream of or within, positive effect","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0004032","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004033\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004033\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002264\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within, negative effect\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0004046\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within, negative effect\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004033\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004046\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004046\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004033","directAncestor":["http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595"],"directParent":"http://purl.obolibrary.org/obo/RO_0002264","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"acts upstream of or within, negative effect","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002264","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0004046"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004033","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004033","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"acts upstream of or within, negative effect","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0004033","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004034\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004034\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c \\u0027acts upstream of, positive effect\\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\",\"http://purl.obolibrary.org/obo/RO_0004032\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0004032\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c \\u0027acts upstream of, positive effect\\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of, positive effect\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0004032\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002304\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of, positive effect\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c \\u0027acts upstream of, positive effect\\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004034\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004032\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004032\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002304\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, positive effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002304\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002263\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004034","definition":"c \u0027acts upstream of, positive effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595","http://purl.obolibrary.org/obo/RO_0004032"],"directParent":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0004032"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c \u0027acts upstream of, positive effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"acts upstream of, positive effect","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0004032"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0002304"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004034","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004034","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"acts upstream of, positive effect","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c \u0027acts upstream of, positive effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is positive","false"],"shortForm":"RO_0004034","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004035\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004035\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c \\u0027acts upstream of, negative effect\\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0002264\",\"http://purl.obolibrary.org/obo/RO_0002500\",\"http://purl.obolibrary.org/obo/RO_0002595\",\"http://purl.obolibrary.org/obo/RO_0004033\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0004033\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c \\u0027acts upstream of, negative effect\\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of, negative effect\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002263\",\"http://purl.obolibrary.org/obo/RO_0004033\"],\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002327\",\"http://purl.obolibrary.org/obo/RO_0002305\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of, negative effect\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"c \\u0027acts upstream of, negative effect\\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004035\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002595\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between material entity and a process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002595\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0004033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004033\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002327\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"enables\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002327\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002305\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of, negative effect\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002305\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002500\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal agent in process\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002500\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002264\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002264\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002263\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"acts upstream of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002263\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004035","definition":"c \u0027acts upstream of, negative effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0002264","http://purl.obolibrary.org/obo/RO_0002500","http://purl.obolibrary.org/obo/RO_0002595","http://purl.obolibrary.org/obo/RO_0004033"],"directParent":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0004033"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"c \u0027acts upstream of, negative effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"acts upstream of, negative effect","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002263","http://purl.obolibrary.org/obo/RO_0004033"],"http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002327","http://purl.obolibrary.org/obo/RO_0002305"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004035","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004035","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"acts upstream of, negative effect","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["c \u0027acts upstream of, negative effect\u0027 p if c is enables f, and f is causally upstream of p, and the direction of f is negative","false"],"shortForm":"RO_0004035","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004046\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004046\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002418\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, negative effect\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002418\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, negative effect\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004046\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004046","directAncestor":["http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002418","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"causally upstream of or within, negative effect","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002418","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004046","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004046","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally upstream of or within, negative effect","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0004046","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004047\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004047\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002418\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, positive effect\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002418\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within, positive effect\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004047\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0004047","directAncestor":["http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002418","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"causally upstream of or within, positive effect","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002418","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0004047","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0004047","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"causally upstream of or within, positive effect","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RO_0004047","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0011002\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0011002\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002566\",\"http://purl.obolibrary.org/obo/RO_0002506\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002566\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"regulates activity of\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002566\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"regulates activity of\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0011002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002506\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between entities\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002506\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002566\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally influences\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002566\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0011002","definition":"The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002566","http://purl.obolibrary.org/obo/RO_0002506"],"directParent":"http://purl.obolibrary.org/obo/RO_0002566","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"regulates activity of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002566","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0011002","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0011002","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulates activity of","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["The entity A has an activity that regulates an activity of the entity B. For example, A and B are gene products where the catalytic activity of A regulates the kinase activity of B.","false"],"shortForm":"RO_0011002","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0012011\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0012011\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\"],\"directParent\":\"http://purl.obolibrary.org/obo/RO_0002411\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly causally upstream of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0002411\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly causally upstream of\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0012011\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0012011","definition":"p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501"],"directParent":"http://purl.obolibrary.org/obo/RO_0002411","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"indirectly causally upstream of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0002411","id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0012011","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0012011","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"indirectly causally upstream of","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p is indirectly causally upstream of q iff p is causally upstream of q and there exists some process r such that p is causally upstream of r and r is causally upstream of q.","false"],"shortForm":"RO_0012011","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0012012\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0012012\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0002411\",\"http://purl.obolibrary.org/obo/BFO_0000063\",\"http://purl.obolibrary.org/obo/RO_0002222\",\"http://purl.obolibrary.org/obo/RO_0002418\",\"http://purl.obolibrary.org/obo/RO_0002501\",\"http://purl.obolibrary.org/obo/RO_0012011\"],\"directParent\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0012011\"],\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly regulates\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0012011\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly regulates\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0012012\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002501\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causal relation between processes\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002501\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002222\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporally related to\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002222\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"causally upstream of or within\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002411\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002411\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precedes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000063\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0012011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"indirectly causally upstream of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0012011\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0012012","definition":"p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0002411","http://purl.obolibrary.org/obo/BFO_0000063","http://purl.obolibrary.org/obo/RO_0002222","http://purl.obolibrary.org/obo/RO_0002418","http://purl.obolibrary.org/obo/RO_0002501","http://purl.obolibrary.org/obo/RO_0012011"],"directParent":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0012011"],"hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"indirectly regulates","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0012011"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0012012","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0012012","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"indirectly regulates","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["p indirectly regulates q iff p is indirectly causally upstream of q and p regulates q.","false"],"shortForm":"RO_0012012","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0019000\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0019000\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"regulates characteristic\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/PATO_0000001\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002211\",\"http://purl.obolibrary.org/obo/RO_0019000\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"regulates characteristic\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0019000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002211\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002211\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"range\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:range\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#domain\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"domain\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:domain\"},\"type\":[\"property\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0019000","definition":"A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#label":"regulates characteristic","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/PATO_0000001","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002211","http://purl.obolibrary.org/obo/RO_0019000"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0019000","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0019000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"regulates characteristic","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship that holds between a process and a characteristic in which process (P) regulates characteristic (C) iff: P results in the existence of C OR affects the intensity or magnitude of C.","false"],"shortForm":"RO_0019000","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0019001\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0019001\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0019000\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0019000\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"positively regulates characteristic\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0019000\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0019001\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"positively regulates characteristic\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0019001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0019000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulates characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0019000\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0019001","definition":"A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0019000","directParent":"http://purl.obolibrary.org/obo/RO_0019000","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"positively regulates characteristic","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0019000","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["http://purl.obolibrary.org/obo/RO_0002213","http://purl.obolibrary.org/obo/RO_0019001"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0019001","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0019001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"positively regulates characteristic","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship that holds between a process and a characteristic in which process (P) positively regulates characteristic (C) iff: P results in an increase in the intensity or magnitude of C.","false"],"shortForm":"RO_0019001","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0019002\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0019002\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0019000\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0019000\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"negatively regulates characteristic\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0019000\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0019001\"],[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0019002\"]],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"negatively regulates characteristic\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0019002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0002212\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"negatively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002212\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0019001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"positively regulates characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0019001\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0019000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"regulates characteristic\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0019000\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002213\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"positively regulates\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002213\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["gitissue502"],"curie":"RO:0019002","definition":"A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0019000","directParent":"http://purl.obolibrary.org/obo/RO_0019000","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"negatively regulates characteristic","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0019000","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/RO_0002212\",\"http://purl.obolibrary.org/obo/RO_0019001\"]","[\"http://purl.obolibrary.org/obo/RO_0002213\",\"http://purl.obolibrary.org/obo/RO_0019002\"]"],"id":"gitissue502+property+http://purl.obolibrary.org/obo/RO_0019002","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0019002","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"negatively regulates characteristic","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":["A relationship that holds between a process and a characteristic in which process (P) negatively regulates characteristic (C) iff: P results in a decrease in the intensity or magnitude of C.","false"],"shortForm":"RO_0019002","type":["property","objectProperty","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"excluded:subClassOf\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"excluded_subClassOf\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"excluded_subClassOf\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"excluded:subClassOf","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://purl.obolibrary.org/obo/mondo#excluded_subClassOf","imported":"false","iri":"http://purl.obolibrary.org/obo/mondo#excluded_subClassOf","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"excluded_subClassOf","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"excluded_subClassOf","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/mondo#should_conform_to\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"should:conform_to\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"should_conform_to\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"should_conform_to\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"should:conform_to","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://purl.obolibrary.org/obo/mondo#should_conform_to","imported":"false","iri":"http://purl.obolibrary.org/obo/mondo#should_conform_to","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"should_conform_to","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"should_conform_to","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://purl.org/dc/elements/1.1/date\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"date\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"date\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"date\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"date","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://purl.org/dc/elements/1.1/date","imported":"false","iri":"http://purl.org/dc/elements/1.1/date","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"date","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"date","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://purl.org/dc/terms/conformsTo\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"conformsTo\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"conformsTo","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://purl.org/dc/terms/conformsTo","imported":"false","iri":"http://purl.org/dc/terms/conformsTo","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"conformsTo","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"conformsTo","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://purl.org/dc/terms/creator\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"creator","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://purl.org/dc/terms/creator","imported":"false","iri":"http://purl.org/dc/terms/creator","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"creator","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"creator","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"hasBroadSynonym\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasBroadSynonym\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"hasBroadSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"hasBroadSynonym","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hasBroadSynonym","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"hasBroadSynonym","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"hasDbXref","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasDbXref","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasDbXref","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hasDbXref","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"hasDbXref","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"hasExactSynonym","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hasExactSynonym","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"hasExactSynonym","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"hasNarrowSynonym\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasNarrowSynonym\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"hasNarrowSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"hasNarrowSynonym","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hasNarrowSynonym","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"hasNarrowSynonym","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"hasRelatedSynonym","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hasRelatedSynonym","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"hasRelatedSynonym","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"hasSynonymType\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasSynonymType\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"hasSynonymType\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"hasSynonymType","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasSynonymType","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasSynonymType","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hasSynonymType","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"hasSynonymType","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasBroadSynonym\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasBroadSynonym\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasBroadSynonym\"},\"isDefiningOntology\":false,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\",\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["oio","gitissue502"],"curie":"OIO:hasBroadSynonym","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hasBroadSynonym","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"OIO_hasBroadSynonym","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasDbXref\"},\"isDefiningOntology\":false,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\",\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["oio","gitissue502"],"curie":"OIO:hasDbXref","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasDbXref","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasDbXref","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hasDbXref","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"OIO_hasDbXref","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasExactSynonym\"},\"isDefiningOntology\":false,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\",\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["oio","gitissue502"],"curie":"OIO:hasExactSynonym","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hasExactSynonym","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"OIO_hasExactSynonym","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasNarrowSynonym\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasNarrowSynonym\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasNarrowSynonym\"},\"isDefiningOntology\":false,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\",\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["oio","gitissue502"],"curie":"OIO:hasNarrowSynonym","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hasNarrowSynonym","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"OIO_hasNarrowSynonym","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasRelatedSynonym\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasRelatedSynonym\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasRelatedSynonym\"},\"isDefiningOntology\":false,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\",\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["oio","gitissue502"],"curie":"OIO:hasRelatedSynonym","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hasRelatedSynonym","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"OIO_hasRelatedSynonym","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasSynonymType\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hasSynonymType\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasSynonymType\"},\"isDefiningOntology\":false,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\",\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["oio","gitissue502"],"curie":"OIO:hasSynonymType","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#hasSynonymType","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasSynonymType","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hasSynonymType","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"OIO_hasSynonymType","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#id\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"id\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"id","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#id","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#id","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"id","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"id","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#inSubset\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"inSubset","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#inSubset","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#inSubset","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"inSubset","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"inSubset","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#inSubset\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_inSubset\"},\"isDefiningOntology\":false,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\",\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["oio","gitissue502"],"curie":"OIO:inSubset","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#inSubset","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#inSubset","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"inSubset","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"OIO_inSubset","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#shorthand\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"shorthand","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#shorthand","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#shorthand","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"shorthand","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"shorthand","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#source\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"source\"},\"isDefiningOntology\":false,\"appearsIn\":[\"gitissue502\"],\"linkedEntities\":{}}","appearsIn":["gitissue502"],"curie":"source","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.geneontology.org/formats/oboInOwl#source","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#source","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"source","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"source","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"label\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"gitissue502\",\"rdfs\"],\"linkedEntities\":{}}","appearsIn":["owl","gitissue502","rdfs"],"curie":"label","definedBy":["rdfs"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.w3.org/2000/01/rdf-schema#label","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#label","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"label","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#closeMatch\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"closeMatch\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"closeMatch\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"closeMatch\"},\"isDefiningOntology\":false,\"definedBy\":[\"skos\"],\"appearsIn\":[\"gitissue502\",\"skos\"],\"linkedEntities\":{}}","appearsIn":["gitissue502","skos"],"curie":"closeMatch","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.w3.org/2004/02/skos/core#closeMatch","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#closeMatch","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"closeMatch","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"closeMatch","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#exactMatch\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"isDefiningOntology\":false,\"definedBy\":[\"skos\"],\"appearsIn\":[\"gitissue502\",\"skos\"],\"linkedEntities\":{}}","appearsIn":["gitissue502","skos"],"curie":"exactMatch","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.w3.org/2004/02/skos/core#exactMatch","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#exactMatch","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"exactMatch","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"exactMatch","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RDFS_label\"},\"isDefiningOntology\":false,\"definedBy\":[\"rdfs\"],\"appearsIn\":[\"owl\",\"gitissue502\",\"rdfs\"],\"linkedEntities\":{}}","appearsIn":["owl","gitissue502","rdfs"],"curie":"RDFS:label","definedBy":["rdfs"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.w3.org/2000/01/rdf-schema#label","imported":"false","iri":"http://www.w3.org/2000/01/rdf-schema#label","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"RDFS_label","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#closeMatch\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:closeMatch\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"closeMatch\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_closeMatch\"},\"isDefiningOntology\":false,\"definedBy\":[\"skos\"],\"appearsIn\":[\"gitissue502\",\"skos\"],\"linkedEntities\":{}}","appearsIn":["gitissue502","skos"],"curie":"SKOS:closeMatch","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.w3.org/2004/02/skos/core#closeMatch","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#closeMatch","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"closeMatch","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"SKOS_closeMatch","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.w3.org/2004/02/skos/core#exactMatch\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"SKOS:exactMatch\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"gitissue502\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/mondo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"gitIssue502\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"SKOS_exactMatch\"},\"isDefiningOntology\":false,\"definedBy\":[\"skos\"],\"appearsIn\":[\"gitissue502\",\"skos\"],\"linkedEntities\":{}}","appearsIn":["gitissue502","skos"],"curie":"SKOS:exactMatch","definedBy":["skos"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"gitissue502+property+http://www.w3.org/2004/02/skos/core#exactMatch","imported":"false","iri":"http://www.w3.org/2004/02/skos/core#exactMatch","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"exactMatch","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"gitissue502","ontologyIri":"http://purl.obolibrary.org/obo/mondo.owl","ontologyPreferredPrefix":"gitIssue502","searchableAnnotationValues":"false","shortForm":"SKOS_exactMatch","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:ObsoleteProperty\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Note that this is not a metaclass\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:cjm\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pseudo-property. in the oboInOwl translation, all obsolete relations are subProperties of this class\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Note that this is not a metaclass\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_property\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_property\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_ObsoleteProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"oboInOwl:cjm\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#cjm\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:cjm\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio"],"curie":"OIO:ObsoleteProperty","definedBy":["oio"],"definition":"Note that this is not a metaclass","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Note that this is not a metaclass","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_property","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"obsolete_property","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_ObsoleteProperty","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#SubsetProperty\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:SubsetProperty\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:GOC\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This annotation property groups all subsets declared in the ontology\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset_property\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset_property\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_SubsetProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"oboInOwl:GOC\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#GOC\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:GOC\"}}}","appearsIn":["oio"],"curie":"OIO:SubsetProperty","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"subset_property","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#SubsetProperty","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#SubsetProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"subset_property","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_SubsetProperty","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:SynonymTypeProperty\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:GOC\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This annotation property groups all synonym types declared in the ontology\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"synonym_type_property\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"synonym_type_property\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_SynonymTypeProperty\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"oboInOwl:GOC\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#GOC\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:GOC\"}}}","appearsIn":["oio"],"curie":"OIO:SynonymTypeProperty","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"synonym_type_property","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"synonym_type_property","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_SynonymTypeProperty","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#consider\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:consider\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_consider\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:consider\"},\"isObsolete\":false},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:cjm\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Gives a term which may be an appropriate substitute for an obsolete term, but needs to be looked at carefully by a human expert before the replacement is done\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consider\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consider\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_consider\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"oboFormat:consider\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#consider\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboFormat:consider\"},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"oboInOwl:cjm\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#cjm\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:cjm\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio"],"curie":"OIO:consider","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"consider","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#consider","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#consider","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"consider","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_consider","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasAlternativeId\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasAlternativeId\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_alt_id\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:alt_id\"},\"isObsolete\":false},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:cjm\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An alternative identifier for this class; should follow ID syntax. These can result from class merges\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_alternative_id\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_alternative_id\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasAlternativeId\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"oboFormat:alt_id\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#alt_id\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboFormat:alt_id\"},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"oboInOwl:cjm\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#cjm\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:cjm\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio"],"curie":"OIO:hasAlternativeId","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has_alternative_id","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasAlternativeId","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasAlternativeId","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has_alternative_id","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_hasAlternativeId","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasBroadSynonym\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#hasSynonym\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#hasSynonym\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_broad_synonym\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:broad_synonym\"},\"isObsolete\":false},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:GOC\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An alias in which the alias is broader than the primary class name. Example: cell division is a broad synonym of cytokinesis\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_broad_synonym\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.geneontology.org/formats/oboInOwl#hasSynonym\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_broad_synonym\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasBroadSynonym\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\",\"gitissue502\"],\"linkedEntities\":{\"oboFormat:broad_synonym\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#broad_synonym\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboFormat:broad_synonym\"},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"oboInOwl:GOC\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#GOC\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:GOC\"}}}","appearsIn":["oio","gitissue502"],"curie":"OIO:hasBroadSynonym","definedBy":["oio"],"directAncestor":"http://www.geneontology.org/formats/oboInOwl#hasSynonym","directParent":"http://www.geneontology.org/formats/oboInOwl#hasSynonym","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has_broad_synonym","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.geneontology.org/formats/oboInOwl#hasSynonym","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has_broad_synonym","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_hasBroadSynonym","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasDate\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDate\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_date\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:date\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_date\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_date\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasDate\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"oboFormat:date\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#date\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboFormat:date\"},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio"],"curie":"OIO:hasDate","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has_date","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasDate","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasDate","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has_date","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_hasDate","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_xref\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:xref\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasDbXref\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\",\"gitissue502\"],\"linkedEntities\":{\"oboFormat:xref\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#xref\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboFormat:xref\"},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio","gitissue502"],"curie":"OIO:hasDbXref","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has_dbxref","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasDbXref","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasDbXref","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has_dbxref","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_hasDbXref","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasDefaultNamespace\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefaultNamespace\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_default-namespace\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:default-namespace\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_default_namespace\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_default_namespace\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasDefaultNamespace\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio"],"curie":"OIO:hasDefaultNamespace","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has_default_namespace","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasDefaultNamespace","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasDefaultNamespace","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has_default_namespace","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_hasDefaultNamespace","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_def\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:def\"},\"isObsolete\":false},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:cjm\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a class and an instance of a oboInOwl:Definition\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasDefinition\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"oboFormat:def\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#def\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboFormat:def\"},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"oboInOwl:cjm\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#cjm\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:cjm\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio"],"curie":"OIO:hasDefinition","definedBy":["oio"],"definition":"we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string","http__//www.w3.org/2000/01/rdf-schema#label":"has_definition","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasDefinition","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasDefinition","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has_definition","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_hasDefinition","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasExactSynonym\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#hasSynonym\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#hasSynonym\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_exact_synonym\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:exact_synonym\"},\"isObsolete\":false},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:GOC\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An alias in which the alias exhibits true synonymy. Example: ornithine cycle is an exact synonym of urea cycle\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.geneontology.org/formats/oboInOwl#hasSynonym\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_exact_synonym\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasExactSynonym\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\",\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"oboFormat:exact_synonym\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#exact_synonym\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboFormat:exact_synonym\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"oboInOwl:GOC\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#GOC\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:GOC\"}}}","appearsIn":["oio","gitissue502"],"curie":"OIO:hasExactSynonym","definedBy":["oio"],"directAncestor":"http://www.geneontology.org/formats/oboInOwl#hasSynonym","directParent":"http://www.geneontology.org/formats/oboInOwl#hasSynonym","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has_exact_synonym","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.geneontology.org/formats/oboInOwl#hasSynonym","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has_exact_synonym","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_hasExactSynonym","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasNarrowSynonym\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#hasSynonym\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#hasSynonym\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_narrow_synonym\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:narrow_synonym\"},\"isObsolete\":false},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:GOC\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An alias in which the alias is narrower than the primary class name. Example: pyrimidine-dimer repair by photolyase is a narrow synonym of photoreactive repair\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_narrow_synonym\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.geneontology.org/formats/oboInOwl#hasSynonym\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_narrow_synonym\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasNarrowSynonym\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\",\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"oboFormat:narrow_synonym\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#narrow_synonym\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboFormat:narrow_synonym\"},\"http://www.geneontology.org/formats/oboInOwl#hasSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"oboInOwl:GOC\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#GOC\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:GOC\"}}}","appearsIn":["oio","gitissue502"],"curie":"OIO:hasNarrowSynonym","definedBy":["oio"],"directAncestor":"http://www.geneontology.org/formats/oboInOwl#hasSynonym","directParent":"http://www.geneontology.org/formats/oboInOwl#hasSynonym","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has_narrow_synonym","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.geneontology.org/formats/oboInOwl#hasSynonym","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has_narrow_synonym","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_hasNarrowSynonym","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasOBONamespace\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasOBONamespace\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_namespace\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:namespace\"},\"isObsolete\":false},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:GOC\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relation between a class and an OBO namespace string. OBO namespaces are to be distinguished from IDspaces; for example, biological_process is a namespace, GO is an idspace.\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_obo_namespace\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_obo_namespace\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasOBONamespace\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"oboFormat:namespace\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#namespace\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboFormat:namespace\"},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"oboInOwl:GOC\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#GOC\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:GOC\"}}}","appearsIn":["oio"],"curie":"OIO:hasOBONamespace","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has_obo_namespace","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasOBONamespace","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasOBONamespace","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has_obo_namespace","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_hasOBONamespace","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasRelatedSynonym\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#hasSynonym\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#hasSynonym\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_related_synonym\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:related_synonym\"},\"isObsolete\":false},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:GOC\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An alias in which the alias is related the primary class name, but not necessarily broader or narrower. Example: cytochrome bc1 complex is a related synonym of ubiquinol-cytochrome-c reductase activity; virulence is a related synonym of pathogenesis\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_related_synonym\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.geneontology.org/formats/oboInOwl#hasSynonym\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_related_synonym\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasRelatedSynonym\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\",\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasSynonym\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"subPropertyOf\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:subPropertyOf\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"oboFormat:related_synonym\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#related_synonym\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboFormat:related_synonym\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"oboInOwl:GOC\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#GOC\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:GOC\"}}}","appearsIn":["oio","gitissue502"],"curie":"OIO:hasRelatedSynonym","definedBy":["oio"],"directAncestor":"http://www.geneontology.org/formats/oboInOwl#hasSynonym","directParent":"http://www.geneontology.org/formats/oboInOwl#hasSynonym","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has_related_synonym","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.geneontology.org/formats/oboInOwl#hasSynonym","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has_related_synonym","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_hasRelatedSynonym","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasSubset\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasSubset\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:cjm\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relation between an ontology and a oboInOwl:Subset, indicating classes in the ontology belong to the subset\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_subset\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_subset\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasSubset\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"oboInOwl:cjm\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#cjm\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:cjm\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio"],"curie":"OIO:hasSubset","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has_subset","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasSubset","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasSubset","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has_subset","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_hasSubset","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasSynonym\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasSynonym\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_synonym\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:synonym\"},\"isObsolete\":false},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:GOC\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relation between a class and an alias term.\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_synonym\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_synonym\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasSynonym\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"oboFormat:synonym\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#synonym\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboFormat:synonym\"},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:comment\"},\"type\":[\"property\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"oboInOwl:GOC\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#GOC\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:GOC\"}}}","appearsIn":["oio"],"curie":"OIO:hasSynonym","definedBy":["oio"],"definition":"Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL","http__//www.w3.org/2000/01/rdf-schema#label":"has_synonym","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasSynonym","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasSynonym","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has_synonym","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_hasSynonym","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasSynonymType\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasSynonymType\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://www.geneontology.org/GO.usage.shtml#type\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"URL:http://www.geneontology.org/GO.usage.shtml#type\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_synonym_type\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_synonym_type\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasSynonymType\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\",\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio","gitissue502"],"curie":"OIO:hasSynonymType","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has_synonym_type","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasSynonymType","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasSynonymType","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has_synonym_type","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_hasSynonymType","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasURI\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasURI\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio"],"curie":"OIO:hasURI","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has_URI","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasURI","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasURI","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has_URI","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_hasURI","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#hasVersion\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasVersion\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_version\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:version\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_version\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_version\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_hasVersion\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"oboFormat:version\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#version\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboFormat:version\"},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio"],"curie":"OIO:hasVersion","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has_version","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#hasVersion","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#hasVersion","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"has_version","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_hasVersion","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#inSubset\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:inSubset\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_subset\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:subset\"},\"isObsolete\":false},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:cjm\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relation between a class and a oboInOwl:Subset, indicating the class belongs (is a member of) the subset\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in_subset\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_inSubset\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\",\"gitissue502\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"oboFormat:subset\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#subset\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboFormat:subset\"},\"oboInOwl:cjm\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#cjm\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:cjm\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio","gitissue502"],"curie":"OIO:inSubset","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"in_subset","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#inSubset","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#inSubset","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"in_subset","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_inSubset","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#isCyclic\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:isCyclic\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_is_cyclic\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:is_cyclic\"},\"isObsolete\":false},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_cyclic\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_cyclic\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_isCyclic\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"oboFormat:is_cyclic\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#is_cyclic\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboFormat:is_cyclic\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio"],"curie":"OIO:isCyclic","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"is_cyclic","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#isCyclic","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#isCyclic","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"is_cyclic","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_isCyclic","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#replacedBy\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:replacedBy\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_replaced_by\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:replaced_by\"},\"isObsolete\":false},\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboInOwl:cjm\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#Definition\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Gives a term which replaces an obsolete term. The value is the id of the replacement term. The value of this tag can safely be used to automatically reassign links to an obsolete term. The replaced_by tag may only be specified for obsolete terms. A single obsolete term may have more than one replaced_by tag. This tag can be used in conjunction with the consider tag.\",\"lang\":\"en\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"replaced_by\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"replaced_by\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_replacedBy\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDefinition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDefinition\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#Definition\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:Definition\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"oboInOwl:cjm\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#cjm\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboInOwl:cjm\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]},\"oboFormat:replaced_by\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#replaced_by\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboFormat:replaced_by\"}}}","appearsIn":["oio"],"curie":"OIO:replacedBy","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"replaced_by","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#replacedBy","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#replacedBy","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"replaced_by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_replacedBy","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#savedBy\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:savedBy\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#anyURI\",\"value\":\"http://purl.org/obo/owl/oboFormat#oboFormat_saved_by\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.geneontology.org/formats/oboInOwl#DbXref\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"oboFormat:saved_by\"},\"isObsolete\":false},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"saved_by\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"saved_by\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"oio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OIO_savedBy\"},\"isDefiningOntology\":true,\"definedBy\":[\"oio\"],\"appearsIn\":[\"oio\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":2.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_dbxref\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"oboFormat:saved_by\":{\"url\":\"http://www.geneontology.org/formats/oboInOwl#saved_by\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"oboFormat:saved_by\"},\"http://www.geneontology.org/formats/oboInOwl#hasURI\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_URI\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:hasURI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#DbXref\":{\"definedBy\":[\"oio\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database_cross_reference\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OIO:DbXref\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"definedBy\":[\"rdfs\"],\"numAppearsIn\":3.0,\"hasLocalDefinition\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RDFS:label\"},\"type\":[\"property\",\"entity\"]}}}","appearsIn":["oio"],"curie":"OIO:savedBy","definedBy":["oio"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"saved_by","id":"oio+property+http://www.geneontology.org/formats/oboInOwl#savedBy","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#savedBy","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"saved_by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"oio","ontologyIri":"http://www.geneontology.org/formats/oboInOwl","searchableAnnotationValues":"false","shortForm":"OIO_savedBy","type":["property","annotationProperty","entity"]} diff --git a/testcases_expected_output/annotation-properties/gitIssue502/rdfs_classes.csv b/testcases_expected_output/annotation-properties/gitIssue502/rdfs_classes.csv index 23df988ae..b9349f60a 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/rdfs_classes.csv +++ b/testcases_expected_output/annotation-properties/gitIssue502/rdfs_classes.csv @@ -1,9 +1,9 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","hierarchicalProperty:string[]","numHierarchicalDescendants:string[]","type:string[]","definitionProperty:string[]","http__//www.w3.org/2000/01/rdf-schema#subClassOf:string[]","hasDirectParents:string[]","http__//www.w3.org/2000/01/rdf-schema#comment:string[]","imported:string[]","definition:string[]","ontologyIri:string[]","hierarchicalParent:string[]","iri","hierarchicalAncestor:string[]","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy:string[]","numDescendants:string[]","isObsolete:string[]","label:string[]","directParent:string[]","directAncestor:string[]","curie:string[]","shortForm:string[]","definedBy:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Class","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Class"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Class""},""definition"":{""type"":[""literal""],""value"":""The class of classes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of classes.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Class""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Class""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""Class""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","true","true","true","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of classes.","false","The class of classes.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#","1.0","false","Class","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","Class","Class","rdfs","Class","rdfs","http://www.w3.org/2000/01/rdf-schema#Class" -"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Container","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Container"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Container""},""definition"":{""type"":[""literal""],""value"":""The class of RDF containers.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of RDF containers.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Container""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Container""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""Container""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of RDF containers.","false","The class of RDF containers.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Container","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#","0.0","false","Container","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","Container","Container","rdfs","Container","rdfs","http://www.w3.org/2000/01/rdf-schema#Class" -"rdfs+class+http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""ContainerMembershipProperty""},""definition"":{""type"":[""literal""],""value"":""The class of container membership properties, rdf:_1, rdf:_2, ...,\n all of which are sub-properties of \u0027member\u0027.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of container membership properties, rdf:_1, rdf:_2, ...,\n all of which are sub-properties of \u0027member\u0027.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""ContainerMembershipProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""ContainerMembershipProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""ContainerMembershipProperty""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","The class of container membership properties, rdf:_1, rdf:_2, ..., +"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Class","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Class"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""definition"":{""type"":[""literal""],""value"":""The class of classes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of classes.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Class""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Class""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RDFS_Class""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","true","true","true","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of classes.","false","The class of classes.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#","1.0","false","Class","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","RDFS:Class","RDFS_Class","rdfs","Class","rdfs","http://www.w3.org/2000/01/rdf-schema#Class" +"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Container","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Container"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:Container""},""definition"":{""type"":[""literal""],""value"":""The class of RDF containers.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of RDF containers.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Container""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Container""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RDFS_Container""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of RDF containers.","false","The class of RDF containers.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Container","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#","0.0","false","Container","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","RDFS:Container","RDFS_Container","rdfs","Container","rdfs","http://www.w3.org/2000/01/rdf-schema#Class" +"rdfs+class+http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:ContainerMembershipProperty""},""definition"":{""type"":[""literal""],""value"":""The class of container membership properties, rdf:_1, rdf:_2, ...,\n all of which are sub-properties of \u0027member\u0027.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of container membership properties, rdf:_1, rdf:_2, ...,\n all of which are sub-properties of \u0027member\u0027.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""ContainerMembershipProperty""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""ContainerMembershipProperty""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RDFS_ContainerMembershipProperty""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","The class of container membership properties, rdf:_1, rdf:_2, ..., all of which are sub-properties of 'member'.","false","The class of container membership properties, rdf:_1, rdf:_2, ..., - all of which are sub-properties of 'member'.","http://www.w3.org/2000/01/rdf-schema#","","http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty","","http://www.w3.org/2000/01/rdf-schema#","0.0","false","ContainerMembershipProperty","","","ContainerMembershipProperty","ContainerMembershipProperty","rdfs","ContainerMembershipProperty","rdfs","http://www.w3.org/2000/01/rdf-schema#Class" -"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Datatype","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Datatype""},""definition"":{""type"":[""literal""],""value"":""The class of RDF datatypes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""directParent"":""http://www.w3.org/2000/01/rdf-schema#Class"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Class"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of RDF datatypes.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Datatype""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Datatype""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""Datatype""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Class","true","The class of RDF datatypes.","false","The class of RDF datatypes.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Datatype","http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#","0.0","false","Datatype","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","Datatype","Datatype","rdfs","Datatype","rdfs","http://www.w3.org/2000/01/rdf-schema#Class" -"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Literal","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Literal""},""definition"":{""type"":[""literal""],""value"":""The class of literal values, eg. textual strings and integers.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of literal values, eg. textual strings and integers.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Literal""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Literal""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""Literal""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of literal values, eg. textual strings and integers.","false","The class of literal values, eg. textual strings and integers.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Literal","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#","0.0","false","Literal","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","Literal","Literal","rdfs","Literal","rdfs","http://www.w3.org/2000/01/rdf-schema#Class" -"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Resource","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Resource""},""definition"":{""type"":[""literal""],""value"":""The class resource, everything.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class resource, everything.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Resource""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Resource""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""Resource""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","true","true","","","4.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","","false","The class resource, everything.","false","The class resource, everything.","http://www.w3.org/2000/01/rdf-schema#","","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2000/01/rdf-schema#","4.0","false","Resource","","","Resource","Resource","rdfs","Resource","rdfs","http://www.w3.org/2000/01/rdf-schema#Class" + all of which are sub-properties of 'member'.","http://www.w3.org/2000/01/rdf-schema#","","http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty","","http://www.w3.org/2000/01/rdf-schema#","0.0","false","ContainerMembershipProperty","","","RDFS:ContainerMembershipProperty","RDFS_ContainerMembershipProperty","rdfs","ContainerMembershipProperty","rdfs","http://www.w3.org/2000/01/rdf-schema#Class" +"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Datatype","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Datatype"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:Datatype""},""definition"":{""type"":[""literal""],""value"":""The class of RDF datatypes.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""directParent"":""http://www.w3.org/2000/01/rdf-schema#Class"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#Resource""],""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Class"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of RDF datatypes.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Datatype""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Datatype""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RDFS_Datatype""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Class","true","The class of RDF datatypes.","false","The class of RDF datatypes.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Datatype","http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#","0.0","false","Datatype","http://www.w3.org/2000/01/rdf-schema#Class","http://www.w3.org/2000/01/rdf-schema#Class|http://www.w3.org/2000/01/rdf-schema#Resource","RDFS:Datatype","RDFS_Datatype","rdfs","Datatype","rdfs","http://www.w3.org/2000/01/rdf-schema#Class" +"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Literal","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:Literal""},""definition"":{""type"":[""literal""],""value"":""The class of literal values, eg. textual strings and integers.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalParent"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class of literal values, eg. textual strings and integers.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Literal""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Literal""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RDFS_Literal""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#Resource","true","The class of literal values, eg. textual strings and integers.","false","The class of literal values, eg. textual strings and integers.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Literal","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#","0.0","false","Literal","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#Resource","RDFS:Literal","RDFS_Literal","rdfs","Literal","rdfs","http://www.w3.org/2000/01/rdf-schema#Class" +"rdfs+class+http://www.w3.org/2000/01/rdf-schema#Resource","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""definition"":{""type"":[""literal""],""value"":""The class resource, everything.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The class resource, everything.""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Resource""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Resource""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RDFS_Resource""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""rdfs"",""owl""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","true","true","","","4.0","class|entity","http://www.w3.org/2000/01/rdf-schema#comment","","false","The class resource, everything.","false","The class resource, everything.","http://www.w3.org/2000/01/rdf-schema#","","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2000/01/rdf-schema#","4.0","false","Resource","","","RDFS:Resource","RDFS_Resource","rdfs","Resource","rdfs","http://www.w3.org/2000/01/rdf-schema#Class" diff --git a/testcases_expected_output/annotation-properties/gitIssue502/rdfs_ontologies.csv b/testcases_expected_output/annotation-properties/gitIssue502/rdfs_ontologies.csv index 76f21114c..f1e4fc660 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/rdfs_ontologies.csv +++ b/testcases_expected_output/annotation-properties/gitIssue502/rdfs_ontologies.csv @@ -1,2 +1,2 @@ "id:ID",":LABEL","_json","http__//purl.org/dc/elements/1.1/title:string[]","iri","numberOfIndividuals:string[]","linkedEntities:string[]","ontology_purl:string[]","numDescendants:string[]","numberOfProperties:string[]","numberOfClasses:string[]","language:string[]","numHierarchicalDescendants:string[]","isObsolete:string[]","label:string[]","importsFrom:string[]","type:string[]","directAncestor:string[]","exportsTo:string[]","base_uri:string[]","imported:string[]","numberOfEntities:string[]","ontologyId:string[]","http__//www.w3.org/2000/01/rdf-schema#seeAlso:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"rdfs+ontology+http://www.w3.org/2000/01/rdf-schema#","Ontology","{""ontologyId"":""rdfs"",""importsFrom"":[],""exportsTo"":[""owl"",""gitissue502""],""iri"":""http://www.w3.org/2000/01/rdf-schema#"",""ontology_purl"":""https://www.w3.org/2000/01/rdf-schema"",""base_uri"":[""http://www.w3.org/2000/01/rdf-schema#""],""type"":[""ontology""],""directAncestor"":[],""http://purl.org/dc/elements/1.1/title"":{""type"":[""literal""],""value"":""The RDF Schema vocabulary (RDFS)""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Ontology"",""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""http://www.w3.org/2000/01/rdf-schema-more"",""imported"":false,""isObsolete"":false,""label"":{""type"":[""literal""],""value"":""The RDF Schema vocabulary (RDFS)""},""language"":{""type"":[""literal""],""value"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""numberOfClasses"":{""type"":[""literal""],""value"":""6""},""numberOfEntities"":{""type"":[""literal""],""value"":""15""},""numberOfIndividuals"":{""type"":[""literal""],""value"":""0""},""numberOfProperties"":{""type"":[""literal""],""value"":""9""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The RDF Schema vocabulary (RDFS)""},false,{""type"":[""literal""],""value"":""en""},{""type"":[""literal""],""value"":""6""},{""type"":[""literal""],""value"":""15""},{""type"":[""literal""],""value"":""0""},{""type"":[""literal""],""value"":""9""}],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""entity""]}}}","The RDF Schema vocabulary (RDFS)","http://www.w3.org/2000/01/rdf-schema#","0","","https://www.w3.org/2000/01/rdf-schema","0.0","9","6","en","0.0","false","The RDF Schema vocabulary (RDFS)","","ontology","","owl|gitissue502","http://www.w3.org/2000/01/rdf-schema#","false","15","rdfs","http://www.w3.org/2000/01/rdf-schema-more","http://www.w3.org/2002/07/owl#Ontology" +"rdfs+ontology+http://www.w3.org/2000/01/rdf-schema#","Ontology","{""ontologyId"":""rdfs"",""importsFrom"":[],""exportsTo"":[""owl"",""gitissue502""],""iri"":""http://www.w3.org/2000/01/rdf-schema#"",""ontology_purl"":""https://www.w3.org/2000/01/rdf-schema"",""base_uri"":[""http://www.w3.org/2000/01/rdf-schema#""],""type"":[""ontology""],""directAncestor"":[],""http://purl.org/dc/elements/1.1/title"":{""type"":[""literal""],""value"":""The RDF Schema vocabulary (RDFS)""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Ontology"",""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""http://www.w3.org/2000/01/rdf-schema-more"",""imported"":false,""isObsolete"":false,""label"":{""type"":[""literal""],""value"":""The RDF Schema vocabulary (RDFS)""},""language"":{""type"":[""literal""],""value"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""numberOfClasses"":{""type"":[""literal""],""value"":""6""},""numberOfEntities"":{""type"":[""literal""],""value"":""15""},""numberOfIndividuals"":{""type"":[""literal""],""value"":""0""},""numberOfProperties"":{""type"":[""literal""],""value"":""9""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The RDF Schema vocabulary (RDFS)""},false,{""type"":[""literal""],""value"":""en""},{""type"":[""literal""],""value"":""6""},{""type"":[""literal""],""value"":""15""},{""type"":[""literal""],""value"":""0""},{""type"":[""literal""],""value"":""9""}],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""RDFS:seeAlso""},""type"":[""property"",""entity""]}}}","The RDF Schema vocabulary (RDFS)","http://www.w3.org/2000/01/rdf-schema#","0","","https://www.w3.org/2000/01/rdf-schema","0.0","9","6","en","0.0","false","The RDF Schema vocabulary (RDFS)","","ontology","","owl|gitissue502","http://www.w3.org/2000/01/rdf-schema#","false","15","rdfs","http://www.w3.org/2000/01/rdf-schema-more","http://www.w3.org/2002/07/owl#Ontology" diff --git a/testcases_expected_output/annotation-properties/gitIssue502/rdfs_properties.csv b/testcases_expected_output/annotation-properties/gitIssue502/rdfs_properties.csv index ffdf07d34..5b86ce0a5 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/rdfs_properties.csv +++ b/testcases_expected_output/annotation-properties/gitIssue502/rdfs_properties.csv @@ -1,10 +1,10 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","numHierarchicalDescendants:string[]","type:string[]","definitionProperty:string[]","hasDirectParents:string[]","http__//www.w3.org/2000/01/rdf-schema#comment:string[]","imported:string[]","definition:string[]","ontologyIri:string[]","http__//www.w3.org/2000/01/rdf-schema#range:string[]","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf:string[]","iri","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy:string[]","numDescendants:string[]","http__//www.w3.org/2000/01/rdf-schema#domain:string[]","isObsolete:string[]","label:string[]","directParent:string[]","directAncestor:string[]","curie:string[]","shortForm:string[]","definedBy:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"rdfs+property+http://www.w3.org/2000/01/rdf-schema#comment","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#comment"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""comment""},""definition"":{""type"":[""literal""],""value"":""A description of the subject resource.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A description of the subject resource.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""comment""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""comment""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""comment""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Literal"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Literal""},""curie"":{""type"":[""literal""],""value"":""Literal""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A description of the subject resource.","false","A description of the subject resource.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Literal","","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","comment","","","comment","comment","rdfs","comment","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"rdfs+property+http://www.w3.org/2000/01/rdf-schema#domain","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#domain"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""domain""},""definition"":{""type"":[""literal""],""value"":""A domain of the subject property.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A domain of the subject property.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""domain""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""domain""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""domain""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A domain of the subject property.","false","A domain of the subject property.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2000/01/rdf-schema#domain","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","domain","","","domain","domain","rdfs","domain","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"rdfs+property+http://www.w3.org/2000/01/rdf-schema#isDefinedBy","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""definition"":{""type"":[""literal""],""value"":""The defininition of the subject resource.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#seeAlso"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#seeAlso"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The defininition of the subject resource.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""isDefinedBy""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2000/01/rdf-schema#seeAlso"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""isDefinedBy""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","true","The defininition of the subject resource.","false","The defininition of the subject resource.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#seeAlso","http://www.w3.org/2000/01/rdf-schema#isDefinedBy","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","isDefinedBy","http://www.w3.org/2000/01/rdf-schema#seeAlso","http://www.w3.org/2000/01/rdf-schema#seeAlso","isDefinedBy","isDefinedBy","rdfs","isDefinedBy","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"rdfs+property+http://www.w3.org/2000/01/rdf-schema#label","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#label"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""label""},""definition"":{""type"":[""literal""],""value"":""A human-readable name for the subject.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A human-readable name for the subject.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""label""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""label""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""label""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""gitissue502"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Literal"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Literal""},""curie"":{""type"":[""literal""],""value"":""Literal""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A human-readable name for the subject.","false","A human-readable name for the subject.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Literal","","http://www.w3.org/2000/01/rdf-schema#label","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","label","","","label","label","rdfs","label","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"rdfs+property+http://www.w3.org/2000/01/rdf-schema#member","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#member"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""member""},""definition"":{""type"":[""literal""],""value"":""A member of the subject resource.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A member of the subject resource.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""member""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""member""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""member""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A member of the subject resource.","false","A member of the subject resource.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2000/01/rdf-schema#member","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","member","","","member","member","rdfs","member","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"rdfs+property+http://www.w3.org/2000/01/rdf-schema#range","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#range"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""range""},""definition"":{""type"":[""literal""],""value"":""A range of the subject property.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A range of the subject property.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""range""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""range""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""range""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A range of the subject property.","false","A range of the subject property.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2000/01/rdf-schema#range","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","range","","","range","range","rdfs","range","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"rdfs+property+http://www.w3.org/2000/01/rdf-schema#seeAlso","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#seeAlso"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""seeAlso""},""definition"":{""type"":[""literal""],""value"":""Further information about the subject resource.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Further information about the subject resource.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""seeAlso""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""seeAlso""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""seeAlso""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""Resource""},""type"":[""class"",""entity""]}}}","false","true","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","Further information about the subject resource.","false","Further information about the subject resource.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2000/01/rdf-schema#seeAlso","http://www.w3.org/2000/01/rdf-schema#","1.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","seeAlso","","","seeAlso","seeAlso","rdfs","seeAlso","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"rdfs+property+http://www.w3.org/2000/01/rdf-schema#subClassOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#subClassOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""subClassOf""},""definition"":{""type"":[""literal""],""value"":""The subject is a subclass of a class.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The subject is a subclass of a class.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""subClassOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""subClassOf""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The subject is a subclass of a class.","false","The subject is a subclass of a class.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2000/01/rdf-schema#subClassOf","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Class","false","subClassOf","","","subClassOf","subClassOf","rdfs","subClassOf","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"rdfs+property+http://www.w3.org/2000/01/rdf-schema#subPropertyOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""definition"":{""type"":[""literal""],""value"":""The subject is a subproperty of a property.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The subject is a subproperty of a property.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""subPropertyOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""subPropertyOf""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The subject is a subproperty of a property.","false","The subject is a subproperty of a property.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","","http://www.w3.org/2000/01/rdf-schema#subPropertyOf","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","subPropertyOf","","","subPropertyOf","subPropertyOf","rdfs","subPropertyOf","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"rdfs+property+http://www.w3.org/2000/01/rdf-schema#comment","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#comment"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""definition"":{""type"":[""literal""],""value"":""A description of the subject resource.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A description of the subject resource.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""comment""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""comment""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RDFS_comment""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Literal"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Literal""},""curie"":{""type"":[""literal""],""value"":""RDFS:Literal""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A description of the subject resource.","false","A description of the subject resource.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Literal","","http://www.w3.org/2000/01/rdf-schema#comment","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","comment","","","RDFS:comment","RDFS_comment","rdfs","comment","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"rdfs+property+http://www.w3.org/2000/01/rdf-schema#domain","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#domain"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""definition"":{""type"":[""literal""],""value"":""A domain of the subject property.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A domain of the subject property.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""domain""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""domain""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RDFS_domain""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A domain of the subject property.","false","A domain of the subject property.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2000/01/rdf-schema#domain","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","domain","","","RDFS:domain","RDFS_domain","rdfs","domain","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"rdfs+property+http://www.w3.org/2000/01/rdf-schema#isDefinedBy","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""definition"":{""type"":[""literal""],""value"":""The defininition of the subject resource.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#seeAlso"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#seeAlso"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The defininition of the subject resource.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""isDefinedBy""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2000/01/rdf-schema#seeAlso"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RDFS_isDefinedBy""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""RDFS:seeAlso""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","true","The defininition of the subject resource.","false","The defininition of the subject resource.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Resource","http://www.w3.org/2000/01/rdf-schema#seeAlso","http://www.w3.org/2000/01/rdf-schema#isDefinedBy","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","isDefinedBy","http://www.w3.org/2000/01/rdf-schema#seeAlso","http://www.w3.org/2000/01/rdf-schema#seeAlso","RDFS:isDefinedBy","RDFS_isDefinedBy","rdfs","isDefinedBy","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"rdfs+property+http://www.w3.org/2000/01/rdf-schema#label","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#label"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""definition"":{""type"":[""literal""],""value"":""A human-readable name for the subject.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A human-readable name for the subject.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""label""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Literal"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""label""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RDFS_label""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""gitissue502"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Literal"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Literal""},""curie"":{""type"":[""literal""],""value"":""RDFS:Literal""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A human-readable name for the subject.","false","A human-readable name for the subject.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Literal","","http://www.w3.org/2000/01/rdf-schema#label","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","label","","","RDFS:label","RDFS_label","rdfs","label","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"rdfs+property+http://www.w3.org/2000/01/rdf-schema#member","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#member"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:member""},""definition"":{""type"":[""literal""],""value"":""A member of the subject resource.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A member of the subject resource.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""member""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""member""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RDFS_member""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A member of the subject resource.","false","A member of the subject resource.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2000/01/rdf-schema#member","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","member","","","RDFS:member","RDFS_member","rdfs","member","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"rdfs+property+http://www.w3.org/2000/01/rdf-schema#range","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#range"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""definition"":{""type"":[""literal""],""value"":""A range of the subject property.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""A range of the subject property.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""range""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""range""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RDFS_range""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","A range of the subject property.","false","A range of the subject property.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2000/01/rdf-schema#range","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","range","","","RDFS:range","RDFS_range","rdfs","range","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"rdfs+property+http://www.w3.org/2000/01/rdf-schema#seeAlso","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#seeAlso"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:seeAlso""},""definition"":{""type"":[""literal""],""value"":""Further information about the subject resource.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Further information about the subject resource.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""seeAlso""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Resource"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""seeAlso""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RDFS_seeAlso""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Resource"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Resource""},""curie"":{""type"":[""literal""],""value"":""RDFS:Resource""},""type"":[""class"",""entity""]}}}","false","true","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","Further information about the subject resource.","false","Further information about the subject resource.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Resource","","http://www.w3.org/2000/01/rdf-schema#seeAlso","http://www.w3.org/2000/01/rdf-schema#","1.0","http://www.w3.org/2000/01/rdf-schema#Resource","false","seeAlso","","","RDFS:seeAlso","RDFS_seeAlso","rdfs","seeAlso","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"rdfs+property+http://www.w3.org/2000/01/rdf-schema#subClassOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#subClassOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""definition"":{""type"":[""literal""],""value"":""The subject is a subclass of a class.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The subject is a subclass of a class.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2000/01/rdf-schema#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""subClassOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2000/01/rdf-schema#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RDFS_subClassOf""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#Class"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""Class""},""curie"":{""type"":[""literal""],""value"":""RDFS:Class""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The subject is a subclass of a class.","false","The subject is a subclass of a class.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/2000/01/rdf-schema#Class","","http://www.w3.org/2000/01/rdf-schema#subClassOf","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/2000/01/rdf-schema#Class","false","subClassOf","","","RDFS:subClassOf","RDFS_subClassOf","rdfs","subClassOf","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"rdfs+property+http://www.w3.org/2000/01/rdf-schema#subPropertyOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"",""type"":[""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""definition"":{""type"":[""literal""],""value"":""The subject is a subproperty of a property.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The subject is a subproperty of a property.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2000/01/rdf-schema#"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""subPropertyOf""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""rdfs""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RDFS_subPropertyOf""},""isDefiningOntology"":true,""definedBy"":[""rdfs""],""appearsIn"":[""owl"",""rdfs""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","The subject is a subproperty of a property.","false","The subject is a subproperty of a property.","http://www.w3.org/2000/01/rdf-schema#","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","","http://www.w3.org/2000/01/rdf-schema#subPropertyOf","http://www.w3.org/2000/01/rdf-schema#","0.0","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property","false","subPropertyOf","","","RDFS:subPropertyOf","RDFS_subPropertyOf","rdfs","subPropertyOf","rdfs","http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" diff --git a/testcases_expected_output/annotation-properties/gitIssue502/skos_classes.csv b/testcases_expected_output/annotation-properties/gitIssue502/skos_classes.csv index 9ab99cb6c..4f933942d 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/skos_classes.csv +++ b/testcases_expected_output/annotation-properties/gitIssue502/skos_classes.csv @@ -1,5 +1,5 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","hierarchicalProperty:string[]","numHierarchicalDescendants:string[]","type:string[]","http__//www.w3.org/2004/02/skos/core#definition:string[]","http__//www.w3.org/2000/01/rdf-schema#subClassOf:string[]","hasDirectParents:string[]","http__//www.w3.org/2004/02/skos/core#scopeNote:string[]","imported:string[]","ontologyIri:string[]","hierarchicalParent:string[]","iri","hierarchicalAncestor:string[]","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy:string[]","numDescendants:string[]","isObsolete:string[]","label:string[]","directParent:string[]","http__//www.w3.org/2004/02/skos/core#example:string[]","directAncestor:string[]","curie:string[]","http__//www.w3.org/2002/07/owl#disjointWith:string[]","shortForm:string[]","definedBy:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"skos+class+http://www.w3.org/2004/02/skos/core#Collection","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2004/02/skos/core#Collection"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Collection""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Collection"",""lang"":""en""},""http://www.w3.org/2002/07/owl#disjointWith"":[""http://www.w3.org/2004/02/skos/core#Concept"",""http://www.w3.org/2004/02/skos/core#ConceptScheme""],""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A meaningful collection of concepts."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Labelled collections can be used where you would like a set of concepts to be displayed under a \u0027node label\u0027 in the hierarchy."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Collection"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A meaningful collection of concepts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Labelled collections can be used where you would like a set of concepts to be displayed under a \u0027node label\u0027 in the hierarchy."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""Collection""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#Concept"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""Concept""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#ConceptScheme"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept Scheme"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""ConceptScheme""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","true","true","","","1.0","class|entity","A meaningful collection of concepts.","","false","Labelled collections can be used where you would like a set of concepts to be displayed under a 'node label' in the hierarchy.","false","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#Collection","","http://www.w3.org/2004/02/skos/core","1.0","false","Collection","","","","Collection","http://www.w3.org/2004/02/skos/core#Concept|http://www.w3.org/2004/02/skos/core#ConceptScheme","Collection","skos","Collection","skos","http://www.w3.org/2002/07/owl#Class" -"skos+class+http://www.w3.org/2004/02/skos/core#Concept","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2004/02/skos/core#Concept"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""Concept""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept"",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An idea or notion; a unit of thought."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An idea or notion; a unit of thought."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""Concept""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","","0.0","class|entity","An idea or notion; a unit of thought.","","false","","false","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#Concept","","http://www.w3.org/2004/02/skos/core","0.0","false","Concept","","","","Concept","","Concept","skos","Concept","skos","http://www.w3.org/2002/07/owl#Class" -"skos+class+http://www.w3.org/2004/02/skos/core#ConceptScheme","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2004/02/skos/core#ConceptScheme"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""ConceptScheme""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept Scheme"",""lang"":""en""},""http://www.w3.org/2002/07/owl#disjointWith"":""http://www.w3.org/2004/02/skos/core#Concept"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A set of concepts, optionally including statements about semantic relationships between those concepts."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#example"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A concept scheme may be defined to include concepts from different sources."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept Scheme"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A set of concepts, optionally including statements about semantic relationships between those concepts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A concept scheme may be defined to include concepts from different sources."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""ConceptScheme""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#Concept"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""Concept""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#example"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""example""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","","0.0","class|entity","A set of concepts, optionally including statements about semantic relationships between those concepts.","","false","A concept scheme may be defined to include concepts from different sources.","false","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#ConceptScheme","","http://www.w3.org/2004/02/skos/core","0.0","false","Concept Scheme","","Thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies.","","ConceptScheme","http://www.w3.org/2004/02/skos/core#Concept","ConceptScheme","skos","Concept Scheme","skos","http://www.w3.org/2002/07/owl#Class" -"skos+class+http://www.w3.org/2004/02/skos/core#OrderedCollection","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2004/02/skos/core#OrderedCollection"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OrderedCollection""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#Collection"",""directParent"":""http://www.w3.org/2004/02/skos/core#Collection"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2004/02/skos/core#Collection"",""hierarchicalParent"":""http://www.w3.org/2004/02/skos/core#Collection"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ordered Collection"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2004/02/skos/core#Collection"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ordered collection of concepts, where both the grouping and the ordering are meaningful."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a \u0027node label\u0027."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ordered Collection"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ordered collection of concepts, where both the grouping and the ordering are meaningful."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a \u0027node label\u0027."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""OrderedCollection""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#Collection"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Collection"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""Collection""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","An ordered collection of concepts, where both the grouping and the ordering are meaningful.","http://www.w3.org/2004/02/skos/core#Collection","true","Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a 'node label'.","false","http://www.w3.org/2004/02/skos/core","http://www.w3.org/2004/02/skos/core#Collection","http://www.w3.org/2004/02/skos/core#OrderedCollection","http://www.w3.org/2004/02/skos/core#Collection","http://www.w3.org/2004/02/skos/core","0.0","false","Ordered Collection","http://www.w3.org/2004/02/skos/core#Collection","","http://www.w3.org/2004/02/skos/core#Collection","OrderedCollection","","OrderedCollection","skos","Ordered Collection","skos","http://www.w3.org/2002/07/owl#Class" +"skos+class+http://www.w3.org/2004/02/skos/core#Collection","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2004/02/skos/core#Collection"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:Collection""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Collection"",""lang"":""en""},""http://www.w3.org/2002/07/owl#disjointWith"":[""http://www.w3.org/2004/02/skos/core#Concept"",""http://www.w3.org/2004/02/skos/core#ConceptScheme""],""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A meaningful collection of concepts."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Labelled collections can be used where you would like a set of concepts to be displayed under a \u0027node label\u0027 in the hierarchy."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Collection"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A meaningful collection of concepts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Labelled collections can be used where you would like a set of concepts to be displayed under a \u0027node label\u0027 in the hierarchy."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_Collection""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#Concept"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:Concept""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#ConceptScheme"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept Scheme"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:ConceptScheme""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","true","true","","","1.0","class|entity","A meaningful collection of concepts.","","false","Labelled collections can be used where you would like a set of concepts to be displayed under a 'node label' in the hierarchy.","false","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#Collection","","http://www.w3.org/2004/02/skos/core","1.0","false","Collection","","","","SKOS:Collection","http://www.w3.org/2004/02/skos/core#Concept|http://www.w3.org/2004/02/skos/core#ConceptScheme","SKOS_Collection","skos","Collection","skos","http://www.w3.org/2002/07/owl#Class" +"skos+class+http://www.w3.org/2004/02/skos/core#Concept","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2004/02/skos/core#Concept"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:Concept""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept"",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An idea or notion; a unit of thought."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An idea or notion; a unit of thought."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_Concept""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","","0.0","class|entity","An idea or notion; a unit of thought.","","false","","false","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#Concept","","http://www.w3.org/2004/02/skos/core","0.0","false","Concept","","","","SKOS:Concept","","SKOS_Concept","skos","Concept","skos","http://www.w3.org/2002/07/owl#Class" +"skos+class+http://www.w3.org/2004/02/skos/core#ConceptScheme","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2004/02/skos/core#ConceptScheme"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:ConceptScheme""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept Scheme"",""lang"":""en""},""http://www.w3.org/2002/07/owl#disjointWith"":""http://www.w3.org/2004/02/skos/core#Concept"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A set of concepts, optionally including statements about semantic relationships between those concepts."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#example"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A concept scheme may be defined to include concepts from different sources."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept Scheme"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A set of concepts, optionally including statements about semantic relationships between those concepts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A concept scheme may be defined to include concepts from different sources."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_ConceptScheme""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#Concept"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:Concept""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#example"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:example""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","","0.0","class|entity","A set of concepts, optionally including statements about semantic relationships between those concepts.","","false","A concept scheme may be defined to include concepts from different sources.","false","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#ConceptScheme","","http://www.w3.org/2004/02/skos/core","0.0","false","Concept Scheme","","Thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies.","","SKOS:ConceptScheme","http://www.w3.org/2004/02/skos/core#Concept","SKOS_ConceptScheme","skos","Concept Scheme","skos","http://www.w3.org/2002/07/owl#Class" +"skos+class+http://www.w3.org/2004/02/skos/core#OrderedCollection","OntologyEntity|OntologyClass","{""iri"":""http://www.w3.org/2004/02/skos/core#OrderedCollection"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:OrderedCollection""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#Collection"",""directParent"":""http://www.w3.org/2004/02/skos/core#Collection"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.w3.org/2004/02/skos/core#Collection"",""hierarchicalParent"":""http://www.w3.org/2004/02/skos/core#Collection"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ordered Collection"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2004/02/skos/core#Collection"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ordered collection of concepts, where both the grouping and the ordering are meaningful."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a \u0027node label\u0027."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ordered Collection"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ordered collection of concepts, where both the grouping and the ordering are meaningful."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a \u0027node label\u0027."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_OrderedCollection""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#Collection"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Collection"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:Collection""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subClassOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subClassOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","An ordered collection of concepts, where both the grouping and the ordering are meaningful.","http://www.w3.org/2004/02/skos/core#Collection","true","Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a 'node label'.","false","http://www.w3.org/2004/02/skos/core","http://www.w3.org/2004/02/skos/core#Collection","http://www.w3.org/2004/02/skos/core#OrderedCollection","http://www.w3.org/2004/02/skos/core#Collection","http://www.w3.org/2004/02/skos/core","0.0","false","Ordered Collection","http://www.w3.org/2004/02/skos/core#Collection","","http://www.w3.org/2004/02/skos/core#Collection","SKOS:OrderedCollection","","SKOS_OrderedCollection","skos","Ordered Collection","skos","http://www.w3.org/2002/07/owl#Class" diff --git a/testcases_expected_output/annotation-properties/gitIssue502/skos_ontologies.csv b/testcases_expected_output/annotation-properties/gitIssue502/skos_ontologies.csv index 09007179d..0a5d7beea 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/skos_ontologies.csv +++ b/testcases_expected_output/annotation-properties/gitIssue502/skos_ontologies.csv @@ -1,2 +1,2 @@ "id:ID",":LABEL","_json","linkedEntities:string[]","ontology_purl:string[]","numberOfProperties:string[]","numberOfClasses:string[]","language:string[]","numHierarchicalDescendants:string[]","type:string[]","http__//purl.org/dc/terms/description:string[]","base_uri:string[]","imported:string[]","numberOfEntities:string[]","definition:string[]","iri","numberOfIndividuals:string[]","numDescendants:string[]","isObsolete:string[]","label:string[]","importsFrom:string[]","directAncestor:string[]","http__//purl.org/dc/terms/creator:string[]","exportsTo:string[]","http__//purl.org/dc/terms/contributor:string[]","ontologyId:string[]","http__//purl.org/dc/terms/title:string[]","http__//www.w3.org/2000/01/rdf-schema#seeAlso:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"skos+ontology+http://www.w3.org/2004/02/skos/core","Ontology","{""ontologyId"":""skos"",""importsFrom"":[],""exportsTo"":[""gitissue502""],""iri"":""http://www.w3.org/2004/02/skos/core"",""ontology_purl"":""http://www.w3.org/TR/skos-reference/skos.rdf"",""base_uri"":[""http://www.w3.org/2004/02/skos/core#""],""type"":[""ontology""],""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies."",""lang"":""en""},""directAncestor"":[],""http://purl.org/dc/terms/contributor"":[{""type"":[""literal""],""value"":""Dave Beckett""},{""type"":[""literal""],""value"":""Nikki Rogers""},{""type"":[""literal""],""value"":""Participants in W3C\u0027s Semantic Web Deployment Working Group.""}],""http://purl.org/dc/terms/creator"":[{""type"":[""literal""],""value"":""Alistair Miles""},{""type"":[""literal""],""value"":""Sean Bechhofer""}],""http://purl.org/dc/terms/description"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies."",""lang"":""en""},""http://purl.org/dc/terms/title"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""SKOS Vocabulary"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Ontology"",""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""http://www.w3.org/TR/skos-reference/"",""imported"":false,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""SKOS Vocabulary"",""lang"":""en""},""language"":{""type"":[""literal""],""value"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""numberOfClasses"":{""type"":[""literal""],""value"":""6""},""numberOfEntities"":{""type"":[""literal""],""value"":""62""},""numberOfIndividuals"":{""type"":[""literal""],""value"":""0""},""numberOfProperties"":{""type"":[""literal""],""value"":""56""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Dave Beckett""},{""type"":[""literal""],""value"":""Nikki Rogers""},{""type"":[""literal""],""value"":""Participants in W3C\u0027s Semantic Web Deployment Working Group.""},{""type"":[""literal""],""value"":""Alistair Miles""},{""type"":[""literal""],""value"":""Sean Bechhofer""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""SKOS Vocabulary"",""lang"":""en""},false,{""type"":[""literal""],""value"":""en""},{""type"":[""literal""],""value"":""6""},{""type"":[""literal""],""value"":""62""},{""type"":[""literal""],""value"":""0""},{""type"":[""literal""],""value"":""56""}],""linkedEntities"":{""http://purl.org/dc/terms/creator"":{""numAppearsIn"":1.0,""hasLocalDefinition"":false,""type"":[""property"",""annotationProperty"",""entity""],""label"":{""type"":[""literal""],""value"":""creator""},""curie"":{""type"":[""literal""],""value"":""creator""}},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""entity""]}}}","","http://www.w3.org/TR/skos-reference/skos.rdf","56","6","en","0.0","ontology","An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.","http://www.w3.org/2004/02/skos/core#","false","62","An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.","http://www.w3.org/2004/02/skos/core","0","0.0","false","SKOS Vocabulary","","","Alistair Miles|Sean Bechhofer","gitissue502","Dave Beckett|Nikki Rogers|Participants in W3C's Semantic Web Deployment Working Group.","skos","SKOS Vocabulary","http://www.w3.org/TR/skos-reference/","http://www.w3.org/2002/07/owl#Ontology" +"skos+ontology+http://www.w3.org/2004/02/skos/core","Ontology","{""ontologyId"":""skos"",""importsFrom"":[],""exportsTo"":[""gitissue502""],""iri"":""http://www.w3.org/2004/02/skos/core"",""ontology_purl"":""http://www.w3.org/TR/skos-reference/skos.rdf"",""base_uri"":[""http://www.w3.org/2004/02/skos/core#""],""type"":[""ontology""],""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies."",""lang"":""en""},""directAncestor"":[],""http://purl.org/dc/terms/contributor"":[{""type"":[""literal""],""value"":""Dave Beckett""},{""type"":[""literal""],""value"":""Nikki Rogers""},{""type"":[""literal""],""value"":""Participants in W3C\u0027s Semantic Web Deployment Working Group.""}],""http://purl.org/dc/terms/creator"":[{""type"":[""literal""],""value"":""Alistair Miles""},{""type"":[""literal""],""value"":""Sean Bechhofer""}],""http://purl.org/dc/terms/description"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies."",""lang"":""en""},""http://purl.org/dc/terms/title"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""SKOS Vocabulary"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Ontology"",""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""http://www.w3.org/TR/skos-reference/"",""imported"":false,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""SKOS Vocabulary"",""lang"":""en""},""language"":{""type"":[""literal""],""value"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""numberOfClasses"":{""type"":[""literal""],""value"":""6""},""numberOfEntities"":{""type"":[""literal""],""value"":""62""},""numberOfIndividuals"":{""type"":[""literal""],""value"":""0""},""numberOfProperties"":{""type"":[""literal""],""value"":""56""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Dave Beckett""},{""type"":[""literal""],""value"":""Nikki Rogers""},{""type"":[""literal""],""value"":""Participants in W3C\u0027s Semantic Web Deployment Working Group.""},{""type"":[""literal""],""value"":""Alistair Miles""},{""type"":[""literal""],""value"":""Sean Bechhofer""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, \u0027folksonomies\u0027, other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""SKOS Vocabulary"",""lang"":""en""},false,{""type"":[""literal""],""value"":""en""},{""type"":[""literal""],""value"":""6""},{""type"":[""literal""],""value"":""62""},{""type"":[""literal""],""value"":""0""},{""type"":[""literal""],""value"":""56""}],""linkedEntities"":{""http://purl.org/dc/terms/creator"":{""numAppearsIn"":1.0,""hasLocalDefinition"":false,""type"":[""property"",""annotationProperty"",""entity""],""label"":{""type"":[""literal""],""value"":""creator""},""curie"":{""type"":[""literal""],""value"":""creator""}},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""RDFS:seeAlso""},""type"":[""property"",""entity""]}}}","","http://www.w3.org/TR/skos-reference/skos.rdf","56","6","en","0.0","ontology","An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.","http://www.w3.org/2004/02/skos/core#","false","62","An RDF vocabulary for describing the basic structure and content of concept schemes such as thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', other types of controlled vocabulary, and also concept schemes embedded in glossaries and terminologies.","http://www.w3.org/2004/02/skos/core","0","0.0","false","SKOS Vocabulary","","","Alistair Miles|Sean Bechhofer","gitissue502","Dave Beckett|Nikki Rogers|Participants in W3C's Semantic Web Deployment Working Group.","skos","SKOS Vocabulary","http://www.w3.org/TR/skos-reference/","http://www.w3.org/2002/07/owl#Ontology" diff --git a/testcases_expected_output/annotation-properties/gitIssue502/skos_properties.csv b/testcases_expected_output/annotation-properties/gitIssue502/skos_properties.csv index cd7e2f50c..67a423922 100644 --- a/testcases_expected_output/annotation-properties/gitIssue502/skos_properties.csv +++ b/testcases_expected_output/annotation-properties/gitIssue502/skos_properties.csv @@ -1,33 +1,33 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","numHierarchicalDescendants:string[]","type:string[]","http__//www.w3.org/2002/07/owl#inverseOf:string[]","definitionProperty:string[]","http__//www.w3.org/2004/02/skos/core#definition:string[]","hasDirectParents:string[]","http__//www.w3.org/2000/01/rdf-schema#comment:string[]","imported:string[]","http__//www.w3.org/2004/02/skos/core#scopeNote:string[]","definition:string[]","ontologyIri:string[]","http__//www.w3.org/2000/01/rdf-schema#range:string[]","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf:string[]","iri","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy:string[]","numDescendants:string[]","isObsolete:string[]","label:string[]","http__//www.w3.org/2000/01/rdf-schema#domain:string[]","directParent:string[]","http__//www.w3.org/2004/02/skos/core#example:string[]","directAncestor:string[]","curie:string[]","shortForm:string[]","definedBy:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"skos+property+http://www.w3.org/2004/02/skos/core#altLabel","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#altLabel"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""altLabel""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The range of skos:altLabel is the class of RDF plain literals."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."",""lang"":""en""}],""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The range of skos:altLabel is the class of RDF plain literals."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."",""lang"":""en""}],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2000/01/rdf-schema#label"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An alternative lexical label for a resource."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#example"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel)."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An alternative lexical label for a resource."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel)."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""altLabel""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#example"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""example""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","http://www.w3.org/2000/01/rdf-schema#comment","An alternative lexical label for a resource.","false","The range of skos:altLabel is the class of RDF plain literals.|skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.","false","","The range of skos:altLabel is the class of RDF plain literals.|skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2000/01/rdf-schema#label","http://www.w3.org/2004/02/skos/core#altLabel","http://www.w3.org/2004/02/skos/core","0.0","false","alternative label","","","Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel).","","altLabel","altLabel","skos","alternative label","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#broadMatch","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#broadMatch"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""broadMatch""},""directAncestor"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#semanticRelation"",""http://www.w3.org/2004/02/skos/core#broader"",""http://www.w3.org/2004/02/skos/core#broaderTransitive""],""directParent"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#broader""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader match"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#broader""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://www.w3.org/2004/02/skos/core#narrowMatch"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader match"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""broadMatch""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#broaderTransitive"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader transitive"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""broaderTransitive""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#mappingRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in mapping relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""mappingRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#broader"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""broader""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#narrowMatch"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""narrowMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2004/02/skos/core#narrowMatch","","skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#broader","http://www.w3.org/2004/02/skos/core#broadMatch","http://www.w3.org/2004/02/skos/core","0.0","false","has broader match","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#broader","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#semanticRelation|http://www.w3.org/2004/02/skos/core#broader|http://www.w3.org/2004/02/skos/core#broaderTransitive","broadMatch","broadMatch","skos","has broader match","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#broader","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#broader"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""broader""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Broader concepts are typically rendered as parents in a concept hierarchy (tree)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2004/02/skos/core#broaderTransitive"",""http://www.w3.org/2004/02/skos/core#semanticRelation""],""directParent"":""http://www.w3.org/2004/02/skos/core#broaderTransitive"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Broader concepts are typically rendered as parents in a concept hierarchy (tree)."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#broaderTransitive"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://www.w3.org/2004/02/skos/core#narrower"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a concept to a concept that is more general in meaning."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a concept to a concept that is more general in meaning."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""broader""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#broaderTransitive"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader transitive"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""broaderTransitive""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#narrower"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""narrower""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2004/02/skos/core#narrower","http://www.w3.org/2000/01/rdf-schema#comment","Relates a concept to a concept that is more general in meaning.","true","Broader concepts are typically rendered as parents in a concept hierarchy (tree).","false","By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.","Broader concepts are typically rendered as parents in a concept hierarchy (tree).","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#broaderTransitive","http://www.w3.org/2004/02/skos/core#broader","http://www.w3.org/2004/02/skos/core","1.0","false","has broader","","http://www.w3.org/2004/02/skos/core#broaderTransitive","","http://www.w3.org/2004/02/skos/core#broaderTransitive|http://www.w3.org/2004/02/skos/core#semanticRelation","broader","broader","skos","has broader","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#broaderTransitive","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#broaderTransitive"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""broaderTransitive""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""directParent"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader transitive"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://www.w3.org/2004/02/skos/core#narrowerTransitive"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""value"":""skos:broaderTransitive is a transitive superproperty of skos:broader.""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader transitive"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""skos:broaderTransitive is a transitive superproperty of skos:broader.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""broaderTransitive""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#narrowerTransitive"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower transitive"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""narrowerTransitive""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2004/02/skos/core#narrowerTransitive","","skos:broaderTransitive is a transitive superproperty of skos:broader.","true","","false","By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#semanticRelation","http://www.w3.org/2004/02/skos/core#broaderTransitive","http://www.w3.org/2004/02/skos/core","2.0","false","has broader transitive","","http://www.w3.org/2004/02/skos/core#semanticRelation","","http://www.w3.org/2004/02/skos/core#semanticRelation","broaderTransitive","broaderTransitive","skos","has broader transitive","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#changeNote","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#changeNote"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""changeNote""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#note"",""directParent"":""http://www.w3.org/2004/02/skos/core#note"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""change note"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#note"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A note about a modification to a concept."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""change note"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A note about a modification to a concept."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""changeNote""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#note"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""note""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","","A note about a modification to a concept.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#note","http://www.w3.org/2004/02/skos/core#changeNote","http://www.w3.org/2004/02/skos/core","0.0","false","change note","","http://www.w3.org/2004/02/skos/core#note","","http://www.w3.org/2004/02/skos/core#note","changeNote","changeNote","skos","change note","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#closeMatch","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#closeMatch"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""closeMatch""},""directAncestor"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#semanticRelation""],""directParent"":""http://www.w3.org/2004/02/skos/core#mappingRelation"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#SymmetricProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has close match"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of \""compound errors\"" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has close match"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of \""compound errors\"" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""closeMatch""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""gitissue502"",""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#mappingRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in mapping relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""mappingRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","","","skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of ""compound errors"" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#closeMatch","http://www.w3.org/2004/02/skos/core","1.0","false","has close match","","http://www.w3.org/2004/02/skos/core#mappingRelation","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#semanticRelation","closeMatch","closeMatch","skos","has close match","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#SymmetricProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#definition","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#definition"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""definition""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#note"",""directParent"":""http://www.w3.org/2004/02/skos/core#note"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#note"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A statement or formal explanation of the meaning of a concept."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A statement or formal explanation of the meaning of a concept."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""definition""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#note"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""note""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","","A statement or formal explanation of the meaning of a concept.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#note","http://www.w3.org/2004/02/skos/core#definition","http://www.w3.org/2004/02/skos/core","0.0","false","definition","","http://www.w3.org/2004/02/skos/core#note","","http://www.w3.org/2004/02/skos/core#note","definition","definition","skos","definition","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#editorialNote","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#editorialNote"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""editorialNote""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#note"",""directParent"":""http://www.w3.org/2004/02/skos/core#note"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editorial note"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#note"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A note for an editor, translator or maintainer of the vocabulary."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editorial note"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A note for an editor, translator or maintainer of the vocabulary."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""editorialNote""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#note"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""note""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","","A note for an editor, translator or maintainer of the vocabulary.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#note","http://www.w3.org/2004/02/skos/core#editorialNote","http://www.w3.org/2004/02/skos/core","0.0","false","editorial note","","http://www.w3.org/2004/02/skos/core#note","","http://www.w3.org/2004/02/skos/core#note","editorialNote","editorialNote","skos","editorial note","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#exactMatch","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#exactMatch"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""exactMatch""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2004/02/skos/core#closeMatch"",""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#semanticRelation""],""directParent"":""http://www.w3.org/2004/02/skos/core#closeMatch"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#SymmetricProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#closeMatch"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""exactMatch""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""gitissue502"",""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#mappingRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in mapping relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""mappingRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#closeMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has close match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""closeMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","","http://www.w3.org/2000/01/rdf-schema#comment","skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch.","true","skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch.","false","","skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch.","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#closeMatch","http://www.w3.org/2004/02/skos/core#exactMatch","http://www.w3.org/2004/02/skos/core","0.0","false","has exact match","","http://www.w3.org/2004/02/skos/core#closeMatch","","http://www.w3.org/2004/02/skos/core#closeMatch|http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#semanticRelation","exactMatch","exactMatch","skos","has exact match","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#SymmetricProperty|http://www.w3.org/2002/07/owl#TransitiveProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#example","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#example"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""example""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#note"",""directParent"":""http://www.w3.org/2004/02/skos/core#note"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#note"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An example of the use of a concept."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An example of the use of a concept."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""example""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#note"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""note""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","","An example of the use of a concept.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#note","http://www.w3.org/2004/02/skos/core#example","http://www.w3.org/2004/02/skos/core","0.0","false","example","","http://www.w3.org/2004/02/skos/core#note","","http://www.w3.org/2004/02/skos/core#note","example","example","skos","example","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#hasTopConcept","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#hasTopConcept"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""hasTopConcept""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2004/02/skos/core#ConceptScheme"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has top concept"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2004/02/skos/core#Concept"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://www.w3.org/2004/02/skos/core#topConceptOf"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has top concept"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""hasTopConcept""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#Concept"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""Concept""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#topConceptOf"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is top concept in scheme"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""topConceptOf""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#ConceptScheme"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept Scheme"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""ConceptScheme""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2004/02/skos/core#topConceptOf","","Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies.","false","","false","","","http://www.w3.org/2004/02/skos/core","http://www.w3.org/2004/02/skos/core#Concept","","http://www.w3.org/2004/02/skos/core#hasTopConcept","http://www.w3.org/2004/02/skos/core","0.0","false","has top concept","http://www.w3.org/2004/02/skos/core#ConceptScheme","","","","hasTopConcept","hasTopConcept","skos","has top concept","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#hiddenLabel","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#hiddenLabel"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""hiddenLabel""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The range of skos:hiddenLabel is the class of RDF plain literals."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."",""lang"":""en""}],""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The range of skos:hiddenLabel is the class of RDF plain literals."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."",""lang"":""en""}],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""hidden label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2000/01/rdf-schema#label"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""hidden label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""hiddenLabel""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","http://www.w3.org/2000/01/rdf-schema#comment","A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations.","false","The range of skos:hiddenLabel is the class of RDF plain literals.|skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.","false","","The range of skos:hiddenLabel is the class of RDF plain literals.|skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2000/01/rdf-schema#label","http://www.w3.org/2004/02/skos/core#hiddenLabel","http://www.w3.org/2004/02/skos/core","0.0","false","hidden label","","","","","hiddenLabel","hiddenLabel","skos","hidden label","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#historyNote","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#historyNote"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""historyNote""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#note"",""directParent"":""http://www.w3.org/2004/02/skos/core#note"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""history note"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#note"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A note about the past state/use/meaning of a concept."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""history note"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A note about the past state/use/meaning of a concept."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""historyNote""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#note"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""note""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","","A note about the past state/use/meaning of a concept.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#note","http://www.w3.org/2004/02/skos/core#historyNote","http://www.w3.org/2004/02/skos/core","0.0","false","history note","","http://www.w3.org/2004/02/skos/core#note","","http://www.w3.org/2004/02/skos/core#note","historyNote","historyNote","skos","history note","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#inScheme","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#inScheme"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""inScheme""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in scheme"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2004/02/skos/core#ConceptScheme"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a resource (for example a concept) to a concept scheme in which it is included."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A concept may be a member of more than one concept scheme."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in scheme"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a resource (for example a concept) to a concept scheme in which it is included."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A concept may be a member of more than one concept scheme."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""inScheme""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#ConceptScheme"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept Scheme"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""ConceptScheme""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","","","Relates a resource (for example a concept) to a concept scheme in which it is included.","false","","false","A concept may be a member of more than one concept scheme.","","http://www.w3.org/2004/02/skos/core","http://www.w3.org/2004/02/skos/core#ConceptScheme","","http://www.w3.org/2004/02/skos/core#inScheme","http://www.w3.org/2004/02/skos/core","1.0","false","is in scheme","","","","","inScheme","inScheme","skos","is in scheme","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#mappingRelation","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#mappingRelation"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""mappingRelation""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""directParent"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in mapping relation with"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates two concepts coming, by convention, from different schemes, and that have comparable meanings"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in mapping relation with"",""lang"":""en""},""numDescendants"":5.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates two concepts coming, by convention, from different schemes, and that have comparable meanings"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""mappingRelation""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","","http://www.w3.org/2000/01/rdf-schema#comment","Relates two concepts coming, by convention, from different schemes, and that have comparable meanings","true","These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice.","false","","These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice.","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#semanticRelation","http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core","5.0","false","is in mapping relation with","","http://www.w3.org/2004/02/skos/core#semanticRelation","","http://www.w3.org/2004/02/skos/core#semanticRelation","mappingRelation","mappingRelation","skos","is in mapping relation with","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#member","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#member"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""member""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2004/02/skos/core#Collection"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has member"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#unionOf"":[""http://www.w3.org/2004/02/skos/core#Concept"",""http://www.w3.org/2004/02/skos/core#Collection""]},""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a collection to one of its members."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has member"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a collection to one of its members."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""member""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#Collection"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Collection"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""Collection""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#Concept"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""Concept""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","","","Relates a collection to one of its members.","false","","false","","","http://www.w3.org/2004/02/skos/core","","","http://www.w3.org/2004/02/skos/core#member","http://www.w3.org/2004/02/skos/core","0.0","false","has member","http://www.w3.org/2004/02/skos/core#Collection","","","","member","member","skos","has member","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#memberList","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#memberList"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""memberList""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For any resource, every item in the list given as the value of the\n skos:memberList property is also a value of the skos:member property."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For any resource, every item in the list given as the value of the\n skos:memberList property is also a value of the skos:member property."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2004/02/skos/core#OrderedCollection"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has member list"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ordered collection to the RDF list containing its members."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has member list"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ordered collection to the RDF list containing its members."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""memberList""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#OrderedCollection"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ordered Collection"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OrderedCollection""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","","http://www.w3.org/2000/01/rdf-schema#comment","Relates an ordered collection to the RDF list containing its members.","false","For any resource, every item in the list given as the value of the +"skos+property+http://www.w3.org/2004/02/skos/core#altLabel","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#altLabel"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:altLabel""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The range of skos:altLabel is the class of RDF plain literals."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."",""lang"":""en""}],""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The range of skos:altLabel is the class of RDF plain literals."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."",""lang"":""en""}],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2000/01/rdf-schema#label"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An alternative lexical label for a resource."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#example"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel)."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An alternative lexical label for a resource."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel)."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_altLabel""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#example"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:example""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","http://www.w3.org/2000/01/rdf-schema#comment","An alternative lexical label for a resource.","false","The range of skos:altLabel is the class of RDF plain literals.|skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.","false","","The range of skos:altLabel is the class of RDF plain literals.|skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2000/01/rdf-schema#label","http://www.w3.org/2004/02/skos/core#altLabel","http://www.w3.org/2004/02/skos/core","0.0","false","alternative label","","","Acronyms, abbreviations, spelling variants, and irregular plural/singular forms may be included among the alternative labels for a concept. Mis-spelled terms are normally included as hidden labels (see skos:hiddenLabel).","","SKOS:altLabel","SKOS_altLabel","skos","alternative label","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#broadMatch","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#broadMatch"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:broadMatch""},""directAncestor"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#semanticRelation"",""http://www.w3.org/2004/02/skos/core#broader"",""http://www.w3.org/2004/02/skos/core#broaderTransitive""],""directParent"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#broader""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader match"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#broader""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://www.w3.org/2004/02/skos/core#narrowMatch"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader match"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_broadMatch""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#broaderTransitive"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader transitive"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:broaderTransitive""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#mappingRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in mapping relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:mappingRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#broader"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:broader""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#narrowMatch"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:narrowMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2004/02/skos/core#narrowMatch","","skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#broader","http://www.w3.org/2004/02/skos/core#broadMatch","http://www.w3.org/2004/02/skos/core","0.0","false","has broader match","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#broader","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#semanticRelation|http://www.w3.org/2004/02/skos/core#broader|http://www.w3.org/2004/02/skos/core#broaderTransitive","SKOS:broadMatch","SKOS_broadMatch","skos","has broader match","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#broader","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#broader"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:broader""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Broader concepts are typically rendered as parents in a concept hierarchy (tree)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2004/02/skos/core#broaderTransitive"",""http://www.w3.org/2004/02/skos/core#semanticRelation""],""directParent"":""http://www.w3.org/2004/02/skos/core#broaderTransitive"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Broader concepts are typically rendered as parents in a concept hierarchy (tree)."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#broaderTransitive"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://www.w3.org/2004/02/skos/core#narrower"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a concept to a concept that is more general in meaning."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a concept to a concept that is more general in meaning."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_broader""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#broaderTransitive"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader transitive"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:broaderTransitive""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#narrower"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:narrower""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2004/02/skos/core#narrower","http://www.w3.org/2000/01/rdf-schema#comment","Relates a concept to a concept that is more general in meaning.","true","Broader concepts are typically rendered as parents in a concept hierarchy (tree).","false","By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.","Broader concepts are typically rendered as parents in a concept hierarchy (tree).","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#broaderTransitive","http://www.w3.org/2004/02/skos/core#broader","http://www.w3.org/2004/02/skos/core","1.0","false","has broader","","http://www.w3.org/2004/02/skos/core#broaderTransitive","","http://www.w3.org/2004/02/skos/core#broaderTransitive|http://www.w3.org/2004/02/skos/core#semanticRelation","SKOS:broader","SKOS_broader","skos","has broader","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#broaderTransitive","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#broaderTransitive"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:broaderTransitive""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""directParent"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader transitive"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://www.w3.org/2004/02/skos/core#narrowerTransitive"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""value"":""skos:broaderTransitive is a transitive superproperty of skos:broader.""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader transitive"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""skos:broaderTransitive is a transitive superproperty of skos:broader.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_broaderTransitive""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#narrowerTransitive"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower transitive"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:narrowerTransitive""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2004/02/skos/core#narrowerTransitive","","skos:broaderTransitive is a transitive superproperty of skos:broader.","true","","false","By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#semanticRelation","http://www.w3.org/2004/02/skos/core#broaderTransitive","http://www.w3.org/2004/02/skos/core","2.0","false","has broader transitive","","http://www.w3.org/2004/02/skos/core#semanticRelation","","http://www.w3.org/2004/02/skos/core#semanticRelation","SKOS:broaderTransitive","SKOS_broaderTransitive","skos","has broader transitive","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#changeNote","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#changeNote"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:changeNote""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#note"",""directParent"":""http://www.w3.org/2004/02/skos/core#note"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""change note"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#note"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A note about a modification to a concept."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""change note"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A note about a modification to a concept."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_changeNote""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#note"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:note""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","","A note about a modification to a concept.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#note","http://www.w3.org/2004/02/skos/core#changeNote","http://www.w3.org/2004/02/skos/core","0.0","false","change note","","http://www.w3.org/2004/02/skos/core#note","","http://www.w3.org/2004/02/skos/core#note","SKOS:changeNote","SKOS_changeNote","skos","change note","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#closeMatch","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#closeMatch"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:closeMatch""},""directAncestor"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#semanticRelation""],""directParent"":""http://www.w3.org/2004/02/skos/core#mappingRelation"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#SymmetricProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has close match"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of \""compound errors\"" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has close match"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of \""compound errors\"" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_closeMatch""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""gitissue502"",""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#mappingRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in mapping relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:mappingRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","","","skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of ""compound errors"" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core#closeMatch","http://www.w3.org/2004/02/skos/core","1.0","false","has close match","","http://www.w3.org/2004/02/skos/core#mappingRelation","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#semanticRelation","SKOS:closeMatch","SKOS_closeMatch","skos","has close match","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#SymmetricProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#definition","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#definition"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#note"",""directParent"":""http://www.w3.org/2004/02/skos/core#note"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#note"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A statement or formal explanation of the meaning of a concept."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A statement or formal explanation of the meaning of a concept."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_definition""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#note"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:note""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","","A statement or formal explanation of the meaning of a concept.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#note","http://www.w3.org/2004/02/skos/core#definition","http://www.w3.org/2004/02/skos/core","0.0","false","definition","","http://www.w3.org/2004/02/skos/core#note","","http://www.w3.org/2004/02/skos/core#note","SKOS:definition","SKOS_definition","skos","definition","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#editorialNote","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#editorialNote"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:editorialNote""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#note"",""directParent"":""http://www.w3.org/2004/02/skos/core#note"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editorial note"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#note"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A note for an editor, translator or maintainer of the vocabulary."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editorial note"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A note for an editor, translator or maintainer of the vocabulary."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_editorialNote""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#note"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:note""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","","A note for an editor, translator or maintainer of the vocabulary.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#note","http://www.w3.org/2004/02/skos/core#editorialNote","http://www.w3.org/2004/02/skos/core","0.0","false","editorial note","","http://www.w3.org/2004/02/skos/core#note","","http://www.w3.org/2004/02/skos/core#note","SKOS:editorialNote","SKOS_editorialNote","skos","editorial note","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#exactMatch","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#exactMatch"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:exactMatch""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2004/02/skos/core#closeMatch"",""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#semanticRelation""],""directParent"":""http://www.w3.org/2004/02/skos/core#closeMatch"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#SymmetricProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#closeMatch"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact match"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_exactMatch""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""gitissue502"",""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#mappingRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in mapping relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:mappingRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#closeMatch"":{""definedBy"":[""skos""],""numAppearsIn"":2.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has close match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:closeMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","","http://www.w3.org/2000/01/rdf-schema#comment","skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch.","true","skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch.","false","","skos:exactMatch is disjoint with each of the properties skos:broadMatch and skos:relatedMatch.","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#closeMatch","http://www.w3.org/2004/02/skos/core#exactMatch","http://www.w3.org/2004/02/skos/core","0.0","false","has exact match","","http://www.w3.org/2004/02/skos/core#closeMatch","","http://www.w3.org/2004/02/skos/core#closeMatch|http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#semanticRelation","SKOS:exactMatch","SKOS_exactMatch","skos","has exact match","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#SymmetricProperty|http://www.w3.org/2002/07/owl#TransitiveProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#example","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#example"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:example""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#note"",""directParent"":""http://www.w3.org/2004/02/skos/core#note"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#note"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An example of the use of a concept."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An example of the use of a concept."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_example""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#note"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:note""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","","An example of the use of a concept.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#note","http://www.w3.org/2004/02/skos/core#example","http://www.w3.org/2004/02/skos/core","0.0","false","example","","http://www.w3.org/2004/02/skos/core#note","","http://www.w3.org/2004/02/skos/core#note","SKOS:example","SKOS_example","skos","example","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#hasTopConcept","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#hasTopConcept"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:hasTopConcept""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2004/02/skos/core#ConceptScheme"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has top concept"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2004/02/skos/core#Concept"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://www.w3.org/2004/02/skos/core#topConceptOf"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has top concept"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_hasTopConcept""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#Concept"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:Concept""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#topConceptOf"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is top concept in scheme"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:topConceptOf""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#ConceptScheme"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept Scheme"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:ConceptScheme""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2004/02/skos/core#topConceptOf","","Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies.","false","","false","","","http://www.w3.org/2004/02/skos/core","http://www.w3.org/2004/02/skos/core#Concept","","http://www.w3.org/2004/02/skos/core#hasTopConcept","http://www.w3.org/2004/02/skos/core","0.0","false","has top concept","http://www.w3.org/2004/02/skos/core#ConceptScheme","","","","SKOS:hasTopConcept","SKOS_hasTopConcept","skos","has top concept","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#hiddenLabel","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#hiddenLabel"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:hiddenLabel""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The range of skos:hiddenLabel is the class of RDF plain literals."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."",""lang"":""en""}],""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The range of skos:hiddenLabel is the class of RDF plain literals."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties."",""lang"":""en""}],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""hidden label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2000/01/rdf-schema#label"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""hidden label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_hiddenLabel""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","http://www.w3.org/2000/01/rdf-schema#comment","A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations.","false","The range of skos:hiddenLabel is the class of RDF plain literals.|skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.","false","","The range of skos:hiddenLabel is the class of RDF plain literals.|skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2000/01/rdf-schema#label","http://www.w3.org/2004/02/skos/core#hiddenLabel","http://www.w3.org/2004/02/skos/core","0.0","false","hidden label","","","","","SKOS:hiddenLabel","SKOS_hiddenLabel","skos","hidden label","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#historyNote","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#historyNote"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:historyNote""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#note"",""directParent"":""http://www.w3.org/2004/02/skos/core#note"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""history note"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#note"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A note about the past state/use/meaning of a concept."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""history note"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A note about the past state/use/meaning of a concept."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_historyNote""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#note"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:note""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","","A note about the past state/use/meaning of a concept.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#note","http://www.w3.org/2004/02/skos/core#historyNote","http://www.w3.org/2004/02/skos/core","0.0","false","history note","","http://www.w3.org/2004/02/skos/core#note","","http://www.w3.org/2004/02/skos/core#note","SKOS:historyNote","SKOS_historyNote","skos","history note","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#inScheme","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#inScheme"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:inScheme""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in scheme"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2004/02/skos/core#ConceptScheme"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a resource (for example a concept) to a concept scheme in which it is included."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A concept may be a member of more than one concept scheme."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in scheme"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a resource (for example a concept) to a concept scheme in which it is included."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A concept may be a member of more than one concept scheme."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_inScheme""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#ConceptScheme"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept Scheme"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:ConceptScheme""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","","","Relates a resource (for example a concept) to a concept scheme in which it is included.","false","","false","A concept may be a member of more than one concept scheme.","","http://www.w3.org/2004/02/skos/core","http://www.w3.org/2004/02/skos/core#ConceptScheme","","http://www.w3.org/2004/02/skos/core#inScheme","http://www.w3.org/2004/02/skos/core","1.0","false","is in scheme","","","","","SKOS:inScheme","SKOS_inScheme","skos","is in scheme","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#mappingRelation","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#mappingRelation"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:mappingRelation""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""directParent"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in mapping relation with"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates two concepts coming, by convention, from different schemes, and that have comparable meanings"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in mapping relation with"",""lang"":""en""},""numDescendants"":5.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates two concepts coming, by convention, from different schemes, and that have comparable meanings"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_mappingRelation""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","","http://www.w3.org/2000/01/rdf-schema#comment","Relates two concepts coming, by convention, from different schemes, and that have comparable meanings","true","These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice.","false","","These concept mapping relations mirror semantic relations, and the data model defined below is similar (with the exception of skos:exactMatch) to the data model defined for semantic relations. A distinct vocabulary is provided for concept mapping relations, to provide a convenient way to differentiate links within a concept scheme from links between concept schemes. However, this pattern of usage is not a formal requirement of the SKOS data model, and relies on informal definitions of best practice.","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#semanticRelation","http://www.w3.org/2004/02/skos/core#mappingRelation","http://www.w3.org/2004/02/skos/core","5.0","false","is in mapping relation with","","http://www.w3.org/2004/02/skos/core#semanticRelation","","http://www.w3.org/2004/02/skos/core#semanticRelation","SKOS:mappingRelation","SKOS_mappingRelation","skos","is in mapping relation with","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#member","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#member"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:member""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2004/02/skos/core#Collection"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has member"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#unionOf"":[""http://www.w3.org/2004/02/skos/core#Concept"",""http://www.w3.org/2004/02/skos/core#Collection""]},""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a collection to one of its members."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has member"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a collection to one of its members."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_member""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#Collection"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Collection"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:Collection""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#Concept"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:Concept""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","","","Relates a collection to one of its members.","false","","false","","","http://www.w3.org/2004/02/skos/core","","","http://www.w3.org/2004/02/skos/core#member","http://www.w3.org/2004/02/skos/core","0.0","false","has member","http://www.w3.org/2004/02/skos/core#Collection","","","","SKOS:member","SKOS_member","skos","has member","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#memberList","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#memberList"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:memberList""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For any resource, every item in the list given as the value of the\n skos:memberList property is also a value of the skos:member property."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For any resource, every item in the list given as the value of the\n skos:memberList property is also a value of the skos:member property."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2004/02/skos/core#OrderedCollection"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has member list"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#List"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ordered collection to the RDF list containing its members."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has member list"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ordered collection to the RDF list containing its members."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_memberList""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#OrderedCollection"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ordered Collection"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:OrderedCollection""},""type"":[""class"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","","http://www.w3.org/2000/01/rdf-schema#comment","Relates an ordered collection to the RDF list containing its members.","false","For any resource, every item in the list given as the value of the skos:memberList property is also a value of the skos:member property.","false","","For any resource, every item in the list given as the value of the - skos:memberList property is also a value of the skos:member property.","http://www.w3.org/2004/02/skos/core","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2004/02/skos/core#memberList","http://www.w3.org/2004/02/skos/core","0.0","false","has member list","http://www.w3.org/2004/02/skos/core#OrderedCollection","","","","memberList","memberList","skos","has member list","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#FunctionalProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#narrowMatch","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#narrowMatch"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""narrowMatch""},""directAncestor"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#semanticRelation"",""http://www.w3.org/2004/02/skos/core#narrower"",""http://www.w3.org/2004/02/skos/core#narrowerTransitive""],""directParent"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#narrower""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower match"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#narrower""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://www.w3.org/2004/02/skos/core#broadMatch"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower match"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""narrowMatch""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#mappingRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in mapping relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""mappingRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#narrowerTransitive"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower transitive"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""narrowerTransitive""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#narrower"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""narrower""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#broadMatch"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""broadMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2004/02/skos/core#broadMatch","","skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#narrower","http://www.w3.org/2004/02/skos/core#narrowMatch","http://www.w3.org/2004/02/skos/core","0.0","false","has narrower match","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#narrower","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#semanticRelation|http://www.w3.org/2004/02/skos/core#narrower|http://www.w3.org/2004/02/skos/core#narrowerTransitive","narrowMatch","narrowMatch","skos","has narrower match","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#narrower","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#narrower"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""narrower""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Narrower concepts are typically rendered as children in a concept hierarchy (tree)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2004/02/skos/core#narrowerTransitive"",""http://www.w3.org/2004/02/skos/core#semanticRelation""],""directParent"":""http://www.w3.org/2004/02/skos/core#narrowerTransitive"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Narrower concepts are typically rendered as children in a concept hierarchy (tree)."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#narrowerTransitive"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://www.w3.org/2004/02/skos/core#broader"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a concept to a concept that is more specific in meaning."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a concept to a concept that is more specific in meaning."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""narrower""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#narrowerTransitive"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower transitive"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""narrowerTransitive""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#broader"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""broader""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2004/02/skos/core#broader","http://www.w3.org/2000/01/rdf-schema#comment","Relates a concept to a concept that is more specific in meaning.","true","Narrower concepts are typically rendered as children in a concept hierarchy (tree).","false","By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.","Narrower concepts are typically rendered as children in a concept hierarchy (tree).","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#narrowerTransitive","http://www.w3.org/2004/02/skos/core#narrower","http://www.w3.org/2004/02/skos/core","1.0","false","has narrower","","http://www.w3.org/2004/02/skos/core#narrowerTransitive","","http://www.w3.org/2004/02/skos/core#narrowerTransitive|http://www.w3.org/2004/02/skos/core#semanticRelation","narrower","narrower","skos","has narrower","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#narrowerTransitive","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#narrowerTransitive"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""narrowerTransitive""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""directParent"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower transitive"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://www.w3.org/2004/02/skos/core#broaderTransitive"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""value"":""skos:narrowerTransitive is a transitive superproperty of skos:narrower.""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower transitive"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""skos:narrowerTransitive is a transitive superproperty of skos:narrower.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""narrowerTransitive""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#broaderTransitive"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader transitive"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""broaderTransitive""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2004/02/skos/core#broaderTransitive","","skos:narrowerTransitive is a transitive superproperty of skos:narrower.","true","","false","By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#semanticRelation","http://www.w3.org/2004/02/skos/core#narrowerTransitive","http://www.w3.org/2004/02/skos/core","2.0","false","has narrower transitive","","http://www.w3.org/2004/02/skos/core#semanticRelation","","http://www.w3.org/2004/02/skos/core#semanticRelation","narrowerTransitive","narrowerTransitive","skos","has narrower transitive","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#notation","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#notation"",""type"":[""dataProperty"",""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""notation""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#DatatypeProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notation"",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A notation, also known as classification code, is a string of characters such as \""T58.5\"" or \""303.4833\"" used to uniquely identify a concept within the scope of a given concept scheme."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:notation is used with a typed literal in the object position of the triple."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A notation, also known as classification code, is a string of characters such as \""T58.5\"" or \""303.4833\"" used to uniquely identify a concept within the scope of a given concept scheme."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:notation is used with a typed literal in the object position of the triple."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""notation""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","dataProperty|property|entity","","","A notation, also known as classification code, is a string of characters such as ""T58.5"" or ""303.4833"" used to uniquely identify a concept within the scope of a given concept scheme.","false","","false","By convention, skos:notation is used with a typed literal in the object position of the triple.","","http://www.w3.org/2004/02/skos/core","","","http://www.w3.org/2004/02/skos/core#notation","http://www.w3.org/2004/02/skos/core","0.0","false","notation","","","","","notation","notation","skos","notation","skos","http://www.w3.org/2002/07/owl#DatatypeProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#note","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#note"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""note""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""note"",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A general note, for any purpose."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This property may be used directly, or as a super-property for more specific note types."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""note"",""lang"":""en""},""numDescendants"":6.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A general note, for any purpose."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This property may be used directly, or as a super-property for more specific note types."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""note""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|annotationProperty|entity","","","A general note, for any purpose.","false","","false","This property may be used directly, or as a super-property for more specific note types.","","http://www.w3.org/2004/02/skos/core","","","http://www.w3.org/2004/02/skos/core#note","http://www.w3.org/2004/02/skos/core","6.0","false","note","","","","","note","note","skos","note","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#prefLabel","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#prefLabel"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""prefLabel""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The range of skos:prefLabel is the class of RDF plain literals."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise\n disjoint properties."",""lang"":""en""}],""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The range of skos:prefLabel is the class of RDF plain literals."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise\n disjoint properties."",""lang"":""en""}],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preferred label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2000/01/rdf-schema#label"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The preferred lexical label for a resource, in a given language."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preferred label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The preferred lexical label for a resource, in a given language."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""prefLabel""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","http://www.w3.org/2000/01/rdf-schema#comment","The preferred lexical label for a resource, in a given language.","false","A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag.|The range of skos:prefLabel is the class of RDF plain literals.|skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise + skos:memberList property is also a value of the skos:member property.","http://www.w3.org/2004/02/skos/core","http://www.w3.org/1999/02/22-rdf-syntax-ns#List","","http://www.w3.org/2004/02/skos/core#memberList","http://www.w3.org/2004/02/skos/core","0.0","false","has member list","http://www.w3.org/2004/02/skos/core#OrderedCollection","","","","SKOS:memberList","SKOS_memberList","skos","has member list","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#FunctionalProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#narrowMatch","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#narrowMatch"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:narrowMatch""},""directAncestor"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#semanticRelation"",""http://www.w3.org/2004/02/skos/core#narrower"",""http://www.w3.org/2004/02/skos/core#narrowerTransitive""],""directParent"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#narrower""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower match"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#narrower""],""http://www.w3.org/2002/07/owl#inverseOf"":""http://www.w3.org/2004/02/skos/core#broadMatch"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower match"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_narrowMatch""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#mappingRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in mapping relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:mappingRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#narrowerTransitive"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower transitive"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:narrowerTransitive""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#narrower"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:narrower""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#broadMatch"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader match"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:broadMatch""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2004/02/skos/core#broadMatch","","skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#narrower","http://www.w3.org/2004/02/skos/core#narrowMatch","http://www.w3.org/2004/02/skos/core","0.0","false","has narrower match","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#narrower","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#semanticRelation|http://www.w3.org/2004/02/skos/core#narrower|http://www.w3.org/2004/02/skos/core#narrowerTransitive","SKOS:narrowMatch","SKOS_narrowMatch","skos","has narrower match","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#narrower","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#narrower"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:narrower""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Narrower concepts are typically rendered as children in a concept hierarchy (tree)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[""http://www.w3.org/2004/02/skos/core#narrowerTransitive"",""http://www.w3.org/2004/02/skos/core#semanticRelation""],""directParent"":""http://www.w3.org/2004/02/skos/core#narrowerTransitive"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Narrower concepts are typically rendered as children in a concept hierarchy (tree)."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#narrowerTransitive"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://www.w3.org/2004/02/skos/core#broader"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a concept to a concept that is more specific in meaning."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a concept to a concept that is more specific in meaning."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_narrower""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#narrowerTransitive"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower transitive"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:narrowerTransitive""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#broader"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:broader""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2004/02/skos/core#broader","http://www.w3.org/2000/01/rdf-schema#comment","Relates a concept to a concept that is more specific in meaning.","true","Narrower concepts are typically rendered as children in a concept hierarchy (tree).","false","By convention, skos:broader is only used to assert an immediate (i.e. direct) hierarchical link between two conceptual resources.","Narrower concepts are typically rendered as children in a concept hierarchy (tree).","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#narrowerTransitive","http://www.w3.org/2004/02/skos/core#narrower","http://www.w3.org/2004/02/skos/core","1.0","false","has narrower","","http://www.w3.org/2004/02/skos/core#narrowerTransitive","","http://www.w3.org/2004/02/skos/core#narrowerTransitive|http://www.w3.org/2004/02/skos/core#semanticRelation","SKOS:narrower","SKOS_narrower","skos","has narrower","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#narrowerTransitive","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#narrowerTransitive"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:narrowerTransitive""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""directParent"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower transitive"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://www.w3.org/2004/02/skos/core#broaderTransitive"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""value"":""skos:narrowerTransitive is a transitive superproperty of skos:narrower.""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has narrower transitive"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""skos:narrowerTransitive is a transitive superproperty of skos:narrower.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_narrowerTransitive""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#broaderTransitive"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has broader transitive"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:broaderTransitive""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2004/02/skos/core#broaderTransitive","","skos:narrowerTransitive is a transitive superproperty of skos:narrower.","true","","false","By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#semanticRelation","http://www.w3.org/2004/02/skos/core#narrowerTransitive","http://www.w3.org/2004/02/skos/core","2.0","false","has narrower transitive","","http://www.w3.org/2004/02/skos/core#semanticRelation","","http://www.w3.org/2004/02/skos/core#semanticRelation","SKOS:narrowerTransitive","SKOS_narrowerTransitive","skos","has narrower transitive","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#notation","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#notation"",""type"":[""dataProperty"",""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:notation""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#DatatypeProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notation"",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A notation, also known as classification code, is a string of characters such as \""T58.5\"" or \""303.4833\"" used to uniquely identify a concept within the scope of a given concept scheme."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:notation is used with a typed literal in the object position of the triple."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A notation, also known as classification code, is a string of characters such as \""T58.5\"" or \""303.4833\"" used to uniquely identify a concept within the scope of a given concept scheme."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""By convention, skos:notation is used with a typed literal in the object position of the triple."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_notation""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","dataProperty|property|entity","","","A notation, also known as classification code, is a string of characters such as ""T58.5"" or ""303.4833"" used to uniquely identify a concept within the scope of a given concept scheme.","false","","false","By convention, skos:notation is used with a typed literal in the object position of the triple.","","http://www.w3.org/2004/02/skos/core","","","http://www.w3.org/2004/02/skos/core#notation","http://www.w3.org/2004/02/skos/core","0.0","false","notation","","","","","SKOS:notation","SKOS_notation","skos","notation","skos","http://www.w3.org/2002/07/owl#DatatypeProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#note","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#note"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:note""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""note"",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A general note, for any purpose."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This property may be used directly, or as a super-property for more specific note types."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""note"",""lang"":""en""},""numDescendants"":6.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A general note, for any purpose."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This property may be used directly, or as a super-property for more specific note types."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_note""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|annotationProperty|entity","","","A general note, for any purpose.","false","","false","This property may be used directly, or as a super-property for more specific note types.","","http://www.w3.org/2004/02/skos/core","","","http://www.w3.org/2004/02/skos/core#note","http://www.w3.org/2004/02/skos/core","6.0","false","note","","","","","SKOS:note","SKOS_note","skos","note","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#prefLabel","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#prefLabel"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:prefLabel""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The range of skos:prefLabel is the class of RDF plain literals."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise\n disjoint properties."",""lang"":""en""}],""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The range of skos:prefLabel is the class of RDF plain literals."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise\n disjoint properties."",""lang"":""en""}],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preferred label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2000/01/rdf-schema#label"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The preferred lexical label for a resource, in a given language."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""preferred label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The preferred lexical label for a resource, in a given language."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_prefLabel""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","http://www.w3.org/2000/01/rdf-schema#comment","The preferred lexical label for a resource, in a given language.","false","A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag.|The range of skos:prefLabel is the class of RDF plain literals.|skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise disjoint properties.","false","","A resource has no more than one value of skos:prefLabel per language tag, and no more than one value of skos:prefLabel without language tag.|The range of skos:prefLabel is the class of RDF plain literals.|skos:prefLabel, skos:altLabel and skos:hiddenLabel are pairwise - disjoint properties.","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2000/01/rdf-schema#label","http://www.w3.org/2004/02/skos/core#prefLabel","http://www.w3.org/2004/02/skos/core","0.0","false","preferred label","","","","","prefLabel","prefLabel","skos","preferred label","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#related","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#related"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""related""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:related is disjoint with skos:broaderTransitive"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""directParent"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#SymmetricProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:related is disjoint with skos:broaderTransitive"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has related"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a concept to a concept with which there is an associative semantic relationship."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has related"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a concept to a concept with which there is an associative semantic relationship."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""related""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","","http://www.w3.org/2000/01/rdf-schema#comment","Relates a concept to a concept with which there is an associative semantic relationship.","true","skos:related is disjoint with skos:broaderTransitive","false","","skos:related is disjoint with skos:broaderTransitive","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#semanticRelation","http://www.w3.org/2004/02/skos/core#related","http://www.w3.org/2004/02/skos/core","1.0","false","has related","","http://www.w3.org/2004/02/skos/core#semanticRelation","","http://www.w3.org/2004/02/skos/core#semanticRelation","related","related","skos","has related","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#SymmetricProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#relatedMatch","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#relatedMatch"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""relatedMatch""},""directAncestor"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#semanticRelation"",""http://www.w3.org/2004/02/skos/core#related""],""directParent"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#related""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#SymmetricProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has related match"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#related""],""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has related match"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""relatedMatch""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#related"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has related"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""related""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#mappingRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in mapping relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""mappingRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","","","skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#related","http://www.w3.org/2004/02/skos/core#relatedMatch","http://www.w3.org/2004/02/skos/core","0.0","false","has related match","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#related","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#semanticRelation|http://www.w3.org/2004/02/skos/core#related","relatedMatch","relatedMatch","skos","has related match","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#SymmetricProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#scopeNote","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#scopeNote"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""scopeNote""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#note"",""directParent"":""http://www.w3.org/2004/02/skos/core#note"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#note"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A note that helps to clarify the meaning and/or the use of a concept."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A note that helps to clarify the meaning and/or the use of a concept."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""scopeNote""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#note"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""note""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","","A note that helps to clarify the meaning and/or the use of a concept.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#note","http://www.w3.org/2004/02/skos/core#scopeNote","http://www.w3.org/2004/02/skos/core","0.0","false","scope note","","http://www.w3.org/2004/02/skos/core#note","","http://www.w3.org/2004/02/skos/core#note","scopeNote","scopeNote","skos","scope note","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#semanticRelation","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""semanticRelation""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2004/02/skos/core#Concept"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2004/02/skos/core#Concept"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Links a concept to a concept related by meaning."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""numDescendants"":11.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Links a concept to a concept related by meaning."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""semanticRelation""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#Concept"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""Concept""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","","","Links a concept to a concept related by meaning.","false","","false","This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts.","","http://www.w3.org/2004/02/skos/core","http://www.w3.org/2004/02/skos/core#Concept","","http://www.w3.org/2004/02/skos/core#semanticRelation","http://www.w3.org/2004/02/skos/core","11.0","false","is in semantic relation with","http://www.w3.org/2004/02/skos/core#Concept","","","","semanticRelation","semanticRelation","skos","is in semantic relation with","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" -"skos+property+http://www.w3.org/2004/02/skos/core#topConceptOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#topConceptOf"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""topConceptOf""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#inScheme"",""directParent"":""http://www.w3.org/2004/02/skos/core#inScheme"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2004/02/skos/core#Concept"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is top concept in scheme"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2004/02/skos/core#ConceptScheme"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#inScheme"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://www.w3.org/2004/02/skos/core#hasTopConcept"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a concept to the concept scheme that it is a top level concept of."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is top concept in scheme"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a concept to the concept scheme that it is a top level concept of."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""topConceptOf""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#hasTopConcept"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has top concept"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""hasTopConcept""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#inScheme"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in scheme"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""inScheme""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#Concept"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""Concept""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#ConceptScheme"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept Scheme"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""ConceptScheme""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2004/02/skos/core#hasTopConcept","","Relates a concept to the concept scheme that it is a top level concept of.","true","","false","","","http://www.w3.org/2004/02/skos/core","http://www.w3.org/2004/02/skos/core#ConceptScheme","http://www.w3.org/2004/02/skos/core#inScheme","http://www.w3.org/2004/02/skos/core#topConceptOf","http://www.w3.org/2004/02/skos/core","0.0","false","is top concept in scheme","http://www.w3.org/2004/02/skos/core#Concept","http://www.w3.org/2004/02/skos/core#inScheme","","http://www.w3.org/2004/02/skos/core#inScheme","topConceptOf","topConceptOf","skos","is top concept in scheme","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" + disjoint properties.","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2000/01/rdf-schema#label","http://www.w3.org/2004/02/skos/core#prefLabel","http://www.w3.org/2004/02/skos/core","0.0","false","preferred label","","","","","SKOS:prefLabel","SKOS_prefLabel","skos","preferred label","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#related","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#related"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:related""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:related is disjoint with skos:broaderTransitive"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""directParent"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#SymmetricProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:related is disjoint with skos:broaderTransitive"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has related"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a concept to a concept with which there is an associative semantic relationship."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has related"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a concept to a concept with which there is an associative semantic relationship."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_related""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""RDFS:comment""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","","http://www.w3.org/2000/01/rdf-schema#comment","Relates a concept to a concept with which there is an associative semantic relationship.","true","skos:related is disjoint with skos:broaderTransitive","false","","skos:related is disjoint with skos:broaderTransitive","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#semanticRelation","http://www.w3.org/2004/02/skos/core#related","http://www.w3.org/2004/02/skos/core","1.0","false","has related","","http://www.w3.org/2004/02/skos/core#semanticRelation","","http://www.w3.org/2004/02/skos/core#semanticRelation","SKOS:related","SKOS_related","skos","has related","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#SymmetricProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#relatedMatch","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#relatedMatch"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:relatedMatch""},""directAncestor"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#semanticRelation"",""http://www.w3.org/2004/02/skos/core#related""],""directParent"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#related""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#SymmetricProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has related match"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":[""http://www.w3.org/2004/02/skos/core#mappingRelation"",""http://www.w3.org/2004/02/skos/core#related""],""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has related match"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_relatedMatch""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#related"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has related"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:related""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#mappingRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in mapping relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:mappingRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#semanticRelation"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:semanticRelation""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","","","skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#related","http://www.w3.org/2004/02/skos/core#relatedMatch","http://www.w3.org/2004/02/skos/core","0.0","false","has related match","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#related","","http://www.w3.org/2004/02/skos/core#mappingRelation|http://www.w3.org/2004/02/skos/core#semanticRelation|http://www.w3.org/2004/02/skos/core#related","SKOS:relatedMatch","SKOS_relatedMatch","skos","has related match","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#SymmetricProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#scopeNote","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#scopeNote"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:scopeNote""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#note"",""directParent"":""http://www.w3.org/2004/02/skos/core#note"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#note"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A note that helps to clarify the meaning and/or the use of a concept."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A note that helps to clarify the meaning and/or the use of a concept."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_scopeNote""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#note"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:note""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|annotationProperty|entity","","","A note that helps to clarify the meaning and/or the use of a concept.","true","","false","","","http://www.w3.org/2004/02/skos/core","","http://www.w3.org/2004/02/skos/core#note","http://www.w3.org/2004/02/skos/core#scopeNote","http://www.w3.org/2004/02/skos/core","0.0","false","scope note","","http://www.w3.org/2004/02/skos/core#note","","http://www.w3.org/2004/02/skos/core#note","SKOS:scopeNote","SKOS_scopeNote","skos","scope note","skos","http://www.w3.org/2002/07/owl#AnnotationProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#semanticRelation","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#semanticRelation"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:semanticRelation""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2004/02/skos/core#Concept"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2004/02/skos/core#Concept"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Links a concept to a concept related by meaning."",""lang"":""en""},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in semantic relation with"",""lang"":""en""},""numDescendants"":11.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Links a concept to a concept related by meaning."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_semanticRelation""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#Concept"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:Concept""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#scopeNote"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scope note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:scopeNote""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","true","false","false","true","","0.0","property|objectProperty|entity","","","Links a concept to a concept related by meaning.","false","","false","This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts.","","http://www.w3.org/2004/02/skos/core","http://www.w3.org/2004/02/skos/core#Concept","","http://www.w3.org/2004/02/skos/core#semanticRelation","http://www.w3.org/2004/02/skos/core","11.0","false","is in semantic relation with","http://www.w3.org/2004/02/skos/core#Concept","","","","SKOS:semanticRelation","SKOS_semanticRelation","skos","is in semantic relation with","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" +"skos+property+http://www.w3.org/2004/02/skos/core#topConceptOf","OntologyEntity|OntologyProperty","{""iri"":""http://www.w3.org/2004/02/skos/core#topConceptOf"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""SKOS:topConceptOf""},""directAncestor"":""http://www.w3.org/2004/02/skos/core#inScheme"",""directParent"":""http://www.w3.org/2004/02/skos/core#inScheme"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#Property""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://www.w3.org/2004/02/skos/core#Concept"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://www.w3.org/2004/02/skos/core"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is top concept in scheme"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2004/02/skos/core#ConceptScheme"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2004/02/skos/core#inScheme"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://www.w3.org/2004/02/skos/core#hasTopConcept"",""http://www.w3.org/2004/02/skos/core#definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a concept to the concept scheme that it is a top level concept of."",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is top concept in scheme"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""skos""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.w3.org/2004/02/skos/core""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a concept to the concept scheme that it is a top level concept of."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""SKOS_topConceptOf""},""isDefiningOntology"":true,""definedBy"":[""skos""],""appearsIn"":[""skos""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#hasTopConcept"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has top concept"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:hasTopConcept""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#inScheme"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is in scheme"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:inScheme""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2004/02/skos/core#Concept"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:Concept""},""type"":[""class"",""entity""]},""http://www.w3.org/2004/02/skos/core#definition"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:definition""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#range"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""range""},""curie"":{""type"":[""literal""],""value"":""RDFS:range""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""subPropertyOf""},""curie"":{""type"":[""literal""],""value"":""RDFS:subPropertyOf""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""RDFS:isDefinedBy""},""type"":[""property"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#domain"":{""definedBy"":[""rdfs""],""numAppearsIn"":2.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""domain""},""curie"":{""type"":[""literal""],""value"":""RDFS:domain""},""type"":[""property"",""entity""]},""http://www.w3.org/2004/02/skos/core#ConceptScheme"":{""definedBy"":[""skos""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Concept Scheme"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""SKOS:ConceptScheme""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""definedBy"":[""rdfs""],""numAppearsIn"":3.0,""hasLocalDefinition"":false,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""RDFS:label""},""type"":[""property"",""entity""]}}}","false","false","false","false","true","","0.0","property|objectProperty|entity","http://www.w3.org/2004/02/skos/core#hasTopConcept","","Relates a concept to the concept scheme that it is a top level concept of.","true","","false","","","http://www.w3.org/2004/02/skos/core","http://www.w3.org/2004/02/skos/core#ConceptScheme","http://www.w3.org/2004/02/skos/core#inScheme","http://www.w3.org/2004/02/skos/core#topConceptOf","http://www.w3.org/2004/02/skos/core","0.0","false","is top concept in scheme","http://www.w3.org/2004/02/skos/core#Concept","http://www.w3.org/2004/02/skos/core#inScheme","","http://www.w3.org/2004/02/skos/core#inScheme","SKOS:topConceptOf","SKOS_topConceptOf","skos","is top concept in scheme","skos","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/1999/02/22-rdf-syntax-ns#Property" diff --git a/testcases_expected_output/datatypes/nesting-issue/minimal-genepio/classes.jsonl b/testcases_expected_output/datatypes/nesting-issue/minimal-genepio/classes.jsonl index d38c02577..fb68688d0 100644 --- a/testcases_expected_output/datatypes/nesting-issue/minimal-genepio/classes.jsonl +++ b/testcases_expected_output/datatypes/nesting-issue/minimal-genepio/classes.jsonl @@ -1 +1 @@ -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GENEPIO_0002113\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GENEPIO:0002113\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0002135\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://www.w3.org/2001/XMLSchema#dateTime\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"GENEPIO_0002113\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"genepio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/genepio.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"genepio\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/OBI_0002135\",\"value\":\"http://www.w3.org/2001/XMLSchema#dateTime\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0002135\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://www.w3.org/2001/XMLSchema#dateTime\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GENEPIO_0002113\"},\"isDefiningOntology\":false,\"appearsIn\":[\"genepio\"],\"linkedEntities\":{\"GENEPIO:0002113\":{\"url\":\"http://purl.obolibrary.org/obo/GENEPIO_0002113\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GENEPIO:0002113\"},\"http://purl.obolibrary.org/obo/OBI_0002135\":{\"url\":\"http://purl.obolibrary.org/obo/OBI_0002135\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"obi:0002135\"}}}","appearsIn":["genepio"],"curie":"GENEPIO:0002113","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","id":"genepio+class+http://purl.obolibrary.org/obo/GENEPIO_0002113","imported":"false","iri":"http://purl.obolibrary.org/obo/GENEPIO_0002113","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"GENEPIO_0002113","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"genepio","ontologyIri":"http://purl.obolibrary.org/obo/genepio.owl","ontologyPreferredPrefix":"genepio","relatedTo":"http://www.w3.org/2001/XMLSchema#dateTime","searchableAnnotationValues":"false","shortForm":"GENEPIO_0002113","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GENEPIO_0002113\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GENEPIO:0002113\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0002135\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://www.w3.org/2001/XMLSchema#dateTime\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"GENEPIO_0002113\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"genepio\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/genepio.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"genepio\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/OBI_0002135\",\"value\":\"http://www.w3.org/2001/XMLSchema#dateTime\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0002135\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://www.w3.org/2001/XMLSchema#dateTime\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GENEPIO_0002113\"},\"isDefiningOntology\":false,\"appearsIn\":[\"genepio\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/OBI_0002135\":{\"url\":\"http://purl.obolibrary.org/obo/OBI_0002135\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"obi:0002135\"}}}","appearsIn":["genepio"],"curie":"GENEPIO:0002113","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","id":"genepio+class+http://purl.obolibrary.org/obo/GENEPIO_0002113","imported":"false","iri":"http://purl.obolibrary.org/obo/GENEPIO_0002113","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"GENEPIO_0002113","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"genepio","ontologyIri":"http://purl.obolibrary.org/obo/genepio.owl","ontologyPreferredPrefix":"genepio","relatedTo":"http://www.w3.org/2001/XMLSchema#dateTime","searchableAnnotationValues":"false","shortForm":"GENEPIO_0002113","type":["class","entity"]} diff --git a/testcases_expected_output/datatypes/nesting-issue/minimal-genepio/genepio_classes.csv b/testcases_expected_output/datatypes/nesting-issue/minimal-genepio/genepio_classes.csv index e5ddebc79..08c1a5b3b 100644 --- a/testcases_expected_output/datatypes/nesting-issue/minimal-genepio/genepio_classes.csv +++ b/testcases_expected_output/datatypes/nesting-issue/minimal-genepio/genepio_classes.csv @@ -1,2 +1,2 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","hierarchicalProperty:string[]","numHierarchicalDescendants:string[]","type:string[]","relatedTo:string[]","http__//www.w3.org/2000/01/rdf-schema#subClassOf:string[]","hasDirectParents:string[]","imported:string[]","ontologyIri:string[]","iri","hierarchicalAncestor:string[]","numDescendants:string[]","isObsolete:string[]","label:string[]","ontologyPreferredPrefix:string[]","directAncestor:string[]","curie:string[]","shortForm:string[]","ontologyId:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"genepio+class+http://purl.obolibrary.org/obo/GENEPIO_0002113","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GENEPIO_0002113"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GENEPIO:0002113""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0002135"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://www.w3.org/2001/XMLSchema#dateTime"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""GENEPIO_0002113""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""genepio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/genepio.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""genepio""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/OBI_0002135"",""value"":""http://www.w3.org/2001/XMLSchema#dateTime"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0002135"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://www.w3.org/2001/XMLSchema#dateTime"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GENEPIO_0002113""},""isDefiningOntology"":false,""appearsIn"":[""genepio""],""linkedEntities"":{""GENEPIO:0002113"":{""url"":""http://purl.obolibrary.org/obo/GENEPIO_0002113"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GENEPIO:0002113""},""http://purl.obolibrary.org/obo/OBI_0002135"":{""url"":""http://purl.obolibrary.org/obo/OBI_0002135"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""obi:0002135""}}}","false","false","false","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2001/XMLSchema#dateTime","","false","false","http://purl.obolibrary.org/obo/genepio.owl","http://purl.obolibrary.org/obo/GENEPIO_0002113","","0.0","false","GENEPIO_0002113","genepio","","GENEPIO:0002113","GENEPIO_0002113","genepio","http://www.w3.org/2002/07/owl#Class" +"genepio+class+http://purl.obolibrary.org/obo/GENEPIO_0002113","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GENEPIO_0002113"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GENEPIO:0002113""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0002135"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://www.w3.org/2001/XMLSchema#dateTime"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""GENEPIO_0002113""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""genepio""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/genepio.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""genepio""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/OBI_0002135"",""value"":""http://www.w3.org/2001/XMLSchema#dateTime"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0002135"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://www.w3.org/2001/XMLSchema#dateTime"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GENEPIO_0002113""},""isDefiningOntology"":false,""appearsIn"":[""genepio""],""linkedEntities"":{""http://purl.obolibrary.org/obo/OBI_0002135"":{""url"":""http://purl.obolibrary.org/obo/OBI_0002135"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""obi:0002135""}}}","false","false","false","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://www.w3.org/2001/XMLSchema#dateTime","","false","false","http://purl.obolibrary.org/obo/genepio.owl","http://purl.obolibrary.org/obo/GENEPIO_0002113","","0.0","false","GENEPIO_0002113","genepio","","GENEPIO:0002113","GENEPIO_0002113","genepio","http://www.w3.org/2002/07/owl#Class" diff --git a/testcases_expected_output/datatypes/nesting-issue/minimal-genepio/ontologies_linked.json b/testcases_expected_output/datatypes/nesting-issue/minimal-genepio/ontologies_linked.json index 86958ffac..412a1994e 100644 --- a/testcases_expected_output/datatypes/nesting-issue/minimal-genepio/ontologies_linked.json +++ b/testcases_expected_output/datatypes/nesting-issue/minimal-genepio/ontologies_linked.json @@ -151,11 +151,6 @@ "genepio" ], "linkedEntities": { - "GENEPIO:0002113": { - "url": "http://purl.obolibrary.org/obo/GENEPIO_0002113", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "GENEPIO:0002113" - }, "http://purl.obolibrary.org/obo/OBI_0002135": { "url": "http://purl.obolibrary.org/obo/OBI_0002135", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", diff --git a/testcases_expected_output/duo/classes.jsonl b/testcases_expected_output/duo/classes.jsonl index 27aa0d824..f3ea5a127 100644 --- a/testcases_expected_output/duo/classes.jsonl +++ b/testcases_expected_output/duo/classes.jsonl @@ -4,46 +4,46 @@ {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/APOLLO_SV_00000522\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO:SV_00000522\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that comprises at least one source code module and provenance data about who contributed the set of files making up the module(s), and optionally comprises also multiple versions of files with detailed change history about who committed files and when, a license for the software, readme files, documentation, executables, etc.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Refers to the stuff that lives on GitHub, not to GitHub or the git software on which it is based\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software source code version control repository\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that comprises at least one source code module and provenance data about who contributed the set of files making up the module(s), and optionally comprises also multiple versions of files with detailed change history about who committed files and when, a license for the software, readme files, documentation, executables, etc.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"William R. Hogan\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Refers to the stuff that lives on GitHub, not to GitHub or the git software on which it is based\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code repository\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000096\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000096\",\"isObsolete\":false}]},\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code repository\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000096\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000096\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000096\",\"isObsolete\":false}]}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software source code version control repository\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that comprises at least one source code module and provenance data about who contributed the set of files making up the module(s), and optionally comprises also multiple versions of files with detailed change history about who committed files and when, a license for the software, readme files, documentation, executables, etc.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"William R. Hogan\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"APOLLO_SV_00000522\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000096\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"APOLLO:SV_00000522","definition":["A document that comprises at least one source code module and provenance data about who contributed the set of files making up the module(s), and optionally comprises also multiple versions of files with detailed change history about who committed files and when, a license for the software, readme files, documentation, executables, etc.","Refers to the stuff that lives on GitHub, not to GitHub or the git software on which it is based"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000310","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000310","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"software source code version control repository","http__//purl.obolibrary.org/obo/IAO_0000115":"A document that comprises at least one source code module and provenance data about who contributed the set of files making up the module(s), and optionally comprises also multiple versions of files with detailed change history about who committed files and when, a license for the software, readme files, documentation, executables, etc.","http__//purl.obolibrary.org/obo/IAO_0000117":"William R. Hogan","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Refers to the stuff that lives on GitHub, not to GitHub or the git software on which it is based","http__//www.w3.org/2000/01/rdf-schema#label":"source code repository","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000310"],"id":"duo+class+http://purl.obolibrary.org/obo/APOLLO_SV_00000522","imported":"false","iri":"http://purl.obolibrary.org/obo/APOLLO_SV_00000522","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"source code repository","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/IAO_0000096","http://purl.obolibrary.org/obo/IAO_0000027"],"searchableAnnotationValues":["software source code version control repository","A document that comprises at least one source code module and provenance data about who contributed the set of files making up the module(s), and optionally comprises also multiple versions of files with detailed change history about who committed files and when, a license for the software, readme files, documentation, executables, etc.","William R. Hogan","false"],"shortForm":"APOLLO_SV_00000522","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/APOLLO_SV_00000524\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO:SV_00000524\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that converts human-written or curated software into a machine-executable or interpretable set of instructions.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"It\\u0027s compiling \\\"software\\\" (scare quotes) and not \\\"source code\\\" because you can compile Java bytecode to machine code, and Java bytecode is not technically \\\"source code\\\". Compiling source code would be a subclass of this class (as would compiling Java bytecode, etc.).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Source code can be automatically generated to some extent, but we\\u0027re assuming humans still curate it minimally. Also, in the case of Java and its JVM, it\\u0027s machine interpretable instructions, not directly executable. Ditto for other languages with intermediate form like Java byte code.\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/APOLLO_SV_00000008\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/APOLLO_SV_00000008\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/APOLLO_SV_00000008\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/APOLLO_SV_00000008\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process of compiling software\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that converts human-written or curated software into a machine-executable or interpretable set of instructions.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"William R. Hogan\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"It\\u0027s compiling \\\"software\\\" (scare quotes) and not \\\"source code\\\" because you can compile Java bytecode to machine code, and Java bytecode is not technically \\\"source code\\\". Compiling source code would be a subclass of this class (as would compiling Java bytecode, etc.).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Source code can be automatically generated to some extent, but we\\u0027re assuming humans still curate it minimally. Also, in the case of Java and its JVM, it\\u0027s machine interpretable instructions, not directly executable. Ditto for other languages with intermediate form like Java byte code.\",\"lang\":\"en\"}],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"compiling software\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/APOLLO_SV_00000008\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#unionOf\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000096\"]},\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"isObsolete\":false}]}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"compiling software\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process of compiling software\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that converts human-written or curated software into a machine-executable or interpretable set of instructions.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"William R. Hogan\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"APOLLO_SV_00000524\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/APOLLO_SV_00000008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software development\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO:SV_00000008\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000096\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"APOLLO:SV_00000524","definition":["A planned process that converts human-written or curated software into a machine-executable or interpretable set of instructions.","It\u0027s compiling \"software\" (scare quotes) and not \"source code\" because you can compile Java bytecode to machine code, and Java bytecode is not technically \"source code\". Compiling source code would be a subclass of this class (as would compiling Java bytecode, etc.).","Source code can be automatically generated to some extent, but we\u0027re assuming humans still curate it minimally. Also, in the case of Java and its JVM, it\u0027s machine interpretable instructions, not directly executable. Ditto for other languages with intermediate form like Java byte code."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/APOLLO_SV_00000008","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/APOLLO_SV_00000008","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/APOLLO_SV_00000008","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/APOLLO_SV_00000008","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"process of compiling software","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process that converts human-written or curated software into a machine-executable or interpretable set of instructions.","http__//purl.obolibrary.org/obo/IAO_0000117":"William R. Hogan","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":["It\u0027s compiling \"software\" (scare quotes) and not \"source code\" because you can compile Java bytecode to machine code, and Java bytecode is not technically \"source code\". Compiling source code would be a subclass of this class (as would compiling Java bytecode, etc.).","Source code can be automatically generated to some extent, but we\u0027re assuming humans still curate it minimally. Also, in the case of Java and its JVM, it\u0027s machine interpretable instructions, not directly executable. Ditto for other languages with intermediate form like Java byte code."],"http__//www.w3.org/2000/01/rdf-schema#label":"compiling software","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/APOLLO_SV_00000008"],"id":"duo+class+http://purl.obolibrary.org/obo/APOLLO_SV_00000524","imported":"false","iri":"http://purl.obolibrary.org/obo/APOLLO_SV_00000524","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"compiling software","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["process of compiling software","A planned process that converts human-written or curated software into a machine-executable or interpretable set of instructions.","William R. Hogan","false"],"shortForm":"APOLLO_SV_00000524","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/APOLLO_SV_00000796\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO:SV_00000796\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that has a data set as its specified output.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"creating a data set\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that has a data set as its specified output.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"William R. Hogan\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data set creation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dataset creation\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dataset creating\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000100\",\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dataset creating\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"creating a data set\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that has a data set as its specified output.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"William R. Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data set creation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dataset creation\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"APOLLO_SV_00000796\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data set\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000100\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"APOLLO:SV_00000796","definition":"A planned process that has a data set as its specified output.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"creating a data set","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process that has a data set as its specified output.","http__//purl.obolibrary.org/obo/IAO_0000117":"William R. Hogan","http__//purl.obolibrary.org/obo/IAO_0000118":["data set creation","dataset creation"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"dataset creating","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000011","id":"duo+class+http://purl.obolibrary.org/obo/APOLLO_SV_00000796","imported":"false","iri":"http://purl.obolibrary.org/obo/APOLLO_SV_00000796","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"dataset creating","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["creating a data set","A planned process that has a data set as its specified output.","William R. Hogan","data set creation","dataset creation","false"],"shortForm":"APOLLO_SV_00000796","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"entity\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Entity\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Julius Caesar\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Verdi’s Requiem\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the Second World War\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"your body mass index\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Entity doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. For example Werner Ceusters \\u0027portions of reality\\u0027 include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, \\u0027How to track absolutely everything\\u0027 at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000004\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/001-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"numDescendants\":301.0,\"numHierarchicalDescendants\":283.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"entity\"},{\"type\":[\"literal\"],\"value\":\"Entity\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Julius Caesar\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Verdi’s Requiem\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the Second World War\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"your body mass index\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Entity doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. For example Werner Ceusters \\u0027portions of reality\\u0027 include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, \\u0027How to track absolutely everything\\u0027 at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000004\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/001-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000001\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000001\"},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000001","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"entity","http__//purl.obolibrary.org/obo/BFO_0000180":"Entity","http__//purl.obolibrary.org/obo/IAO_0000112":["Julius Caesar","Verdi’s Requiem","the Second World War","your body mass index"],"http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81","Entity doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. For example Werner Ceusters \u0027portions of reality\u0027 include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, \u0027How to track absolutely everything\u0027 at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf"],"http__//purl.obolibrary.org/obo/IAO_0000600":"An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001])","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#Thing","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000001","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"entity","numDescendants":"301.0","numHierarchicalDescendants":"283.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000030","searchableAnnotationValues":["entity","Entity","Julius Caesar","Verdi’s Requiem","the Second World War","your body mass index","BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81","Entity doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. For example Werner Ceusters \u0027portions of reality\u0027 include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, \u0027How to track absolutely everything\u0027 at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf","An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001])","false"],"shortForm":"BFO_0000001","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"continuant\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Continuant\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Continuant doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster\\u0027s other portions of reality, questions are raised as to whether universals are continuants\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000007\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/008-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/126-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/009-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/011-002\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/009-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/126-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/008-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/011-002\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"numDescendants\":265.0,\"numHierarchicalDescendants\":247.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"continuant\"},{\"type\":[\"literal\"],\"value\":\"Continuant\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Continuant doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster\\u0027s other portions of reality, questions are raised as to whether universals are continuants\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000007\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/008-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/126-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/009-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/011-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/009-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/126-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/008-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/011-002\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"BFO:0000002\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000002\"},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000002","definition":"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000001","directParent":"http://purl.obolibrary.org/obo/BFO_0000001","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/BFO_0000001","hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"continuant","http__//purl.obolibrary.org/obo/BFO_0000180":"Continuant","http__//purl.obolibrary.org/obo/IAO_0000115":"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240","Continuant doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster\u0027s other portions of reality, questions are raised as to whether universals are continuants"],"http__//purl.obolibrary.org/obo/IAO_0000600":"A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002])","http__//purl.obolibrary.org/obo/IAO_0000601":["if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001])","if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002])","if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002])"],"http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] ","(forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] ","(forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] ","(forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"continuant","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000001","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/BFO_0000003"],"id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000002","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000002","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"continuant","numDescendants":"265.0","numHierarchicalDescendants":"247.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["continuant","Continuant","An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240","Continuant doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster\u0027s other portions of reality, questions are raised as to whether universals are continuants","A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002])","if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001])","if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002])","if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002])","(forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] ","(forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] ","(forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] ","(forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] ","false"],"shortForm":"BFO_0000002","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that has temporal parts and that happens, unfolds or develops through time.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"occurrent\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Occurrent\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that has temporal parts and that happens, unfolds or develops through time.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrent doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000006\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by \\u0027spn[e]\\u0027 and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write \\u0027spr[e]\\u0027 and `spl[e]\\u0027 respectively for the spread and spell of e, omitting mention of the frame.\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000012\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/077-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/108-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/079-001\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/108-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/079-001\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://www.w3.org/2002/07/owl#disjointWith\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"numDescendants\":34.0,\"numHierarchicalDescendants\":34.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"occurrent\"},{\"type\":[\"literal\"],\"value\":\"Occurrent\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that has temporal parts and that happens, unfolds or develops through time.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrent doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000006\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by \\u0027spn[e]\\u0027 and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write \\u0027spr[e]\\u0027 and `spl[e]\\u0027 respectively for the spread and spell of e, omitting mention of the frame.\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000012\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/077-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/108-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/079-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/108-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/079-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000003\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000003\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000003\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000003","definition":"An entity that has temporal parts and that happens, unfolds or develops through time.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000001","directParent":"http://purl.obolibrary.org/obo/BFO_0000001","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/BFO_0000001","hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"occurrent","http__//purl.obolibrary.org/obo/BFO_0000180":"Occurrent","http__//purl.obolibrary.org/obo/IAO_0000115":"An entity that has temporal parts and that happens, unfolds or develops through time.","http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region","BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.","Occurrent doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process.","Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by \u0027spn[e]\u0027 and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write \u0027spr[e]\u0027 and `spl[e]\u0027 respectively for the spread and spell of e, omitting mention of the frame."],"http__//purl.obolibrary.org/obo/IAO_0000600":"An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002])","http__//purl.obolibrary.org/obo/IAO_0000601":["Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001])","b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001])"],"http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] ","(forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"occurrent","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000001","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000003","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000003","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"occurrent","numDescendants":"34.0","numHierarchicalDescendants":"34.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["occurrent","Occurrent","An entity that has temporal parts and that happens, unfolds or develops through time.","BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region","BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.","Occurrent doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process.","Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by \u0027spn[e]\u0027 and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write \u0027spr[e]\u0027 and `spl[e]\u0027 respectively for the spread and spell of e, omitting mention of the frame.","An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002])","Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001])","b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001])","(forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] ","(forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] ","false"],"shortForm":"BFO_0000003","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an independent continuant \\u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/017-002\"}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"ic\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"IndependentContinuant\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a chair\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a heart\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a leg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a molecule\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an atom\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an orchestra.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an organism\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the bottom right portion of a human torso\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of your mouth\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an independent continuant \\u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/017-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/134-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/018-002\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/134-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/018-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/017-002\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000031\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"numDescendants\":18.0,\"numHierarchicalDescendants\":18.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"ic\"},{\"type\":[\"literal\"],\"value\":\"IndependentContinuant\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a chair\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a heart\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a leg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a molecule\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an atom\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an orchestra.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an organism\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the bottom right portion of a human torso\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of your mouth\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an independent continuant \\u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/017-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/134-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/018-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/134-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/018-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/017-002\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000004\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000004\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000004\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000004","definition":"b is an independent continuant \u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000002","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000002","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"ic","http__//purl.obolibrary.org/obo/BFO_0000180":"IndependentContinuant","http__//purl.obolibrary.org/obo/IAO_0000112":["a chair","a heart","a leg","a molecule","a spatial region","an atom","an orchestra.","an organism","the bottom right portion of a human torso","the interior of your mouth"],"http__//purl.obolibrary.org/obo/IAO_0000115":"b is an independent continuant \u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])","http__//purl.obolibrary.org/obo/IAO_0000601":["For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001])","For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002])"],"http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] ","(forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] ","(iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"independent continuant","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000031"],"id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000004","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000004","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"independent continuant","numDescendants":"18.0","numHierarchicalDescendants":"18.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["ic","IndependentContinuant","a chair","a heart","a leg","a molecule","a spatial region","an atom","an orchestra.","an organism","the bottom right portion of a human torso","the interior of your mouth","b is an independent continuant \u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])","For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001])","For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002])","(forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] ","(forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] ","(iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] ","false"],"shortForm":"BFO_0000004","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000006\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"s-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"SpatialRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Spatial regions do not participate in processes.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Spatial region doesn\\u0027t have a closure axiom because the subclasses don\\u0027t exhaust all possibilites. An example would be the union of a spatial point and a spatial line that doesn\\u0027t overlap the point, or two spatial lines that intersect at a single point. In both cases the resultant spatial region is neither 0-dimensional, 1-dimensional, 2-dimensional, or 3-dimensional.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000002\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"}}]}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A spatial region is a continuant entity that is a continuant_part_of spaceR as defined relative to some frame R. (axiom label in BFO2 Reference: [035-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/035-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All continuant parts of spatial regions are spatial regions. (axiom label in BFO2 Reference: [036-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/036-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y t) (if (and (SpatialRegion x) (continuantPartOfAt y x t)) (SpatialRegion y))) // axiom label in BFO2 CLIF: [036-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/036-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (SpatialRegion x) (Continuant x))) // axiom label in BFO2 CLIF: [035-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/035-001\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatial region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/BFO_0000029\",\"http://purl.obolibrary.org/obo/BFO_0000140\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatial region\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"s-region\"},{\"type\":[\"literal\"],\"value\":\"SpatialRegion\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Spatial regions do not participate in processes.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Spatial region doesn\\u0027t have a closure axiom because the subclasses don\\u0027t exhaust all possibilites. An example would be the union of a spatial point and a spatial line that doesn\\u0027t overlap the point, or two spatial lines that intersect at a single point. In both cases the resultant spatial region is neither 0-dimensional, 1-dimensional, 2-dimensional, or 3-dimensional.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000002\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A spatial region is a continuant entity that is a continuant_part_of spaceR as defined relative to some frame R. (axiom label in BFO2 Reference: [035-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/035-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All continuant parts of spatial regions are spatial regions. (axiom label in BFO2 Reference: [036-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/036-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y t) (if (and (SpatialRegion x) (continuantPartOfAt y x t)) (SpatialRegion y))) // axiom label in BFO2 CLIF: [036-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/036-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (SpatialRegion x) (Continuant x))) // axiom label in BFO2 CLIF: [035-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/035-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000006\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"BFO:0000006\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000006\"},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000029\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"site\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000029\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000140\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant fiat boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000140\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000006","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000141","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000141","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"s-region","http__//purl.obolibrary.org/obo/BFO_0000180":"SpatialRegion","http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: Spatial regions do not participate in processes.","Spatial region doesn\u0027t have a closure axiom because the subclasses don\u0027t exhaust all possibilites. An example would be the union of a spatial point and a spatial line that doesn\u0027t overlap the point, or two spatial lines that intersect at a single point. In both cases the resultant spatial region is neither 0-dimensional, 1-dimensional, 2-dimensional, or 3-dimensional."],"http__//purl.obolibrary.org/obo/IAO_0000600":"A spatial region is a continuant entity that is a continuant_part_of spaceR as defined relative to some frame R. (axiom label in BFO2 Reference: [035-001])","http__//purl.obolibrary.org/obo/IAO_0000601":"All continuant parts of spatial regions are spatial regions. (axiom label in BFO2 Reference: [036-001])","http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x y t) (if (and (SpatialRegion x) (continuantPartOfAt y x t)) (SpatialRegion y))) // axiom label in BFO2 CLIF: [036-001] ","(forall (x) (if (SpatialRegion x) (Continuant x))) // axiom label in BFO2 CLIF: [035-001] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"spatial region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000141","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/BFO_0000029","http://purl.obolibrary.org/obo/BFO_0000140"],"id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000006","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000006","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"spatial region","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["s-region","SpatialRegion","BFO 2 Reference: Spatial regions do not participate in processes.","Spatial region doesn\u0027t have a closure axiom because the subclasses don\u0027t exhaust all possibilites. An example would be the union of a spatial point and a spatial line that doesn\u0027t overlap the point, or two spatial lines that intersect at a single point. In both cases the resultant spatial region is neither 0-dimensional, 1-dimensional, 2-dimensional, or 3-dimensional.","A spatial region is a continuant entity that is a continuant_part_of spaceR as defined relative to some frame R. (axiom label in BFO2 Reference: [035-001])","All continuant parts of spatial regions are spatial regions. (axiom label in BFO2 Reference: [036-001])","(forall (x y t) (if (and (SpatialRegion x) (continuantPartOfAt y x t)) (SpatialRegion y))) // axiom label in BFO2 CLIF: [036-001] ","(forall (x) (if (SpatialRegion x) (Continuant x))) // axiom label in BFO2 CLIF: [035-001] ","false"],"shortForm":"BFO_0000006","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000008\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000008\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"t-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"TemporalRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Temporal region doesn\\u0027t have a closure axiom because the subclasses don\\u0027t exhaust all possibilites. An example would be the mereological sum of a temporal instant and a temporal interval that doesn\\u0027t overlap the instant. In this case the resultant temporal region is neither 0-dimensional nor 1-dimensional\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000003\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"}}]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A temporal region is an occurrent entity that is part of time as defined relative to some reference frame. (axiom label in BFO2 Reference: [100-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/100-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All parts of temporal regions are temporal regions. (axiom label in BFO2 Reference: [101-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/101-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every temporal region t is such that t occupies_temporal_region t. (axiom label in BFO2 Reference: [119-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/119-002\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/119-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/101-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/100-001\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/BFO_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000035\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal region\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"t-region\"},{\"type\":[\"literal\"],\"value\":\"TemporalRegion\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Temporal region doesn\\u0027t have a closure axiom because the subclasses don\\u0027t exhaust all possibilites. An example would be the mereological sum of a temporal instant and a temporal interval that doesn\\u0027t overlap the instant. In this case the resultant temporal region is neither 0-dimensional nor 1-dimensional\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000003\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A temporal region is an occurrent entity that is part of time as defined relative to some reference frame. (axiom label in BFO2 Reference: [100-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/100-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All parts of temporal regions are temporal regions. (axiom label in BFO2 Reference: [101-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/101-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every temporal region t is such that t occupies_temporal_region t. (axiom label in BFO2 Reference: [119-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/119-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/119-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/101-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/100-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000008\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatiotemporal region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000008\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000008\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000008\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000035\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000035\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000008","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000003","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"t-region","http__//purl.obolibrary.org/obo/BFO_0000180":"TemporalRegion","http__//purl.obolibrary.org/obo/IAO_0000116":"Temporal region doesn\u0027t have a closure axiom because the subclasses don\u0027t exhaust all possibilites. An example would be the mereological sum of a temporal instant and a temporal interval that doesn\u0027t overlap the instant. In this case the resultant temporal region is neither 0-dimensional nor 1-dimensional","http__//purl.obolibrary.org/obo/IAO_0000600":"A temporal region is an occurrent entity that is part of time as defined relative to some reference frame. (axiom label in BFO2 Reference: [100-001])","http__//purl.obolibrary.org/obo/IAO_0000601":["All parts of temporal regions are temporal regions. (axiom label in BFO2 Reference: [101-001])","Every temporal region t is such that t occupies_temporal_region t. (axiom label in BFO2 Reference: [119-002])"],"http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002] ","(forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001] ","(forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"temporal region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/BFO_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000035"],"id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000008","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000008","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"temporal region","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["t-region","TemporalRegion","Temporal region doesn\u0027t have a closure axiom because the subclasses don\u0027t exhaust all possibilites. An example would be the mereological sum of a temporal instant and a temporal interval that doesn\u0027t overlap the instant. In this case the resultant temporal region is neither 0-dimensional nor 1-dimensional","A temporal region is an occurrent entity that is part of time as defined relative to some reference frame. (axiom label in BFO2 Reference: [100-001])","All parts of temporal regions are temporal regions. (axiom label in BFO2 Reference: [101-001])","Every temporal region t is such that t occupies_temporal_region t. (axiom label in BFO2 Reference: [119-002])","(forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002] ","(forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001] ","(forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001] ","false"],"shortForm":"BFO_0000008","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000009\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000009\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"2d-s-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"TwoDimensionalSpatialRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an infinitely thin plane in space.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the surface of a sphere-shaped part of space\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A two-dimensional spatial region is a spatial region that is of two dimensions. (axiom label in BFO2 Reference: [039-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/039-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (TwoDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [039-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/039-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two-dimensional spatial region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000028\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two-dimensional spatial region\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"2d-s-region\"},{\"type\":[\"literal\"],\"value\":\"TwoDimensionalSpatialRegion\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an infinitely thin plane in space.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the surface of a sphere-shaped part of space\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A two-dimensional spatial region is a spatial region that is of two dimensions. (axiom label in BFO2 Reference: [039-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/039-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (TwoDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [039-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/039-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000009\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000006\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000009\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000009\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000009\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000009","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"2d-s-region","http__//purl.obolibrary.org/obo/BFO_0000180":"TwoDimensionalSpatialRegion","http__//purl.obolibrary.org/obo/IAO_0000112":["an infinitely thin plane in space.","the surface of a sphere-shaped part of space"],"http__//purl.obolibrary.org/obo/IAO_0000600":"A two-dimensional spatial region is a spatial region that is of two dimensions. (axiom label in BFO2 Reference: [039-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (TwoDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [039-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"two-dimensional spatial region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000006","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000028","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000009","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000009","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"two-dimensional spatial region","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["2d-s-region","TwoDimensionalSpatialRegion","an infinitely thin plane in space.","the surface of a sphere-shaped part of space","A two-dimensional spatial region is a spatial region that is of two dimensions. (axiom label in BFO2 Reference: [039-001])","(forall (x) (if (TwoDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [039-001] ","false"],"shortForm":"BFO_0000009","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000011\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000011\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"st-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"SpatiotemporalRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the spatiotemporal region occupied by a human life\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the spatiotemporal region occupied by a process of cellular meiosis.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the spatiotemporal region occupied by the development of a cancer tumor\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A spatiotemporal region is an occurrent entity that is part of spacetime. (axiom label in BFO2 Reference: [095-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/095-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All parts of spatiotemporal regions are spatiotemporal regions. (axiom label in BFO2 Reference: [096-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/096-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Each spatiotemporal region at any time t projects_onto some spatial region at t. (axiom label in BFO2 Reference: [099-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/099-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Each spatiotemporal region projects_onto some temporal region. (axiom label in BFO2 Reference: [098-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/098-001\"}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every spatiotemporal region occupies_spatiotemporal_region itself.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every spatiotemporal region s is such that s occupies_spatiotemporal_region s. (axiom label in BFO2 Reference: [107-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/107-002\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (r) (if (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion r r))) // axiom label in BFO2 CLIF: [107-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/107-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (SpatioTemporalRegion x) (exists (y) (and (SpatialRegion y) (spatiallyProjectsOntoAt x y t))))) // axiom label in BFO2 CLIF: [099-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/099-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (and (SpatioTemporalRegion x) (occurrentPartOf y x)) (SpatioTemporalRegion y))) // axiom label in BFO2 CLIF: [096-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/096-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (SpatioTemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [095-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/095-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (SpatioTemporalRegion x) (exists (y) (and (TemporalRegion y) (temporallyProjectsOnto x y))))) // axiom label in BFO2 CLIF: [098-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/098-001\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatiotemporal region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatiotemporal region\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"st-region\"},{\"type\":[\"literal\"],\"value\":\"SpatiotemporalRegion\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the spatiotemporal region occupied by a human life\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the spatiotemporal region occupied by a process of cellular meiosis.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the spatiotemporal region occupied by the development of a cancer tumor\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A spatiotemporal region is an occurrent entity that is part of spacetime. (axiom label in BFO2 Reference: [095-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/095-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All parts of spatiotemporal regions are spatiotemporal regions. (axiom label in BFO2 Reference: [096-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/096-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Each spatiotemporal region at any time t projects_onto some spatial region at t. (axiom label in BFO2 Reference: [099-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/099-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Each spatiotemporal region projects_onto some temporal region. (axiom label in BFO2 Reference: [098-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/098-001\"}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every spatiotemporal region occupies_spatiotemporal_region itself.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every spatiotemporal region s is such that s occupies_spatiotemporal_region s. (axiom label in BFO2 Reference: [107-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/107-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (r) (if (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion r r))) // axiom label in BFO2 CLIF: [107-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/107-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (SpatioTemporalRegion x) (exists (y) (and (SpatialRegion y) (spatiallyProjectsOntoAt x y t))))) // axiom label in BFO2 CLIF: [099-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/099-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (and (SpatioTemporalRegion x) (occurrentPartOf y x)) (SpatioTemporalRegion y))) // axiom label in BFO2 CLIF: [096-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/096-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (SpatioTemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [095-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/095-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (SpatioTemporalRegion x) (exists (y) (and (TemporalRegion y) (temporallyProjectsOnto x y))))) // axiom label in BFO2 CLIF: [098-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/098-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000011\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000011\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000011\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000011\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000011","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000003","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"st-region","http__//purl.obolibrary.org/obo/BFO_0000180":"SpatiotemporalRegion","http__//purl.obolibrary.org/obo/IAO_0000112":["the spatiotemporal region occupied by a human life","the spatiotemporal region occupied by a process of cellular meiosis.","the spatiotemporal region occupied by the development of a cancer tumor"],"http__//purl.obolibrary.org/obo/IAO_0000600":"A spatiotemporal region is an occurrent entity that is part of spacetime. (axiom label in BFO2 Reference: [095-001])","http__//purl.obolibrary.org/obo/IAO_0000601":["All parts of spatiotemporal regions are spatiotemporal regions. (axiom label in BFO2 Reference: [096-001])","Each spatiotemporal region at any time t projects_onto some spatial region at t. (axiom label in BFO2 Reference: [099-001])","Each spatiotemporal region projects_onto some temporal region. (axiom label in BFO2 Reference: [098-001])","Every spatiotemporal region occupies_spatiotemporal_region itself.","Every spatiotemporal region s is such that s occupies_spatiotemporal_region s. (axiom label in BFO2 Reference: [107-002])"],"http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (r) (if (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion r r))) // axiom label in BFO2 CLIF: [107-002] ","(forall (x t) (if (SpatioTemporalRegion x) (exists (y) (and (SpatialRegion y) (spatiallyProjectsOntoAt x y t))))) // axiom label in BFO2 CLIF: [099-001] ","(forall (x y) (if (and (SpatioTemporalRegion x) (occurrentPartOf y x)) (SpatioTemporalRegion y))) // axiom label in BFO2 CLIF: [096-001] ","(forall (x) (if (SpatioTemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [095-001] ","(forall (x) (if (SpatioTemporalRegion x) (exists (y) (and (TemporalRegion y) (temporallyProjectsOnto x y))))) // axiom label in BFO2 CLIF: [098-001] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"spatiotemporal region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000003","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000011","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000011","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"spatiotemporal region","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["st-region","SpatiotemporalRegion","the spatiotemporal region occupied by a human life","the spatiotemporal region occupied by a process of cellular meiosis.","the spatiotemporal region occupied by the development of a cancer tumor","A spatiotemporal region is an occurrent entity that is part of spacetime. (axiom label in BFO2 Reference: [095-001])","All parts of spatiotemporal regions are spatiotemporal regions. (axiom label in BFO2 Reference: [096-001])","Each spatiotemporal region at any time t projects_onto some spatial region at t. (axiom label in BFO2 Reference: [099-001])","Each spatiotemporal region projects_onto some temporal region. (axiom label in BFO2 Reference: [098-001])","Every spatiotemporal region occupies_spatiotemporal_region itself.","Every spatiotemporal region s is such that s occupies_spatiotemporal_region s. (axiom label in BFO2 Reference: [107-002])","(forall (r) (if (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion r r))) // axiom label in BFO2 CLIF: [107-002] ","(forall (x t) (if (SpatioTemporalRegion x) (exists (y) (and (SpatialRegion y) (spatiallyProjectsOntoAt x y t))))) // axiom label in BFO2 CLIF: [099-001] ","(forall (x y) (if (and (SpatioTemporalRegion x) (occurrentPartOf y x)) (SpatioTemporalRegion y))) // axiom label in BFO2 CLIF: [096-001] ","(forall (x) (if (SpatioTemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [095-001] ","(forall (x) (if (SpatioTemporalRegion x) (exists (y) (and (TemporalRegion y) (temporallyProjectsOnto x y))))) // axiom label in BFO2 CLIF: [098-001] ","false"],"shortForm":"BFO_0000011","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"p is a process \\u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/083-003\"}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"process\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Process\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a process of cell-division, \\\\ a beating of the heart\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a process of meiosis\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a process of sleeping\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the course of a disease\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the flight of a bird\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the life of an organism\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"your process of aging.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"p is a process \\u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/083-003\"}]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/083-003\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"numDescendants\":28.0,\"numHierarchicalDescendants\":28.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"process\"},{\"type\":[\"literal\"],\"value\":\"Process\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a process of cell-division, \\\\ a beating of the heart\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a process of meiosis\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a process of sleeping\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the course of a disease\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the flight of a bird\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the life of an organism\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"your process of aging.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"p is a process \\u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/083-003\"}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/083-003\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000015\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000015\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000015\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000015","definition":"p is a process \u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000003","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"process","http__//purl.obolibrary.org/obo/BFO_0000180":"Process","http__//purl.obolibrary.org/obo/IAO_0000112":["a process of cell-division, \\ a beating of the heart","a process of meiosis","a process of sleeping","the course of a disease","the flight of a bird","the life of an organism","your process of aging."],"http__//purl.obolibrary.org/obo/IAO_0000115":"p is a process \u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)","http__//purl.obolibrary.org/obo/IAO_0000602":"(iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000003","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000015","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000015","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"process","numDescendants":"28.0","numHierarchicalDescendants":"28.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["process","Process","a process of cell-division, \\ a beating of the heart","a process of meiosis","a process of sleeping","the course of a disease","the flight of a bird","the life of an organism","your process of aging.","p is a process \u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])","BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)","(iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] ","false"],"shortForm":"BFO_0000015","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"disposition\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Disposition\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an atom of element X has the disposition to decay to an atom of element Y\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"certain people have a predisposition to colon cancer\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"children are innately disposed to categorize objects in certain ways.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the cell wall is disposed to filter chemicals in endocytosis and exocytosis\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a disposition means: b is a realizable entity \\u0026 b’s bearer is some material entity \\u0026 b is such that if it ceases to exist, then its bearer is physically changed, \\u0026 b’s realization occurs when and because this bearer is in some special physical circumstances, \\u0026 this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/062-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"If b is a realizable entity then for all t at which b exists, b s-depends_on some material entity at t. (axiom label in BFO2 Reference: [063-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/063-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/063-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/062-002\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"disposition\"},{\"type\":[\"literal\"],\"value\":\"Disposition\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an atom of element X has the disposition to decay to an atom of element Y\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"certain people have a predisposition to colon cancer\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"children are innately disposed to categorize objects in certain ways.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the cell wall is disposed to filter chemicals in endocytosis and exocytosis\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a disposition means: b is a realizable entity \\u0026 b’s bearer is some material entity \\u0026 b is such that if it ceases to exist, then its bearer is physically changed, \\u0026 b’s realization occurs when and because this bearer is in some special physical circumstances, \\u0026 this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/062-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"If b is a realizable entity then for all t at which b exists, b s-depends_on some material entity at t. (axiom label in BFO2 Reference: [063-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/063-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/063-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/062-002\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000016\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000016\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000016\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000023\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000016","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000017","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000017","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"disposition","http__//purl.obolibrary.org/obo/BFO_0000180":"Disposition","http__//purl.obolibrary.org/obo/IAO_0000112":["an atom of element X has the disposition to decay to an atom of element Y","certain people have a predisposition to colon cancer","children are innately disposed to categorize objects in certain ways.","the cell wall is disposed to filter chemicals in endocytosis and exocytosis"],"http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.","http__//purl.obolibrary.org/obo/IAO_0000600":"b is a disposition means: b is a realizable entity \u0026 b’s bearer is some material entity \u0026 b is such that if it ceases to exist, then its bearer is physically changed, \u0026 b’s realization occurs when and because this bearer is in some special physical circumstances, \u0026 this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002])","http__//purl.obolibrary.org/obo/IAO_0000601":"If b is a realizable entity then for all t at which b exists, b s-depends_on some material entity at t. (axiom label in BFO2 Reference: [063-002])","http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002] ","(forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"disposition","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000017","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000023","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000016","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000016","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disposition","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["disposition","Disposition","an atom of element X has the disposition to decay to an atom of element Y","certain people have a predisposition to colon cancer","children are innately disposed to categorize objects in certain ways.","the cell wall is disposed to filter chemicals in endocytosis and exocytosis","BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.","b is a disposition means: b is a realizable entity \u0026 b’s bearer is some material entity \u0026 b is such that if it ceases to exist, then its bearer is physically changed, \u0026 b’s realization occurs when and because this bearer is in some special physical circumstances, \u0026 this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002])","If b is a realizable entity then for all t at which b exists, b s-depends_on some material entity at t. (axiom label in BFO2 Reference: [063-002])","(forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002] ","(forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002] ","false"],"shortForm":"BFO_0000016","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"realizable\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"RealizableEntity\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the disposition of this piece of metal to conduct electricity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the disposition of your blood to coagulate\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of your reproductive organs\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of being a doctor\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of this boundary to delineate where Utah and Colorado meet\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/058-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/060-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/060-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/058-002\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"realizable\"},{\"type\":[\"literal\"],\"value\":\"RealizableEntity\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the disposition of this piece of metal to conduct electricity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the disposition of your blood to coagulate\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of your reproductive organs\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of being a doctor\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of this boundary to delineate where Utah and Colorado meet\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/058-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/060-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/060-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/058-002\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000017\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"BFO:0000017\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000017\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000017","definition":"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000020","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000020","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"realizable","http__//purl.obolibrary.org/obo/BFO_0000180":"RealizableEntity","http__//purl.obolibrary.org/obo/IAO_0000112":["the disposition of this piece of metal to conduct electricity.","the disposition of your blood to coagulate","the function of your reproductive organs","the role of being a doctor","the role of this boundary to delineate where Utah and Colorado meet"],"http__//purl.obolibrary.org/obo/IAO_0000115":"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","http__//purl.obolibrary.org/obo/IAO_0000600":"To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002])","http__//purl.obolibrary.org/obo/IAO_0000601":"All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002])","http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] ","(forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"realizable entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000020","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000019","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000017","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000017","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"realizable entity","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000033","searchableAnnotationValues":["realizable","RealizableEntity","the disposition of this piece of metal to conduct electricity.","the disposition of your blood to coagulate","the function of your reproductive organs","the role of being a doctor","the role of this boundary to delineate where Utah and Colorado meet","A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002])","All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002])","(forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] ","(forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] ","false"],"shortForm":"BFO_0000017","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000018\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000018\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"0d-s-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ZeroDimensionalSpatialRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A zero-dimensional spatial region is a point in space. (axiom label in BFO2 Reference: [037-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/037-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ZeroDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [037-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/037-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional spatial region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000028\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional spatial region\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000018\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000401\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000026\",\"isObsolete\":false}]},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000402\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000009\",\"isObsolete\":false}]},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000403\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000028\",\"isObsolete\":false}]}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"0d-s-region\"},{\"type\":[\"literal\"],\"value\":\"ZeroDimensionalSpatialRegion\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A zero-dimensional spatial region is a point in space. (axiom label in BFO2 Reference: [037-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/037-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ZeroDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [037-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/037-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000018\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"BFO:0000018\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000018\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000018\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000006\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000402\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000402\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000403\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000403\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000401\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000401\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000219\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000026\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000018","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"0d-s-region","http__//purl.obolibrary.org/obo/BFO_0000180":"ZeroDimensionalSpatialRegion","http__//purl.obolibrary.org/obo/IAO_0000600":"A zero-dimensional spatial region is a point in space. (axiom label in BFO2 Reference: [037-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (ZeroDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [037-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"zero-dimensional spatial region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000006","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000028","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000018","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000018","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"zero-dimensional spatial region","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000401","http://purl.obolibrary.org/obo/IAO_0000402","http://purl.obolibrary.org/obo/IAO_0000403"],"searchableAnnotationValues":["0d-s-region","ZeroDimensionalSpatialRegion","A zero-dimensional spatial region is a point in space. (axiom label in BFO2 Reference: [037-001])","(forall (x) (if (ZeroDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [037-001] ","false"],"shortForm":"BFO_0000018","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Quality\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the ambient temperature of this portion of air\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the color of a tomato\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the length of the circumference of your waist\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the mass of this piece of gold.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the shape of your nose\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the shape of your nostril\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/055-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"If an entity is a quality at any time that it exists, then it is a quality at every time that it exists. (axiom label in BFO2 Reference: [105-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/105-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/055-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/105-001\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"numDescendants\":7.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"quality\"},{\"type\":[\"literal\"],\"value\":\"Quality\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the ambient temperature of this portion of air\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the color of a tomato\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the length of the circumference of your waist\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the mass of this piece of gold.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the shape of your nose\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the shape of your nostril\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/055-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"If an entity is a quality at any time that it exists, then it is a quality at every time that it exists. (axiom label in BFO2 Reference: [105-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/105-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/055-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/105-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000019\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"BFO:0000019\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000019\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000019","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000020","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000020","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"quality","http__//purl.obolibrary.org/obo/BFO_0000180":"Quality","http__//purl.obolibrary.org/obo/IAO_0000112":["the ambient temperature of this portion of air","the color of a tomato","the length of the circumference of your waist","the mass of this piece of gold.","the shape of your nose","the shape of your nostril"],"http__//purl.obolibrary.org/obo/IAO_0000600":"a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001])","http__//purl.obolibrary.org/obo/IAO_0000601":"If an entity is a quality at any time that it exists, then it is a quality at every time that it exists. (axiom label in BFO2 Reference: [105-001])","http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001] ","(forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000020","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000019","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000019","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"quality","numDescendants":"7.0","numHierarchicalDescendants":"7.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["quality","Quality","the ambient temperature of this portion of air","the color of a tomato","the length of the circumference of your waist","the mass of this piece of gold.","the shape of your nose","the shape of your nostril","a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001])","If an entity is a quality at any time that it exists, then it is a quality at every time that it exists. (axiom label in BFO2 Reference: [105-001])","(forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001] ","(forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001] ","false"],"shortForm":"BFO_0000019","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a specifically dependent continuant \\u003d Def. b is a continuant \\u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/050-003\"}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"sdc\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"SpecificallyDependentContinuant\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"of one-sided specifically dependent continuants: the mass of this tomato\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the disposition of this fish to decay\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of this heart: to pump blood\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the mutual dependence of proton donors and acceptors in chemical reactions [79\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the pink color of a medium rare piece of grilled filet mignon at its center\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of being a doctor\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the shape of this hole.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the smell of this portion of mozzarella\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a specifically dependent continuant \\u003d Def. b is a continuant \\u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/050-003\"}]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Specifically dependent continuant doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. We\\u0027re not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000005\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"}}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/050-003\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000031\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"numDescendants\":14.0,\"numHierarchicalDescendants\":14.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"sdc\"},{\"type\":[\"literal\"],\"value\":\"SpecificallyDependentContinuant\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"of one-sided specifically dependent continuants: the mass of this tomato\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the disposition of this fish to decay\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of this heart: to pump blood\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the mutual dependence of proton donors and acceptors in chemical reactions [79\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the pink color of a medium rare piece of grilled filet mignon at its center\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of being a doctor\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the shape of this hole.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the smell of this portion of mozzarella\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a specifically dependent continuant \\u003d Def. b is a continuant \\u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/050-003\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Specifically dependent continuant doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. We\\u0027re not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000005\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/050-003\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000020\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"BFO:0000020\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000020\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000020","definition":"b is a specifically dependent continuant \u003d Def. b is a continuant \u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000002","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000002","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"sdc","http__//purl.obolibrary.org/obo/BFO_0000180":"SpecificallyDependentContinuant","http__//purl.obolibrary.org/obo/IAO_0000112":["Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key","of one-sided specifically dependent continuants: the mass of this tomato","of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates.","the disposition of this fish to decay","the function of this heart: to pump blood","the mutual dependence of proton donors and acceptors in chemical reactions [79","the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction","the pink color of a medium rare piece of grilled filet mignon at its center","the role of being a doctor","the shape of this hole.","the smell of this portion of mozzarella"],"http__//purl.obolibrary.org/obo/IAO_0000115":"b is a specifically dependent continuant \u003d Def. b is a continuant \u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])","http__//purl.obolibrary.org/obo/IAO_0000116":"Specifically dependent continuant doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. We\u0027re not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc.","http__//purl.obolibrary.org/obo/IAO_0000602":"(iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"specifically dependent continuant","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000031","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000020","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000020","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"specifically dependent continuant","numDescendants":"14.0","numHierarchicalDescendants":"14.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["sdc","SpecificallyDependentContinuant","Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key","of one-sided specifically dependent continuants: the mass of this tomato","of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates.","the disposition of this fish to decay","the function of this heart: to pump blood","the mutual dependence of proton donors and acceptors in chemical reactions [79","the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction","the pink color of a medium rare piece of grilled filet mignon at its center","the role of being a doctor","the shape of this hole.","the smell of this portion of mozzarella","b is a specifically dependent continuant \u003d Def. b is a continuant \u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])","Specifically dependent continuant doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. We\u0027re not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc.","(iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] ","false"],"shortForm":"BFO_0000020","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000023\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"role\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Role\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the priest role\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of a boundary to demarcate two neighboring administrative territories\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of a building in serving as a military target\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of a stone in marking a property boundary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of subject in a clinical trial\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the student role\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \\u003dDef. there is some c, c instance_of professor role \\u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a role means: b is a realizable entity \\u0026 b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be\\u0026 b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/061-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/061-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"role\"},{\"type\":[\"literal\"],\"value\":\"Role\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the priest role\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of a boundary to demarcate two neighboring administrative territories\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of a building in serving as a military target\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of a stone in marking a property boundary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of subject in a clinical trial\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the student role\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \\u003dDef. there is some c, c instance_of professor role \\u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a role means: b is a realizable entity \\u0026 b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be\\u0026 b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/061-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/061-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000023\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000023\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000023\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000023","definition":"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000017","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000017","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"role","http__//purl.obolibrary.org/obo/BFO_0000180":"Role","http__//purl.obolibrary.org/obo/IAO_0000112":["John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.","the priest role","the role of a boundary to demarcate two neighboring administrative territories","the role of a building in serving as a military target","the role of a stone in marking a property boundary","the role of subject in a clinical trial","the student role"],"http__//purl.obolibrary.org/obo/IAO_0000115":"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \u003dDef. there is some c, c instance_of professor role \u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.","http__//purl.obolibrary.org/obo/IAO_0000600":"b is a role means: b is a realizable entity \u0026 b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be\u0026 b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"role","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000017","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000023","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000023","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"role","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["role","Role","John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.","the priest role","the role of a boundary to demarcate two neighboring administrative territories","the role of a building in serving as a military target","the role of a stone in marking a property boundary","the role of subject in a clinical trial","the student role","A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \u003dDef. there is some c, c instance_of professor role \u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.","b is a role means: b is a realizable entity \u0026 b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be\u0026 b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001])","(forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] ","false"],"shortForm":"BFO_0000023","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000024\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000024\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"fiat-object-part\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"FiatObjectPart\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"or with divisions drawn by cognitive subjects for practical reasons, such as the division of a cake (before slicing) into (what will become) slices (and thus member parts of an object aggregate). However, this does not mean that fiat object parts are dependent for their existence on divisions or delineations effected by cognitive subjects. If, for example, it is correct to conceive geological layers of the Earth as fiat object parts of the Earth, then even though these layers were first delineated in recent times, still existed long before such delineation and what holds of these layers (for example that the oldest layers are also the lowest layers) did not begin to hold because of our acts of delineation.Treatment of material entity in BFOExamples viewed by some as problematic cases for the trichotomy of fiat object part, object, and object aggregate include: a mussel on (and attached to) a rock, a slime mold, a pizza, a cloud, a galaxy, a railway train with engine and multiple carriages, a clonal stand of quaking aspen, a bacterial community (biofilm), a broken femur. Note that, as Aristotle already clearly recognized, such problematic cases – which lie at or near the penumbra of instances defined by the categories in question – need not invalidate these categories. The existence of grey objects does not prove that there are not objects which are black and objects which are white; the existence of mules does not prove that there are not objects which are donkeys and objects which are horses. It does, however, show that the examples in question need to be addressed carefully in order to show how they can be fitted into the proposed scheme, for example by recognizing additional subdivisions [29\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the FMA:regional parts of an intact human body.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the Western hemisphere of the Earth\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the division of the brain into regions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the division of the planet into hemispheres\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the dorsal and ventral surfaces of the body\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the upper and lower lobes of the left lung\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Most examples of fiat object parts are associated with theoretically drawn divisions\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a fiat object part \\u003d Def. b is a material entity which is such that for all times t, if b exists at t then there is some object c such that b proper continuant_part of c at t and c is demarcated from the remainder of c by a two-dimensional continuant fiat boundary. (axiom label in BFO2 Reference: [027-004])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/027-004\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (FiatObjectPart x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y) (and (Object y) (properContinuantPartOfAt x y t)))))))) // axiom label in BFO2 CLIF: [027-004] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/027-004\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"fiat object part\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"fiat object part\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"fiat-object-part\"},{\"type\":[\"literal\"],\"value\":\"FiatObjectPart\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"or with divisions drawn by cognitive subjects for practical reasons, such as the division of a cake (before slicing) into (what will become) slices (and thus member parts of an object aggregate). However, this does not mean that fiat object parts are dependent for their existence on divisions or delineations effected by cognitive subjects. If, for example, it is correct to conceive geological layers of the Earth as fiat object parts of the Earth, then even though these layers were first delineated in recent times, still existed long before such delineation and what holds of these layers (for example that the oldest layers are also the lowest layers) did not begin to hold because of our acts of delineation.Treatment of material entity in BFOExamples viewed by some as problematic cases for the trichotomy of fiat object part, object, and object aggregate include: a mussel on (and attached to) a rock, a slime mold, a pizza, a cloud, a galaxy, a railway train with engine and multiple carriages, a clonal stand of quaking aspen, a bacterial community (biofilm), a broken femur. Note that, as Aristotle already clearly recognized, such problematic cases – which lie at or near the penumbra of instances defined by the categories in question – need not invalidate these categories. The existence of grey objects does not prove that there are not objects which are black and objects which are white; the existence of mules does not prove that there are not objects which are donkeys and objects which are horses. It does, however, show that the examples in question need to be addressed carefully in order to show how they can be fitted into the proposed scheme, for example by recognizing additional subdivisions [29\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the FMA:regional parts of an intact human body.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the Western hemisphere of the Earth\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the division of the brain into regions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the division of the planet into hemispheres\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the dorsal and ventral surfaces of the body\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the upper and lower lobes of the left lung\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Most examples of fiat object parts are associated with theoretically drawn divisions\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a fiat object part \\u003d Def. b is a material entity which is such that for all times t, if b exists at t then there is some object c such that b proper continuant_part of c at t and c is demarcated from the remainder of c by a two-dimensional continuant fiat boundary. (axiom label in BFO2 Reference: [027-004])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/027-004\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (FiatObjectPart x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y) (and (Object y) (properContinuantPartOfAt x y t)))))))) // axiom label in BFO2 CLIF: [027-004] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/027-004\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000024\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000024\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000024\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000024\"}}}","appearsIn":["duo"],"curie":"BFO:0000024","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000040","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000040","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"fiat-object-part","http__//purl.obolibrary.org/obo/BFO_0000180":"FiatObjectPart","http__//purl.obolibrary.org/obo/IAO_0000112":["or with divisions drawn by cognitive subjects for practical reasons, such as the division of a cake (before slicing) into (what will become) slices (and thus member parts of an object aggregate). However, this does not mean that fiat object parts are dependent for their existence on divisions or delineations effected by cognitive subjects. If, for example, it is correct to conceive geological layers of the Earth as fiat object parts of the Earth, then even though these layers were first delineated in recent times, still existed long before such delineation and what holds of these layers (for example that the oldest layers are also the lowest layers) did not begin to hold because of our acts of delineation.Treatment of material entity in BFOExamples viewed by some as problematic cases for the trichotomy of fiat object part, object, and object aggregate include: a mussel on (and attached to) a rock, a slime mold, a pizza, a cloud, a galaxy, a railway train with engine and multiple carriages, a clonal stand of quaking aspen, a bacterial community (biofilm), a broken femur. Note that, as Aristotle already clearly recognized, such problematic cases – which lie at or near the penumbra of instances defined by the categories in question – need not invalidate these categories. The existence of grey objects does not prove that there are not objects which are black and objects which are white; the existence of mules does not prove that there are not objects which are donkeys and objects which are horses. It does, however, show that the examples in question need to be addressed carefully in order to show how they can be fitted into the proposed scheme, for example by recognizing additional subdivisions [29","the FMA:regional parts of an intact human body.","the Western hemisphere of the Earth","the division of the brain into regions","the division of the planet into hemispheres","the dorsal and ventral surfaces of the body","the upper and lower lobes of the left lung"],"http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: Most examples of fiat object parts are associated with theoretically drawn divisions","http__//purl.obolibrary.org/obo/IAO_0000600":"b is a fiat object part \u003d Def. b is a material entity which is such that for all times t, if b exists at t then there is some object c such that b proper continuant_part of c at t and c is demarcated from the remainder of c by a two-dimensional continuant fiat boundary. (axiom label in BFO2 Reference: [027-004])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (FiatObjectPart x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y) (and (Object y) (properContinuantPartOfAt x y t)))))))) // axiom label in BFO2 CLIF: [027-004] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"fiat object part","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000040","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000024","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000024","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"fiat object part","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["fiat-object-part","FiatObjectPart","or with divisions drawn by cognitive subjects for practical reasons, such as the division of a cake (before slicing) into (what will become) slices (and thus member parts of an object aggregate). However, this does not mean that fiat object parts are dependent for their existence on divisions or delineations effected by cognitive subjects. If, for example, it is correct to conceive geological layers of the Earth as fiat object parts of the Earth, then even though these layers were first delineated in recent times, still existed long before such delineation and what holds of these layers (for example that the oldest layers are also the lowest layers) did not begin to hold because of our acts of delineation.Treatment of material entity in BFOExamples viewed by some as problematic cases for the trichotomy of fiat object part, object, and object aggregate include: a mussel on (and attached to) a rock, a slime mold, a pizza, a cloud, a galaxy, a railway train with engine and multiple carriages, a clonal stand of quaking aspen, a bacterial community (biofilm), a broken femur. Note that, as Aristotle already clearly recognized, such problematic cases – which lie at or near the penumbra of instances defined by the categories in question – need not invalidate these categories. The existence of grey objects does not prove that there are not objects which are black and objects which are white; the existence of mules does not prove that there are not objects which are donkeys and objects which are horses. It does, however, show that the examples in question need to be addressed carefully in order to show how they can be fitted into the proposed scheme, for example by recognizing additional subdivisions [29","the FMA:regional parts of an intact human body.","the Western hemisphere of the Earth","the division of the brain into regions","the division of the planet into hemispheres","the dorsal and ventral surfaces of the body","the upper and lower lobes of the left lung","BFO 2 Reference: Most examples of fiat object parts are associated with theoretically drawn divisions","b is a fiat object part \u003d Def. b is a material entity which is such that for all times t, if b exists at t then there is some object c such that b proper continuant_part of c at t and c is demarcated from the remainder of c by a two-dimensional continuant fiat boundary. (axiom label in BFO2 Reference: [027-004])","(forall (x) (if (FiatObjectPart x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y) (and (Object y) (properContinuantPartOfAt x y t)))))))) // axiom label in BFO2 CLIF: [027-004] ","false"],"shortForm":"BFO_0000024","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000026\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000026\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"1d-s-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"OneDimensionalSpatialRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an edge of a cube-shaped portion of space.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A one-dimensional spatial region is a line or aggregate of lines stretching from one point in space to another. (axiom label in BFO2 Reference: [038-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/038-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (OneDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [038-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/038-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one-dimensional spatial region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000028\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one-dimensional spatial region\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"1d-s-region\"},{\"type\":[\"literal\"],\"value\":\"OneDimensionalSpatialRegion\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an edge of a cube-shaped portion of space.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A one-dimensional spatial region is a line or aggregate of lines stretching from one point in space to another. (axiom label in BFO2 Reference: [038-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/038-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (OneDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [038-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/038-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000026\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000006\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000026\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000026\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000026\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000026","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"1d-s-region","http__//purl.obolibrary.org/obo/BFO_0000180":"OneDimensionalSpatialRegion","http__//purl.obolibrary.org/obo/IAO_0000112":"an edge of a cube-shaped portion of space.","http__//purl.obolibrary.org/obo/IAO_0000600":"A one-dimensional spatial region is a line or aggregate of lines stretching from one point in space to another. (axiom label in BFO2 Reference: [038-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (OneDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [038-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"one-dimensional spatial region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000006","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000028","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000026","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000026","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"one-dimensional spatial region","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["1d-s-region","OneDimensionalSpatialRegion","an edge of a cube-shaped portion of space.","A one-dimensional spatial region is a line or aggregate of lines stretching from one point in space to another. (axiom label in BFO2 Reference: [038-001])","(forall (x) (if (OneDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [038-001] ","false"],"shortForm":"BFO_0000026","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000027\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000027\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"object-aggregate\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ObjectAggregate\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a collection of cells in a blood biobank.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a swarm of bees is an aggregate of members who are linked together through natural bonds\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a symphony orchestra\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an organization is an aggregate whose member parts have roles of specific types (for example in a jazz band, a chess club, a football team)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined by fiat: the aggregate of members of an organization\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined through physical attachment: the aggregate of atoms in a lump of granite\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined through physical containment: the aggregate of molecules of carbon dioxide in a sealed container\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined via attributive delimitations such as: the patients in this hospital\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the aggregate of bearings in a constant velocity axle joint\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the aggregate of blood cells in your body\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the nitrogen atoms in the atmosphere\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the restaurants in Palo Alto\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"your collection of Meissen ceramic plates.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000301\"},{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000011\"}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: object aggregates may gain and lose parts while remaining numerically identical (one and the same individual) over time. This holds both for aggregates whose membership is determined naturally (the aggregate of cells in your body) and aggregates determined by fiat (a baseball team, a congressional committee).\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ISBN:978-3-938793-98-5pp124-158#Thomas Bittner and Barry Smith, \\u0027A Theory of Granular Partitions\\u0027, in K. Munn and B. Smith (eds.), Applied Ontology: An Introduction, Frankfurt/Lancaster: ontos, 2008, 125-158.\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000300\"}]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an object aggregate means: b is a material entity consisting exactly of a plurality of objects as member_parts at all times at which b exists. (axiom label in BFO2 Reference: [025-004])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/025-004\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (\\u003d y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/025-004\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"object aggregate\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"object aggregate\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"object-aggregate\"},{\"type\":[\"literal\"],\"value\":\"ObjectAggregate\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a collection of cells in a blood biobank.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a swarm of bees is an aggregate of members who are linked together through natural bonds\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a symphony orchestra\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an organization is an aggregate whose member parts have roles of specific types (for example in a jazz band, a chess club, a football team)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined by fiat: the aggregate of members of an organization\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined through physical attachment: the aggregate of atoms in a lump of granite\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined through physical containment: the aggregate of molecules of carbon dioxide in a sealed container\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined via attributive delimitations such as: the patients in this hospital\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the aggregate of bearings in a constant velocity axle joint\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the aggregate of blood cells in your body\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the nitrogen atoms in the atmosphere\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the restaurants in Palo Alto\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"your collection of Meissen ceramic plates.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000301\"},{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000011\"}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: object aggregates may gain and lose parts while remaining numerically identical (one and the same individual) over time. This holds both for aggregates whose membership is determined naturally (the aggregate of cells in your body) and aggregates determined by fiat (a baseball team, a congressional committee).\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ISBN:978-3-938793-98-5pp124-158#Thomas Bittner and Barry Smith, \\u0027A Theory of Granular Partitions\\u0027, in K. Munn and B. Smith (eds.), Applied Ontology: An Introduction, Frankfurt/Lancaster: ontos, 2008, 125-158.\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000300\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an object aggregate means: b is a material entity consisting exactly of a plurality of objects as member_parts at all times at which b exists. (axiom label in BFO2 Reference: [025-004])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/025-004\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (\\u003d y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/025-004\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000027\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"ISBN:978\":{\"url\":\"https://www.worldcat.org/search?q\\u003dbn%3A978\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ISBN:978\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000027\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000027\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000027\"}}}","appearsIn":["duo"],"curie":"BFO:0000027","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000040","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000040","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"object-aggregate","http__//purl.obolibrary.org/obo/BFO_0000180":"ObjectAggregate","http__//purl.obolibrary.org/obo/IAO_0000112":["a collection of cells in a blood biobank.","a swarm of bees is an aggregate of members who are linked together through natural bonds","a symphony orchestra","an organization is an aggregate whose member parts have roles of specific types (for example in a jazz band, a chess club, a football team)","defined by fiat: the aggregate of members of an organization","defined through physical attachment: the aggregate of atoms in a lump of granite","defined through physical containment: the aggregate of molecules of carbon dioxide in a sealed container","defined via attributive delimitations such as: the patients in this hospital","the aggregate of bearings in a constant velocity axle joint","the aggregate of blood cells in your body","the nitrogen atoms in the atmosphere","the restaurants in Palo Alto","your collection of Meissen ceramic plates."],"http__//purl.obolibrary.org/obo/IAO_0000116":["An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects ","BFO 2 Reference: object aggregates may gain and lose parts while remaining numerically identical (one and the same individual) over time. This holds both for aggregates whose membership is determined naturally (the aggregate of cells in your body) and aggregates determined by fiat (a baseball team, a congressional committee)."],"http__//purl.obolibrary.org/obo/IAO_0000119":"ISBN:978-3-938793-98-5pp124-158#Thomas Bittner and Barry Smith, \u0027A Theory of Granular Partitions\u0027, in K. Munn and B. Smith (eds.), Applied Ontology: An Introduction, Frankfurt/Lancaster: ontos, 2008, 125-158.","http__//purl.obolibrary.org/obo/IAO_0000600":"b is an object aggregate means: b is a material entity consisting exactly of a plurality of objects as member_parts at all times at which b exists. (axiom label in BFO2 Reference: [025-004])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (\u003d y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"object aggregate","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000040","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000027","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000027","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"object aggregate","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["object-aggregate","ObjectAggregate","a collection of cells in a blood biobank.","a swarm of bees is an aggregate of members who are linked together through natural bonds","a symphony orchestra","an organization is an aggregate whose member parts have roles of specific types (for example in a jazz band, a chess club, a football team)","defined by fiat: the aggregate of members of an organization","defined through physical attachment: the aggregate of atoms in a lump of granite","defined through physical containment: the aggregate of molecules of carbon dioxide in a sealed container","defined via attributive delimitations such as: the patients in this hospital","the aggregate of bearings in a constant velocity axle joint","the aggregate of blood cells in your body","the nitrogen atoms in the atmosphere","the restaurants in Palo Alto","your collection of Meissen ceramic plates.","An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects ","BFO 2 Reference: object aggregates may gain and lose parts while remaining numerically identical (one and the same individual) over time. This holds both for aggregates whose membership is determined naturally (the aggregate of cells in your body) and aggregates determined by fiat (a baseball team, a congressional committee).","ISBN:978-3-938793-98-5pp124-158#Thomas Bittner and Barry Smith, \u0027A Theory of Granular Partitions\u0027, in K. Munn and B. Smith (eds.), Applied Ontology: An Introduction, Frankfurt/Lancaster: ontos, 2008, 125-158.","b is an object aggregate means: b is a material entity consisting exactly of a plurality of objects as member_parts at all times at which b exists. (axiom label in BFO2 Reference: [025-004])","(forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (\u003d y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004] ","false"],"shortForm":"BFO_0000027","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000028\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000028\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"3d-s-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ThreeDimensionalSpatialRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a cube-shaped region of space\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a sphere-shaped region of space,\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A three-dimensional spatial region is a spatial region that is of three dimensions. (axiom label in BFO2 Reference: [040-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/040-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ThreeDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [040-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/040-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three-dimensional spatial region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three-dimensional spatial region\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"3d-s-region\"},{\"type\":[\"literal\"],\"value\":\"ThreeDimensionalSpatialRegion\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a cube-shaped region of space\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a sphere-shaped region of space,\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A three-dimensional spatial region is a spatial region that is of three dimensions. (axiom label in BFO2 Reference: [040-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/040-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ThreeDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [040-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/040-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000028\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000006\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000028\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000028\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000028\"},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000028","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"3d-s-region","http__//purl.obolibrary.org/obo/BFO_0000180":"ThreeDimensionalSpatialRegion","http__//purl.obolibrary.org/obo/IAO_0000112":["a cube-shaped region of space","a sphere-shaped region of space,"],"http__//purl.obolibrary.org/obo/IAO_0000600":"A three-dimensional spatial region is a spatial region that is of three dimensions. (axiom label in BFO2 Reference: [040-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (ThreeDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [040-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"three-dimensional spatial region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000006","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000028","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000028","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"three-dimensional spatial region","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["3d-s-region","ThreeDimensionalSpatialRegion","a cube-shaped region of space","a sphere-shaped region of space,","A three-dimensional spatial region is a spatial region that is of three dimensions. (axiom label in BFO2 Reference: [040-001])","(forall (x) (if (ThreeDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [040-001] ","false"],"shortForm":"BFO_0000028","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000029\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000029\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"site\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Site\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Manhattan Canyon)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a hole in the interior of a portion of cheese\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a rabbit hole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an air traffic control region defined in the airspace above an airport\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the Grand Canyon\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the Piazza San Marco\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the cockpit of an aircraft\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the hold of a ship\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of a kangaroo pouch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of the trunk of your car\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of your bedroom\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of your office\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of your refrigerator\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the lumen of your gut\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"your left nostril (a fiat part – the opening – of your left nasal cavity)\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a site means: b is a three-dimensional immaterial entity that is (partially or wholly) bounded by a material entity or it is a three-dimensional immaterial part thereof. (axiom label in BFO2 Reference: [034-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/034-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/034-002\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"site\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"site\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"site\"},{\"type\":[\"literal\"],\"value\":\"Site\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Manhattan Canyon)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a hole in the interior of a portion of cheese\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a rabbit hole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an air traffic control region defined in the airspace above an airport\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the Grand Canyon\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the Piazza San Marco\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the cockpit of an aircraft\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the hold of a ship\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of a kangaroo pouch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of the trunk of your car\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of your bedroom\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of your office\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of your refrigerator\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the lumen of your gut\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"your left nostril (a fiat part – the opening – of your left nasal cavity)\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a site means: b is a three-dimensional immaterial entity that is (partially or wholly) bounded by a material entity or it is a three-dimensional immaterial part thereof. (axiom label in BFO2 Reference: [034-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/034-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/034-002\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000029\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000029\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000029\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000029\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000029","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000141","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000141","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"site","http__//purl.obolibrary.org/obo/BFO_0000180":"Site","http__//purl.obolibrary.org/obo/IAO_0000112":["Manhattan Canyon)","a hole in the interior of a portion of cheese","a rabbit hole","an air traffic control region defined in the airspace above an airport","the Grand Canyon","the Piazza San Marco","the cockpit of an aircraft","the hold of a ship","the interior of a kangaroo pouch","the interior of the trunk of your car","the interior of your bedroom","the interior of your office","the interior of your refrigerator","the lumen of your gut","your left nostril (a fiat part – the opening – of your left nasal cavity)"],"http__//purl.obolibrary.org/obo/IAO_0000600":"b is a site means: b is a three-dimensional immaterial entity that is (partially or wholly) bounded by a material entity or it is a three-dimensional immaterial part thereof. (axiom label in BFO2 Reference: [034-002])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"site","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000141","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000029","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000029","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"site","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["site","Site","Manhattan Canyon)","a hole in the interior of a portion of cheese","a rabbit hole","an air traffic control region defined in the airspace above an airport","the Grand Canyon","the Piazza San Marco","the cockpit of an aircraft","the hold of a ship","the interior of a kangaroo pouch","the interior of the trunk of your car","the interior of your bedroom","the interior of your office","the interior of your refrigerator","the lumen of your gut","your left nostril (a fiat part – the opening – of your left nasal cavity)","b is a site means: b is a three-dimensional immaterial entity that is (partially or wholly) bounded by a material entity or it is a three-dimensional immaterial part thereof. (axiom label in BFO2 Reference: [034-002])","(forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002] ","false"],"shortForm":"BFO_0000029","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000030\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000030\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"object\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Object\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"atom\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cell\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cells and organisms\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"engineered artifacts\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"grain of sand\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"molecule\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organelle\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organism\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planet\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"solid portions of matter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"star\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: BFO rests on the presupposition that at multiple micro-, meso- and macroscopic scales reality exhibits certain stable, spatially separated or separable material units, combined or combinable into aggregates of various sorts (for example organisms into what are called ‘populations’). Such units play a central role in almost all domains of natural science from particle physics to cosmology. Many scientific laws govern the units in question, employing general terms (such as ‘molecule’ or ‘planet’) referring to the types and subtypes of units, and also to the types and subtypes of the processes through which such units develop and interact. The division of reality into such natural units is at the heart of biological science, as also is the fact that these units may form higher-level units (as cells form multicellular organisms) and that they may also form aggregates of units, for example as cells form portions of tissue and organs form families, herds, breeds, species, and so on. At the same time, the division of certain portions of reality into engineered units (manufactured artifacts) is the basis of modern industrial technology, which rests on the distributed mass production of engineered parts through division of labor and on their assembly into larger, compound units such as cars and laptops. The division of portions of reality into units is one starting point for the phenomenon of counting.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Each object is such that there are entities of which we can assert unproblematically that they lie in its interior, and other entities of which we can assert unproblematically that they lie in its exterior. This may not be so for entities lying at or near the boundary between the interior and exterior. This means that two objects – for example the two cells depicted in Figure 3 – may be such that there are material entities crossing their boundaries which belong determinately to neither cell. Something similar obtains in certain cases of conjoined twins (see below).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: To say that b is causally unified means: b is a material entity which is such that its material parts are tied together in such a way that, in environments typical for entities of the type in question,if c, a continuant part of b that is in the interior of b at t, is larger than a certain threshold size (which will be determined differently from case to case, depending on factors such as porosity of external cover) and is moved in space to be at t at a location on the exterior of the spatial region that had been occupied by b at t, then either b’s other parts will be moved in coordinated fashion or b will be damaged (be affected, for example, by breakage or tearing) in the interval between t and t.causal changes in one part of b can have consequences for other parts of b without the mediation of any entity that lies on the exterior of b. Material entities with no proper material parts would satisfy these conditions trivially. Candidate examples of types of causal unity for material entities of more complex sorts are as follows (this is not intended to be an exhaustive list):CU1: Causal unity via physical coveringHere the parts in the interior of the unified entity are combined together causally through a common membrane or other physical covering\\\\. The latter points outwards toward and may serve a protective function in relation to what lies on the exterior of the entity [13, 47\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: an object is a maximal causally unified material entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: ‘objects’ are sometimes referred to as ‘grains’ [74\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an object means: b is a material entity which manifests causal unity of one or other of the types CUn listed above \\u0026 is of a type (a material universal) instances of which are maximal relative to this criterion of causal unity. (axiom label in BFO2 Reference: [024-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/024-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"object\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"object\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"object\"},{\"type\":[\"literal\"],\"value\":\"Object\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"atom\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cell\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cells and organisms\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"engineered artifacts\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"grain of sand\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"molecule\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organelle\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organism\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planet\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"solid portions of matter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"star\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: BFO rests on the presupposition that at multiple micro-, meso- and macroscopic scales reality exhibits certain stable, spatially separated or separable material units, combined or combinable into aggregates of various sorts (for example organisms into what are called ‘populations’). Such units play a central role in almost all domains of natural science from particle physics to cosmology. Many scientific laws govern the units in question, employing general terms (such as ‘molecule’ or ‘planet’) referring to the types and subtypes of units, and also to the types and subtypes of the processes through which such units develop and interact. The division of reality into such natural units is at the heart of biological science, as also is the fact that these units may form higher-level units (as cells form multicellular organisms) and that they may also form aggregates of units, for example as cells form portions of tissue and organs form families, herds, breeds, species, and so on. At the same time, the division of certain portions of reality into engineered units (manufactured artifacts) is the basis of modern industrial technology, which rests on the distributed mass production of engineered parts through division of labor and on their assembly into larger, compound units such as cars and laptops. The division of portions of reality into units is one starting point for the phenomenon of counting.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Each object is such that there are entities of which we can assert unproblematically that they lie in its interior, and other entities of which we can assert unproblematically that they lie in its exterior. This may not be so for entities lying at or near the boundary between the interior and exterior. This means that two objects – for example the two cells depicted in Figure 3 – may be such that there are material entities crossing their boundaries which belong determinately to neither cell. Something similar obtains in certain cases of conjoined twins (see below).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: To say that b is causally unified means: b is a material entity which is such that its material parts are tied together in such a way that, in environments typical for entities of the type in question,if c, a continuant part of b that is in the interior of b at t, is larger than a certain threshold size (which will be determined differently from case to case, depending on factors such as porosity of external cover) and is moved in space to be at t at a location on the exterior of the spatial region that had been occupied by b at t, then either b’s other parts will be moved in coordinated fashion or b will be damaged (be affected, for example, by breakage or tearing) in the interval between t and t.causal changes in one part of b can have consequences for other parts of b without the mediation of any entity that lies on the exterior of b. Material entities with no proper material parts would satisfy these conditions trivially. Candidate examples of types of causal unity for material entities of more complex sorts are as follows (this is not intended to be an exhaustive list):CU1: Causal unity via physical coveringHere the parts in the interior of the unified entity are combined together causally through a common membrane or other physical covering\\\\. The latter points outwards toward and may serve a protective function in relation to what lies on the exterior of the entity [13, 47\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: an object is a maximal causally unified material entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: ‘objects’ are sometimes referred to as ‘grains’ [74\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an object means: b is a material entity which manifests causal unity of one or other of the types CUn listed above \\u0026 is of a type (a material universal) instances of which are maximal relative to this criterion of causal unity. (axiom label in BFO2 Reference: [024-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/024-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000030\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"BFO:0000030\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000030\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000030\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000030","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000040","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000040","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"object","http__//purl.obolibrary.org/obo/BFO_0000180":"Object","http__//purl.obolibrary.org/obo/IAO_0000112":["atom","cell","cells and organisms","engineered artifacts","grain of sand","molecule","organelle","organism","planet","solid portions of matter","star"],"http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: BFO rests on the presupposition that at multiple micro-, meso- and macroscopic scales reality exhibits certain stable, spatially separated or separable material units, combined or combinable into aggregates of various sorts (for example organisms into what are called ‘populations’). Such units play a central role in almost all domains of natural science from particle physics to cosmology. Many scientific laws govern the units in question, employing general terms (such as ‘molecule’ or ‘planet’) referring to the types and subtypes of units, and also to the types and subtypes of the processes through which such units develop and interact. The division of reality into such natural units is at the heart of biological science, as also is the fact that these units may form higher-level units (as cells form multicellular organisms) and that they may also form aggregates of units, for example as cells form portions of tissue and organs form families, herds, breeds, species, and so on. At the same time, the division of certain portions of reality into engineered units (manufactured artifacts) is the basis of modern industrial technology, which rests on the distributed mass production of engineered parts through division of labor and on their assembly into larger, compound units such as cars and laptops. The division of portions of reality into units is one starting point for the phenomenon of counting.","BFO 2 Reference: Each object is such that there are entities of which we can assert unproblematically that they lie in its interior, and other entities of which we can assert unproblematically that they lie in its exterior. This may not be so for entities lying at or near the boundary between the interior and exterior. This means that two objects – for example the two cells depicted in Figure 3 – may be such that there are material entities crossing their boundaries which belong determinately to neither cell. Something similar obtains in certain cases of conjoined twins (see below).","BFO 2 Reference: To say that b is causally unified means: b is a material entity which is such that its material parts are tied together in such a way that, in environments typical for entities of the type in question,if c, a continuant part of b that is in the interior of b at t, is larger than a certain threshold size (which will be determined differently from case to case, depending on factors such as porosity of external cover) and is moved in space to be at t at a location on the exterior of the spatial region that had been occupied by b at t, then either b’s other parts will be moved in coordinated fashion or b will be damaged (be affected, for example, by breakage or tearing) in the interval between t and t.causal changes in one part of b can have consequences for other parts of b without the mediation of any entity that lies on the exterior of b. Material entities with no proper material parts would satisfy these conditions trivially. Candidate examples of types of causal unity for material entities of more complex sorts are as follows (this is not intended to be an exhaustive list):CU1: Causal unity via physical coveringHere the parts in the interior of the unified entity are combined together causally through a common membrane or other physical covering\\. The latter points outwards toward and may serve a protective function in relation to what lies on the exterior of the entity [13, 47","BFO 2 Reference: an object is a maximal causally unified material entity","BFO 2 Reference: ‘objects’ are sometimes referred to as ‘grains’ [74"],"http__//purl.obolibrary.org/obo/IAO_0000600":"b is an object means: b is a material entity which manifests causal unity of one or other of the types CUn listed above \u0026 is of a type (a material universal) instances of which are maximal relative to this criterion of causal unity. (axiom label in BFO2 Reference: [024-001])","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"object","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000040","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000030","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000030","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"object","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["object","Object","atom","cell","cells and organisms","engineered artifacts","grain of sand","molecule","organelle","organism","planet","solid portions of matter","star","BFO 2 Reference: BFO rests on the presupposition that at multiple micro-, meso- and macroscopic scales reality exhibits certain stable, spatially separated or separable material units, combined or combinable into aggregates of various sorts (for example organisms into what are called ‘populations’). Such units play a central role in almost all domains of natural science from particle physics to cosmology. Many scientific laws govern the units in question, employing general terms (such as ‘molecule’ or ‘planet’) referring to the types and subtypes of units, and also to the types and subtypes of the processes through which such units develop and interact. The division of reality into such natural units is at the heart of biological science, as also is the fact that these units may form higher-level units (as cells form multicellular organisms) and that they may also form aggregates of units, for example as cells form portions of tissue and organs form families, herds, breeds, species, and so on. At the same time, the division of certain portions of reality into engineered units (manufactured artifacts) is the basis of modern industrial technology, which rests on the distributed mass production of engineered parts through division of labor and on their assembly into larger, compound units such as cars and laptops. The division of portions of reality into units is one starting point for the phenomenon of counting.","BFO 2 Reference: Each object is such that there are entities of which we can assert unproblematically that they lie in its interior, and other entities of which we can assert unproblematically that they lie in its exterior. This may not be so for entities lying at or near the boundary between the interior and exterior. This means that two objects – for example the two cells depicted in Figure 3 – may be such that there are material entities crossing their boundaries which belong determinately to neither cell. Something similar obtains in certain cases of conjoined twins (see below).","BFO 2 Reference: To say that b is causally unified means: b is a material entity which is such that its material parts are tied together in such a way that, in environments typical for entities of the type in question,if c, a continuant part of b that is in the interior of b at t, is larger than a certain threshold size (which will be determined differently from case to case, depending on factors such as porosity of external cover) and is moved in space to be at t at a location on the exterior of the spatial region that had been occupied by b at t, then either b’s other parts will be moved in coordinated fashion or b will be damaged (be affected, for example, by breakage or tearing) in the interval between t and t.causal changes in one part of b can have consequences for other parts of b without the mediation of any entity that lies on the exterior of b. Material entities with no proper material parts would satisfy these conditions trivially. Candidate examples of types of causal unity for material entities of more complex sorts are as follows (this is not intended to be an exhaustive list):CU1: Causal unity via physical coveringHere the parts in the interior of the unified entity are combined together causally through a common membrane or other physical covering\\. The latter points outwards toward and may serve a protective function in relation to what lies on the exterior of the entity [13, 47","BFO 2 Reference: an object is a maximal causally unified material entity","BFO 2 Reference: ‘objects’ are sometimes referred to as ‘grains’ [74","b is an object means: b is a material entity which manifests causal unity of one or other of the types CUn listed above \u0026 is of a type (a material universal) instances of which are maximal relative to this criterion of causal unity. (axiom label in BFO2 Reference: [024-001])","false"],"shortForm":"BFO_0000030","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000031\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a generically dependent continuant \\u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/074-001\"}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"gdc\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"GenericallyDependentContinuant\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the pdf file on your laptop, the pdf file that is a copy thereof on my laptop\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a generically dependent continuant \\u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/074-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/074-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"numDescendants\":230.0,\"numHierarchicalDescendants\":212.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"gdc\"},{\"type\":[\"literal\"],\"value\":\"GenericallyDependentContinuant\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the pdf file on your laptop, the pdf file that is a copy thereof on my laptop\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a generically dependent continuant \\u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/074-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/074-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000031\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000031\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000031\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000031\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000031","definition":"b is a generically dependent continuant \u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000002","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000002","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"gdc","http__//purl.obolibrary.org/obo/BFO_0000180":"GenericallyDependentContinuant","http__//purl.obolibrary.org/obo/IAO_0000112":["The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity.","the pdf file on your laptop, the pdf file that is a copy thereof on my laptop","the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule."],"http__//purl.obolibrary.org/obo/IAO_0000115":"b is a generically dependent continuant \u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"generically dependent continuant","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000002","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000031","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000031","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"generically dependent continuant","numDescendants":"230.0","numHierarchicalDescendants":"212.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["gdc","GenericallyDependentContinuant","The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity.","the pdf file on your laptop, the pdf file that is a copy thereof on my laptop","the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule.","b is a generically dependent continuant \u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])","(iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] ","false"],"shortForm":"BFO_0000031","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000034\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000034\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"function\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Function\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of a hammer to drive in nails\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of a heart pacemaker to regulate the beating of a heart through electricity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of amylase in saliva to break down starch into sugar\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/064-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/064-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"function\"},{\"type\":[\"literal\"],\"value\":\"Function\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of a hammer to drive in nails\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of a heart pacemaker to regulate the beating of a heart through electricity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of amylase in saliva to break down starch into sugar\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/064-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/064-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000034\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:function\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_function\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:function\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000034\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000034\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000034\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000034","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000016","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000016","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"function","http__//purl.obolibrary.org/obo/BFO_0000180":"Function","http__//purl.obolibrary.org/obo/IAO_0000112":["the function of a hammer to drive in nails","the function of a heart pacemaker to regulate the beating of a heart through electricity","the function of amylase in saliva to break down starch into sugar"],"http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.","http__//purl.obolibrary.org/obo/IAO_0000600":"A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"function","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000016","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000034","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000034","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"function","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["function","Function","the function of a hammer to drive in nails","the function of a heart pacemaker to regulate the beating of a heart through electricity","the function of amylase in saliva to break down starch into sugar","BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.","A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001])","(forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001] ","false"],"shortForm":"BFO_0000034","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000035\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000035\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"p is a process boundary \\u003dDef. p is a temporal part of a process \\u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/084-001\"}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"p-boundary\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ProcessBoundary\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the boundary between the 2nd and 3rd year of your life.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"p is a process boundary \\u003dDef. p is a temporal part of a process \\u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/084-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every process boundary occupies_temporal_region a zero-dimensional temporal region. (axiom label in BFO2 Reference: [085-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/085-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ProcessBoundary x) (exists (y) (and (ZeroDimensionalTemporalRegion y) (occupiesTemporalRegion x y))))) // axiom label in BFO2 CLIF: [085-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/085-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (ProcessBoundary a) (exists (p) (and (Process p) (temporalPartOf a p) (not (exists (b) (properTemporalPartOf b a)))))) // axiom label in BFO2 CLIF: [084-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/084-001\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process boundary\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process boundary\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p-boundary\"},{\"type\":[\"literal\"],\"value\":\"ProcessBoundary\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the boundary between the 2nd and 3rd year of your life.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"p is a process boundary \\u003dDef. p is a temporal part of a process \\u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/084-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every process boundary occupies_temporal_region a zero-dimensional temporal region. (axiom label in BFO2 Reference: [085-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/085-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ProcessBoundary x) (exists (y) (and (ZeroDimensionalTemporalRegion y) (occupiesTemporalRegion x y))))) // axiom label in BFO2 CLIF: [085-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/085-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (ProcessBoundary a) (exists (p) (and (Process p) (temporalPartOf a p) (not (exists (b) (properTemporalPartOf b a)))))) // axiom label in BFO2 CLIF: [084-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/084-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000035\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000035\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000035\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000035\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000035","definition":"p is a process boundary \u003dDef. p is a temporal part of a process \u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000003","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"p-boundary","http__//purl.obolibrary.org/obo/BFO_0000180":"ProcessBoundary","http__//purl.obolibrary.org/obo/IAO_0000112":"the boundary between the 2nd and 3rd year of your life.","http__//purl.obolibrary.org/obo/IAO_0000115":"p is a process boundary \u003dDef. p is a temporal part of a process \u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])","http__//purl.obolibrary.org/obo/IAO_0000601":"Every process boundary occupies_temporal_region a zero-dimensional temporal region. (axiom label in BFO2 Reference: [085-002])","http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x) (if (ProcessBoundary x) (exists (y) (and (ZeroDimensionalTemporalRegion y) (occupiesTemporalRegion x y))))) // axiom label in BFO2 CLIF: [085-002] ","(iff (ProcessBoundary a) (exists (p) (and (Process p) (temporalPartOf a p) (not (exists (b) (properTemporalPartOf b a)))))) // axiom label in BFO2 CLIF: [084-001] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"process boundary","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000003","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000035","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000035","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"process boundary","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["p-boundary","ProcessBoundary","the boundary between the 2nd and 3rd year of your life.","p is a process boundary \u003dDef. p is a temporal part of a process \u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])","Every process boundary occupies_temporal_region a zero-dimensional temporal region. (axiom label in BFO2 Reference: [085-002])","(forall (x) (if (ProcessBoundary x) (exists (y) (and (ZeroDimensionalTemporalRegion y) (occupiesTemporalRegion x y))))) // axiom label in BFO2 CLIF: [085-002] ","(iff (ProcessBoundary a) (exists (p) (and (Process p) (temporalPartOf a p) (not (exists (b) (properTemporalPartOf b a)))))) // axiom label in BFO2 CLIF: [084-001] ","false"],"shortForm":"BFO_0000035","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000038\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000038\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000008\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000008\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000008\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000008\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"1d-t-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"OneDimensionalTemporalRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the temporal region during which a process occurs.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: A temporal interval is a special kind of one-dimensional temporal region, namely one that is self-connected (is without gaps or breaks).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A one-dimensional temporal region is a temporal region that is extended. (axiom label in BFO2 Reference: [103-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/103-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/103-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one-dimensional temporal region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000008\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000148\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one-dimensional temporal region\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"1d-t-region\"},{\"type\":[\"literal\"],\"value\":\"OneDimensionalTemporalRegion\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the temporal region during which a process occurs.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: A temporal interval is a special kind of one-dimensional temporal region, namely one that is self-connected (is without gaps or breaks).\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A one-dimensional temporal region is a temporal region that is extended. (axiom label in BFO2 Reference: [103-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/103-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/103-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000038\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000008\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000038\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000038\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000038\"},\"http://purl.obolibrary.org/obo/BFO_0000148\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional temporal region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000148\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000038","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000008","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000008","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000008","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000008","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"1d-t-region","http__//purl.obolibrary.org/obo/BFO_0000180":"OneDimensionalTemporalRegion","http__//purl.obolibrary.org/obo/IAO_0000112":"the temporal region during which a process occurs.","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: A temporal interval is a special kind of one-dimensional temporal region, namely one that is self-connected (is without gaps or breaks).","http__//purl.obolibrary.org/obo/IAO_0000600":"A one-dimensional temporal region is a temporal region that is extended. (axiom label in BFO2 Reference: [103-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"one-dimensional temporal region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000008","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000148","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000038","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000038","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"one-dimensional temporal region","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["1d-t-region","OneDimensionalTemporalRegion","the temporal region during which a process occurs.","BFO 2 Reference: A temporal interval is a special kind of one-dimensional temporal region, namely one that is self-connected (is without gaps or breaks).","A one-dimensional temporal region is a temporal region that is extended. (axiom label in BFO2 Reference: [103-001])","(forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001] ","false"],"shortForm":"BFO_0000038","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"material\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"MaterialEntity\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a flame\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a forest fire\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a human being\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a hurricane\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a photon\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a puff of smoke\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a sea wave\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a tornado\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an aggregate of human beings.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an energy wave\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an epidemic\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the undetached arm of a human being\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/019-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/020-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/021-002\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/019-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/021-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/020-002\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"material\"},{\"type\":[\"literal\"],\"value\":\"MaterialEntity\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a flame\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a forest fire\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a human being\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a hurricane\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a photon\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a puff of smoke\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a sea wave\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a tornado\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an aggregate of human beings.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an energy wave\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an epidemic\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the undetached arm of a human being\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/019-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/020-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/021-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/019-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/021-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/020-002\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000040\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"BFO:0000040\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000040\"},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000040","definition":"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000004","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000004","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"material","http__//purl.obolibrary.org/obo/BFO_0000180":"MaterialEntity","http__//purl.obolibrary.org/obo/IAO_0000112":["a flame","a forest fire","a human being","a hurricane","a photon","a puff of smoke","a sea wave","a tornado","an aggregate of human beings.","an energy wave","an epidemic","the undetached arm of a human being"],"http__//purl.obolibrary.org/obo/IAO_0000115":"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60","BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.","BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here."],"http__//purl.obolibrary.org/obo/IAO_0000600":"A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002])","http__//purl.obolibrary.org/obo/IAO_0000601":["Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002])","every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002])"],"http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] ","(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] ","(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"material entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000141","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000040","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000040","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"material entity","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["material","MaterialEntity","a flame","a forest fire","a human being","a hurricane","a photon","a puff of smoke","a sea wave","a tornado","an aggregate of human beings.","an energy wave","an epidemic","the undetached arm of a human being","An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60","BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.","BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here.","A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002])","Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002])","every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002])","(forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] ","(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] ","(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] ","false"],"shortForm":"BFO_0000040","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000140\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a continuant fiat boundary \\u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/029-001\"}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"cf-boundary\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ContinuantFiatBoundary\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a continuant fiat boundary \\u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/029-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: In BFO 1.1 the assumption was made that the external surface of a material entity such as a cell could be treated as if it were a boundary in the mathematical sense. The new document propounds the view that when we talk about external surfaces of material objects in this way then we are talking about something fiat. To be dealt with in a future version: fiat boundaries at different levels of granularity.More generally, the focus in discussion of boundaries in BFO 2.0 is now on fiat boundaries, which means: boundaries for which there is no assumption that they coincide with physical discontinuities. The ontology of boundaries becomes more closely allied with the ontology of regions.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: a continuant fiat boundary is a boundary of some material entity (for example: the plane separating the Northern and Southern hemispheres; the North Pole), or it is a boundary of some immaterial entity (for example of some portion of airspace). Three basic kinds of continuant fiat boundary can be distinguished (together with various combination kinds [29\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Continuant fiat boundary doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. An example would be the mereological sum of two-dimensional continuant fiat boundary and a one dimensional continuant fiat boundary that doesn\\u0027t overlap it. The situation is analogous to temporal and spatial regions.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000008\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every continuant fiat boundary is located at some spatial region at every time at which it exists\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (ContinuantFiatBoundary a) (and (ImmaterialEntity a) (exists (b) (and (or (ZeroDimensionalSpatialRegion b) (OneDimensionalSpatialRegion b) (TwoDimensionalSpatialRegion b)) (forall (t) (locatedInAt a b t)))) (not (exists (c t) (and (SpatialRegion c) (continuantPartOfAt c a t)))))) // axiom label in BFO2 CLIF: [029-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/029-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant fiat boundary\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant fiat boundary\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"cf-boundary\"},{\"type\":[\"literal\"],\"value\":\"ContinuantFiatBoundary\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a continuant fiat boundary \\u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/029-001\"}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: In BFO 1.1 the assumption was made that the external surface of a material entity such as a cell could be treated as if it were a boundary in the mathematical sense. The new document propounds the view that when we talk about external surfaces of material objects in this way then we are talking about something fiat. To be dealt with in a future version: fiat boundaries at different levels of granularity.More generally, the focus in discussion of boundaries in BFO 2.0 is now on fiat boundaries, which means: boundaries for which there is no assumption that they coincide with physical discontinuities. The ontology of boundaries becomes more closely allied with the ontology of regions.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: a continuant fiat boundary is a boundary of some material entity (for example: the plane separating the Northern and Southern hemispheres; the North Pole), or it is a boundary of some immaterial entity (for example of some portion of airspace). Three basic kinds of continuant fiat boundary can be distinguished (together with various combination kinds [29\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Continuant fiat boundary doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. An example would be the mereological sum of two-dimensional continuant fiat boundary and a one dimensional continuant fiat boundary that doesn\\u0027t overlap it. The situation is analogous to temporal and spatial regions.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000008\"}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every continuant fiat boundary is located at some spatial region at every time at which it exists\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (ContinuantFiatBoundary a) (and (ImmaterialEntity a) (exists (b) (and (or (ZeroDimensionalSpatialRegion b) (OneDimensionalSpatialRegion b) (TwoDimensionalSpatialRegion b)) (forall (t) (locatedInAt a b t)))) (not (exists (c t) (and (SpatialRegion c) (continuantPartOfAt c a t)))))) // axiom label in BFO2 CLIF: [029-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/029-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000140\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"BFO:0000140\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000140\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000140","definition":"b is a continuant fiat boundary \u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000141","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000141","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"cf-boundary","http__//purl.obolibrary.org/obo/BFO_0000180":"ContinuantFiatBoundary","http__//purl.obolibrary.org/obo/IAO_0000115":"b is a continuant fiat boundary \u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])","http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: In BFO 1.1 the assumption was made that the external surface of a material entity such as a cell could be treated as if it were a boundary in the mathematical sense. The new document propounds the view that when we talk about external surfaces of material objects in this way then we are talking about something fiat. To be dealt with in a future version: fiat boundaries at different levels of granularity.More generally, the focus in discussion of boundaries in BFO 2.0 is now on fiat boundaries, which means: boundaries for which there is no assumption that they coincide with physical discontinuities. The ontology of boundaries becomes more closely allied with the ontology of regions.","BFO 2 Reference: a continuant fiat boundary is a boundary of some material entity (for example: the plane separating the Northern and Southern hemispheres; the North Pole), or it is a boundary of some immaterial entity (for example of some portion of airspace). Three basic kinds of continuant fiat boundary can be distinguished (together with various combination kinds [29","Continuant fiat boundary doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. An example would be the mereological sum of two-dimensional continuant fiat boundary and a one dimensional continuant fiat boundary that doesn\u0027t overlap it. The situation is analogous to temporal and spatial regions."],"http__//purl.obolibrary.org/obo/IAO_0000601":"Every continuant fiat boundary is located at some spatial region at every time at which it exists","http__//purl.obolibrary.org/obo/IAO_0000602":"(iff (ContinuantFiatBoundary a) (and (ImmaterialEntity a) (exists (b) (and (or (ZeroDimensionalSpatialRegion b) (OneDimensionalSpatialRegion b) (TwoDimensionalSpatialRegion b)) (forall (t) (locatedInAt a b t)))) (not (exists (c t) (and (SpatialRegion c) (continuantPartOfAt c a t)))))) // axiom label in BFO2 CLIF: [029-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"continuant fiat boundary","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000141","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000140","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000140","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"continuant fiat boundary","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["cf-boundary","ContinuantFiatBoundary","b is a continuant fiat boundary \u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])","BFO 2 Reference: In BFO 1.1 the assumption was made that the external surface of a material entity such as a cell could be treated as if it were a boundary in the mathematical sense. The new document propounds the view that when we talk about external surfaces of material objects in this way then we are talking about something fiat. To be dealt with in a future version: fiat boundaries at different levels of granularity.More generally, the focus in discussion of boundaries in BFO 2.0 is now on fiat boundaries, which means: boundaries for which there is no assumption that they coincide with physical discontinuities. The ontology of boundaries becomes more closely allied with the ontology of regions.","BFO 2 Reference: a continuant fiat boundary is a boundary of some material entity (for example: the plane separating the Northern and Southern hemispheres; the North Pole), or it is a boundary of some immaterial entity (for example of some portion of airspace). Three basic kinds of continuant fiat boundary can be distinguished (together with various combination kinds [29","Continuant fiat boundary doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. An example would be the mereological sum of two-dimensional continuant fiat boundary and a one dimensional continuant fiat boundary that doesn\u0027t overlap it. The situation is analogous to temporal and spatial regions.","Every continuant fiat boundary is located at some spatial region at every time at which it exists","(iff (ContinuantFiatBoundary a) (and (ImmaterialEntity a) (exists (b) (and (or (ZeroDimensionalSpatialRegion b) (OneDimensionalSpatialRegion b) (TwoDimensionalSpatialRegion b)) (forall (t) (locatedInAt a b t)))) (not (exists (c t) (and (SpatialRegion c) (continuantPartOfAt c a t)))))) // axiom label in BFO2 CLIF: [029-001] ","false"],"shortForm":"BFO_0000140","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"immaterial\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ImmaterialEntity\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"numDescendants\":11.0,\"numHierarchicalDescendants\":11.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"immaterial\"},{\"type\":[\"literal\"],\"value\":\"ImmaterialEntity\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000141\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"BFO:0000141\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000141\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000141","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000004","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000004","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"immaterial","http__//purl.obolibrary.org/obo/BFO_0000180":"ImmaterialEntity","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"immaterial entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000004","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000141","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000141","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"immaterial entity","numDescendants":"11.0","numHierarchicalDescendants":"11.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["immaterial","ImmaterialEntity","BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10","false"],"shortForm":"BFO_0000141","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000142\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000142\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000140\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000140\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"1d-cf-boundary\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"OneDimensionalContinuantFiatBoundary\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The Equator\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"all geopolitical boundaries\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"all lines of latitude and longitude\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the median sulcus of your tongue\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a one-dimensional continuant fiat boundary is a continuous fiat line whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [032-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/032-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (OneDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (OneDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [032-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/032-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one-dimensional continuant fiat boundary\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/BFO_0000146\",\"http://purl.obolibrary.org/obo/BFO_0000147\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one-dimensional continuant fiat boundary\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"1d-cf-boundary\"},{\"type\":[\"literal\"],\"value\":\"OneDimensionalContinuantFiatBoundary\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The Equator\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"all geopolitical boundaries\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"all lines of latitude and longitude\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the median sulcus of your tongue\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a one-dimensional continuant fiat boundary is a continuous fiat line whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [032-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/032-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (OneDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (OneDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [032-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/032-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000142\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000147\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional continuant fiat boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000147\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two-dimensional continuant fiat boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000146\"},\"type\":[\"class\",\"entity\"]},\"BFO:0000142\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000142\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000142\"},\"http://purl.obolibrary.org/obo/BFO_0000140\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant fiat boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000140\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000142","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000140","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000140","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"1d-cf-boundary","http__//purl.obolibrary.org/obo/BFO_0000180":"OneDimensionalContinuantFiatBoundary","http__//purl.obolibrary.org/obo/IAO_0000112":["The Equator","all geopolitical boundaries","all lines of latitude and longitude","the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin.","the median sulcus of your tongue"],"http__//purl.obolibrary.org/obo/IAO_0000600":"a one-dimensional continuant fiat boundary is a continuous fiat line whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [032-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(iff (OneDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (OneDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [032-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"one-dimensional continuant fiat boundary","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000140","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/BFO_0000146","http://purl.obolibrary.org/obo/BFO_0000147"],"id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000142","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000142","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"one-dimensional continuant fiat boundary","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["1d-cf-boundary","OneDimensionalContinuantFiatBoundary","The Equator","all geopolitical boundaries","all lines of latitude and longitude","the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin.","the median sulcus of your tongue","a one-dimensional continuant fiat boundary is a continuous fiat line whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [032-001])","(iff (OneDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (OneDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [032-001] ","false"],"shortForm":"BFO_0000142","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000144\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000144\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a process_profile \\u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/093-002\"}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"process-profile\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ProcessProfile\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a process_profile \\u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/093-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b process_profile_of c holds when b proper_occurrent_part_of c\\u0026 there is some proper_occurrent_part d of c which has no parts in common with b \\u0026 is mutually dependent on b\\u0026 is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/094-005\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (processProfileOf x y) (and (properContinuantPartOf x y) (exists (z t) (and (properOccurrentPartOf z y) (TemporalRegion t) (occupiesSpatioTemporalRegion x t) (occupiesSpatioTemporalRegion y t) (occupiesSpatioTemporalRegion z t) (not (exists (w) (and (occurrentPartOf w x) (occurrentPartOf w z))))))))) // axiom label in BFO2 CLIF: [094-005] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/094-005\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (ProcessProfile a) (exists (b) (and (Process b) (processProfileOf a b)))) // axiom label in BFO2 CLIF: [093-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/093-002\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process profile\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000182\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process profile\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"process-profile\"},{\"type\":[\"literal\"],\"value\":\"ProcessProfile\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a process_profile \\u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/093-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b process_profile_of c holds when b proper_occurrent_part_of c\\u0026 there is some proper_occurrent_part d of c which has no parts in common with b \\u0026 is mutually dependent on b\\u0026 is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/094-005\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (processProfileOf x y) (and (properContinuantPartOf x y) (exists (z t) (and (properOccurrentPartOf z y) (TemporalRegion t) (occupiesSpatioTemporalRegion x t) (occupiesSpatioTemporalRegion y t) (occupiesSpatioTemporalRegion z t) (not (exists (w) (and (occurrentPartOf w x) (occurrentPartOf w z))))))))) // axiom label in BFO2 CLIF: [094-005] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/094-005\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (ProcessProfile a) (exists (b) (and (Process b) (processProfileOf a b)))) // axiom label in BFO2 CLIF: [093-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/093-002\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000144\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000182\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"history\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000182\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000144\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000144\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000144\"}}}","appearsIn":["duo"],"curie":"BFO:0000144","definition":"b is a process_profile \u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000015","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000015","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"process-profile","http__//purl.obolibrary.org/obo/BFO_0000180":"ProcessProfile","http__//purl.obolibrary.org/obo/IAO_0000112":["On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels","One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance.","The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on."],"http__//purl.obolibrary.org/obo/IAO_0000115":"b is a process_profile \u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])","http__//purl.obolibrary.org/obo/IAO_0000600":"b process_profile_of c holds when b proper_occurrent_part_of c\u0026 there is some proper_occurrent_part d of c which has no parts in common with b \u0026 is mutually dependent on b\u0026 is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])","http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x y) (if (processProfileOf x y) (and (properContinuantPartOf x y) (exists (z t) (and (properOccurrentPartOf z y) (TemporalRegion t) (occupiesSpatioTemporalRegion x t) (occupiesSpatioTemporalRegion y t) (occupiesSpatioTemporalRegion z t) (not (exists (w) (and (occurrentPartOf w x) (occurrentPartOf w z))))))))) // axiom label in BFO2 CLIF: [094-005] ","(iff (ProcessProfile a) (exists (b) (and (Process b) (processProfileOf a b)))) // axiom label in BFO2 CLIF: [093-002] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"process profile","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000182","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000144","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000144","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"process profile","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["process-profile","ProcessProfile","On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels","One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance.","The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on.","b is a process_profile \u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])","b process_profile_of c holds when b proper_occurrent_part_of c\u0026 there is some proper_occurrent_part d of c which has no parts in common with b \u0026 is mutually dependent on b\u0026 is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])","(forall (x y) (if (processProfileOf x y) (and (properContinuantPartOf x y) (exists (z t) (and (properOccurrentPartOf z y) (TemporalRegion t) (occupiesSpatioTemporalRegion x t) (occupiesSpatioTemporalRegion y t) (occupiesSpatioTemporalRegion z t) (not (exists (w) (and (occurrentPartOf w x) (occurrentPartOf w z))))))))) // axiom label in BFO2 CLIF: [094-005] ","(iff (ProcessProfile a) (exists (b) (and (Process b) (processProfileOf a b)))) // axiom label in BFO2 CLIF: [093-002] ","false"],"shortForm":"BFO_0000144","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000145\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000145\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a relational quality \\u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \\u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/057-001\"}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"r-quality\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"RelationalQuality\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a marriage bond, an instance of requited love, an obligation between one person and another.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a relational quality \\u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \\u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/057-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (RelationalQuality a) (exists (b c t) (and (IndependentContinuant b) (IndependentContinuant c) (qualityOfAt a b t) (qualityOfAt a c t)))) // axiom label in BFO2 CLIF: [057-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/057-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relational quality\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relational quality\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"r-quality\"},{\"type\":[\"literal\"],\"value\":\"RelationalQuality\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a marriage bond, an instance of requited love, an obligation between one person and another.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a relational quality \\u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \\u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/057-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (RelationalQuality a) (exists (b c t) (and (IndependentContinuant b) (IndependentContinuant c) (qualityOfAt a b t) (qualityOfAt a c t)))) // axiom label in BFO2 CLIF: [057-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/057-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000145\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]},\"BFO:0000145\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000145\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000145\"}}}","appearsIn":["duo"],"curie":"BFO:0000145","definition":"b is a relational quality \u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000019","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000019","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"r-quality","http__//purl.obolibrary.org/obo/BFO_0000180":"RelationalQuality","http__//purl.obolibrary.org/obo/IAO_0000112":["John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.","a marriage bond, an instance of requited love, an obligation between one person and another."],"http__//purl.obolibrary.org/obo/IAO_0000115":"b is a relational quality \u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(iff (RelationalQuality a) (exists (b c t) (and (IndependentContinuant b) (IndependentContinuant c) (qualityOfAt a b t) (qualityOfAt a c t)))) // axiom label in BFO2 CLIF: [057-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"relational quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000019","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000145","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000145","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"relational quality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["r-quality","RelationalQuality","John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.","a marriage bond, an instance of requited love, an obligation between one person and another.","b is a relational quality \u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])","(iff (RelationalQuality a) (exists (b c t) (and (IndependentContinuant b) (IndependentContinuant c) (qualityOfAt a b t) (qualityOfAt a c t)))) // axiom label in BFO2 CLIF: [057-001] ","false"],"shortForm":"BFO_0000145","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000146\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000146\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000140\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000140\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"2d-cf-boundary\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"TwoDimensionalContinuantFiatBoundary\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a two-dimensional continuant fiat boundary (surface) is a self-connected fiat surface whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [033-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/033-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (TwoDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (TwoDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [033-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/033-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two-dimensional continuant fiat boundary\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two-dimensional continuant fiat boundary\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"2d-cf-boundary\"},{\"type\":[\"literal\"],\"value\":\"TwoDimensionalContinuantFiatBoundary\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a two-dimensional continuant fiat boundary (surface) is a self-connected fiat surface whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [033-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/033-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (TwoDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (TwoDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [033-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/033-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000146\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000146\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000146\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000146\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000140\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant fiat boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000140\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000146","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000140","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000140","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"2d-cf-boundary","http__//purl.obolibrary.org/obo/BFO_0000180":"TwoDimensionalContinuantFiatBoundary","http__//purl.obolibrary.org/obo/IAO_0000600":"a two-dimensional continuant fiat boundary (surface) is a self-connected fiat surface whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [033-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(iff (TwoDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (TwoDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [033-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"two-dimensional continuant fiat boundary","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000140","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000146","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000146","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"two-dimensional continuant fiat boundary","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["2d-cf-boundary","TwoDimensionalContinuantFiatBoundary","a two-dimensional continuant fiat boundary (surface) is a self-connected fiat surface whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [033-001])","(iff (TwoDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (TwoDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [033-001] ","false"],"shortForm":"BFO_0000146","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000147\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000147\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000140\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000140\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"0d-cf-boundary\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ZeroDimensionalContinuantFiatBoundary\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the geographic North Pole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the point of origin of some spatial coordinate system.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero dimension continuant fiat boundaries are not spatial points. Considering the example \\u0027the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet\\u0027 : There are many frames in which that point is zooming through many points in space. Whereas, no matter what the frame, the quadripoint is always in the same relation to the boundaries of Colorado, Utah, New Mexico, and Arizona.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000001\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"requested by Melanie Courtot\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"https://groups.google.com/d/msg/bfo-owl-devel/s9Uug5QmAws/ZDRnpiIi_TUJ\"}]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a zero-dimensional continuant fiat boundary is a fiat point whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [031-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/031-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (ZeroDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (ZeroDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [031-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/031-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional continuant fiat boundary\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional continuant fiat boundary\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"0d-cf-boundary\"},{\"type\":[\"literal\"],\"value\":\"ZeroDimensionalContinuantFiatBoundary\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the geographic North Pole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the point of origin of some spatial coordinate system.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero dimension continuant fiat boundaries are not spatial points. Considering the example \\u0027the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet\\u0027 : There are many frames in which that point is zooming through many points in space. Whereas, no matter what the frame, the quadripoint is always in the same relation to the boundaries of Colorado, Utah, New Mexico, and Arizona.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000001\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"requested by Melanie Courtot\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"https://groups.google.com/d/msg/bfo-owl-devel/s9Uug5QmAws/ZDRnpiIi_TUJ\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a zero-dimensional continuant fiat boundary is a fiat point whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [031-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/031-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (ZeroDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (ZeroDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [031-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/031-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000147\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000147\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000147\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000147\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000140\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant fiat boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000140\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000147","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000140","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000140","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"0d-cf-boundary","http__//purl.obolibrary.org/obo/BFO_0000180":"ZeroDimensionalContinuantFiatBoundary","http__//purl.obolibrary.org/obo/IAO_0000112":["the geographic North Pole","the point of origin of some spatial coordinate system.","the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet"],"http__//purl.obolibrary.org/obo/IAO_0000116":"zero dimension continuant fiat boundaries are not spatial points. Considering the example \u0027the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet\u0027 : There are many frames in which that point is zooming through many points in space. Whereas, no matter what the frame, the quadripoint is always in the same relation to the boundaries of Colorado, Utah, New Mexico, and Arizona.","http__//purl.obolibrary.org/obo/IAO_0000600":"a zero-dimensional continuant fiat boundary is a fiat point whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [031-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(iff (ZeroDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (ZeroDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [031-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"zero-dimensional continuant fiat boundary","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000140","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000147","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000147","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"zero-dimensional continuant fiat boundary","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["0d-cf-boundary","ZeroDimensionalContinuantFiatBoundary","the geographic North Pole","the point of origin of some spatial coordinate system.","the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet","zero dimension continuant fiat boundaries are not spatial points. Considering the example \u0027the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet\u0027 : There are many frames in which that point is zooming through many points in space. Whereas, no matter what the frame, the quadripoint is always in the same relation to the boundaries of Colorado, Utah, New Mexico, and Arizona.","a zero-dimensional continuant fiat boundary is a fiat point whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [031-001])","(iff (ZeroDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (ZeroDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [031-001] ","false"],"shortForm":"BFO_0000147","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000148\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000148\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000008\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000008\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000008\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000008\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"0d-t-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ZeroDimensionalTemporalRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a temporal region that is occupied by a process boundary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"right now\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the moment at which a child is born\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the moment at which a finger is detached in an industrial accident\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the moment of death.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal instant.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A zero-dimensional temporal region is a temporal region that is without extent. (axiom label in BFO2 Reference: [102-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/102-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ZeroDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [102-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/102-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional temporal region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000008\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional temporal region\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"0d-t-region\"},{\"type\":[\"literal\"],\"value\":\"ZeroDimensionalTemporalRegion\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a temporal region that is occupied by a process boundary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"right now\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the moment at which a child is born\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the moment at which a finger is detached in an industrial accident\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the moment of death.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal instant.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A zero-dimensional temporal region is a temporal region that is without extent. (axiom label in BFO2 Reference: [102-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/102-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ZeroDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [102-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/102-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000148\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000008\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000148\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000148\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000148\"}}}","appearsIn":["duo"],"curie":"BFO:0000148","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000008","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000008","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000008","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000008","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"0d-t-region","http__//purl.obolibrary.org/obo/BFO_0000180":"ZeroDimensionalTemporalRegion","http__//purl.obolibrary.org/obo/IAO_0000112":["a temporal region that is occupied by a process boundary","right now","the moment at which a child is born","the moment at which a finger is detached in an industrial accident","the moment of death."],"http__//purl.obolibrary.org/obo/IAO_0000118":"temporal instant.","http__//purl.obolibrary.org/obo/IAO_0000600":"A zero-dimensional temporal region is a temporal region that is without extent. (axiom label in BFO2 Reference: [102-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (ZeroDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [102-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"zero-dimensional temporal region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000008","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000148","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000148","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"zero-dimensional temporal region","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["0d-t-region","ZeroDimensionalTemporalRegion","a temporal region that is occupied by a process boundary","right now","the moment at which a child is born","the moment at which a finger is detached in an industrial accident","the moment of death.","temporal instant.","A zero-dimensional temporal region is a temporal region that is without extent. (axiom label in BFO2 Reference: [102-001])","(forall (x) (if (ZeroDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [102-001] ","false"],"shortForm":"BFO_0000148","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000182\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000182\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"history\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"History\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by a material entity or site, including processes on the surface of the entity or within the cavities to which it serves as host. (axiom label in BFO2 Reference: [138-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/138-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"history\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"history\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"history\"},{\"type\":[\"literal\"],\"value\":\"History\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by a material entity or site, including processes on the surface of the entity or within the cavities to which it serves as host. (axiom label in BFO2 Reference: [138-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/138-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000182\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"BFO:0000182\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000182\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000182\"},\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000182","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000015","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000015","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"history","http__//purl.obolibrary.org/obo/BFO_0000180":"History","http__//purl.obolibrary.org/obo/IAO_0000600":"A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by a material entity or site, including processes on the surface of the entity or within the cavities to which it serves as host. (axiom label in BFO2 Reference: [138-001])","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"history","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000015","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000182","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000182","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"history","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["history","History","A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by a material entity or site, including processes on the surface of the entity or within the cavities to which it serves as host. (axiom label in BFO2 Reference: [138-001])","false"],"shortForm":"BFO_0000182","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"entity\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Entity\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Julius Caesar\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Verdi’s Requiem\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the Second World War\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"your body mass index\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Entity doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. For example Werner Ceusters \\u0027portions of reality\\u0027 include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, \\u0027How to track absolutely everything\\u0027 at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000004\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/001-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"numDescendants\":301.0,\"numHierarchicalDescendants\":283.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"entity\"},{\"type\":[\"literal\"],\"value\":\"Entity\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Julius Caesar\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Verdi’s Requiem\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the Second World War\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"your body mass index\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Entity doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. For example Werner Ceusters \\u0027portions of reality\\u0027 include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, \\u0027How to track absolutely everything\\u0027 at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000004\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/001-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000001","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"entity","http__//purl.obolibrary.org/obo/BFO_0000180":"Entity","http__//purl.obolibrary.org/obo/IAO_0000112":["Julius Caesar","Verdi’s Requiem","the Second World War","your body mass index"],"http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81","Entity doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. For example Werner Ceusters \u0027portions of reality\u0027 include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, \u0027How to track absolutely everything\u0027 at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf"],"http__//purl.obolibrary.org/obo/IAO_0000600":"An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001])","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#Thing","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000001","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"entity","numDescendants":"301.0","numHierarchicalDescendants":"283.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000030","searchableAnnotationValues":["entity","Entity","Julius Caesar","Verdi’s Requiem","the Second World War","your body mass index","BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81","Entity doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. For example Werner Ceusters \u0027portions of reality\u0027 include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, \u0027How to track absolutely everything\u0027 at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf","An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001])","false"],"shortForm":"BFO_0000001","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"continuant\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Continuant\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Continuant doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster\\u0027s other portions of reality, questions are raised as to whether universals are continuants\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000007\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/008-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/126-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/009-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/011-002\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/009-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/126-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/008-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/011-002\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"numDescendants\":265.0,\"numHierarchicalDescendants\":247.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"continuant\"},{\"type\":[\"literal\"],\"value\":\"Continuant\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Continuant doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster\\u0027s other portions of reality, questions are raised as to whether universals are continuants\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000007\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/008-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/126-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/009-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/011-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/009-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/126-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/008-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/011-002\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000002","definition":"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000001","directParent":"http://purl.obolibrary.org/obo/BFO_0000001","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/BFO_0000001","hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"continuant","http__//purl.obolibrary.org/obo/BFO_0000180":"Continuant","http__//purl.obolibrary.org/obo/IAO_0000115":"An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240","Continuant doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster\u0027s other portions of reality, questions are raised as to whether universals are continuants"],"http__//purl.obolibrary.org/obo/IAO_0000600":"A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002])","http__//purl.obolibrary.org/obo/IAO_0000601":["if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001])","if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002])","if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002])"],"http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] ","(forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] ","(forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] ","(forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"continuant","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000001","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/BFO_0000003"],"id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000002","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000002","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"continuant","numDescendants":"265.0","numHierarchicalDescendants":"247.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["continuant","Continuant","An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240","Continuant doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster\u0027s other portions of reality, questions are raised as to whether universals are continuants","A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002])","if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001])","if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002])","if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002])","(forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] ","(forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] ","(forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] ","(forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] ","false"],"shortForm":"BFO_0000002","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that has temporal parts and that happens, unfolds or develops through time.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"occurrent\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Occurrent\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that has temporal parts and that happens, unfolds or develops through time.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrent doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000006\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by \\u0027spn[e]\\u0027 and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write \\u0027spr[e]\\u0027 and `spl[e]\\u0027 respectively for the spread and spell of e, omitting mention of the frame.\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000012\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/077-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/108-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/079-001\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/108-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/079-001\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://www.w3.org/2002/07/owl#disjointWith\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"numDescendants\":34.0,\"numHierarchicalDescendants\":34.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"occurrent\"},{\"type\":[\"literal\"],\"value\":\"Occurrent\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An entity that has temporal parts and that happens, unfolds or develops through time.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrent doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000006\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by \\u0027spn[e]\\u0027 and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write \\u0027spr[e]\\u0027 and `spl[e]\\u0027 respectively for the spread and spell of e, omitting mention of the frame.\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000012\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/077-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/108-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/079-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/108-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/079-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000003\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000003","definition":"An entity that has temporal parts and that happens, unfolds or develops through time.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000001","directParent":"http://purl.obolibrary.org/obo/BFO_0000001","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/BFO_0000001","hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"occurrent","http__//purl.obolibrary.org/obo/BFO_0000180":"Occurrent","http__//purl.obolibrary.org/obo/IAO_0000115":"An entity that has temporal parts and that happens, unfolds or develops through time.","http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region","BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.","Occurrent doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process.","Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by \u0027spn[e]\u0027 and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write \u0027spr[e]\u0027 and `spl[e]\u0027 respectively for the spread and spell of e, omitting mention of the frame."],"http__//purl.obolibrary.org/obo/IAO_0000600":"An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002])","http__//purl.obolibrary.org/obo/IAO_0000601":["Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001])","b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001])"],"http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] ","(forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"occurrent","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000001","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000003","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000003","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"occurrent","numDescendants":"34.0","numHierarchicalDescendants":"34.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["occurrent","Occurrent","An entity that has temporal parts and that happens, unfolds or develops through time.","BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region","BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.","Occurrent doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process.","Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by \u0027spn[e]\u0027 and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write \u0027spr[e]\u0027 and `spl[e]\u0027 respectively for the spread and spell of e, omitting mention of the frame.","An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002])","Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001])","b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001])","(forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] ","(forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] ","false"],"shortForm":"BFO_0000003","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an independent continuant \\u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/017-002\"}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"ic\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"IndependentContinuant\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a chair\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a heart\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a leg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a molecule\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an atom\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an orchestra.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an organism\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the bottom right portion of a human torso\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of your mouth\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an independent continuant \\u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/017-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/134-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/018-002\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/134-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/018-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/017-002\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000031\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"numDescendants\":18.0,\"numHierarchicalDescendants\":18.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"ic\"},{\"type\":[\"literal\"],\"value\":\"IndependentContinuant\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a chair\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a heart\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a leg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a molecule\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an atom\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an orchestra.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an organism\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the bottom right portion of a human torso\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of your mouth\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an independent continuant \\u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/017-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/134-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/018-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/134-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/018-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/017-002\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000004\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000004","definition":"b is an independent continuant \u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000002","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000002","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"ic","http__//purl.obolibrary.org/obo/BFO_0000180":"IndependentContinuant","http__//purl.obolibrary.org/obo/IAO_0000112":["a chair","a heart","a leg","a molecule","a spatial region","an atom","an orchestra.","an organism","the bottom right portion of a human torso","the interior of your mouth"],"http__//purl.obolibrary.org/obo/IAO_0000115":"b is an independent continuant \u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])","http__//purl.obolibrary.org/obo/IAO_0000601":["For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001])","For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002])"],"http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] ","(forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] ","(iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"independent continuant","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000031"],"id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000004","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000004","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"independent continuant","numDescendants":"18.0","numHierarchicalDescendants":"18.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["ic","IndependentContinuant","a chair","a heart","a leg","a molecule","a spatial region","an atom","an orchestra.","an organism","the bottom right portion of a human torso","the interior of your mouth","b is an independent continuant \u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])","For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001])","For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002])","(forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] ","(forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] ","(iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] ","false"],"shortForm":"BFO_0000004","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000006\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"s-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"SpatialRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Spatial regions do not participate in processes.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Spatial region doesn\\u0027t have a closure axiom because the subclasses don\\u0027t exhaust all possibilites. An example would be the union of a spatial point and a spatial line that doesn\\u0027t overlap the point, or two spatial lines that intersect at a single point. In both cases the resultant spatial region is neither 0-dimensional, 1-dimensional, 2-dimensional, or 3-dimensional.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000002\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"}}]}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A spatial region is a continuant entity that is a continuant_part_of spaceR as defined relative to some frame R. (axiom label in BFO2 Reference: [035-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/035-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All continuant parts of spatial regions are spatial regions. (axiom label in BFO2 Reference: [036-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/036-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y t) (if (and (SpatialRegion x) (continuantPartOfAt y x t)) (SpatialRegion y))) // axiom label in BFO2 CLIF: [036-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/036-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (SpatialRegion x) (Continuant x))) // axiom label in BFO2 CLIF: [035-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/035-001\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatial region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/BFO_0000029\",\"http://purl.obolibrary.org/obo/BFO_0000140\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatial region\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"s-region\"},{\"type\":[\"literal\"],\"value\":\"SpatialRegion\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Spatial regions do not participate in processes.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Spatial region doesn\\u0027t have a closure axiom because the subclasses don\\u0027t exhaust all possibilites. An example would be the union of a spatial point and a spatial line that doesn\\u0027t overlap the point, or two spatial lines that intersect at a single point. In both cases the resultant spatial region is neither 0-dimensional, 1-dimensional, 2-dimensional, or 3-dimensional.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000002\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A spatial region is a continuant entity that is a continuant_part_of spaceR as defined relative to some frame R. (axiom label in BFO2 Reference: [035-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/035-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All continuant parts of spatial regions are spatial regions. (axiom label in BFO2 Reference: [036-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/036-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y t) (if (and (SpatialRegion x) (continuantPartOfAt y x t)) (SpatialRegion y))) // axiom label in BFO2 CLIF: [036-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/036-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (SpatialRegion x) (Continuant x))) // axiom label in BFO2 CLIF: [035-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/035-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000006\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000029\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"site\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000029\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000140\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant fiat boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000140\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000006","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000141","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000141","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"s-region","http__//purl.obolibrary.org/obo/BFO_0000180":"SpatialRegion","http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: Spatial regions do not participate in processes.","Spatial region doesn\u0027t have a closure axiom because the subclasses don\u0027t exhaust all possibilites. An example would be the union of a spatial point and a spatial line that doesn\u0027t overlap the point, or two spatial lines that intersect at a single point. In both cases the resultant spatial region is neither 0-dimensional, 1-dimensional, 2-dimensional, or 3-dimensional."],"http__//purl.obolibrary.org/obo/IAO_0000600":"A spatial region is a continuant entity that is a continuant_part_of spaceR as defined relative to some frame R. (axiom label in BFO2 Reference: [035-001])","http__//purl.obolibrary.org/obo/IAO_0000601":"All continuant parts of spatial regions are spatial regions. (axiom label in BFO2 Reference: [036-001])","http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x y t) (if (and (SpatialRegion x) (continuantPartOfAt y x t)) (SpatialRegion y))) // axiom label in BFO2 CLIF: [036-001] ","(forall (x) (if (SpatialRegion x) (Continuant x))) // axiom label in BFO2 CLIF: [035-001] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"spatial region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000141","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/BFO_0000029","http://purl.obolibrary.org/obo/BFO_0000140"],"id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000006","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000006","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"spatial region","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["s-region","SpatialRegion","BFO 2 Reference: Spatial regions do not participate in processes.","Spatial region doesn\u0027t have a closure axiom because the subclasses don\u0027t exhaust all possibilites. An example would be the union of a spatial point and a spatial line that doesn\u0027t overlap the point, or two spatial lines that intersect at a single point. In both cases the resultant spatial region is neither 0-dimensional, 1-dimensional, 2-dimensional, or 3-dimensional.","A spatial region is a continuant entity that is a continuant_part_of spaceR as defined relative to some frame R. (axiom label in BFO2 Reference: [035-001])","All continuant parts of spatial regions are spatial regions. (axiom label in BFO2 Reference: [036-001])","(forall (x y t) (if (and (SpatialRegion x) (continuantPartOfAt y x t)) (SpatialRegion y))) // axiom label in BFO2 CLIF: [036-001] ","(forall (x) (if (SpatialRegion x) (Continuant x))) // axiom label in BFO2 CLIF: [035-001] ","false"],"shortForm":"BFO_0000006","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000008\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000008\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"t-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"TemporalRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Temporal region doesn\\u0027t have a closure axiom because the subclasses don\\u0027t exhaust all possibilites. An example would be the mereological sum of a temporal instant and a temporal interval that doesn\\u0027t overlap the instant. In this case the resultant temporal region is neither 0-dimensional nor 1-dimensional\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000003\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"}}]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A temporal region is an occurrent entity that is part of time as defined relative to some reference frame. (axiom label in BFO2 Reference: [100-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/100-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All parts of temporal regions are temporal regions. (axiom label in BFO2 Reference: [101-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/101-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every temporal region t is such that t occupies_temporal_region t. (axiom label in BFO2 Reference: [119-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/119-002\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/119-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/101-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/100-001\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/BFO_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000035\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal region\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"t-region\"},{\"type\":[\"literal\"],\"value\":\"TemporalRegion\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Temporal region doesn\\u0027t have a closure axiom because the subclasses don\\u0027t exhaust all possibilites. An example would be the mereological sum of a temporal instant and a temporal interval that doesn\\u0027t overlap the instant. In this case the resultant temporal region is neither 0-dimensional nor 1-dimensional\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000003\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A temporal region is an occurrent entity that is part of time as defined relative to some reference frame. (axiom label in BFO2 Reference: [100-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/100-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All parts of temporal regions are temporal regions. (axiom label in BFO2 Reference: [101-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/101-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every temporal region t is such that t occupies_temporal_region t. (axiom label in BFO2 Reference: [119-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/119-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/119-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/101-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/100-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000008\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatiotemporal region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000035\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000035\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000008","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000003","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"t-region","http__//purl.obolibrary.org/obo/BFO_0000180":"TemporalRegion","http__//purl.obolibrary.org/obo/IAO_0000116":"Temporal region doesn\u0027t have a closure axiom because the subclasses don\u0027t exhaust all possibilites. An example would be the mereological sum of a temporal instant and a temporal interval that doesn\u0027t overlap the instant. In this case the resultant temporal region is neither 0-dimensional nor 1-dimensional","http__//purl.obolibrary.org/obo/IAO_0000600":"A temporal region is an occurrent entity that is part of time as defined relative to some reference frame. (axiom label in BFO2 Reference: [100-001])","http__//purl.obolibrary.org/obo/IAO_0000601":["All parts of temporal regions are temporal regions. (axiom label in BFO2 Reference: [101-001])","Every temporal region t is such that t occupies_temporal_region t. (axiom label in BFO2 Reference: [119-002])"],"http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002] ","(forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001] ","(forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"temporal region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/BFO_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000035"],"id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000008","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000008","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"temporal region","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["t-region","TemporalRegion","Temporal region doesn\u0027t have a closure axiom because the subclasses don\u0027t exhaust all possibilites. An example would be the mereological sum of a temporal instant and a temporal interval that doesn\u0027t overlap the instant. In this case the resultant temporal region is neither 0-dimensional nor 1-dimensional","A temporal region is an occurrent entity that is part of time as defined relative to some reference frame. (axiom label in BFO2 Reference: [100-001])","All parts of temporal regions are temporal regions. (axiom label in BFO2 Reference: [101-001])","Every temporal region t is such that t occupies_temporal_region t. (axiom label in BFO2 Reference: [119-002])","(forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002] ","(forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001] ","(forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001] ","false"],"shortForm":"BFO_0000008","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000009\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000009\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"2d-s-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"TwoDimensionalSpatialRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an infinitely thin plane in space.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the surface of a sphere-shaped part of space\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A two-dimensional spatial region is a spatial region that is of two dimensions. (axiom label in BFO2 Reference: [039-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/039-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (TwoDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [039-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/039-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two-dimensional spatial region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000028\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two-dimensional spatial region\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"2d-s-region\"},{\"type\":[\"literal\"],\"value\":\"TwoDimensionalSpatialRegion\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an infinitely thin plane in space.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the surface of a sphere-shaped part of space\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A two-dimensional spatial region is a spatial region that is of two dimensions. (axiom label in BFO2 Reference: [039-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/039-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (TwoDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [039-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/039-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000009\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000006\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000009","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"2d-s-region","http__//purl.obolibrary.org/obo/BFO_0000180":"TwoDimensionalSpatialRegion","http__//purl.obolibrary.org/obo/IAO_0000112":["an infinitely thin plane in space.","the surface of a sphere-shaped part of space"],"http__//purl.obolibrary.org/obo/IAO_0000600":"A two-dimensional spatial region is a spatial region that is of two dimensions. (axiom label in BFO2 Reference: [039-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (TwoDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [039-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"two-dimensional spatial region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000006","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000028","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000009","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000009","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"two-dimensional spatial region","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["2d-s-region","TwoDimensionalSpatialRegion","an infinitely thin plane in space.","the surface of a sphere-shaped part of space","A two-dimensional spatial region is a spatial region that is of two dimensions. (axiom label in BFO2 Reference: [039-001])","(forall (x) (if (TwoDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [039-001] ","false"],"shortForm":"BFO_0000009","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000011\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000011\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"st-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"SpatiotemporalRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the spatiotemporal region occupied by a human life\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the spatiotemporal region occupied by a process of cellular meiosis.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the spatiotemporal region occupied by the development of a cancer tumor\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A spatiotemporal region is an occurrent entity that is part of spacetime. (axiom label in BFO2 Reference: [095-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/095-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All parts of spatiotemporal regions are spatiotemporal regions. (axiom label in BFO2 Reference: [096-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/096-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Each spatiotemporal region at any time t projects_onto some spatial region at t. (axiom label in BFO2 Reference: [099-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/099-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Each spatiotemporal region projects_onto some temporal region. (axiom label in BFO2 Reference: [098-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/098-001\"}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every spatiotemporal region occupies_spatiotemporal_region itself.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every spatiotemporal region s is such that s occupies_spatiotemporal_region s. (axiom label in BFO2 Reference: [107-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/107-002\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (r) (if (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion r r))) // axiom label in BFO2 CLIF: [107-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/107-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (SpatioTemporalRegion x) (exists (y) (and (SpatialRegion y) (spatiallyProjectsOntoAt x y t))))) // axiom label in BFO2 CLIF: [099-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/099-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (and (SpatioTemporalRegion x) (occurrentPartOf y x)) (SpatioTemporalRegion y))) // axiom label in BFO2 CLIF: [096-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/096-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (SpatioTemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [095-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/095-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (SpatioTemporalRegion x) (exists (y) (and (TemporalRegion y) (temporallyProjectsOnto x y))))) // axiom label in BFO2 CLIF: [098-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/098-001\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatiotemporal region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatiotemporal region\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"st-region\"},{\"type\":[\"literal\"],\"value\":\"SpatiotemporalRegion\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the spatiotemporal region occupied by a human life\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the spatiotemporal region occupied by a process of cellular meiosis.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the spatiotemporal region occupied by the development of a cancer tumor\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A spatiotemporal region is an occurrent entity that is part of spacetime. (axiom label in BFO2 Reference: [095-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/095-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All parts of spatiotemporal regions are spatiotemporal regions. (axiom label in BFO2 Reference: [096-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/096-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Each spatiotemporal region at any time t projects_onto some spatial region at t. (axiom label in BFO2 Reference: [099-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/099-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Each spatiotemporal region projects_onto some temporal region. (axiom label in BFO2 Reference: [098-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/098-001\"}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every spatiotemporal region occupies_spatiotemporal_region itself.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every spatiotemporal region s is such that s occupies_spatiotemporal_region s. (axiom label in BFO2 Reference: [107-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/107-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (r) (if (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion r r))) // axiom label in BFO2 CLIF: [107-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/107-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (SpatioTemporalRegion x) (exists (y) (and (SpatialRegion y) (spatiallyProjectsOntoAt x y t))))) // axiom label in BFO2 CLIF: [099-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/099-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (and (SpatioTemporalRegion x) (occurrentPartOf y x)) (SpatioTemporalRegion y))) // axiom label in BFO2 CLIF: [096-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/096-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (SpatioTemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [095-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/095-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (SpatioTemporalRegion x) (exists (y) (and (TemporalRegion y) (temporallyProjectsOnto x y))))) // axiom label in BFO2 CLIF: [098-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/098-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000011\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000011","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000003","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"st-region","http__//purl.obolibrary.org/obo/BFO_0000180":"SpatiotemporalRegion","http__//purl.obolibrary.org/obo/IAO_0000112":["the spatiotemporal region occupied by a human life","the spatiotemporal region occupied by a process of cellular meiosis.","the spatiotemporal region occupied by the development of a cancer tumor"],"http__//purl.obolibrary.org/obo/IAO_0000600":"A spatiotemporal region is an occurrent entity that is part of spacetime. (axiom label in BFO2 Reference: [095-001])","http__//purl.obolibrary.org/obo/IAO_0000601":["All parts of spatiotemporal regions are spatiotemporal regions. (axiom label in BFO2 Reference: [096-001])","Each spatiotemporal region at any time t projects_onto some spatial region at t. (axiom label in BFO2 Reference: [099-001])","Each spatiotemporal region projects_onto some temporal region. (axiom label in BFO2 Reference: [098-001])","Every spatiotemporal region occupies_spatiotemporal_region itself.","Every spatiotemporal region s is such that s occupies_spatiotemporal_region s. (axiom label in BFO2 Reference: [107-002])"],"http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (r) (if (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion r r))) // axiom label in BFO2 CLIF: [107-002] ","(forall (x t) (if (SpatioTemporalRegion x) (exists (y) (and (SpatialRegion y) (spatiallyProjectsOntoAt x y t))))) // axiom label in BFO2 CLIF: [099-001] ","(forall (x y) (if (and (SpatioTemporalRegion x) (occurrentPartOf y x)) (SpatioTemporalRegion y))) // axiom label in BFO2 CLIF: [096-001] ","(forall (x) (if (SpatioTemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [095-001] ","(forall (x) (if (SpatioTemporalRegion x) (exists (y) (and (TemporalRegion y) (temporallyProjectsOnto x y))))) // axiom label in BFO2 CLIF: [098-001] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"spatiotemporal region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000003","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000011","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000011","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"spatiotemporal region","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["st-region","SpatiotemporalRegion","the spatiotemporal region occupied by a human life","the spatiotemporal region occupied by a process of cellular meiosis.","the spatiotemporal region occupied by the development of a cancer tumor","A spatiotemporal region is an occurrent entity that is part of spacetime. (axiom label in BFO2 Reference: [095-001])","All parts of spatiotemporal regions are spatiotemporal regions. (axiom label in BFO2 Reference: [096-001])","Each spatiotemporal region at any time t projects_onto some spatial region at t. (axiom label in BFO2 Reference: [099-001])","Each spatiotemporal region projects_onto some temporal region. (axiom label in BFO2 Reference: [098-001])","Every spatiotemporal region occupies_spatiotemporal_region itself.","Every spatiotemporal region s is such that s occupies_spatiotemporal_region s. (axiom label in BFO2 Reference: [107-002])","(forall (r) (if (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion r r))) // axiom label in BFO2 CLIF: [107-002] ","(forall (x t) (if (SpatioTemporalRegion x) (exists (y) (and (SpatialRegion y) (spatiallyProjectsOntoAt x y t))))) // axiom label in BFO2 CLIF: [099-001] ","(forall (x y) (if (and (SpatioTemporalRegion x) (occurrentPartOf y x)) (SpatioTemporalRegion y))) // axiom label in BFO2 CLIF: [096-001] ","(forall (x) (if (SpatioTemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [095-001] ","(forall (x) (if (SpatioTemporalRegion x) (exists (y) (and (TemporalRegion y) (temporallyProjectsOnto x y))))) // axiom label in BFO2 CLIF: [098-001] ","false"],"shortForm":"BFO_0000011","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"p is a process \\u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/083-003\"}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"process\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Process\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a process of cell-division, \\\\ a beating of the heart\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a process of meiosis\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a process of sleeping\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the course of a disease\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the flight of a bird\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the life of an organism\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"your process of aging.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"p is a process \\u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/083-003\"}]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/083-003\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"numDescendants\":28.0,\"numHierarchicalDescendants\":28.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"process\"},{\"type\":[\"literal\"],\"value\":\"Process\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a process of cell-division, \\\\ a beating of the heart\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a process of meiosis\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a process of sleeping\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the course of a disease\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the flight of a bird\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the life of an organism\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"your process of aging.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"p is a process \\u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/083-003\"}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/083-003\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000015\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000015","definition":"p is a process \u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000003","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"process","http__//purl.obolibrary.org/obo/BFO_0000180":"Process","http__//purl.obolibrary.org/obo/IAO_0000112":["a process of cell-division, \\ a beating of the heart","a process of meiosis","a process of sleeping","the course of a disease","the flight of a bird","the life of an organism","your process of aging."],"http__//purl.obolibrary.org/obo/IAO_0000115":"p is a process \u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)","http__//purl.obolibrary.org/obo/IAO_0000602":"(iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000003","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000015","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000015","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"process","numDescendants":"28.0","numHierarchicalDescendants":"28.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["process","Process","a process of cell-division, \\ a beating of the heart","a process of meiosis","a process of sleeping","the course of a disease","the flight of a bird","the life of an organism","your process of aging.","p is a process \u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])","BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)","(iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] ","false"],"shortForm":"BFO_0000015","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"disposition\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Disposition\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an atom of element X has the disposition to decay to an atom of element Y\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"certain people have a predisposition to colon cancer\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"children are innately disposed to categorize objects in certain ways.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the cell wall is disposed to filter chemicals in endocytosis and exocytosis\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a disposition means: b is a realizable entity \\u0026 b’s bearer is some material entity \\u0026 b is such that if it ceases to exist, then its bearer is physically changed, \\u0026 b’s realization occurs when and because this bearer is in some special physical circumstances, \\u0026 this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/062-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"If b is a realizable entity then for all t at which b exists, b s-depends_on some material entity at t. (axiom label in BFO2 Reference: [063-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/063-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/063-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/062-002\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"disposition\"},{\"type\":[\"literal\"],\"value\":\"Disposition\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an atom of element X has the disposition to decay to an atom of element Y\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"certain people have a predisposition to colon cancer\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"children are innately disposed to categorize objects in certain ways.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the cell wall is disposed to filter chemicals in endocytosis and exocytosis\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a disposition means: b is a realizable entity \\u0026 b’s bearer is some material entity \\u0026 b is such that if it ceases to exist, then its bearer is physically changed, \\u0026 b’s realization occurs when and because this bearer is in some special physical circumstances, \\u0026 this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/062-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"If b is a realizable entity then for all t at which b exists, b s-depends_on some material entity at t. (axiom label in BFO2 Reference: [063-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/063-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/063-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/062-002\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000016\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000023\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000016","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000017","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000017","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"disposition","http__//purl.obolibrary.org/obo/BFO_0000180":"Disposition","http__//purl.obolibrary.org/obo/IAO_0000112":["an atom of element X has the disposition to decay to an atom of element Y","certain people have a predisposition to colon cancer","children are innately disposed to categorize objects in certain ways.","the cell wall is disposed to filter chemicals in endocytosis and exocytosis"],"http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.","http__//purl.obolibrary.org/obo/IAO_0000600":"b is a disposition means: b is a realizable entity \u0026 b’s bearer is some material entity \u0026 b is such that if it ceases to exist, then its bearer is physically changed, \u0026 b’s realization occurs when and because this bearer is in some special physical circumstances, \u0026 this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002])","http__//purl.obolibrary.org/obo/IAO_0000601":"If b is a realizable entity then for all t at which b exists, b s-depends_on some material entity at t. (axiom label in BFO2 Reference: [063-002])","http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002] ","(forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"disposition","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000017","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000023","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000016","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000016","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disposition","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["disposition","Disposition","an atom of element X has the disposition to decay to an atom of element Y","certain people have a predisposition to colon cancer","children are innately disposed to categorize objects in certain ways.","the cell wall is disposed to filter chemicals in endocytosis and exocytosis","BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.","b is a disposition means: b is a realizable entity \u0026 b’s bearer is some material entity \u0026 b is such that if it ceases to exist, then its bearer is physically changed, \u0026 b’s realization occurs when and because this bearer is in some special physical circumstances, \u0026 this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002])","If b is a realizable entity then for all t at which b exists, b s-depends_on some material entity at t. (axiom label in BFO2 Reference: [063-002])","(forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002] ","(forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002] ","false"],"shortForm":"BFO_0000016","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"realizable\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"RealizableEntity\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the disposition of this piece of metal to conduct electricity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the disposition of your blood to coagulate\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of your reproductive organs\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of being a doctor\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of this boundary to delineate where Utah and Colorado meet\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/058-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/060-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/060-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/058-002\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"realizable\"},{\"type\":[\"literal\"],\"value\":\"RealizableEntity\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the disposition of this piece of metal to conduct electricity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the disposition of your blood to coagulate\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of your reproductive organs\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of being a doctor\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of this boundary to delineate where Utah and Colorado meet\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/058-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/060-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/060-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/058-002\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000017\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000017","definition":"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000020","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000020","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"realizable","http__//purl.obolibrary.org/obo/BFO_0000180":"RealizableEntity","http__//purl.obolibrary.org/obo/IAO_0000112":["the disposition of this piece of metal to conduct electricity.","the disposition of your blood to coagulate","the function of your reproductive organs","the role of being a doctor","the role of this boundary to delineate where Utah and Colorado meet"],"http__//purl.obolibrary.org/obo/IAO_0000115":"A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","http__//purl.obolibrary.org/obo/IAO_0000600":"To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002])","http__//purl.obolibrary.org/obo/IAO_0000601":"All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002])","http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] ","(forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"realizable entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000020","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000019","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000017","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000017","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"realizable entity","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000033","searchableAnnotationValues":["realizable","RealizableEntity","the disposition of this piece of metal to conduct electricity.","the disposition of your blood to coagulate","the function of your reproductive organs","the role of being a doctor","the role of this boundary to delineate where Utah and Colorado meet","A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002])","All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002])","(forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] ","(forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] ","false"],"shortForm":"BFO_0000017","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000018\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000018\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"0d-s-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ZeroDimensionalSpatialRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A zero-dimensional spatial region is a point in space. (axiom label in BFO2 Reference: [037-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/037-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ZeroDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [037-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/037-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional spatial region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000028\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional spatial region\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000018\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000401\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000026\",\"isObsolete\":false}]},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000402\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000009\",\"isObsolete\":false}]},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000403\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000028\",\"isObsolete\":false}]}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"0d-s-region\"},{\"type\":[\"literal\"],\"value\":\"ZeroDimensionalSpatialRegion\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A zero-dimensional spatial region is a point in space. (axiom label in BFO2 Reference: [037-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/037-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ZeroDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [037-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/037-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000018\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000006\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000402\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000402\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000403\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000403\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000401\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000401\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000219\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000026\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000018","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"0d-s-region","http__//purl.obolibrary.org/obo/BFO_0000180":"ZeroDimensionalSpatialRegion","http__//purl.obolibrary.org/obo/IAO_0000600":"A zero-dimensional spatial region is a point in space. (axiom label in BFO2 Reference: [037-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (ZeroDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [037-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"zero-dimensional spatial region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000006","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000028","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000018","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000018","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"zero-dimensional spatial region","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000401","http://purl.obolibrary.org/obo/IAO_0000402","http://purl.obolibrary.org/obo/IAO_0000403"],"searchableAnnotationValues":["0d-s-region","ZeroDimensionalSpatialRegion","A zero-dimensional spatial region is a point in space. (axiom label in BFO2 Reference: [037-001])","(forall (x) (if (ZeroDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [037-001] ","false"],"shortForm":"BFO_0000018","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"quality\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Quality\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the ambient temperature of this portion of air\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the color of a tomato\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the length of the circumference of your waist\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the mass of this piece of gold.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the shape of your nose\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the shape of your nostril\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/055-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"If an entity is a quality at any time that it exists, then it is a quality at every time that it exists. (axiom label in BFO2 Reference: [105-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/105-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/055-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/105-001\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"numDescendants\":7.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"quality\"},{\"type\":[\"literal\"],\"value\":\"Quality\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the ambient temperature of this portion of air\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the color of a tomato\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the length of the circumference of your waist\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the mass of this piece of gold.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the shape of your nose\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the shape of your nostril\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/055-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"If an entity is a quality at any time that it exists, then it is a quality at every time that it exists. (axiom label in BFO2 Reference: [105-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/105-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/055-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/105-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000019\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000019","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000020","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000020","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"quality","http__//purl.obolibrary.org/obo/BFO_0000180":"Quality","http__//purl.obolibrary.org/obo/IAO_0000112":["the ambient temperature of this portion of air","the color of a tomato","the length of the circumference of your waist","the mass of this piece of gold.","the shape of your nose","the shape of your nostril"],"http__//purl.obolibrary.org/obo/IAO_0000600":"a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001])","http__//purl.obolibrary.org/obo/IAO_0000601":"If an entity is a quality at any time that it exists, then it is a quality at every time that it exists. (axiom label in BFO2 Reference: [105-001])","http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001] ","(forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000020","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000019","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000019","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"quality","numDescendants":"7.0","numHierarchicalDescendants":"7.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["quality","Quality","the ambient temperature of this portion of air","the color of a tomato","the length of the circumference of your waist","the mass of this piece of gold.","the shape of your nose","the shape of your nostril","a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001])","If an entity is a quality at any time that it exists, then it is a quality at every time that it exists. (axiom label in BFO2 Reference: [105-001])","(forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001] ","(forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001] ","false"],"shortForm":"BFO_0000019","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a specifically dependent continuant \\u003d Def. b is a continuant \\u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/050-003\"}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"sdc\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"SpecificallyDependentContinuant\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"of one-sided specifically dependent continuants: the mass of this tomato\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the disposition of this fish to decay\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of this heart: to pump blood\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the mutual dependence of proton donors and acceptors in chemical reactions [79\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the pink color of a medium rare piece of grilled filet mignon at its center\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of being a doctor\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the shape of this hole.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the smell of this portion of mozzarella\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a specifically dependent continuant \\u003d Def. b is a continuant \\u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/050-003\"}]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Specifically dependent continuant doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. We\\u0027re not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000005\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"}}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/050-003\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000031\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"numDescendants\":14.0,\"numHierarchicalDescendants\":14.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"sdc\"},{\"type\":[\"literal\"],\"value\":\"SpecificallyDependentContinuant\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"of one-sided specifically dependent continuants: the mass of this tomato\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the disposition of this fish to decay\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of this heart: to pump blood\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the mutual dependence of proton donors and acceptors in chemical reactions [79\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the pink color of a medium rare piece of grilled filet mignon at its center\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of being a doctor\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the shape of this hole.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the smell of this portion of mozzarella\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a specifically dependent continuant \\u003d Def. b is a continuant \\u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/050-003\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Specifically dependent continuant doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. We\\u0027re not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000005\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"per discussion with Barry Smith\"}}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/050-003\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000020\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000020","definition":"b is a specifically dependent continuant \u003d Def. b is a continuant \u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000002","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000002","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"sdc","http__//purl.obolibrary.org/obo/BFO_0000180":"SpecificallyDependentContinuant","http__//purl.obolibrary.org/obo/IAO_0000112":["Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key","of one-sided specifically dependent continuants: the mass of this tomato","of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates.","the disposition of this fish to decay","the function of this heart: to pump blood","the mutual dependence of proton donors and acceptors in chemical reactions [79","the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction","the pink color of a medium rare piece of grilled filet mignon at its center","the role of being a doctor","the shape of this hole.","the smell of this portion of mozzarella"],"http__//purl.obolibrary.org/obo/IAO_0000115":"b is a specifically dependent continuant \u003d Def. b is a continuant \u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])","http__//purl.obolibrary.org/obo/IAO_0000116":"Specifically dependent continuant doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. We\u0027re not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc.","http__//purl.obolibrary.org/obo/IAO_0000602":"(iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"specifically dependent continuant","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000031","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000020","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000020","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"specifically dependent continuant","numDescendants":"14.0","numHierarchicalDescendants":"14.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["sdc","SpecificallyDependentContinuant","Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key","of one-sided specifically dependent continuants: the mass of this tomato","of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates.","the disposition of this fish to decay","the function of this heart: to pump blood","the mutual dependence of proton donors and acceptors in chemical reactions [79","the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction","the pink color of a medium rare piece of grilled filet mignon at its center","the role of being a doctor","the shape of this hole.","the smell of this portion of mozzarella","b is a specifically dependent continuant \u003d Def. b is a continuant \u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])","Specifically dependent continuant doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. We\u0027re not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc.","(iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] ","false"],"shortForm":"BFO_0000020","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000023\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"role\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Role\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the priest role\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of a boundary to demarcate two neighboring administrative territories\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of a building in serving as a military target\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of a stone in marking a property boundary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of subject in a clinical trial\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the student role\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \\u003dDef. there is some c, c instance_of professor role \\u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a role means: b is a realizable entity \\u0026 b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be\\u0026 b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/061-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/061-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"role\"},{\"type\":[\"literal\"],\"value\":\"Role\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the priest role\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of a boundary to demarcate two neighboring administrative territories\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of a building in serving as a military target\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of a stone in marking a property boundary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the role of subject in a clinical trial\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the student role\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \\u003dDef. there is some c, c instance_of professor role \\u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a role means: b is a realizable entity \\u0026 b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be\\u0026 b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/061-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/061-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000023\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000023","definition":"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000017","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000017","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"role","http__//purl.obolibrary.org/obo/BFO_0000180":"Role","http__//purl.obolibrary.org/obo/IAO_0000112":["John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.","the priest role","the role of a boundary to demarcate two neighboring administrative territories","the role of a building in serving as a military target","the role of a stone in marking a property boundary","the role of subject in a clinical trial","the student role"],"http__//purl.obolibrary.org/obo/IAO_0000115":"A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \u003dDef. there is some c, c instance_of professor role \u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.","http__//purl.obolibrary.org/obo/IAO_0000600":"b is a role means: b is a realizable entity \u0026 b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be\u0026 b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"role","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000017","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000023","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000023","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"role","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["role","Role","John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.","the priest role","the role of a boundary to demarcate two neighboring administrative territories","the role of a building in serving as a military target","the role of a stone in marking a property boundary","the role of subject in a clinical trial","the student role","A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \u003dDef. there is some c, c instance_of professor role \u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.","b is a role means: b is a realizable entity \u0026 b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be\u0026 b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001])","(forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] ","false"],"shortForm":"BFO_0000023","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000024\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000024\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"fiat-object-part\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"FiatObjectPart\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"or with divisions drawn by cognitive subjects for practical reasons, such as the division of a cake (before slicing) into (what will become) slices (and thus member parts of an object aggregate). However, this does not mean that fiat object parts are dependent for their existence on divisions or delineations effected by cognitive subjects. If, for example, it is correct to conceive geological layers of the Earth as fiat object parts of the Earth, then even though these layers were first delineated in recent times, still existed long before such delineation and what holds of these layers (for example that the oldest layers are also the lowest layers) did not begin to hold because of our acts of delineation.Treatment of material entity in BFOExamples viewed by some as problematic cases for the trichotomy of fiat object part, object, and object aggregate include: a mussel on (and attached to) a rock, a slime mold, a pizza, a cloud, a galaxy, a railway train with engine and multiple carriages, a clonal stand of quaking aspen, a bacterial community (biofilm), a broken femur. Note that, as Aristotle already clearly recognized, such problematic cases – which lie at or near the penumbra of instances defined by the categories in question – need not invalidate these categories. The existence of grey objects does not prove that there are not objects which are black and objects which are white; the existence of mules does not prove that there are not objects which are donkeys and objects which are horses. It does, however, show that the examples in question need to be addressed carefully in order to show how they can be fitted into the proposed scheme, for example by recognizing additional subdivisions [29\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the FMA:regional parts of an intact human body.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the Western hemisphere of the Earth\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the division of the brain into regions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the division of the planet into hemispheres\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the dorsal and ventral surfaces of the body\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the upper and lower lobes of the left lung\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Most examples of fiat object parts are associated with theoretically drawn divisions\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a fiat object part \\u003d Def. b is a material entity which is such that for all times t, if b exists at t then there is some object c such that b proper continuant_part of c at t and c is demarcated from the remainder of c by a two-dimensional continuant fiat boundary. (axiom label in BFO2 Reference: [027-004])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/027-004\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (FiatObjectPart x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y) (and (Object y) (properContinuantPartOfAt x y t)))))))) // axiom label in BFO2 CLIF: [027-004] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/027-004\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"fiat object part\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"fiat object part\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"fiat-object-part\"},{\"type\":[\"literal\"],\"value\":\"FiatObjectPart\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"or with divisions drawn by cognitive subjects for practical reasons, such as the division of a cake (before slicing) into (what will become) slices (and thus member parts of an object aggregate). However, this does not mean that fiat object parts are dependent for their existence on divisions or delineations effected by cognitive subjects. If, for example, it is correct to conceive geological layers of the Earth as fiat object parts of the Earth, then even though these layers were first delineated in recent times, still existed long before such delineation and what holds of these layers (for example that the oldest layers are also the lowest layers) did not begin to hold because of our acts of delineation.Treatment of material entity in BFOExamples viewed by some as problematic cases for the trichotomy of fiat object part, object, and object aggregate include: a mussel on (and attached to) a rock, a slime mold, a pizza, a cloud, a galaxy, a railway train with engine and multiple carriages, a clonal stand of quaking aspen, a bacterial community (biofilm), a broken femur. Note that, as Aristotle already clearly recognized, such problematic cases – which lie at or near the penumbra of instances defined by the categories in question – need not invalidate these categories. The existence of grey objects does not prove that there are not objects which are black and objects which are white; the existence of mules does not prove that there are not objects which are donkeys and objects which are horses. It does, however, show that the examples in question need to be addressed carefully in order to show how they can be fitted into the proposed scheme, for example by recognizing additional subdivisions [29\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the FMA:regional parts of an intact human body.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the Western hemisphere of the Earth\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the division of the brain into regions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the division of the planet into hemispheres\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the dorsal and ventral surfaces of the body\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the upper and lower lobes of the left lung\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Most examples of fiat object parts are associated with theoretically drawn divisions\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a fiat object part \\u003d Def. b is a material entity which is such that for all times t, if b exists at t then there is some object c such that b proper continuant_part of c at t and c is demarcated from the remainder of c by a two-dimensional continuant fiat boundary. (axiom label in BFO2 Reference: [027-004])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/027-004\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (FiatObjectPart x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y) (and (Object y) (properContinuantPartOfAt x y t)))))))) // axiom label in BFO2 CLIF: [027-004] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/027-004\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000024\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000024","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000040","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000040","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"fiat-object-part","http__//purl.obolibrary.org/obo/BFO_0000180":"FiatObjectPart","http__//purl.obolibrary.org/obo/IAO_0000112":["or with divisions drawn by cognitive subjects for practical reasons, such as the division of a cake (before slicing) into (what will become) slices (and thus member parts of an object aggregate). However, this does not mean that fiat object parts are dependent for their existence on divisions or delineations effected by cognitive subjects. If, for example, it is correct to conceive geological layers of the Earth as fiat object parts of the Earth, then even though these layers were first delineated in recent times, still existed long before such delineation and what holds of these layers (for example that the oldest layers are also the lowest layers) did not begin to hold because of our acts of delineation.Treatment of material entity in BFOExamples viewed by some as problematic cases for the trichotomy of fiat object part, object, and object aggregate include: a mussel on (and attached to) a rock, a slime mold, a pizza, a cloud, a galaxy, a railway train with engine and multiple carriages, a clonal stand of quaking aspen, a bacterial community (biofilm), a broken femur. Note that, as Aristotle already clearly recognized, such problematic cases – which lie at or near the penumbra of instances defined by the categories in question – need not invalidate these categories. The existence of grey objects does not prove that there are not objects which are black and objects which are white; the existence of mules does not prove that there are not objects which are donkeys and objects which are horses. It does, however, show that the examples in question need to be addressed carefully in order to show how they can be fitted into the proposed scheme, for example by recognizing additional subdivisions [29","the FMA:regional parts of an intact human body.","the Western hemisphere of the Earth","the division of the brain into regions","the division of the planet into hemispheres","the dorsal and ventral surfaces of the body","the upper and lower lobes of the left lung"],"http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: Most examples of fiat object parts are associated with theoretically drawn divisions","http__//purl.obolibrary.org/obo/IAO_0000600":"b is a fiat object part \u003d Def. b is a material entity which is such that for all times t, if b exists at t then there is some object c such that b proper continuant_part of c at t and c is demarcated from the remainder of c by a two-dimensional continuant fiat boundary. (axiom label in BFO2 Reference: [027-004])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (FiatObjectPart x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y) (and (Object y) (properContinuantPartOfAt x y t)))))))) // axiom label in BFO2 CLIF: [027-004] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"fiat object part","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000040","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000024","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000024","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"fiat object part","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["fiat-object-part","FiatObjectPart","or with divisions drawn by cognitive subjects for practical reasons, such as the division of a cake (before slicing) into (what will become) slices (and thus member parts of an object aggregate). However, this does not mean that fiat object parts are dependent for their existence on divisions or delineations effected by cognitive subjects. If, for example, it is correct to conceive geological layers of the Earth as fiat object parts of the Earth, then even though these layers were first delineated in recent times, still existed long before such delineation and what holds of these layers (for example that the oldest layers are also the lowest layers) did not begin to hold because of our acts of delineation.Treatment of material entity in BFOExamples viewed by some as problematic cases for the trichotomy of fiat object part, object, and object aggregate include: a mussel on (and attached to) a rock, a slime mold, a pizza, a cloud, a galaxy, a railway train with engine and multiple carriages, a clonal stand of quaking aspen, a bacterial community (biofilm), a broken femur. Note that, as Aristotle already clearly recognized, such problematic cases – which lie at or near the penumbra of instances defined by the categories in question – need not invalidate these categories. The existence of grey objects does not prove that there are not objects which are black and objects which are white; the existence of mules does not prove that there are not objects which are donkeys and objects which are horses. It does, however, show that the examples in question need to be addressed carefully in order to show how they can be fitted into the proposed scheme, for example by recognizing additional subdivisions [29","the FMA:regional parts of an intact human body.","the Western hemisphere of the Earth","the division of the brain into regions","the division of the planet into hemispheres","the dorsal and ventral surfaces of the body","the upper and lower lobes of the left lung","BFO 2 Reference: Most examples of fiat object parts are associated with theoretically drawn divisions","b is a fiat object part \u003d Def. b is a material entity which is such that for all times t, if b exists at t then there is some object c such that b proper continuant_part of c at t and c is demarcated from the remainder of c by a two-dimensional continuant fiat boundary. (axiom label in BFO2 Reference: [027-004])","(forall (x) (if (FiatObjectPart x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y) (and (Object y) (properContinuantPartOfAt x y t)))))))) // axiom label in BFO2 CLIF: [027-004] ","false"],"shortForm":"BFO_0000024","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000026\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000026\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"1d-s-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"OneDimensionalSpatialRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an edge of a cube-shaped portion of space.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A one-dimensional spatial region is a line or aggregate of lines stretching from one point in space to another. (axiom label in BFO2 Reference: [038-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/038-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (OneDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [038-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/038-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one-dimensional spatial region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000028\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one-dimensional spatial region\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"1d-s-region\"},{\"type\":[\"literal\"],\"value\":\"OneDimensionalSpatialRegion\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an edge of a cube-shaped portion of space.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A one-dimensional spatial region is a line or aggregate of lines stretching from one point in space to another. (axiom label in BFO2 Reference: [038-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/038-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (OneDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [038-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/038-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000026\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000006\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000026","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"1d-s-region","http__//purl.obolibrary.org/obo/BFO_0000180":"OneDimensionalSpatialRegion","http__//purl.obolibrary.org/obo/IAO_0000112":"an edge of a cube-shaped portion of space.","http__//purl.obolibrary.org/obo/IAO_0000600":"A one-dimensional spatial region is a line or aggregate of lines stretching from one point in space to another. (axiom label in BFO2 Reference: [038-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (OneDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [038-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"one-dimensional spatial region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000006","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000028","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000026","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000026","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"one-dimensional spatial region","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["1d-s-region","OneDimensionalSpatialRegion","an edge of a cube-shaped portion of space.","A one-dimensional spatial region is a line or aggregate of lines stretching from one point in space to another. (axiom label in BFO2 Reference: [038-001])","(forall (x) (if (OneDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [038-001] ","false"],"shortForm":"BFO_0000026","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000027\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000027\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"object-aggregate\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ObjectAggregate\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a collection of cells in a blood biobank.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a swarm of bees is an aggregate of members who are linked together through natural bonds\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a symphony orchestra\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an organization is an aggregate whose member parts have roles of specific types (for example in a jazz band, a chess club, a football team)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined by fiat: the aggregate of members of an organization\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined through physical attachment: the aggregate of atoms in a lump of granite\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined through physical containment: the aggregate of molecules of carbon dioxide in a sealed container\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined via attributive delimitations such as: the patients in this hospital\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the aggregate of bearings in a constant velocity axle joint\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the aggregate of blood cells in your body\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the nitrogen atoms in the atmosphere\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the restaurants in Palo Alto\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"your collection of Meissen ceramic plates.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000011\"},{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000301\"}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: object aggregates may gain and lose parts while remaining numerically identical (one and the same individual) over time. This holds both for aggregates whose membership is determined naturally (the aggregate of cells in your body) and aggregates determined by fiat (a baseball team, a congressional committee).\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ISBN:978-3-938793-98-5pp124-158#Thomas Bittner and Barry Smith, \\u0027A Theory of Granular Partitions\\u0027, in K. Munn and B. Smith (eds.), Applied Ontology: An Introduction, Frankfurt/Lancaster: ontos, 2008, 125-158.\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000300\"}]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an object aggregate means: b is a material entity consisting exactly of a plurality of objects as member_parts at all times at which b exists. (axiom label in BFO2 Reference: [025-004])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/025-004\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (\\u003d y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/025-004\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"object aggregate\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"object aggregate\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"object-aggregate\"},{\"type\":[\"literal\"],\"value\":\"ObjectAggregate\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a collection of cells in a blood biobank.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a swarm of bees is an aggregate of members who are linked together through natural bonds\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a symphony orchestra\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an organization is an aggregate whose member parts have roles of specific types (for example in a jazz band, a chess club, a football team)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined by fiat: the aggregate of members of an organization\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined through physical attachment: the aggregate of atoms in a lump of granite\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined through physical containment: the aggregate of molecules of carbon dioxide in a sealed container\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined via attributive delimitations such as: the patients in this hospital\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the aggregate of bearings in a constant velocity axle joint\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the aggregate of blood cells in your body\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the nitrogen atoms in the atmosphere\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the restaurants in Palo Alto\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"your collection of Meissen ceramic plates.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000011\"},{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000301\"}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: object aggregates may gain and lose parts while remaining numerically identical (one and the same individual) over time. This holds both for aggregates whose membership is determined naturally (the aggregate of cells in your body) and aggregates determined by fiat (a baseball team, a congressional committee).\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"ISBN:978-3-938793-98-5pp124-158#Thomas Bittner and Barry Smith, \\u0027A Theory of Granular Partitions\\u0027, in K. Munn and B. Smith (eds.), Applied Ontology: An Introduction, Frankfurt/Lancaster: ontos, 2008, 125-158.\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000300\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an object aggregate means: b is a material entity consisting exactly of a plurality of objects as member_parts at all times at which b exists. (axiom label in BFO2 Reference: [025-004])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/025-004\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (\\u003d y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/025-004\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000027\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"ISBN:978\":{\"url\":\"https://www.worldcat.org/search?q\\u003dbn%3A978\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ISBN:978\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000027","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000040","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000040","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"object-aggregate","http__//purl.obolibrary.org/obo/BFO_0000180":"ObjectAggregate","http__//purl.obolibrary.org/obo/IAO_0000112":["a collection of cells in a blood biobank.","a swarm of bees is an aggregate of members who are linked together through natural bonds","a symphony orchestra","an organization is an aggregate whose member parts have roles of specific types (for example in a jazz band, a chess club, a football team)","defined by fiat: the aggregate of members of an organization","defined through physical attachment: the aggregate of atoms in a lump of granite","defined through physical containment: the aggregate of molecules of carbon dioxide in a sealed container","defined via attributive delimitations such as: the patients in this hospital","the aggregate of bearings in a constant velocity axle joint","the aggregate of blood cells in your body","the nitrogen atoms in the atmosphere","the restaurants in Palo Alto","your collection of Meissen ceramic plates."],"http__//purl.obolibrary.org/obo/IAO_0000116":["An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects ","BFO 2 Reference: object aggregates may gain and lose parts while remaining numerically identical (one and the same individual) over time. This holds both for aggregates whose membership is determined naturally (the aggregate of cells in your body) and aggregates determined by fiat (a baseball team, a congressional committee)."],"http__//purl.obolibrary.org/obo/IAO_0000119":"ISBN:978-3-938793-98-5pp124-158#Thomas Bittner and Barry Smith, \u0027A Theory of Granular Partitions\u0027, in K. Munn and B. Smith (eds.), Applied Ontology: An Introduction, Frankfurt/Lancaster: ontos, 2008, 125-158.","http__//purl.obolibrary.org/obo/IAO_0000600":"b is an object aggregate means: b is a material entity consisting exactly of a plurality of objects as member_parts at all times at which b exists. (axiom label in BFO2 Reference: [025-004])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (\u003d y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"object aggregate","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000040","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000027","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000027","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"object aggregate","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["object-aggregate","ObjectAggregate","a collection of cells in a blood biobank.","a swarm of bees is an aggregate of members who are linked together through natural bonds","a symphony orchestra","an organization is an aggregate whose member parts have roles of specific types (for example in a jazz band, a chess club, a football team)","defined by fiat: the aggregate of members of an organization","defined through physical attachment: the aggregate of atoms in a lump of granite","defined through physical containment: the aggregate of molecules of carbon dioxide in a sealed container","defined via attributive delimitations such as: the patients in this hospital","the aggregate of bearings in a constant velocity axle joint","the aggregate of blood cells in your body","the nitrogen atoms in the atmosphere","the restaurants in Palo Alto","your collection of Meissen ceramic plates.","An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects ","BFO 2 Reference: object aggregates may gain and lose parts while remaining numerically identical (one and the same individual) over time. This holds both for aggregates whose membership is determined naturally (the aggregate of cells in your body) and aggregates determined by fiat (a baseball team, a congressional committee).","ISBN:978-3-938793-98-5pp124-158#Thomas Bittner and Barry Smith, \u0027A Theory of Granular Partitions\u0027, in K. Munn and B. Smith (eds.), Applied Ontology: An Introduction, Frankfurt/Lancaster: ontos, 2008, 125-158.","b is an object aggregate means: b is a material entity consisting exactly of a plurality of objects as member_parts at all times at which b exists. (axiom label in BFO2 Reference: [025-004])","(forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (\u003d y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004] ","false"],"shortForm":"BFO_0000027","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000028\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000028\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000006\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"3d-s-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ThreeDimensionalSpatialRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a cube-shaped region of space\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a sphere-shaped region of space,\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A three-dimensional spatial region is a spatial region that is of three dimensions. (axiom label in BFO2 Reference: [040-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/040-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ThreeDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [040-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/040-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three-dimensional spatial region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000006\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three-dimensional spatial region\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"3d-s-region\"},{\"type\":[\"literal\"],\"value\":\"ThreeDimensionalSpatialRegion\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a cube-shaped region of space\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a sphere-shaped region of space,\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A three-dimensional spatial region is a spatial region that is of three dimensions. (axiom label in BFO2 Reference: [040-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/040-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ThreeDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [040-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/040-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000028\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000006\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000028","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"3d-s-region","http__//purl.obolibrary.org/obo/BFO_0000180":"ThreeDimensionalSpatialRegion","http__//purl.obolibrary.org/obo/IAO_0000112":["a cube-shaped region of space","a sphere-shaped region of space,"],"http__//purl.obolibrary.org/obo/IAO_0000600":"A three-dimensional spatial region is a spatial region that is of three dimensions. (axiom label in BFO2 Reference: [040-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (ThreeDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [040-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"three-dimensional spatial region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000006","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000028","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000028","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"three-dimensional spatial region","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["3d-s-region","ThreeDimensionalSpatialRegion","a cube-shaped region of space","a sphere-shaped region of space,","A three-dimensional spatial region is a spatial region that is of three dimensions. (axiom label in BFO2 Reference: [040-001])","(forall (x) (if (ThreeDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [040-001] ","false"],"shortForm":"BFO_0000028","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000029\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000029\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"site\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Site\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Manhattan Canyon)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a hole in the interior of a portion of cheese\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a rabbit hole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an air traffic control region defined in the airspace above an airport\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the Grand Canyon\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the Piazza San Marco\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the cockpit of an aircraft\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the hold of a ship\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of a kangaroo pouch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of the trunk of your car\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of your bedroom\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of your office\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of your refrigerator\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the lumen of your gut\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"your left nostril (a fiat part – the opening – of your left nasal cavity)\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a site means: b is a three-dimensional immaterial entity that is (partially or wholly) bounded by a material entity or it is a three-dimensional immaterial part thereof. (axiom label in BFO2 Reference: [034-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/034-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/034-002\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"site\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"site\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"site\"},{\"type\":[\"literal\"],\"value\":\"Site\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Manhattan Canyon)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a hole in the interior of a portion of cheese\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a rabbit hole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an air traffic control region defined in the airspace above an airport\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the Grand Canyon\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the Piazza San Marco\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the cockpit of an aircraft\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the hold of a ship\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of a kangaroo pouch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of the trunk of your car\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of your bedroom\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of your office\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the interior of your refrigerator\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the lumen of your gut\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"your left nostril (a fiat part – the opening – of your left nasal cavity)\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a site means: b is a three-dimensional immaterial entity that is (partially or wholly) bounded by a material entity or it is a three-dimensional immaterial part thereof. (axiom label in BFO2 Reference: [034-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/034-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/034-002\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000029\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000029","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000141","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000141","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"site","http__//purl.obolibrary.org/obo/BFO_0000180":"Site","http__//purl.obolibrary.org/obo/IAO_0000112":["Manhattan Canyon)","a hole in the interior of a portion of cheese","a rabbit hole","an air traffic control region defined in the airspace above an airport","the Grand Canyon","the Piazza San Marco","the cockpit of an aircraft","the hold of a ship","the interior of a kangaroo pouch","the interior of the trunk of your car","the interior of your bedroom","the interior of your office","the interior of your refrigerator","the lumen of your gut","your left nostril (a fiat part – the opening – of your left nasal cavity)"],"http__//purl.obolibrary.org/obo/IAO_0000600":"b is a site means: b is a three-dimensional immaterial entity that is (partially or wholly) bounded by a material entity or it is a three-dimensional immaterial part thereof. (axiom label in BFO2 Reference: [034-002])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"site","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000141","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000029","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000029","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"site","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["site","Site","Manhattan Canyon)","a hole in the interior of a portion of cheese","a rabbit hole","an air traffic control region defined in the airspace above an airport","the Grand Canyon","the Piazza San Marco","the cockpit of an aircraft","the hold of a ship","the interior of a kangaroo pouch","the interior of the trunk of your car","the interior of your bedroom","the interior of your office","the interior of your refrigerator","the lumen of your gut","your left nostril (a fiat part – the opening – of your left nasal cavity)","b is a site means: b is a three-dimensional immaterial entity that is (partially or wholly) bounded by a material entity or it is a three-dimensional immaterial part thereof. (axiom label in BFO2 Reference: [034-002])","(forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002] ","false"],"shortForm":"BFO_0000029","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000030\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000030\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"object\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Object\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"atom\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cell\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cells and organisms\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"engineered artifacts\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"grain of sand\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"molecule\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organelle\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organism\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planet\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"solid portions of matter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"star\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: BFO rests on the presupposition that at multiple micro-, meso- and macroscopic scales reality exhibits certain stable, spatially separated or separable material units, combined or combinable into aggregates of various sorts (for example organisms into what are called ‘populations’). Such units play a central role in almost all domains of natural science from particle physics to cosmology. Many scientific laws govern the units in question, employing general terms (such as ‘molecule’ or ‘planet’) referring to the types and subtypes of units, and also to the types and subtypes of the processes through which such units develop and interact. The division of reality into such natural units is at the heart of biological science, as also is the fact that these units may form higher-level units (as cells form multicellular organisms) and that they may also form aggregates of units, for example as cells form portions of tissue and organs form families, herds, breeds, species, and so on. At the same time, the division of certain portions of reality into engineered units (manufactured artifacts) is the basis of modern industrial technology, which rests on the distributed mass production of engineered parts through division of labor and on their assembly into larger, compound units such as cars and laptops. The division of portions of reality into units is one starting point for the phenomenon of counting.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Each object is such that there are entities of which we can assert unproblematically that they lie in its interior, and other entities of which we can assert unproblematically that they lie in its exterior. This may not be so for entities lying at or near the boundary between the interior and exterior. This means that two objects – for example the two cells depicted in Figure 3 – may be such that there are material entities crossing their boundaries which belong determinately to neither cell. Something similar obtains in certain cases of conjoined twins (see below).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: To say that b is causally unified means: b is a material entity which is such that its material parts are tied together in such a way that, in environments typical for entities of the type in question,if c, a continuant part of b that is in the interior of b at t, is larger than a certain threshold size (which will be determined differently from case to case, depending on factors such as porosity of external cover) and is moved in space to be at t at a location on the exterior of the spatial region that had been occupied by b at t, then either b’s other parts will be moved in coordinated fashion or b will be damaged (be affected, for example, by breakage or tearing) in the interval between t and t.causal changes in one part of b can have consequences for other parts of b without the mediation of any entity that lies on the exterior of b. Material entities with no proper material parts would satisfy these conditions trivially. Candidate examples of types of causal unity for material entities of more complex sorts are as follows (this is not intended to be an exhaustive list):CU1: Causal unity via physical coveringHere the parts in the interior of the unified entity are combined together causally through a common membrane or other physical covering\\\\. The latter points outwards toward and may serve a protective function in relation to what lies on the exterior of the entity [13, 47\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: an object is a maximal causally unified material entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: ‘objects’ are sometimes referred to as ‘grains’ [74\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an object means: b is a material entity which manifests causal unity of one or other of the types CUn listed above \\u0026 is of a type (a material universal) instances of which are maximal relative to this criterion of causal unity. (axiom label in BFO2 Reference: [024-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/024-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"object\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"object\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"object\"},{\"type\":[\"literal\"],\"value\":\"Object\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"atom\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cell\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cells and organisms\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"engineered artifacts\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"grain of sand\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"molecule\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organelle\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organism\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planet\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"solid portions of matter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"star\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: BFO rests on the presupposition that at multiple micro-, meso- and macroscopic scales reality exhibits certain stable, spatially separated or separable material units, combined or combinable into aggregates of various sorts (for example organisms into what are called ‘populations’). Such units play a central role in almost all domains of natural science from particle physics to cosmology. Many scientific laws govern the units in question, employing general terms (such as ‘molecule’ or ‘planet’) referring to the types and subtypes of units, and also to the types and subtypes of the processes through which such units develop and interact. The division of reality into such natural units is at the heart of biological science, as also is the fact that these units may form higher-level units (as cells form multicellular organisms) and that they may also form aggregates of units, for example as cells form portions of tissue and organs form families, herds, breeds, species, and so on. At the same time, the division of certain portions of reality into engineered units (manufactured artifacts) is the basis of modern industrial technology, which rests on the distributed mass production of engineered parts through division of labor and on their assembly into larger, compound units such as cars and laptops. The division of portions of reality into units is one starting point for the phenomenon of counting.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Each object is such that there are entities of which we can assert unproblematically that they lie in its interior, and other entities of which we can assert unproblematically that they lie in its exterior. This may not be so for entities lying at or near the boundary between the interior and exterior. This means that two objects – for example the two cells depicted in Figure 3 – may be such that there are material entities crossing their boundaries which belong determinately to neither cell. Something similar obtains in certain cases of conjoined twins (see below).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: To say that b is causally unified means: b is a material entity which is such that its material parts are tied together in such a way that, in environments typical for entities of the type in question,if c, a continuant part of b that is in the interior of b at t, is larger than a certain threshold size (which will be determined differently from case to case, depending on factors such as porosity of external cover) and is moved in space to be at t at a location on the exterior of the spatial region that had been occupied by b at t, then either b’s other parts will be moved in coordinated fashion or b will be damaged (be affected, for example, by breakage or tearing) in the interval between t and t.causal changes in one part of b can have consequences for other parts of b without the mediation of any entity that lies on the exterior of b. Material entities with no proper material parts would satisfy these conditions trivially. Candidate examples of types of causal unity for material entities of more complex sorts are as follows (this is not intended to be an exhaustive list):CU1: Causal unity via physical coveringHere the parts in the interior of the unified entity are combined together causally through a common membrane or other physical covering\\\\. The latter points outwards toward and may serve a protective function in relation to what lies on the exterior of the entity [13, 47\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: an object is a maximal causally unified material entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: ‘objects’ are sometimes referred to as ‘grains’ [74\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is an object means: b is a material entity which manifests causal unity of one or other of the types CUn listed above \\u0026 is of a type (a material universal) instances of which are maximal relative to this criterion of causal unity. (axiom label in BFO2 Reference: [024-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/024-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000030\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000030","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000040","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000040","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"object","http__//purl.obolibrary.org/obo/BFO_0000180":"Object","http__//purl.obolibrary.org/obo/IAO_0000112":["atom","cell","cells and organisms","engineered artifacts","grain of sand","molecule","organelle","organism","planet","solid portions of matter","star"],"http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: BFO rests on the presupposition that at multiple micro-, meso- and macroscopic scales reality exhibits certain stable, spatially separated or separable material units, combined or combinable into aggregates of various sorts (for example organisms into what are called ‘populations’). Such units play a central role in almost all domains of natural science from particle physics to cosmology. Many scientific laws govern the units in question, employing general terms (such as ‘molecule’ or ‘planet’) referring to the types and subtypes of units, and also to the types and subtypes of the processes through which such units develop and interact. The division of reality into such natural units is at the heart of biological science, as also is the fact that these units may form higher-level units (as cells form multicellular organisms) and that they may also form aggregates of units, for example as cells form portions of tissue and organs form families, herds, breeds, species, and so on. At the same time, the division of certain portions of reality into engineered units (manufactured artifacts) is the basis of modern industrial technology, which rests on the distributed mass production of engineered parts through division of labor and on their assembly into larger, compound units such as cars and laptops. The division of portions of reality into units is one starting point for the phenomenon of counting.","BFO 2 Reference: Each object is such that there are entities of which we can assert unproblematically that they lie in its interior, and other entities of which we can assert unproblematically that they lie in its exterior. This may not be so for entities lying at or near the boundary between the interior and exterior. This means that two objects – for example the two cells depicted in Figure 3 – may be such that there are material entities crossing their boundaries which belong determinately to neither cell. Something similar obtains in certain cases of conjoined twins (see below).","BFO 2 Reference: To say that b is causally unified means: b is a material entity which is such that its material parts are tied together in such a way that, in environments typical for entities of the type in question,if c, a continuant part of b that is in the interior of b at t, is larger than a certain threshold size (which will be determined differently from case to case, depending on factors such as porosity of external cover) and is moved in space to be at t at a location on the exterior of the spatial region that had been occupied by b at t, then either b’s other parts will be moved in coordinated fashion or b will be damaged (be affected, for example, by breakage or tearing) in the interval between t and t.causal changes in one part of b can have consequences for other parts of b without the mediation of any entity that lies on the exterior of b. Material entities with no proper material parts would satisfy these conditions trivially. Candidate examples of types of causal unity for material entities of more complex sorts are as follows (this is not intended to be an exhaustive list):CU1: Causal unity via physical coveringHere the parts in the interior of the unified entity are combined together causally through a common membrane or other physical covering\\. The latter points outwards toward and may serve a protective function in relation to what lies on the exterior of the entity [13, 47","BFO 2 Reference: an object is a maximal causally unified material entity","BFO 2 Reference: ‘objects’ are sometimes referred to as ‘grains’ [74"],"http__//purl.obolibrary.org/obo/IAO_0000600":"b is an object means: b is a material entity which manifests causal unity of one or other of the types CUn listed above \u0026 is of a type (a material universal) instances of which are maximal relative to this criterion of causal unity. (axiom label in BFO2 Reference: [024-001])","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"object","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000040","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000030","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000030","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"object","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["object","Object","atom","cell","cells and organisms","engineered artifacts","grain of sand","molecule","organelle","organism","planet","solid portions of matter","star","BFO 2 Reference: BFO rests on the presupposition that at multiple micro-, meso- and macroscopic scales reality exhibits certain stable, spatially separated or separable material units, combined or combinable into aggregates of various sorts (for example organisms into what are called ‘populations’). Such units play a central role in almost all domains of natural science from particle physics to cosmology. Many scientific laws govern the units in question, employing general terms (such as ‘molecule’ or ‘planet’) referring to the types and subtypes of units, and also to the types and subtypes of the processes through which such units develop and interact. The division of reality into such natural units is at the heart of biological science, as also is the fact that these units may form higher-level units (as cells form multicellular organisms) and that they may also form aggregates of units, for example as cells form portions of tissue and organs form families, herds, breeds, species, and so on. At the same time, the division of certain portions of reality into engineered units (manufactured artifacts) is the basis of modern industrial technology, which rests on the distributed mass production of engineered parts through division of labor and on their assembly into larger, compound units such as cars and laptops. The division of portions of reality into units is one starting point for the phenomenon of counting.","BFO 2 Reference: Each object is such that there are entities of which we can assert unproblematically that they lie in its interior, and other entities of which we can assert unproblematically that they lie in its exterior. This may not be so for entities lying at or near the boundary between the interior and exterior. This means that two objects – for example the two cells depicted in Figure 3 – may be such that there are material entities crossing their boundaries which belong determinately to neither cell. Something similar obtains in certain cases of conjoined twins (see below).","BFO 2 Reference: To say that b is causally unified means: b is a material entity which is such that its material parts are tied together in such a way that, in environments typical for entities of the type in question,if c, a continuant part of b that is in the interior of b at t, is larger than a certain threshold size (which will be determined differently from case to case, depending on factors such as porosity of external cover) and is moved in space to be at t at a location on the exterior of the spatial region that had been occupied by b at t, then either b’s other parts will be moved in coordinated fashion or b will be damaged (be affected, for example, by breakage or tearing) in the interval between t and t.causal changes in one part of b can have consequences for other parts of b without the mediation of any entity that lies on the exterior of b. Material entities with no proper material parts would satisfy these conditions trivially. Candidate examples of types of causal unity for material entities of more complex sorts are as follows (this is not intended to be an exhaustive list):CU1: Causal unity via physical coveringHere the parts in the interior of the unified entity are combined together causally through a common membrane or other physical covering\\. The latter points outwards toward and may serve a protective function in relation to what lies on the exterior of the entity [13, 47","BFO 2 Reference: an object is a maximal causally unified material entity","BFO 2 Reference: ‘objects’ are sometimes referred to as ‘grains’ [74","b is an object means: b is a material entity which manifests causal unity of one or other of the types CUn listed above \u0026 is of a type (a material universal) instances of which are maximal relative to this criterion of causal unity. (axiom label in BFO2 Reference: [024-001])","false"],"shortForm":"BFO_0000030","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000031\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a generically dependent continuant \\u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/074-001\"}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"gdc\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"GenericallyDependentContinuant\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the pdf file on your laptop, the pdf file that is a copy thereof on my laptop\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a generically dependent continuant \\u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/074-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/074-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"numDescendants\":230.0,\"numHierarchicalDescendants\":212.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"gdc\"},{\"type\":[\"literal\"],\"value\":\"GenericallyDependentContinuant\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the pdf file on your laptop, the pdf file that is a copy thereof on my laptop\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a generically dependent continuant \\u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/074-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/074-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000031\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000031","definition":"b is a generically dependent continuant \u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000002","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000002","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"gdc","http__//purl.obolibrary.org/obo/BFO_0000180":"GenericallyDependentContinuant","http__//purl.obolibrary.org/obo/IAO_0000112":["The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity.","the pdf file on your laptop, the pdf file that is a copy thereof on my laptop","the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule."],"http__//purl.obolibrary.org/obo/IAO_0000115":"b is a generically dependent continuant \u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"generically dependent continuant","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000002","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000031","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000031","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"generically dependent continuant","numDescendants":"230.0","numHierarchicalDescendants":"212.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["gdc","GenericallyDependentContinuant","The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity.","the pdf file on your laptop, the pdf file that is a copy thereof on my laptop","the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule.","b is a generically dependent continuant \u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])","(iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] ","false"],"shortForm":"BFO_0000031","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000034\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000034\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"function\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"Function\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of a hammer to drive in nails\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of a heart pacemaker to regulate the beating of a heart through electricity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of amylase in saliva to break down starch into sugar\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/064-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/064-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"function\"},{\"type\":[\"literal\"],\"value\":\"Function\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of a hammer to drive in nails\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of a heart pacemaker to regulate the beating of a heart through electricity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the function of amylase in saliva to break down starch into sugar\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/064-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/064-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000034\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:function\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_function\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:function\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000034","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000016","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000016","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"function","http__//purl.obolibrary.org/obo/BFO_0000180":"Function","http__//purl.obolibrary.org/obo/IAO_0000112":["the function of a hammer to drive in nails","the function of a heart pacemaker to regulate the beating of a heart through electricity","the function of amylase in saliva to break down starch into sugar"],"http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.","http__//purl.obolibrary.org/obo/IAO_0000600":"A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"function","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000016","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000034","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000034","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"function","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["function","Function","the function of a hammer to drive in nails","the function of a heart pacemaker to regulate the beating of a heart through electricity","the function of amylase in saliva to break down starch into sugar","BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.","A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001])","(forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001] ","false"],"shortForm":"BFO_0000034","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000035\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000035\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"p is a process boundary \\u003dDef. p is a temporal part of a process \\u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/084-001\"}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"p-boundary\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ProcessBoundary\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the boundary between the 2nd and 3rd year of your life.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"p is a process boundary \\u003dDef. p is a temporal part of a process \\u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/084-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every process boundary occupies_temporal_region a zero-dimensional temporal region. (axiom label in BFO2 Reference: [085-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/085-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ProcessBoundary x) (exists (y) (and (ZeroDimensionalTemporalRegion y) (occupiesTemporalRegion x y))))) // axiom label in BFO2 CLIF: [085-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/085-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (ProcessBoundary a) (exists (p) (and (Process p) (temporalPartOf a p) (not (exists (b) (properTemporalPartOf b a)))))) // axiom label in BFO2 CLIF: [084-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/084-001\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process boundary\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process boundary\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"p-boundary\"},{\"type\":[\"literal\"],\"value\":\"ProcessBoundary\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the boundary between the 2nd and 3rd year of your life.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"p is a process boundary \\u003dDef. p is a temporal part of a process \\u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/084-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every process boundary occupies_temporal_region a zero-dimensional temporal region. (axiom label in BFO2 Reference: [085-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/085-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ProcessBoundary x) (exists (y) (and (ZeroDimensionalTemporalRegion y) (occupiesTemporalRegion x y))))) // axiom label in BFO2 CLIF: [085-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/085-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (ProcessBoundary a) (exists (p) (and (Process p) (temporalPartOf a p) (not (exists (b) (properTemporalPartOf b a)))))) // axiom label in BFO2 CLIF: [084-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/084-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000035\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000035","definition":"p is a process boundary \u003dDef. p is a temporal part of a process \u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000003","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"p-boundary","http__//purl.obolibrary.org/obo/BFO_0000180":"ProcessBoundary","http__//purl.obolibrary.org/obo/IAO_0000112":"the boundary between the 2nd and 3rd year of your life.","http__//purl.obolibrary.org/obo/IAO_0000115":"p is a process boundary \u003dDef. p is a temporal part of a process \u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])","http__//purl.obolibrary.org/obo/IAO_0000601":"Every process boundary occupies_temporal_region a zero-dimensional temporal region. (axiom label in BFO2 Reference: [085-002])","http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x) (if (ProcessBoundary x) (exists (y) (and (ZeroDimensionalTemporalRegion y) (occupiesTemporalRegion x y))))) // axiom label in BFO2 CLIF: [085-002] ","(iff (ProcessBoundary a) (exists (p) (and (Process p) (temporalPartOf a p) (not (exists (b) (properTemporalPartOf b a)))))) // axiom label in BFO2 CLIF: [084-001] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"process boundary","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000003","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000035","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000035","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"process boundary","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["p-boundary","ProcessBoundary","the boundary between the 2nd and 3rd year of your life.","p is a process boundary \u003dDef. p is a temporal part of a process \u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])","Every process boundary occupies_temporal_region a zero-dimensional temporal region. (axiom label in BFO2 Reference: [085-002])","(forall (x) (if (ProcessBoundary x) (exists (y) (and (ZeroDimensionalTemporalRegion y) (occupiesTemporalRegion x y))))) // axiom label in BFO2 CLIF: [085-002] ","(iff (ProcessBoundary a) (exists (p) (and (Process p) (temporalPartOf a p) (not (exists (b) (properTemporalPartOf b a)))))) // axiom label in BFO2 CLIF: [084-001] ","false"],"shortForm":"BFO_0000035","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000038\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000038\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000008\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000008\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000008\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000008\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"1d-t-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"OneDimensionalTemporalRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the temporal region during which a process occurs.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: A temporal interval is a special kind of one-dimensional temporal region, namely one that is self-connected (is without gaps or breaks).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A one-dimensional temporal region is a temporal region that is extended. (axiom label in BFO2 Reference: [103-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/103-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/103-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one-dimensional temporal region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000008\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000148\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one-dimensional temporal region\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"1d-t-region\"},{\"type\":[\"literal\"],\"value\":\"OneDimensionalTemporalRegion\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the temporal region during which a process occurs.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: A temporal interval is a special kind of one-dimensional temporal region, namely one that is self-connected (is without gaps or breaks).\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A one-dimensional temporal region is a temporal region that is extended. (axiom label in BFO2 Reference: [103-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/103-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/103-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000038\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000008\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000148\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional temporal region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000148\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000038","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000008","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000008","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000008","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000008","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"1d-t-region","http__//purl.obolibrary.org/obo/BFO_0000180":"OneDimensionalTemporalRegion","http__//purl.obolibrary.org/obo/IAO_0000112":"the temporal region during which a process occurs.","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: A temporal interval is a special kind of one-dimensional temporal region, namely one that is self-connected (is without gaps or breaks).","http__//purl.obolibrary.org/obo/IAO_0000600":"A one-dimensional temporal region is a temporal region that is extended. (axiom label in BFO2 Reference: [103-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"one-dimensional temporal region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000008","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000148","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000038","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000038","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"one-dimensional temporal region","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["1d-t-region","OneDimensionalTemporalRegion","the temporal region during which a process occurs.","BFO 2 Reference: A temporal interval is a special kind of one-dimensional temporal region, namely one that is self-connected (is without gaps or breaks).","A one-dimensional temporal region is a temporal region that is extended. (axiom label in BFO2 Reference: [103-001])","(forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001] ","false"],"shortForm":"BFO_0000038","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"material\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"MaterialEntity\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a flame\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a forest fire\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a human being\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a hurricane\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a photon\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a puff of smoke\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a sea wave\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a tornado\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an aggregate of human beings.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an energy wave\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an epidemic\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the undetached arm of a human being\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/019-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000601\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/020-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/021-002\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/019-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/021-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/020-002\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"material\"},{\"type\":[\"literal\"],\"value\":\"MaterialEntity\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a flame\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a forest fire\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a human being\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a hurricane\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a photon\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a puff of smoke\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a sea wave\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a tornado\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an aggregate of human beings.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an energy wave\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"an epidemic\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the undetached arm of a human being\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/019-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/020-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/021-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/019-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/021-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/020-002\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000040\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000040","definition":"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000004","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000004","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"material","http__//purl.obolibrary.org/obo/BFO_0000180":"MaterialEntity","http__//purl.obolibrary.org/obo/IAO_0000112":["a flame","a forest fire","a human being","a hurricane","a photon","a puff of smoke","a sea wave","a tornado","an aggregate of human beings.","an energy wave","an epidemic","the undetached arm of a human being"],"http__//purl.obolibrary.org/obo/IAO_0000115":"An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60","BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.","BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here."],"http__//purl.obolibrary.org/obo/IAO_0000600":"A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002])","http__//purl.obolibrary.org/obo/IAO_0000601":["Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002])","every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002])"],"http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] ","(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] ","(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"material entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000141","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000040","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000040","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"material entity","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["material","MaterialEntity","a flame","a forest fire","a human being","a hurricane","a photon","a puff of smoke","a sea wave","a tornado","an aggregate of human beings.","an energy wave","an epidemic","the undetached arm of a human being","An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60","BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.","BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here.","A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002])","Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002])","every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002])","(forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] ","(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] ","(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] ","false"],"shortForm":"BFO_0000040","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000140\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a continuant fiat boundary \\u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/029-001\"}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"cf-boundary\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ContinuantFiatBoundary\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a continuant fiat boundary \\u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/029-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: In BFO 1.1 the assumption was made that the external surface of a material entity such as a cell could be treated as if it were a boundary in the mathematical sense. The new document propounds the view that when we talk about external surfaces of material objects in this way then we are talking about something fiat. To be dealt with in a future version: fiat boundaries at different levels of granularity.More generally, the focus in discussion of boundaries in BFO 2.0 is now on fiat boundaries, which means: boundaries for which there is no assumption that they coincide with physical discontinuities. The ontology of boundaries becomes more closely allied with the ontology of regions.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: a continuant fiat boundary is a boundary of some material entity (for example: the plane separating the Northern and Southern hemispheres; the North Pole), or it is a boundary of some immaterial entity (for example of some portion of airspace). Three basic kinds of continuant fiat boundary can be distinguished (together with various combination kinds [29\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Continuant fiat boundary doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. An example would be the mereological sum of two-dimensional continuant fiat boundary and a one dimensional continuant fiat boundary that doesn\\u0027t overlap it. The situation is analogous to temporal and spatial regions.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000008\"}]}],\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every continuant fiat boundary is located at some spatial region at every time at which it exists\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (ContinuantFiatBoundary a) (and (ImmaterialEntity a) (exists (b) (and (or (ZeroDimensionalSpatialRegion b) (OneDimensionalSpatialRegion b) (TwoDimensionalSpatialRegion b)) (forall (t) (locatedInAt a b t)))) (not (exists (c t) (and (SpatialRegion c) (continuantPartOfAt c a t)))))) // axiom label in BFO2 CLIF: [029-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/029-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant fiat boundary\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant fiat boundary\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"cf-boundary\"},{\"type\":[\"literal\"],\"value\":\"ContinuantFiatBoundary\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a continuant fiat boundary \\u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/029-001\"}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: In BFO 1.1 the assumption was made that the external surface of a material entity such as a cell could be treated as if it were a boundary in the mathematical sense. The new document propounds the view that when we talk about external surfaces of material objects in this way then we are talking about something fiat. To be dealt with in a future version: fiat boundaries at different levels of granularity.More generally, the focus in discussion of boundaries in BFO 2.0 is now on fiat boundaries, which means: boundaries for which there is no assumption that they coincide with physical discontinuities. The ontology of boundaries becomes more closely allied with the ontology of regions.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: a continuant fiat boundary is a boundary of some material entity (for example: the plane separating the Northern and Southern hemispheres; the North Pole), or it is a boundary of some immaterial entity (for example of some portion of airspace). Three basic kinds of continuant fiat boundary can be distinguished (together with various combination kinds [29\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Continuant fiat boundary doesn\\u0027t have a closure axiom because the subclasses don\\u0027t necessarily exhaust all possibilites. An example would be the mereological sum of two-dimensional continuant fiat boundary and a one dimensional continuant fiat boundary that doesn\\u0027t overlap it. The situation is analogous to temporal and spatial regions.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000008\"}]},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Every continuant fiat boundary is located at some spatial region at every time at which it exists\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (ContinuantFiatBoundary a) (and (ImmaterialEntity a) (exists (b) (and (or (ZeroDimensionalSpatialRegion b) (OneDimensionalSpatialRegion b) (TwoDimensionalSpatialRegion b)) (forall (t) (locatedInAt a b t)))) (not (exists (c t) (and (SpatialRegion c) (continuantPartOfAt c a t)))))) // axiom label in BFO2 CLIF: [029-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/029-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000140\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000601\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000140","definition":"b is a continuant fiat boundary \u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000141","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000141","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"cf-boundary","http__//purl.obolibrary.org/obo/BFO_0000180":"ContinuantFiatBoundary","http__//purl.obolibrary.org/obo/IAO_0000115":"b is a continuant fiat boundary \u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])","http__//purl.obolibrary.org/obo/IAO_0000116":["BFO 2 Reference: In BFO 1.1 the assumption was made that the external surface of a material entity such as a cell could be treated as if it were a boundary in the mathematical sense. The new document propounds the view that when we talk about external surfaces of material objects in this way then we are talking about something fiat. To be dealt with in a future version: fiat boundaries at different levels of granularity.More generally, the focus in discussion of boundaries in BFO 2.0 is now on fiat boundaries, which means: boundaries for which there is no assumption that they coincide with physical discontinuities. The ontology of boundaries becomes more closely allied with the ontology of regions.","BFO 2 Reference: a continuant fiat boundary is a boundary of some material entity (for example: the plane separating the Northern and Southern hemispheres; the North Pole), or it is a boundary of some immaterial entity (for example of some portion of airspace). Three basic kinds of continuant fiat boundary can be distinguished (together with various combination kinds [29","Continuant fiat boundary doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. An example would be the mereological sum of two-dimensional continuant fiat boundary and a one dimensional continuant fiat boundary that doesn\u0027t overlap it. The situation is analogous to temporal and spatial regions."],"http__//purl.obolibrary.org/obo/IAO_0000601":"Every continuant fiat boundary is located at some spatial region at every time at which it exists","http__//purl.obolibrary.org/obo/IAO_0000602":"(iff (ContinuantFiatBoundary a) (and (ImmaterialEntity a) (exists (b) (and (or (ZeroDimensionalSpatialRegion b) (OneDimensionalSpatialRegion b) (TwoDimensionalSpatialRegion b)) (forall (t) (locatedInAt a b t)))) (not (exists (c t) (and (SpatialRegion c) (continuantPartOfAt c a t)))))) // axiom label in BFO2 CLIF: [029-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"continuant fiat boundary","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000141","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000140","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000140","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"continuant fiat boundary","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["cf-boundary","ContinuantFiatBoundary","b is a continuant fiat boundary \u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])","BFO 2 Reference: In BFO 1.1 the assumption was made that the external surface of a material entity such as a cell could be treated as if it were a boundary in the mathematical sense. The new document propounds the view that when we talk about external surfaces of material objects in this way then we are talking about something fiat. To be dealt with in a future version: fiat boundaries at different levels of granularity.More generally, the focus in discussion of boundaries in BFO 2.0 is now on fiat boundaries, which means: boundaries for which there is no assumption that they coincide with physical discontinuities. The ontology of boundaries becomes more closely allied with the ontology of regions.","BFO 2 Reference: a continuant fiat boundary is a boundary of some material entity (for example: the plane separating the Northern and Southern hemispheres; the North Pole), or it is a boundary of some immaterial entity (for example of some portion of airspace). Three basic kinds of continuant fiat boundary can be distinguished (together with various combination kinds [29","Continuant fiat boundary doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. An example would be the mereological sum of two-dimensional continuant fiat boundary and a one dimensional continuant fiat boundary that doesn\u0027t overlap it. The situation is analogous to temporal and spatial regions.","Every continuant fiat boundary is located at some spatial region at every time at which it exists","(iff (ContinuantFiatBoundary a) (and (ImmaterialEntity a) (exists (b) (and (or (ZeroDimensionalSpatialRegion b) (OneDimensionalSpatialRegion b) (TwoDimensionalSpatialRegion b)) (forall (t) (locatedInAt a b t)))) (not (exists (c t) (and (SpatialRegion c) (continuantPartOfAt c a t)))))) // axiom label in BFO2 CLIF: [029-001] ","false"],"shortForm":"BFO_0000140","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"immaterial\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ImmaterialEntity\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"numDescendants\":11.0,\"numHierarchicalDescendants\":11.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"immaterial\"},{\"type\":[\"literal\"],\"value\":\"ImmaterialEntity\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000141\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000141","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000004","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000004","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"immaterial","http__//purl.obolibrary.org/obo/BFO_0000180":"ImmaterialEntity","http__//purl.obolibrary.org/obo/IAO_0000116":"BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"immaterial entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000004","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000141","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000141","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"immaterial entity","numDescendants":"11.0","numHierarchicalDescendants":"11.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["immaterial","ImmaterialEntity","BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10","false"],"shortForm":"BFO_0000141","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000142\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000142\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000140\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000140\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"1d-cf-boundary\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"OneDimensionalContinuantFiatBoundary\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The Equator\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"all geopolitical boundaries\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"all lines of latitude and longitude\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the median sulcus of your tongue\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a one-dimensional continuant fiat boundary is a continuous fiat line whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [032-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/032-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (OneDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (OneDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [032-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/032-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one-dimensional continuant fiat boundary\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/BFO_0000146\",\"http://purl.obolibrary.org/obo/BFO_0000147\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one-dimensional continuant fiat boundary\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"1d-cf-boundary\"},{\"type\":[\"literal\"],\"value\":\"OneDimensionalContinuantFiatBoundary\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The Equator\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"all geopolitical boundaries\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"all lines of latitude and longitude\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the median sulcus of your tongue\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a one-dimensional continuant fiat boundary is a continuous fiat line whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [032-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/032-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (OneDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (OneDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [032-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/032-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000142\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000147\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional continuant fiat boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000147\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000146\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two-dimensional continuant fiat boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000146\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000140\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant fiat boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000140\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000142","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000140","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000140","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"1d-cf-boundary","http__//purl.obolibrary.org/obo/BFO_0000180":"OneDimensionalContinuantFiatBoundary","http__//purl.obolibrary.org/obo/IAO_0000112":["The Equator","all geopolitical boundaries","all lines of latitude and longitude","the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin.","the median sulcus of your tongue"],"http__//purl.obolibrary.org/obo/IAO_0000600":"a one-dimensional continuant fiat boundary is a continuous fiat line whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [032-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(iff (OneDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (OneDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [032-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"one-dimensional continuant fiat boundary","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000140","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/BFO_0000146","http://purl.obolibrary.org/obo/BFO_0000147"],"id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000142","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000142","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"one-dimensional continuant fiat boundary","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["1d-cf-boundary","OneDimensionalContinuantFiatBoundary","The Equator","all geopolitical boundaries","all lines of latitude and longitude","the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin.","the median sulcus of your tongue","a one-dimensional continuant fiat boundary is a continuous fiat line whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [032-001])","(iff (OneDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (OneDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [032-001] ","false"],"shortForm":"BFO_0000142","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000144\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000144\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a process_profile \\u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/093-002\"}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"process-profile\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ProcessProfile\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a process_profile \\u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/093-002\"}]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b process_profile_of c holds when b proper_occurrent_part_of c\\u0026 there is some proper_occurrent_part d of c which has no parts in common with b \\u0026 is mutually dependent on b\\u0026 is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/094-005\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":[{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (processProfileOf x y) (and (properContinuantPartOf x y) (exists (z t) (and (properOccurrentPartOf z y) (TemporalRegion t) (occupiesSpatioTemporalRegion x t) (occupiesSpatioTemporalRegion y t) (occupiesSpatioTemporalRegion z t) (not (exists (w) (and (occurrentPartOf w x) (occurrentPartOf w z))))))))) // axiom label in BFO2 CLIF: [094-005] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/094-005\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (ProcessProfile a) (exists (b) (and (Process b) (processProfileOf a b)))) // axiom label in BFO2 CLIF: [093-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/093-002\"}]}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process profile\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/BFO_0000182\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process profile\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"process-profile\"},{\"type\":[\"literal\"],\"value\":\"ProcessProfile\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a process_profile \\u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/093-002\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b process_profile_of c holds when b proper_occurrent_part_of c\\u0026 there is some proper_occurrent_part d of c which has no parts in common with b \\u0026 is mutually dependent on b\\u0026 is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/094-005\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x y) (if (processProfileOf x y) (and (properContinuantPartOf x y) (exists (z t) (and (properOccurrentPartOf z y) (TemporalRegion t) (occupiesSpatioTemporalRegion x t) (occupiesSpatioTemporalRegion y t) (occupiesSpatioTemporalRegion z t) (not (exists (w) (and (occurrentPartOf w x) (occurrentPartOf w z))))))))) // axiom label in BFO2 CLIF: [094-005] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/094-005\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (ProcessProfile a) (exists (b) (and (Process b) (processProfileOf a b)))) // axiom label in BFO2 CLIF: [093-002] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/093-002\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000144\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000182\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"history\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000182\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000144","definition":"b is a process_profile \u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000015","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000015","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"process-profile","http__//purl.obolibrary.org/obo/BFO_0000180":"ProcessProfile","http__//purl.obolibrary.org/obo/IAO_0000112":["On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels","One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance.","The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on."],"http__//purl.obolibrary.org/obo/IAO_0000115":"b is a process_profile \u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])","http__//purl.obolibrary.org/obo/IAO_0000600":"b process_profile_of c holds when b proper_occurrent_part_of c\u0026 there is some proper_occurrent_part d of c which has no parts in common with b \u0026 is mutually dependent on b\u0026 is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])","http__//purl.obolibrary.org/obo/IAO_0000602":["(forall (x y) (if (processProfileOf x y) (and (properContinuantPartOf x y) (exists (z t) (and (properOccurrentPartOf z y) (TemporalRegion t) (occupiesSpatioTemporalRegion x t) (occupiesSpatioTemporalRegion y t) (occupiesSpatioTemporalRegion z t) (not (exists (w) (and (occurrentPartOf w x) (occurrentPartOf w z))))))))) // axiom label in BFO2 CLIF: [094-005] ","(iff (ProcessProfile a) (exists (b) (and (Process b) (processProfileOf a b)))) // axiom label in BFO2 CLIF: [093-002] "],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"process profile","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/BFO_0000182","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000144","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000144","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"process profile","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["process-profile","ProcessProfile","On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels","One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance.","The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on.","b is a process_profile \u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])","b process_profile_of c holds when b proper_occurrent_part_of c\u0026 there is some proper_occurrent_part d of c which has no parts in common with b \u0026 is mutually dependent on b\u0026 is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])","(forall (x y) (if (processProfileOf x y) (and (properContinuantPartOf x y) (exists (z t) (and (properOccurrentPartOf z y) (TemporalRegion t) (occupiesSpatioTemporalRegion x t) (occupiesSpatioTemporalRegion y t) (occupiesSpatioTemporalRegion z t) (not (exists (w) (and (occurrentPartOf w x) (occurrentPartOf w z))))))))) // axiom label in BFO2 CLIF: [094-005] ","(iff (ProcessProfile a) (exists (b) (and (Process b) (processProfileOf a b)))) // axiom label in BFO2 CLIF: [093-002] ","false"],"shortForm":"BFO_0000144","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000145\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000145\"},\"definition\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a relational quality \\u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \\u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/057-001\"}]},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"r-quality\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"RelationalQuality\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a marriage bond, an instance of requited love, an obligation between one person and another.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a relational quality \\u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \\u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/057-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (RelationalQuality a) (exists (b c t) (and (IndependentContinuant b) (IndependentContinuant c) (qualityOfAt a b t) (qualityOfAt a c t)))) // axiom label in BFO2 CLIF: [057-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/057-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relational quality\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relational quality\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"r-quality\"},{\"type\":[\"literal\"],\"value\":\"RelationalQuality\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a marriage bond, an instance of requited love, an obligation between one person and another.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b is a relational quality \\u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \\u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/057-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (RelationalQuality a) (exists (b c t) (and (IndependentContinuant b) (IndependentContinuant c) (qualityOfAt a b t) (qualityOfAt a c t)))) // axiom label in BFO2 CLIF: [057-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/057-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000145\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000145","definition":"b is a relational quality \u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000019","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000019","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"r-quality","http__//purl.obolibrary.org/obo/BFO_0000180":"RelationalQuality","http__//purl.obolibrary.org/obo/IAO_0000112":["John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.","a marriage bond, an instance of requited love, an obligation between one person and another."],"http__//purl.obolibrary.org/obo/IAO_0000115":"b is a relational quality \u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(iff (RelationalQuality a) (exists (b c t) (and (IndependentContinuant b) (IndependentContinuant c) (qualityOfAt a b t) (qualityOfAt a c t)))) // axiom label in BFO2 CLIF: [057-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"relational quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000019","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000145","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000145","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"relational quality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["r-quality","RelationalQuality","John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.","a marriage bond, an instance of requited love, an obligation between one person and another.","b is a relational quality \u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])","(iff (RelationalQuality a) (exists (b c t) (and (IndependentContinuant b) (IndependentContinuant c) (qualityOfAt a b t) (qualityOfAt a c t)))) // axiom label in BFO2 CLIF: [057-001] ","false"],"shortForm":"BFO_0000145","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000146\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000146\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000140\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000140\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"2d-cf-boundary\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"TwoDimensionalContinuantFiatBoundary\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a two-dimensional continuant fiat boundary (surface) is a self-connected fiat surface whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [033-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/033-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (TwoDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (TwoDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [033-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/033-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two-dimensional continuant fiat boundary\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two-dimensional continuant fiat boundary\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"2d-cf-boundary\"},{\"type\":[\"literal\"],\"value\":\"TwoDimensionalContinuantFiatBoundary\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a two-dimensional continuant fiat boundary (surface) is a self-connected fiat surface whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [033-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/033-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (TwoDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (TwoDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [033-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/033-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000146\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000140\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant fiat boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000140\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000146","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000140","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000140","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"2d-cf-boundary","http__//purl.obolibrary.org/obo/BFO_0000180":"TwoDimensionalContinuantFiatBoundary","http__//purl.obolibrary.org/obo/IAO_0000600":"a two-dimensional continuant fiat boundary (surface) is a self-connected fiat surface whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [033-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(iff (TwoDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (TwoDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [033-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"two-dimensional continuant fiat boundary","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000140","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000146","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000146","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"two-dimensional continuant fiat boundary","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["2d-cf-boundary","TwoDimensionalContinuantFiatBoundary","a two-dimensional continuant fiat boundary (surface) is a self-connected fiat surface whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [033-001])","(iff (TwoDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (TwoDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [033-001] ","false"],"shortForm":"BFO_0000146","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000147\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000147\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000140\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000140\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"0d-cf-boundary\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ZeroDimensionalContinuantFiatBoundary\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the geographic North Pole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the point of origin of some spatial coordinate system.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero dimension continuant fiat boundaries are not spatial points. Considering the example \\u0027the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet\\u0027 : There are many frames in which that point is zooming through many points in space. Whereas, no matter what the frame, the quadripoint is always in the same relation to the boundaries of Colorado, Utah, New Mexico, and Arizona.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000001\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"requested by Melanie Courtot\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"https://groups.google.com/d/msg/bfo-owl-devel/s9Uug5QmAws/ZDRnpiIi_TUJ\"}]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a zero-dimensional continuant fiat boundary is a fiat point whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [031-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/031-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (ZeroDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (ZeroDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [031-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/031-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional continuant fiat boundary\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000140\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional continuant fiat boundary\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"0d-cf-boundary\"},{\"type\":[\"literal\"],\"value\":\"ZeroDimensionalContinuantFiatBoundary\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the geographic North Pole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the point of origin of some spatial coordinate system.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero dimension continuant fiat boundaries are not spatial points. Considering the example \\u0027the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet\\u0027 : There are many frames in which that point is zooming through many points in space. Whereas, no matter what the frame, the quadripoint is always in the same relation to the boundaries of Colorado, Utah, New Mexico, and Arizona.\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/0000001\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"requested by Melanie Courtot\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"https://groups.google.com/d/msg/bfo-owl-devel/s9Uug5QmAws/ZDRnpiIi_TUJ\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a zero-dimensional continuant fiat boundary is a fiat point whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [031-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/031-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(iff (ZeroDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (ZeroDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [031-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/031-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000147\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000140\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant fiat boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000140\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000147","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000140","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000140","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"0d-cf-boundary","http__//purl.obolibrary.org/obo/BFO_0000180":"ZeroDimensionalContinuantFiatBoundary","http__//purl.obolibrary.org/obo/IAO_0000112":["the geographic North Pole","the point of origin of some spatial coordinate system.","the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet"],"http__//purl.obolibrary.org/obo/IAO_0000116":"zero dimension continuant fiat boundaries are not spatial points. Considering the example \u0027the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet\u0027 : There are many frames in which that point is zooming through many points in space. Whereas, no matter what the frame, the quadripoint is always in the same relation to the boundaries of Colorado, Utah, New Mexico, and Arizona.","http__//purl.obolibrary.org/obo/IAO_0000600":"a zero-dimensional continuant fiat boundary is a fiat point whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [031-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(iff (ZeroDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (ZeroDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [031-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"zero-dimensional continuant fiat boundary","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000140","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000147","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000147","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"zero-dimensional continuant fiat boundary","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["0d-cf-boundary","ZeroDimensionalContinuantFiatBoundary","the geographic North Pole","the point of origin of some spatial coordinate system.","the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet","zero dimension continuant fiat boundaries are not spatial points. Considering the example \u0027the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet\u0027 : There are many frames in which that point is zooming through many points in space. Whereas, no matter what the frame, the quadripoint is always in the same relation to the boundaries of Colorado, Utah, New Mexico, and Arizona.","a zero-dimensional continuant fiat boundary is a fiat point whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [031-001])","(iff (ZeroDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (ZeroDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [031-001] ","false"],"shortForm":"BFO_0000147","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000148\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000148\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000008\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000008\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000008\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000008\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"0d-t-region\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"ZeroDimensionalTemporalRegion\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a temporal region that is occupied by a process boundary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"right now\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the moment at which a child is born\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the moment at which a finger is detached in an industrial accident\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the moment of death.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal instant.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A zero-dimensional temporal region is a temporal region that is without extent. (axiom label in BFO2 Reference: [102-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/102-001\"}]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ZeroDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [102-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/102-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional temporal region\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000008\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional temporal region\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"0d-t-region\"},{\"type\":[\"literal\"],\"value\":\"ZeroDimensionalTemporalRegion\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a temporal region that is occupied by a process boundary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"right now\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the moment at which a child is born\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the moment at which a finger is detached in an industrial accident\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the moment of death.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal instant.\",\"lang\":\"en\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A zero-dimensional temporal region is a temporal region that is without extent. (axiom label in BFO2 Reference: [102-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/102-001\"}]},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"value\":\"(forall (x) (if (ZeroDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [102-001] \"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/102-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000148\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000008\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000008\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000602\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000148","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000008","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000008","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000008","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000008","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"0d-t-region","http__//purl.obolibrary.org/obo/BFO_0000180":"ZeroDimensionalTemporalRegion","http__//purl.obolibrary.org/obo/IAO_0000112":["a temporal region that is occupied by a process boundary","right now","the moment at which a child is born","the moment at which a finger is detached in an industrial accident","the moment of death."],"http__//purl.obolibrary.org/obo/IAO_0000118":"temporal instant.","http__//purl.obolibrary.org/obo/IAO_0000600":"A zero-dimensional temporal region is a temporal region that is without extent. (axiom label in BFO2 Reference: [102-001])","http__//purl.obolibrary.org/obo/IAO_0000602":"(forall (x) (if (ZeroDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [102-001] ","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"zero-dimensional temporal region","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000008","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000148","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000148","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"zero-dimensional temporal region","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["0d-t-region","ZeroDimensionalTemporalRegion","a temporal region that is occupied by a process boundary","right now","the moment at which a child is born","the moment at which a finger is detached in an industrial accident","the moment of death.","temporal instant.","A zero-dimensional temporal region is a temporal region that is without extent. (axiom label in BFO2 Reference: [102-001])","(forall (x) (if (ZeroDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [102-001] ","false"],"shortForm":"BFO_0000148","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000182\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000182\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"type\":[\"literal\"],\"value\":\"history\"},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"type\":[\"literal\"],\"value\":\"History\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by a material entity or site, including processes on the surface of the entity or within the cavities to which it serves as host. (axiom label in BFO2 Reference: [138-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/138-001\"}]},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"history\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"history\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"history\"},{\"type\":[\"literal\"],\"value\":\"History\"},{\"type\":[\"reification\"],\"value\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by a material entity or site, including processes on the surface of the entity or within the cavities to which it serves as host. (axiom label in BFO2 Reference: [138-001])\",\"lang\":\"en\"},\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0010000\":\"http://purl.obolibrary.org/obo/bfo/axiom/138-001\"}]},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000182\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000179\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0010000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000180\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000182","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000015","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000015","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/BFO_0000179":"history","http__//purl.obolibrary.org/obo/BFO_0000180":"History","http__//purl.obolibrary.org/obo/IAO_0000600":"A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by a material entity or site, including processes on the surface of the entity or within the cavities to which it serves as host. (axiom label in BFO2 Reference: [138-001])","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"history","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000015","id":"duo+class+http://purl.obolibrary.org/obo/BFO_0000182","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000182","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"history","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["history","History","A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by a material entity or site, including processes on the surface of the entity or within the cavities to which it serves as host. (axiom label in BFO2 Reference: [138-001])","false"],"shortForm":"BFO_0000182","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000001\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data item that is used to indicate consent permissions for datasets and/or materials, and relates to the purposes for which datasets and/or material might be removed, stored or used.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data item that is used to indicate consent permissions for datasets and/or materials, and relates to the purposes for which datasets and/or material might be removed, stored or used.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"value\":\"consent code\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000001\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data use permission\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data use permission\",\"lang\":\"en\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data item that is used to indicate consent permissions for datasets and/or materials, and relates to the purposes for which datasets and/or material might be removed, stored or used.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"consent code\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000001\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000001\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"DUO:0000001\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000001\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data use permission\",\"lang\":\"en\"},\"curie\":\"DUO:0000001\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000001","definedBy":["duo"],"definition":"A data item that is used to indicate consent permissions for datasets and/or materials, and relates to the purposes for which datasets and/or material might be removed, stored or used.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000027","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000027","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A data item that is used to indicate consent permissions for datasets and/or materials, and relates to the purposes for which datasets and/or material might be removed, stored or used.","http__//purl.obolibrary.org/obo/IAO_0000118":"consent code","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000001","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"data use permission","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000027","id":"duo+class+http://purl.obolibrary.org/obo/DUO_0000001","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000001","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"true","label":"data use permission","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A data item that is used to indicate consent permissions for datasets and/or materials, and relates to the purposes for which datasets and/or material might be removed, stored or used.","consent code","DUO:0000001","false"],"shortForm":"DUO_0000001","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000002\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000002\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A categorical data item indicating the primary category the consent code belongs to according to Dyke et al. 2016.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A categorical data item indicating the primary category the consent code belongs to according to Dyke et al. 2016.\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"type\":[\"literal\"],\"value\":\"This term was depreacted as it is not used to tag datasets but instead as patterns for DUO codes capture. This is an archive specific requirement, e.g. \\\"one code from a primary category and one or more from a second category\\u0027\\nThis is better done by Schemablocks and constraining the pattern of usage of DUO terms at each archive level.\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000002\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete consent code primary category\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete consent code primary category\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A categorical data item indicating the primary category the consent code belongs to according to Dyke et al. 2016.\"},{\"type\":[\"literal\"],\"value\":\"This term was depreacted as it is not used to tag datasets but instead as patterns for DUO codes capture. This is an archive specific requirement, e.g. \\\"one code from a primary category and one or more from a second category\\u0027\\nThis is better done by Schemablocks and constraining the pattern of usage of DUO terms at each archive level.\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000002\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000002\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"DUO:0000002\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000002\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete consent code primary category\"},\"curie\":\"DUO:0000002\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000002\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000002","definedBy":["duo"],"definition":"A categorical data item indicating the primary category the consent code belongs to according to Dyke et al. 2016.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A categorical data item indicating the primary category the consent code belongs to according to Dyke et al. 2016.","http__//purl.obolibrary.org/obo/IAO_0000231":"This term was depreacted as it is not used to tag datasets but instead as patterns for DUO codes capture. This is an archive specific requirement, e.g. \"one code from a primary category and one or more from a second category\u0027\nThis is better done by Schemablocks and constraining the pattern of usage of DUO terms at each archive level.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000002","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete consent code primary category","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/DUO_0000002","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000002","isDefiningOntology":"true","isObsolete":"true","isPreferredRoot":"false","label":"obsolete consent code primary category","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A categorical data item indicating the primary category the consent code belongs to according to Dyke et al. 2016.","This term was depreacted as it is not used to tag datasets but instead as patterns for DUO codes capture. This is an archive specific requirement, e.g. \"one code from a primary category and one or more from a second category\u0027\nThis is better done by Schemablocks and constraining the pattern of usage of DUO terms at each archive level.","DUO:0000002","false"],"shortForm":"DUO_0000002","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000003\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A categorical data item indicating the secondary category the consent code belongs to according to Dyke et al. 2016.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A categorical data item indicating the secondary category the consent code belongs to according to Dyke et al. 2016.\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"type\":[\"literal\"],\"value\":\"This term was depreacted as it is not used to tag datasets but instead as patterns for DUO codes capture. This is an archive specific requirement, e.g. \\\"one code from a primary category and one or more from a second category\\u0027\\nThis is better done by Schemablocks and constraining the pattern of usage of DUO terms at each archive level.\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000003\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete consent code secondary category\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete consent code secondary category\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A categorical data item indicating the secondary category the consent code belongs to according to Dyke et al. 2016.\"},{\"type\":[\"literal\"],\"value\":\"This term was depreacted as it is not used to tag datasets but instead as patterns for DUO codes capture. This is an archive specific requirement, e.g. \\\"one code from a primary category and one or more from a second category\\u0027\\nThis is better done by Schemablocks and constraining the pattern of usage of DUO terms at each archive level.\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000003\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000003\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"DUO:0000003\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000003\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete consent code secondary category\"},\"curie\":\"DUO:0000003\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000003\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000003","definedBy":["duo"],"definition":"A categorical data item indicating the secondary category the consent code belongs to according to Dyke et al. 2016.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A categorical data item indicating the secondary category the consent code belongs to according to Dyke et al. 2016.","http__//purl.obolibrary.org/obo/IAO_0000231":"This term was depreacted as it is not used to tag datasets but instead as patterns for DUO codes capture. This is an archive specific requirement, e.g. \"one code from a primary category and one or more from a second category\u0027\nThis is better done by Schemablocks and constraining the pattern of usage of DUO terms at each archive level.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000003","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete consent code secondary category","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/DUO_0000003","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000003","isDefiningOntology":"true","isObsolete":"true","isPreferredRoot":"false","label":"obsolete consent code secondary category","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A categorical data item indicating the secondary category the consent code belongs to according to Dyke et al. 2016.","This term was depreacted as it is not used to tag datasets but instead as patterns for DUO codes capture. This is an archive specific requirement, e.g. \"one code from a primary category and one or more from a second category\u0027\nThis is better done by Schemablocks and constraining the pattern of usage of DUO terms at each archive level.","DUO:0000003","false"],"shortForm":"DUO_0000003","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000004\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000004\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use permission indicates there is no restriction on use.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"20180907, Meeting Moran Melanie: This is to be thought about more carefully - what is the intent when using \\u0027no restriction\\u0027 as usually users still need to be researchers.\"},{\"type\":[\"literal\"],\"value\":\"Note: the NRES alternative term may be confusing as in the UK it also stands for National Research Ethics Service\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/DUO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/DUO_0000001\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/DUO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/DUO_0000001\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use permission indicates there is no restriction on use.\",\"lang\":\"en\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000004\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"NRES\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":[{\"type\":[\"literal\"],\"value\":\"20180907, Meeting Moran Melanie: This is to be thought about more carefully - what is the intent when using \\u0027no restriction\\u0027 as usually users still need to be researchers.\"},{\"type\":[\"literal\"],\"value\":\"Note: the NRES alternative term may be confusing as in the UK it also stands for National Research Ethics Service\"}],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"no restriction\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/DUO_0000001\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"no restriction\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use permission indicates there is no restriction on use.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000004\"},{\"type\":[\"literal\"],\"value\":\"NRES\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000004\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"DUO:0000004\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000004\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"no restriction\",\"lang\":\"en\"},\"curie\":\"DUO:0000004\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000004\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000001\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data use permission\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000004","definedBy":["duo"],"definition":["This data use permission indicates there is no restriction on use.","20180907, Meeting Moran Melanie: This is to be thought about more carefully - what is the intent when using \u0027no restriction\u0027 as usually users still need to be researchers.","Note: the NRES alternative term may be confusing as in the UK it also stands for National Research Ethics Service"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/DUO_0000001","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/DUO_0000001","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/DUO_0000001","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/DUO_0000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"This data use permission indicates there is no restriction on use.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000004","http__//www.geneontology.org/formats/oboInOwl#shorthand":"NRES","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":["20180907, Meeting Moran Melanie: This is to be thought about more carefully - what is the intent when using \u0027no restriction\u0027 as usually users still need to be researchers.","Note: the NRES alternative term may be confusing as in the UK it also stands for National Research Ethics Service"],"http__//www.w3.org/2000/01/rdf-schema#label":"no restriction","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/DUO_0000001","id":"duo+class+http://purl.obolibrary.org/obo/DUO_0000004","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000004","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"no restriction","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["This data use permission indicates there is no restriction on use.","DUO:0000004","NRES","false"],"shortForm":"DUO_0000004","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_00000044\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:00000044\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/DUO_0000017\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/DUO_0000017\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/DUO_0000017\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/DUO_0000017\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited.\",\"lang\":\"en\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000044\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"NPOA\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"population origins or ancestry research prohibited\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/DUO_0000017\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"population origins or ancestry research prohibited\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000044\"},{\"type\":[\"literal\"],\"value\":\"NPOA\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_00000044\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"DUO:0000044\":{\"url\":\"http://purl.obolibrary.org/obo/DUO_0000044\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DUO:0000044\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"DUO:00000044\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_00000044\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"population origins or ancestry research prohibited\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:00000044\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000017\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data use modifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:00000044","definedBy":["duo"],"definition":"This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/DUO_0000017","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/DUO_0000017","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/DUO_0000017","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/DUO_0000017","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000044","http__//www.geneontology.org/formats/oboInOwl#shorthand":"NPOA","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"population origins or ancestry research prohibited","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/DUO_0000017","id":"duo+class+http://purl.obolibrary.org/obo/DUO_00000044","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_00000044","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"population origins or ancestry research prohibited","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited.","DUO:0000044","NPOA","false"],"shortForm":"DUO_00000044","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_00000044\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:00000044\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/DUO_0000017\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/DUO_0000017\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/DUO_0000017\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/DUO_0000017\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited.\",\"lang\":\"en\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000044\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"NPOA\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"population origins or ancestry research prohibited\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/DUO_0000017\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"population origins or ancestry research prohibited\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000044\"},{\"type\":[\"literal\"],\"value\":\"NPOA\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_00000044\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"DUO:0000044\":{\"url\":\"http://purl.obolibrary.org/obo/DUO_0000044\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DUO:0000044\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000017\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data use modifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:00000044","definedBy":["duo"],"definition":"This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/DUO_0000017","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/DUO_0000017","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/DUO_0000017","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/DUO_0000017","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000044","http__//www.geneontology.org/formats/oboInOwl#shorthand":"NPOA","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"population origins or ancestry research prohibited","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/DUO_0000017","id":"duo+class+http://purl.obolibrary.org/obo/DUO_00000044","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_00000044","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"population origins or ancestry research prohibited","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited.","DUO:0000044","NPOA","false"],"shortForm":"DUO_00000044","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000005\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000005\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use limitation indicates that use is allowed for health/medical/biomedical purposes and other biological research, including the study of population origins or ancestry.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"This term includes clinical care, which was not defined in the original consent codes paper. This term does not have a usage in our current use cases and we recommend using DUO:0000042, General Research Use, instead\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This term was made obsolete as per https://github.com/EBISPOT/DUO/issues/45\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use limitation indicates that use is allowed for health/medical/biomedical purposes and other biological research, including the study of population origins or ancestry.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0100001\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"General Research Use, DUO_0000042\\nClinical Care USe, DUO_0000043\",\"lang\":\"en\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000005\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"GRU-CC\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":[{\"type\":[\"literal\"],\"value\":\"This term includes clinical care, which was not defined in the original consent codes paper. This term does not have a usage in our current use cases and we recommend using DUO:0000042, General Research Use, instead\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This term was made obsolete as per https://github.com/EBISPOT/DUO/issues/45\",\"lang\":\"en\"}],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete general research use and clinical care\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete general research use and clinical care\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use limitation indicates that use is allowed for health/medical/biomedical purposes and other biological research, including the study of population origins or ancestry.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"General Research Use, DUO_0000042\\nClinical Care USe, DUO_0000043\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000005\"},{\"type\":[\"literal\"],\"value\":\"GRU-CC\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000005\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"DUO:0000042\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000042\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"general research use\",\"lang\":\"en\"},\"curie\":\"DUO:0000042\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000042\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"DUO:0000005\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000005\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete general research use and clinical care\",\"lang\":\"en\"},\"curie\":\"DUO:0000005\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000005\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0100001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term replaced by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0100001\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000005","definedBy":["duo"],"definition":["This data use limitation indicates that use is allowed for health/medical/biomedical purposes and other biological research, including the study of population origins or ancestry.","This term includes clinical care, which was not defined in the original consent codes paper. This term does not have a usage in our current use cases and we recommend using DUO:0000042, General Research Use, instead","This term was made obsolete as per https://github.com/EBISPOT/DUO/issues/45"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"This data use limitation indicates that use is allowed for health/medical/biomedical purposes and other biological research, including the study of population origins or ancestry.","http__//purl.obolibrary.org/obo/IAO_0100001":"General Research Use, DUO_0000042\nClinical Care USe, DUO_0000043","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000005","http__//www.geneontology.org/formats/oboInOwl#shorthand":"GRU-CC","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":["This term includes clinical care, which was not defined in the original consent codes paper. This term does not have a usage in our current use cases and we recommend using DUO:0000042, General Research Use, instead","This term was made obsolete as per https://github.com/EBISPOT/DUO/issues/45"],"http__//www.w3.org/2000/01/rdf-schema#label":"obsolete general research use and clinical care","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","id":"duo+class+http://purl.obolibrary.org/obo/DUO_0000005","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000005","isDefiningOntology":"true","isObsolete":"true","isPreferredRoot":"false","label":"obsolete general research use and clinical care","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["This data use limitation indicates that use is allowed for health/medical/biomedical purposes and other biological research, including the study of population origins or ancestry.","General Research Use, DUO_0000042\nClinical Care USe, DUO_0000043","DUO:0000005","GRU-CC","false"],"shortForm":"DUO_0000005","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000006\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000006\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use permission indicates that use is allowed for health/medical/biomedical purposes; does not include the study of population origins or ancestry.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/DUO_0000042\",\"http://purl.obolibrary.org/obo/DUO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/DUO_0000042\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/DUO_0000042\",\"http://purl.obolibrary.org/obo/DUO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/DUO_0000042\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use permission indicates that use is allowed for health/medical/biomedical purposes; does not include the study of population origins or ancestry.\",\"lang\":\"en\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000006\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"HMB\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"health or medical or biomedical research\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/DUO_0000042\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"health or medical or biomedical research\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use permission indicates that use is allowed for health/medical/biomedical purposes; does not include the study of population origins or ancestry.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000006\"},{\"type\":[\"literal\"],\"value\":\"HMB\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000006\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"DUO:0000006\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000006\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"health or medical or biomedical research\",\"lang\":\"en\"},\"curie\":\"DUO:0000006\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000006\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000042\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"general research use\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000042\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000001\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data use permission\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000006","definedBy":["duo"],"definition":"This data use permission indicates that use is allowed for health/medical/biomedical purposes; does not include the study of population origins or ancestry.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/DUO_0000042","http://purl.obolibrary.org/obo/DUO_0000001","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/DUO_0000042","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/DUO_0000042","http://purl.obolibrary.org/obo/DUO_0000001","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/DUO_0000042","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"This data use permission indicates that use is allowed for health/medical/biomedical purposes; does not include the study of population origins or ancestry.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000006","http__//www.geneontology.org/formats/oboInOwl#shorthand":"HMB","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"health or medical or biomedical research","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/DUO_0000042","id":"duo+class+http://purl.obolibrary.org/obo/DUO_0000006","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000006","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"health or medical or biomedical research","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["This data use permission indicates that use is allowed for health/medical/biomedical purposes; does not include the study of population origins or ancestry.","DUO:0000006","HMB","false"],"shortForm":"DUO_0000006","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000007\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000007\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use permission indicates that use is allowed provided it is related to the specified disease.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This term should be coupled with a term describing a disease from an ontology to specify the disease the restriction applies to. \\n\\nDUO recommends MONDO be used, to provide the basis for automated evaluation. For more information see https://github.com/EBISPOT/DUO/blob/master/MONDO_Overview.md\\n\\nOther resources, such as the Disease Ontology, HPO, SNOMED-CT or others, can also be used. When those other resources are being used, this may require an extra mapping step to leverage automated matching algorithms.\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/DUO_0000006\",\"http://purl.obolibrary.org/obo/DUO_0000042\",\"http://purl.obolibrary.org/obo/DUO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/DUO_0000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/DUO_0000006\",\"http://purl.obolibrary.org/obo/DUO_0000042\",\"http://purl.obolibrary.org/obo/DUO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/DUO_0000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use permission indicates that use is allowed provided it is related to the specified disease.\",\"lang\":\"en\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000007\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"DS\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This term should be coupled with a term describing a disease from an ontology to specify the disease the restriction applies to. \\n\\nDUO recommends MONDO be used, to provide the basis for automated evaluation. For more information see https://github.com/EBISPOT/DUO/blob/master/MONDO_Overview.md\\n\\nOther resources, such as the Disease Ontology, HPO, SNOMED-CT or others, can also be used. When those other resources are being used, this may require an extra mapping step to leverage automated matching algorithms.\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disease specific research\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/DUO_0000006\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/DUO_0000010\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disease specific research\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/DUO_0000010\",\"value\":\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/DUO_0000010\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use permission indicates that use is allowed provided it is related to the specified disease.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000007\"},{\"type\":[\"literal\"],\"value\":\"DS\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000007\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"DUO:0000007\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000007\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disease specific research\",\"lang\":\"en\"},\"curie\":\"DUO:0000007\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000007\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000042\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"general research use\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000042\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MONDO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease or disorder\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000001\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data use permission\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000006\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"health or medical or biomedical research\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000006\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000010\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"is restricted to\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000010\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000007","definedBy":["duo"],"definition":["This data use permission indicates that use is allowed provided it is related to the specified disease.","This term should be coupled with a term describing a disease from an ontology to specify the disease the restriction applies to. \n\nDUO recommends MONDO be used, to provide the basis for automated evaluation. For more information see https://github.com/EBISPOT/DUO/blob/master/MONDO_Overview.md\n\nOther resources, such as the Disease Ontology, HPO, SNOMED-CT or others, can also be used. When those other resources are being used, this may require an extra mapping step to leverage automated matching algorithms."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/DUO_0000006","http://purl.obolibrary.org/obo/DUO_0000042","http://purl.obolibrary.org/obo/DUO_0000001","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/DUO_0000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/DUO_0000006","http://purl.obolibrary.org/obo/DUO_0000042","http://purl.obolibrary.org/obo/DUO_0000001","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/DUO_0000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"This data use permission indicates that use is allowed provided it is related to the specified disease.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000007","http__//www.geneontology.org/formats/oboInOwl#shorthand":"DS","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"This term should be coupled with a term describing a disease from an ontology to specify the disease the restriction applies to. \n\nDUO recommends MONDO be used, to provide the basis for automated evaluation. For more information see https://github.com/EBISPOT/DUO/blob/master/MONDO_Overview.md\n\nOther resources, such as the Disease Ontology, HPO, SNOMED-CT or others, can also be used. When those other resources are being used, this may require an extra mapping step to leverage automated matching algorithms.","http__//www.w3.org/2000/01/rdf-schema#label":"disease specific research","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/DUO_0000006"],"id":"duo+class+http://purl.obolibrary.org/obo/DUO_0000007","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000007","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"disease specific research","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/MONDO_0000001","searchableAnnotationValues":["This data use permission indicates that use is allowed provided it is related to the specified disease.","DUO:0000007","DS","false"],"shortForm":"DUO_0000007","type":["class","entity"]} @@ -67,7 +67,7 @@ {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000031\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000031\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"An investigation concerning development of methods, algorithms, software or analytical tools.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000066\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000066\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"type\":[\"literal\"],\"value\":\"method development\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"An investigation concerning development of methods, algorithms, software or analytical tools.\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"value\":\"This definition is a placeholder as a result of meetings at ICBO2018.\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000031\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"method development\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"method development\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"method development\"},{\"type\":[\"literal\"],\"value\":\"An investigation concerning development of methods, algorithms, software or analytical tools.\"},{\"type\":[\"literal\"],\"value\":\"This definition is a placeholder as a result of meetings at ICBO2018.\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000031\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000031\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DUO_preferred_label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000041\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"DUO:0000031\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000031\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"method development\"},\"curie\":\"DUO:0000031\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000031\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000031","definedBy":["duo"],"definition":"An investigation concerning development of methods, algorithms, software or analytical tools.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000066","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000066","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/DUO_0000041":"method development","http__//purl.obolibrary.org/obo/IAO_0000115":"An investigation concerning development of methods, algorithms, software or analytical tools.","http__//purl.obolibrary.org/obo/IAO_0000232":"This definition is a placeholder as a result of meetings at ICBO2018.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000031","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"method development","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000066","id":"duo+class+http://purl.obolibrary.org/obo/DUO_0000031","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000031","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"method development","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["method development","An investigation concerning development of methods, algorithms, software or analytical tools.","This definition is a placeholder as a result of meetings at ICBO2018.","DUO:0000031","false"],"shortForm":"DUO_0000031","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000032\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000032\"},\"definition\":[{\"type\":[\"literal\"],\"value\":\"An investigation concerning a specific population group.\"},{\"type\":[\"literal\"],\"value\":\"Should be paired with the an ontology term representing this population (e.g., xxx).\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000066\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000066\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"type\":[\"literal\"],\"value\":\"population research\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"An investigation concerning a specific population group.\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"value\":\"This definition is a placeholder as a result of meetings at ICBO2018.\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000032\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Should be paired with the an ontology term representing this population (e.g., xxx).\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"population research\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"population research\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"population research\"},{\"type\":[\"literal\"],\"value\":\"An investigation concerning a specific population group.\"},{\"type\":[\"literal\"],\"value\":\"This definition is a placeholder as a result of meetings at ICBO2018.\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000032\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000032\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DUO_preferred_label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000041\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"DUO:0000032\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000032\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"population research\"},\"curie\":\"DUO:0000032\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000032\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000032","definedBy":["duo"],"definition":["An investigation concerning a specific population group.","Should be paired with the an ontology term representing this population (e.g., xxx)."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000066","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000066","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/DUO_0000041":"population research","http__//purl.obolibrary.org/obo/IAO_0000115":"An investigation concerning a specific population group.","http__//purl.obolibrary.org/obo/IAO_0000232":"This definition is a placeholder as a result of meetings at ICBO2018.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000032","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Should be paired with the an ontology term representing this population (e.g., xxx).","http__//www.w3.org/2000/01/rdf-schema#label":"population research","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000066","id":"duo+class+http://purl.obolibrary.org/obo/DUO_0000032","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000032","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"population research","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["population research","An investigation concerning a specific population group.","This definition is a placeholder as a result of meetings at ICBO2018.","DUO:0000032","false"],"shortForm":"DUO_0000032","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000033\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000033\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"An investigation concerning ancestry or population origins.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000066\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000066\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"type\":[\"literal\"],\"value\":\"ancestry research\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"An investigation concerning ancestry or population origins.\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"value\":\"This definition is a placeholder as a result of meetings at ICBO2018.\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000033\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"ancestry research\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"ancestry research\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"ancestry research\"},{\"type\":[\"literal\"],\"value\":\"An investigation concerning ancestry or population origins.\"},{\"type\":[\"literal\"],\"value\":\"This definition is a placeholder as a result of meetings at ICBO2018.\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000033\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000033\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DUO_preferred_label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000041\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"DUO:0000033\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000033\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ancestry research\"},\"curie\":\"DUO:0000033\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000033\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000033","definedBy":["duo"],"definition":"An investigation concerning ancestry or population origins.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000066","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000066","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/DUO_0000041":"ancestry research","http__//purl.obolibrary.org/obo/IAO_0000115":"An investigation concerning ancestry or population origins.","http__//purl.obolibrary.org/obo/IAO_0000232":"This definition is a placeholder as a result of meetings at ICBO2018.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000033","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"ancestry research","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000066","id":"duo+class+http://purl.obolibrary.org/obo/DUO_0000033","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000033","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"ancestry research","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["ancestry research","An investigation concerning ancestry or population origins.","This definition is a placeholder as a result of meetings at ICBO2018.","DUO:0000033","false"],"shortForm":"DUO_0000033","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000034\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000034\"},\"definition\":[{\"type\":[\"literal\"],\"value\":\"An investigation concerning specific age categories.\"},{\"type\":[\"literal\"],\"value\":\"Should be paired with the an ontology term representing this population (e.g., xxx).\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000066\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000066\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"type\":[\"literal\"],\"value\":\"age category research\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"An investigation concerning specific age categories.\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"value\":\"This definition is a placeholder as a result of meetings at ICBO2018.\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000034\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Should be paired with the an ontology term representing this population (e.g., xxx).\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"age category research\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"age category research\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"age category research\"},{\"type\":[\"literal\"],\"value\":\"An investigation concerning specific age categories.\"},{\"type\":[\"literal\"],\"value\":\"This definition is a placeholder as a result of meetings at ICBO2018.\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000034\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000034\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DUO_preferred_label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000041\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"DUO:0000034\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000034\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"age category research\"},\"curie\":\"DUO:0000034\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000034\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000034","definedBy":["duo"],"definition":["An investigation concerning specific age categories.","Should be paired with the an ontology term representing this population (e.g., xxx)."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000066","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000066","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/DUO_0000041":"age category research","http__//purl.obolibrary.org/obo/IAO_0000115":"An investigation concerning specific age categories.","http__//purl.obolibrary.org/obo/IAO_0000232":"This definition is a placeholder as a result of meetings at ICBO2018.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000034","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Should be paired with the an ontology term representing this population (e.g., xxx).","http__//www.w3.org/2000/01/rdf-schema#label":"age category research","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000066","id":"duo+class+http://purl.obolibrary.org/obo/DUO_0000034","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000034","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"age category research","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["age category research","An investigation concerning specific age categories.","This definition is a placeholder as a result of meetings at ICBO2018.","DUO:0000034","false"],"shortForm":"DUO_0000034","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000034\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000034\"},\"definition\":[{\"type\":[\"literal\"],\"value\":\"An investigation concerning specific age categories.\"},{\"type\":[\"literal\"],\"value\":\"Should be paired with the an ontology term representing this population (e.g., xxx).\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000066\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000066\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"type\":[\"literal\"],\"value\":\"age category research\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"An investigation concerning specific age categories.\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"value\":\"This definition is a placeholder as a result of meetings at ICBO2018.\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000034\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Should be paired with the an ontology term representing this population (e.g., xxx).\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"age category research\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"age category research\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"age category research\"},{\"type\":[\"literal\"],\"value\":\"An investigation concerning specific age categories.\"},{\"type\":[\"literal\"],\"value\":\"This definition is a placeholder as a result of meetings at ICBO2018.\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000034\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000034\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DUO_preferred_label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000041\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"DUO:0000034\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000034\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"age category research\"},\"curie\":\"DUO:0000034\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000034\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000034","definedBy":["duo"],"definition":["An investigation concerning specific age categories.","Should be paired with the an ontology term representing this population (e.g., xxx)."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000066","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000066","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/DUO_0000041":"age category research","http__//purl.obolibrary.org/obo/IAO_0000115":"An investigation concerning specific age categories.","http__//purl.obolibrary.org/obo/IAO_0000232":"This definition is a placeholder as a result of meetings at ICBO2018.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000034","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Should be paired with the an ontology term representing this population (e.g., xxx).","http__//www.w3.org/2000/01/rdf-schema#label":"age category research","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000066","id":"duo+class+http://purl.obolibrary.org/obo/DUO_0000034","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000034","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"age category research","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["age category research","An investigation concerning specific age categories.","This definition is a placeholder as a result of meetings at ICBO2018.","DUO:0000034","false"],"shortForm":"DUO_0000034","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000035\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000035\"},\"definition\":[{\"type\":[\"literal\"],\"value\":\"An investigation concerning specific gender categories.\"},{\"type\":[\"literal\"],\"value\":\"Should be paired with the an ontology term representing this population (e.g., xxx).\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000066\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000066\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"type\":[\"literal\"],\"value\":\"gender category research\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"An investigation concerning specific gender categories.\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"value\":\"This definition is a placeholder as a result of meetings at ICBO2018.\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000035\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Should be paired with the an ontology term representing this population (e.g., xxx).\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gender category research\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gender category research\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"gender category research\"},{\"type\":[\"literal\"],\"value\":\"An investigation concerning specific gender categories.\"},{\"type\":[\"literal\"],\"value\":\"This definition is a placeholder as a result of meetings at ICBO2018.\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000035\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000035\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DUO_preferred_label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000041\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"DUO:0000035\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000035\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gender category research\"},\"curie\":\"DUO:0000035\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000035\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000035","definedBy":["duo"],"definition":["An investigation concerning specific gender categories.","Should be paired with the an ontology term representing this population (e.g., xxx)."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000066","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000066","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/DUO_0000041":"gender category research","http__//purl.obolibrary.org/obo/IAO_0000115":"An investigation concerning specific gender categories.","http__//purl.obolibrary.org/obo/IAO_0000232":"This definition is a placeholder as a result of meetings at ICBO2018.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000035","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Should be paired with the an ontology term representing this population (e.g., xxx).","http__//www.w3.org/2000/01/rdf-schema#label":"gender category research","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000066","id":"duo+class+http://purl.obolibrary.org/obo/DUO_0000035","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000035","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"gender category research","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["gender category research","An investigation concerning specific gender categories.","This definition is a placeholder as a result of meetings at ICBO2018.","DUO:0000035","false"],"shortForm":"DUO_0000035","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000036\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000036\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"An investigation concerning use of data as reference or control material.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000066\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000066\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"type\":[\"literal\"],\"value\":\"research control\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"An investigation concerning use of data as reference or control material.\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"value\":\"This definition is a placeholder as a result of meetings at ICBO2018.\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000036\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"research control\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"research control\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"research control\"},{\"type\":[\"literal\"],\"value\":\"An investigation concerning use of data as reference or control material.\"},{\"type\":[\"literal\"],\"value\":\"This definition is a placeholder as a result of meetings at ICBO2018.\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000036\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000036\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DUO_preferred_label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000041\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"DUO:0000036\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000036\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"research control\"},\"curie\":\"DUO:0000036\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000036\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000036","definedBy":["duo"],"definition":"An investigation concerning use of data as reference or control material.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000066","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000066","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/DUO_0000041":"research control","http__//purl.obolibrary.org/obo/IAO_0000115":"An investigation concerning use of data as reference or control material.","http__//purl.obolibrary.org/obo/IAO_0000232":"This definition is a placeholder as a result of meetings at ICBO2018.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000036","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"research control","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000066","id":"duo+class+http://purl.obolibrary.org/obo/DUO_0000036","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000036","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"research control","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["research control","An investigation concerning use of data as reference or control material.","This definition is a placeholder as a result of meetings at ICBO2018.","DUO:0000036","false"],"shortForm":"DUO_0000036","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000037\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000037\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"An investigation concerning health, medical, or biomedical research.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000066\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000066\",\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"type\":[\"literal\"],\"value\":\"biomedical research\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"An investigation concerning health, medical, or biomedical research.\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"value\":\"This definition is a placeholder as a result of meetings at ICBO2018.\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000037\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"biomedical research\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"biomedical research\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"biomedical research\"},{\"type\":[\"literal\"],\"value\":\"An investigation concerning health, medical, or biomedical research.\"},{\"type\":[\"literal\"],\"value\":\"This definition is a placeholder as a result of meetings at ICBO2018.\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000037\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000037\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DUO_preferred_label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000041\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"DUO:0000037\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000037\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"biomedical research\"},\"curie\":\"DUO:0000037\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000037\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000037","definedBy":["duo"],"definition":"An investigation concerning health, medical, or biomedical research.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000066","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000066","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/DUO_0000041":"biomedical research","http__//purl.obolibrary.org/obo/IAO_0000115":"An investigation concerning health, medical, or biomedical research.","http__//purl.obolibrary.org/obo/IAO_0000232":"This definition is a placeholder as a result of meetings at ICBO2018.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000037","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"biomedical research","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000066","id":"duo+class+http://purl.obolibrary.org/obo/DUO_0000037","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000037","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"biomedical research","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["biomedical research","An investigation concerning health, medical, or biomedical research.","This definition is a placeholder as a result of meetings at ICBO2018.","DUO:0000037","false"],"shortForm":"DUO_0000037","type":["class","entity"]} @@ -79,227 +79,227 @@ {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000045\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000045\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use modifier indicates that use of the data is limited to not-for-profit organizations.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/DUO_0000018\",\"http://purl.obolibrary.org/obo/DUO_0000017\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/DUO_0000018\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/DUO_0000018\",\"http://purl.obolibrary.org/obo/DUO_0000017\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/DUO_0000018\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use modifier indicates that use of the data is limited to not-for-profit organizations.\",\"lang\":\"en\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000045\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"NPU\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"not for profit organisation use only\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/DUO_0000018\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"not for profit organisation use only\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use modifier indicates that use of the data is limited to not-for-profit organizations.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000045\"},{\"type\":[\"literal\"],\"value\":\"NPU\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000045\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"DUO:0000045\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000045\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"not for profit organisation use only\",\"lang\":\"en\"},\"curie\":\"DUO:0000045\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000045\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000018\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"not for profit, non commercial use only\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000017\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data use modifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000045","definedBy":["duo"],"definition":"This data use modifier indicates that use of the data is limited to not-for-profit organizations.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/DUO_0000018","http://purl.obolibrary.org/obo/DUO_0000017","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/DUO_0000018","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/DUO_0000018","http://purl.obolibrary.org/obo/DUO_0000017","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/DUO_0000018","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"This data use modifier indicates that use of the data is limited to not-for-profit organizations.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000045","http__//www.geneontology.org/formats/oboInOwl#shorthand":"NPU","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"not for profit organisation use only","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/DUO_0000018","id":"duo+class+http://purl.obolibrary.org/obo/DUO_0000045","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000045","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"not for profit organisation use only","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["This data use modifier indicates that use of the data is limited to not-for-profit organizations.","DUO:0000045","NPU","false"],"shortForm":"DUO_0000045","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000046\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000046\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use modifier indicates that use of the data is limited to not-for-profit use.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This indicates that data can be used by commercial organisations for research purposes, but not commercial purposes.\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/DUO_0000018\",\"http://purl.obolibrary.org/obo/DUO_0000017\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/DUO_0000018\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/DUO_0000018\",\"http://purl.obolibrary.org/obo/DUO_0000017\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/DUO_0000018\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use modifier indicates that use of the data is limited to not-for-profit use.\",\"lang\":\"en\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000046\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"NCU\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This indicates that data can be used by commercial organisations for research purposes, but not commercial purposes.\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"non-commercial use only\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/DUO_0000018\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"non-commercial use only\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This data use modifier indicates that use of the data is limited to not-for-profit use.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000046\"},{\"type\":[\"literal\"],\"value\":\"NCU\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000046\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"DUO:0000046\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000046\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"non-commercial use only\",\"lang\":\"en\"},\"curie\":\"DUO:0000046\",\"type\":[\"class\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000046\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000018\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"not for profit, non commercial use only\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000017\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data use modifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000046","definedBy":["duo"],"definition":["This data use modifier indicates that use of the data is limited to not-for-profit use.","This indicates that data can be used by commercial organisations for research purposes, but not commercial purposes."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/DUO_0000018","http://purl.obolibrary.org/obo/DUO_0000017","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/DUO_0000018","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/DUO_0000018","http://purl.obolibrary.org/obo/DUO_0000017","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/DUO_0000018","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"This data use modifier indicates that use of the data is limited to not-for-profit use.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000046","http__//www.geneontology.org/formats/oboInOwl#shorthand":"NCU","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"This indicates that data can be used by commercial organisations for research purposes, but not commercial purposes.","http__//www.w3.org/2000/01/rdf-schema#label":"non-commercial use only","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/DUO_0000018","id":"duo+class+http://purl.obolibrary.org/obo/DUO_0000046","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000046","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"non-commercial use only","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["This data use modifier indicates that use of the data is limited to not-for-profit use.","DUO:0000046","NCU","false"],"shortForm":"DUO_0000046","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GAZ_00000448\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GAZ:00000448\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000029\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000029\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000029\",\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000029\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"GAZ:00000448\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"geographic location\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000029\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"geographic location\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/DUO_0000010\",\"value\":\"http://purl.obolibrary.org/obo/DUO_0000022\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/DUO_0000010\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GAZ_00000448\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"GAZ:00000448\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GAZ_00000448\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"GAZ:00000448\":{\"url\":\"http://purl.obolibrary.org/obo/GAZ_00000448\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"GAZ:00000448\"},\"http://purl.obolibrary.org/obo/DUO_0000010\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"is restricted to\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000010\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000022\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"geographical restriction\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000022\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000029\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"site\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000029\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"GAZ:00000448","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000029","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000029","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000029","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000029","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.geneontology.org/formats/oboInOwl#id":"GAZ:00000448","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"geographic location","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000029","id":"duo+class+http://purl.obolibrary.org/obo/GAZ_00000448","imported":"false","iri":"http://purl.obolibrary.org/obo/GAZ_00000448","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"geographic location","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/DUO_0000022","searchableAnnotationValues":["GAZ:00000448","false"],"shortForm":"GAZ_00000448","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000001\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that specifies what should happen if the trigger condition is fulfilled.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conditional specification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that specifies what should happen if the trigger condition is fulfilled.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PlanAndPlannedProcess Branch\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI branch derived\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000349\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conditional specification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conditional specification\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conditional specification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that specifies what should happen if the trigger condition is fulfilled.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PlanAndPlannedProcess Branch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI branch derived\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000349\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000001\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000001\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000001","definition":"A directive information entity that specifies what should happen if the trigger condition is fulfilled.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000033","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000033","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"conditional specification","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A directive information entity that specifies what should happen if the trigger condition is fulfilled.","http__//purl.obolibrary.org/obo/IAO_0000117":"PlanAndPlannedProcess Branch","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI branch derived","OBI_0000349"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"conditional specification","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000033","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000001","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"conditional specification","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["conditional specification","A directive information entity that specifies what should happen if the trigger condition is fulfilled.","PlanAndPlannedProcess Branch","OBI branch derived","OBI_0000349","false"],"shortForm":"IAO_0000001","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000003\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000009\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000009\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000009\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000009\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement unit label\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of measurement unit labels are liters, inches, weight per volume.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: provenance: a term measurement unit was\\nproposed for OBI (OBI_0000176) , edited by Chris Stoeckert and\\nCristian Cocos, and subsequently moved to IAO where the objective for\\nwhich the original term was defined was satisfied with the definition\\nof this, different, term.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: review of this term done during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement unit label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000009\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement unit label\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement unit label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of measurement unit labels are liters, inches, weight per volume.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: provenance: a term measurement unit was\\nproposed for OBI (OBI_0000176) , edited by Chris Stoeckert and\\nCristian Cocos, and subsequently moved to IAO where the objective for\\nwhich the original term was defined was satisfied with the definition\\nof this, different, term.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: review of this term done during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000003\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000003\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000003\"},\"http://purl.obolibrary.org/obo/IAO_0000009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"datum label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000003","definition":"A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000009","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000009","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"measurement unit label","http__//purl.obolibrary.org/obo/IAO_0000112":"Examples of measurement unit labels are liters, inches, weight per volume.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure.","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-03-16: provenance: a term measurement unit was\nproposed for OBI (OBI_0000176) , edited by Chris Stoeckert and\nCristian Cocos, and subsequently moved to IAO where the objective for\nwhich the original term was defined was satisfied with the definition\nof this, different, term.","2009-03-16: review of this term done during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI."],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Melanie Courtot"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"measurement unit label","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000009","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000003","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000003","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"measurement unit label","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["measurement unit label","Examples of measurement unit labels are liters, inches, weight per volume.","A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure.","2009-03-16: provenance: a term measurement unit was\nproposed for OBI (OBI_0000176) , edited by Chris Stoeckert and\nCristian Cocos, and subsequently moved to IAO where the objective for\nwhich the original term was defined was satisfied with the definition\nof this, different, term.","2009-03-16: review of this term done during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.","PERSON: Alan Ruttenberg","PERSON: Melanie Courtot","false"],"shortForm":"IAO_0000003","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000005\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"objective specification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: original definition when imported from OBI read: \\\"objective is an non realizable information entity which can serve as that proper part of a plan towards which the realization of the plan is directed.\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-03-31: In the example of usage (\\\"In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction\\\") there is a protocol which is the ChIP assay protocol. In addition to being concretized on paper, the protocol can be concretized as a realizable entity, such as a plan that inheres in a person. The objective specification is the part that says that some protein and DNA interactions are identified. This is a specification of a process endpoint: the boundary in the process before which they are not identified and after which they are. During the realization of the plan, the goal is to get to the point of having the interactions, and participants in the realization of the plan try to do that.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Answers the question, why did you do this experiment?\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Barry Smith\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jennifer Fostel\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"goal specification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI Plan and Planned Process/Roles Branch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000217\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"objective specification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"objective specification\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000316\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"objective specification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: original definition when imported from OBI read: \\\"objective is an non realizable information entity which can serve as that proper part of a plan towards which the realization of the plan is directed.\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-03-31: In the example of usage (\\\"In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction\\\") there is a protocol which is the ChIP assay protocol. In addition to being concretized on paper, the protocol can be concretized as a realizable entity, such as a plan that inheres in a person. The objective specification is the part that says that some protein and DNA interactions are identified. This is a specification of a process endpoint: the boundary in the process before which they are not identified and after which they are. During the realization of the plan, the goal is to get to the point of having the interactions, and participants in the realization of the plan try to do that.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Answers the question, why did you do this experiment?\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Barry Smith\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jennifer Fostel\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"goal specification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI Plan and Planned Process/Roles Branch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000217\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000005\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000316\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"introduction to a publication about an investigation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000316\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000005\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000005\"},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000005","definition":"A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000033","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000033","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"objective specification","http__//purl.obolibrary.org/obo/IAO_0000112":"In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-03-16: original definition when imported from OBI read: \"objective is an non realizable information entity which can serve as that proper part of a plan towards which the realization of the plan is directed.\"","2014-03-31: In the example of usage (\"In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction\") there is a protocol which is the ChIP assay protocol. In addition to being concretized on paper, the protocol can be concretized as a realizable entity, such as a plan that inheres in a person. The objective specification is the part that says that some protein and DNA interactions are identified. This is a specification of a process endpoint: the boundary in the process before which they are not identified and after which they are. During the realization of the plan, the goal is to get to the point of having the interactions, and participants in the realization of the plan try to do that.","Answers the question, why did you do this experiment?"],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Barry Smith","PERSON: Bjoern Peters","PERSON: Jennifer Fostel"],"http__//purl.obolibrary.org/obo/IAO_0000118":"goal specification","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI Plan and Planned Process/Roles Branch","OBI_0000217"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"objective specification","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000033","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000005","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000005","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"objective specification","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000316"],"searchableAnnotationValues":["objective specification","In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction.","A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.","2009-03-16: original definition when imported from OBI read: \"objective is an non realizable information entity which can serve as that proper part of a plan towards which the realization of the plan is directed.\"","2014-03-31: In the example of usage (\"In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction\") there is a protocol which is the ChIP assay protocol. In addition to being concretized on paper, the protocol can be concretized as a realizable entity, such as a plan that inheres in a person. The objective specification is the part that says that some protein and DNA interactions are identified. This is a specification of a process endpoint: the boundary in the process before which they are not identified and after which they are. During the realization of the plan, the goal is to get to the point of having the interactions, and participants in the realization of the plan try to do that.","Answers the question, why did you do this experiment?","PERSON: Alan Ruttenberg","PERSON: Barry Smith","PERSON: Bjoern Peters","PERSON: Jennifer Fostel","goal specification","OBI Plan and Planned Process/Roles Branch","OBI_0000217","false"],"shortForm":"IAO_0000005","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000006\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000006\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A narrative object is an information content entity that is a set of propositions.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"narrative object\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of narrative objects are reports, journal articles, and patents submission.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A narrative object is an information content entity that is a set of propositions.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \\u0027textual entity\\u0027 and \\u0027figure\\u0027. Alan restored as there are OBI dependencies and this merits further discussion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"agree - DENRIE. Issue(alan) do we only mean text? What about a story told by mime. Does music count? (no) what about an oral report. Regarding definition, saying it is a set of propositions means we loose the idea that wording matters. Maybe adjust saying a narrative object has some relationshop to a set of propositions\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000013\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"narrative object\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"narrative object\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"narrative object\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of narrative objects are reports, journal articles, and patents submission.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A narrative object is an information content entity that is a set of propositions.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \\u0027textual entity\\u0027 and \\u0027figure\\u0027. Alan restored as there are OBI dependencies and this merits further discussion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"agree - DENRIE. Issue(alan) do we only mean text? What about a story told by mime. Does music count? (no) what about an oral report. Regarding definition, saying it is a set of propositions means we loose the idea that wording matters. Maybe adjust saying a narrative object has some relationshop to a set of propositions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000013\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000006\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000006\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000006\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000006\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000006","definition":"A narrative object is an information content entity that is a set of propositions.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"narrative object","http__//purl.obolibrary.org/obo/IAO_0000112":"Examples of narrative objects are reports, journal articles, and patents submission.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A narrative object is an information content entity that is a set of propositions.","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity\u0027 and \u0027figure\u0027. Alan restored as there are OBI dependencies and this merits further discussion","agree - DENRIE. Issue(alan) do we only mean text? What about a story told by mime. Does music count? (no) what about an oral report. Regarding definition, saying it is a set of propositions means we loose the idea that wording matters. Maybe adjust saying a narrative object has some relationshop to a set of propositions"],"http__//purl.obolibrary.org/obo/IAO_0000117":"person:Chris Stoeckert","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000013","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"narrative object","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000006","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000006","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"narrative object","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["narrative object","Examples of narrative objects are reports, journal articles, and patents submission.","A narrative object is an information content entity that is a set of propositions.","2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity\u0027 and \u0027figure\u0027. Alan restored as there are OBI dependencies and this merits further discussion","agree - DENRIE. Issue(alan) do we only mean text? What about a story told by mime. Does music count? (no) what about an oral report. Regarding definition, saying it is a set of propositions means we loose the idea that wording matters. Maybe adjust saying a narrative object has some relationshop to a set of propositions","person:Chris Stoeckert","OBI_0000013","group:OBI","false"],"shortForm":"IAO_0000006","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000007\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000007\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that describes an action the bearer will take.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Pour the contents of flask 1 into flask 2\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that describes an action the bearer will take.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI Plan and Planned Process branch\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"action specification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"action specification\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000007\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Pour the contents of flask 1 into flask 2\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that describes an action the bearer will take.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI Plan and Planned Process branch\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000007\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000007\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000007\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000007\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000007","definition":"A directive information entity that describes an action the bearer will take.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000033","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000033","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"Pour the contents of flask 1 into flask 2","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A directive information entity that describes an action the bearer will take.","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"OBI Plan and Planned Process branch","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"action specification","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000033","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000007","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000007","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"action specification","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000104","searchableAnnotationValues":["Pour the contents of flask 1 into flask 2","A directive information entity that describes an action the bearer will take.","Alan Ruttenberg","OBI Plan and Planned Process branch","false"],"shortForm":"IAO_0000007","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000008\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000008\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_artifact\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_artifact\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000008\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000008\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000008\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000008\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000008","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_artifact","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000008","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000008","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_artifact","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"false","shortForm":"IAO_0000008","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000009\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000009\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"datum label\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"http://www.golovchenko.org/cgi-bin/wnsearch?q\\u003dlabel#4n\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"value\":\"9/22/11 BP: changed the rdfs:label for this class from \\u0027label\\u0027 to \\u0027datum label\\u0027 to convey that this class is not intended to cover all kinds of labels (stickers, radiolabels, etc.), and not even all kind of textual labels, but rather the kind of labels occuring in a datum. \\n\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"datum label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"datum label\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"datum label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"http://www.golovchenko.org/cgi-bin/wnsearch?q\\u003dlabel#4n\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"9/22/11 BP: changed the rdfs:label for this class from \\u0027label\\u0027 to \\u0027datum label\\u0027 to convey that this class is not intended to cover all kinds of labels (stickers, radiolabels, etc.), and not even all kind of textual labels, but rather the kind of labels occuring in a datum. \\n\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000009\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000009\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000009\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000009\"},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000009","definition":"A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"datum label","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label","http__//purl.obolibrary.org/obo/IAO_0000116":"http://www.golovchenko.org/cgi-bin/wnsearch?q\u003dlabel#4n","http__//purl.obolibrary.org/obo/IAO_0000117":"GROUP: IAO","http__//purl.obolibrary.org/obo/IAO_0000232":"9/22/11 BP: changed the rdfs:label for this class from \u0027label\u0027 to \u0027datum label\u0027 to convey that this class is not intended to cover all kinds of labels (stickers, radiolabels, etc.), and not even all kind of textual labels, but rather the kind of labels occuring in a datum. \n","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"datum label","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000009","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000009","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"datum label","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["datum label","A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label","http://www.golovchenko.org/cgi-bin/wnsearch?q\u003dlabel#4n","GROUP: IAO","9/22/11 BP: changed the rdfs:label for this class from \u0027label\u0027 to \u0027datum label\u0027 to convey that this class is not intended to cover all kinds of labels (stickers, radiolabels, etc.), and not even all kind of textual labels, but rather the kind of labels occuring in a datum. \n","false"],"shortForm":"IAO_0000009","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000010\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Software is a plan specification composed of a series of instructions that can be \\ninterpreted by or directly executed by a processing unit.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Software is a plan specification composed of a series of instructions that can be \\ninterpreted by or directly executed by a processing unit.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"see sourceforge tracker discussion at http://sourceforge.net/tracker/index.php?func\\u003ddetail\\u0026aid\\u003d1958818\\u0026group_id\\u003d177891\\u0026atid\\u003d886178\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: OBI\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Software is a plan specification composed of a series of instructions that can be \\ninterpreted by or directly executed by a processing unit.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"see sourceforge tracker discussion at http://sourceforge.net/tracker/index.php?func\\u003ddetail\\u0026aid\\u003d1958818\\u0026group_id\\u003d177891\\u0026atid\\u003d886178\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000010\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000010\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000010\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000010","definition":"Software is a plan specification composed of a series of instructions that can be \ninterpreted by or directly executed by a processing unit.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000104","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000104","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"software","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"Software is a plan specification composed of a series of instructions that can be \ninterpreted by or directly executed by a processing unit.","http__//purl.obolibrary.org/obo/IAO_0000116":"see sourceforge tracker discussion at http://sourceforge.net/tracker/index.php?func\u003ddetail\u0026aid\u003d1958818\u0026group_id\u003d177891\u0026atid\u003d886178","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Bjoern Peters","PERSON: Chris Stoeckert","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP: OBI","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"software","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000104","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000010","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000010","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"software","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["software","Software is a plan specification composed of a series of instructions that can be \ninterpreted by or directly executed by a processing unit.","see sourceforge tracker discussion at http://sourceforge.net/tracker/index.php?func\u003ddetail\u0026aid\u003d1958818\u0026group_id\u003d177891\u0026atid\u003d886178","PERSON: Alan Ruttenberg","PERSON: Bjoern Peters","PERSON: Chris Stoeckert","PERSON: Melanie Courtot","GROUP: OBI","false"],"shortForm":"IAO_0000010","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000012\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000012\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_digital entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\n\\nSuperclass was \\u0027digitial quality\\u0027\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"OBI_0000261\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_digital entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_digital entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_digital entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\n\\nSuperclass was \\u0027digitial quality\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000261\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000012\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000012\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000012\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000012\"},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000012","definition":"A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"obsolete_digital entity","http__//purl.obolibrary.org/obo/IAO_0000115":"A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical.","http__//purl.obolibrary.org/obo/IAO_0000116":"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\n\nSuperclass was \u0027digitial quality\u0027","http__//purl.obolibrary.org/obo/IAO_0000117":"person:Chris Stoeckert","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000261","group:OBI"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete2_digital entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000012","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000012","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete2_digital entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["obsolete_digital entity","A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical.","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\n\nSuperclass was \u0027digitial quality\u0027","person:Chris Stoeckert","OBI_0000261","group:OBI","false"],"shortForm":"IAO_0000012","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000013\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000013\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report that is published in a journal.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000088\",\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000311\"],\"directParent\":[\"http://purl.obolibrary.org/obo/IAO_0000088\",\"http://purl.obolibrary.org/obo/IAO_0000311\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000088\",\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000311\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/IAO_0000088\",\"http://purl.obolibrary.org/obo/IAO_0000311\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"journal article\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples are articles published in the journals, Nature and Science. The content can often be cited by reference to a paper based encoding, e.g. Authors, Title of article, Journal name, date or year of publication, volume and page number.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report that is published in a journal.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000159\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"journal article\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000088\",\"http://purl.obolibrary.org/obo/IAO_0000311\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000444\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000444\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"journal article\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000443\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000013\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000444\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000444\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"journal article\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples are articles published in the journals, Nature and Science. The content can often be cited by reference to a paper based encoding, e.g. Authors, Title of article, Journal name, date or year of publication, volume and page number.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report that is published in a journal.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000159\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000013\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000311\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000311\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000312\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000312\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000444\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publishing process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000444\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"data item extraction from journal article\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000088\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000088\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000013\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000013\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000013\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000013","definition":"A report that is published in a journal.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000088","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000311"],"directParent":["http://purl.obolibrary.org/obo/IAO_0000088","http://purl.obolibrary.org/obo/IAO_0000311"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000088","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000311"],"hierarchicalParent":["http://purl.obolibrary.org/obo/IAO_0000088","http://purl.obolibrary.org/obo/IAO_0000311"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"journal article","http__//purl.obolibrary.org/obo/IAO_0000112":"Examples are articles published in the journals, Nature and Science. The content can often be cited by reference to a paper based encoding, e.g. Authors, Title of article, Journal name, date or year of publication, volume and page number.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A report that is published in a journal.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000159","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"journal article","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000088","http://purl.obolibrary.org/obo/IAO_0000311"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000013","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000013","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"journal article","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000443","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000444","searchableAnnotationValues":["journal article","Examples are articles published in the journals, Nature and Science. The content can often be cited by reference to a paper based encoding, e.g. Authors, Title of article, Journal name, date or year of publication, volume and page number.","A report that is published in a journal.","PERSON: Alan Ruttenberg","PERSON: Chris Stoeckert","OBI_0000159","group:OBI","false"],"shortForm":"IAO_0000013","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000015\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000015\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A quality of an information bearer that imparts the information content\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information carrier\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"In the case of a printed paperback novel the physicality of the ink and of the paper form part of the information bearer. The qualities of appearing black and having a certain pattern for the ink and appearing white for the paper form part of the information carrier in this case.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A quality of an information bearer that imparts the information content\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"12/15/09: There is a concern that some ways that carry information may be processes rather than qualities, such as in a \\u0027delayed wave carrier\\u0027.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2014-03-10: We are not certain that all information carriers are qualities. There was a discussion of dropping it.\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Smith, Ceusters, Ruttenberg, 2000 years of philosophy\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information carrier\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000019\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000059\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information carrier\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information carrier\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"In the case of a printed paperback novel the physicality of the ink and of the paper form part of the information bearer. The qualities of appearing black and having a certain pattern for the ink and appearing white for the paper form part of the information carrier in this case.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A quality of an information bearer that imparts the information content\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"12/15/09: There is a concern that some ways that carry information may be processes rather than qualities, such as in a \\u0027delayed wave carrier\\u0027.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2014-03-10: We are not certain that all information carriers are qualities. There was a discussion of dropping it.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Smith, Ceusters, Ruttenberg, 2000 years of philosophy\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000015\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000059\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"concretizes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000059\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000015\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000015\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000015\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000015","definition":"A quality of an information bearer that imparts the information content","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000019","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000019","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"information carrier","http__//purl.obolibrary.org/obo/IAO_0000112":"In the case of a printed paperback novel the physicality of the ink and of the paper form part of the information bearer. The qualities of appearing black and having a certain pattern for the ink and appearing white for the paper form part of the information carrier in this case.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A quality of an information bearer that imparts the information content","http__//purl.obolibrary.org/obo/IAO_0000116":["12/15/09: There is a concern that some ways that carry information may be processes rather than qualities, such as in a \u0027delayed wave carrier\u0027.","2014-03-10: We are not certain that all information carriers are qualities. There was a discussion of dropping it."],"http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Smith, Ceusters, Ruttenberg, 2000 years of philosophy","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"information carrier","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000019","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000015","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000015","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"information carrier","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["information carrier","In the case of a printed paperback novel the physicality of the ink and of the paper form part of the information bearer. The qualities of appearing black and having a certain pattern for the ink and appearing white for the paper form part of the information carrier in this case.","A quality of an information bearer that imparts the information content","12/15/09: There is a concern that some ways that carry information may be processes rather than qualities, such as in a \u0027delayed wave carrier\u0027.","2014-03-10: We are not certain that all information carriers are qualities. There was a discussion of dropping it.","PERSON: Alan Ruttenberg","Smith, Ceusters, Ruttenberg, 2000 years of philosophy","false"],"shortForm":"IAO_0000015","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000017\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000017\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"model number\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"manufactered items may have more than one model number, sometimes by rebranding, or because companies are sold and the products issued new model numbers\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"model number\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"model number\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"model number\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"manufactered items may have more than one model number, sometimes by rebranding, or because companies are sold and the products issued new model numbers\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000017\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000017\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000017\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000017\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000017","definition":"A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000028","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000028","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"model number","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","http__//purl.obolibrary.org/obo/IAO_0000116":"manufactered items may have more than one model number, sometimes by rebranding, or because companies are sold and the products issued new model numbers","http__//purl.obolibrary.org/obo/IAO_0000117":"Person: Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"model number","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000028","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000017","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000017","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"model number","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["model number","A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","manufactered items may have more than one model number, sometimes by rebranding, or because companies are sold and the products issued new model numbers","Person: Alan Ruttenberg","false"],"shortForm":"IAO_0000017","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000018\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000018\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000226\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_material_entity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_material_entity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000018\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000018\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000018\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000018\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000226\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000018","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000226","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_material_entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000018","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000018","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_material_entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"false","shortForm":"IAO_0000018","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000019\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000019\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"binary digital entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"MS Word document, ZIP file, DICOM file, JPEG file\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\nSuperclass was \\u0027digital entity\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"digital_entity\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"OBI_0000244\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_binary digital entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_binary digital entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"binary digital entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"MS Word document, ZIP file, DICOM file, JPEG file\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\nSuperclass was \\u0027digital entity\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"digital_entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000244\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000019\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000019\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000019\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000019\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000019","definition":"A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"binary digital entity","http__//purl.obolibrary.org/obo/IAO_0000112":"MS Word document, ZIP file, DICOM file, JPEG file","http__//purl.obolibrary.org/obo/IAO_0000115":"A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters.","http__//purl.obolibrary.org/obo/IAO_0000116":["3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nSuperclass was \u0027digital entity\u0027","digital_entity"],"http__//purl.obolibrary.org/obo/IAO_0000117":"person:Chris Stoeckert","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000244","group:OBI"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete2_binary digital entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000019","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000019","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete2_binary digital entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["binary digital entity","MS Word document, ZIP file, DICOM file, JPEG file","A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters.","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nSuperclass was \u0027digital entity\u0027","digital_entity","person:Chris Stoeckert","OBI_0000244","group:OBI","false"],"shortForm":"IAO_0000019","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000024\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000024\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"a unit of measure is the quality of some material entity compared to which another quality is some multiple of.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"value\":\"The length of a ruler.\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"a unit of measure is the quality of some material entity compared to which another quality is some multiple of.\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"value\":\"Alan Ruttenberg\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"Smith, Ceusters, Ruttenberg, 2000 years of philosophy\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_unit of measure\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_unit of measure\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The length of a ruler.\"},{\"type\":[\"literal\"],\"value\":\"a unit of measure is the quality of some material entity compared to which another quality is some multiple of.\"},{\"type\":[\"literal\"],\"value\":\"Alan Ruttenberg\"},{\"type\":[\"literal\"],\"value\":\"Smith, Ceusters, Ruttenberg, 2000 years of philosophy\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000024\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000024\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000024\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000024\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000024","definition":"a unit of measure is the quality of some material entity compared to which another quality is some multiple of.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"The length of a ruler.","http__//purl.obolibrary.org/obo/IAO_0000115":"a unit of measure is the quality of some material entity compared to which another quality is some multiple of.","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Smith, Ceusters, Ruttenberg, 2000 years of philosophy","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_unit of measure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000024","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000024","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_unit of measure","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["The length of a ruler.","a unit of measure is the quality of some material entity compared to which another quality is some multiple of.","Alan Ruttenberg","Smith, Ceusters, Ruttenberg, 2000 years of philosophy","false"],"shortForm":"IAO_0000024","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000025\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000025\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"programming language\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"R, Perl, Java\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000058\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"programming language\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"programming language\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"programming language\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"R, Perl, Java\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000058\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000025\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000025\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000025\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000025\"}}}","appearsIn":["duo"],"curie":"IAO:0000025","definition":"A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000104","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000104","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"programming language","http__//purl.obolibrary.org/obo/IAO_0000112":"R, Perl, Java","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.","http__//purl.obolibrary.org/obo/IAO_0000117":["person:Alan Ruttenberg","person:Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000058","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"programming language","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000104","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000025","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000025","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"programming language","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["programming language","R, Perl, Java","A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.","person:Alan Ruttenberg","person:Chris Stoeckert","OBI_0000058","group:OBI","false"],"shortForm":"IAO_0000025","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Data items include counts of things, analyte concentrations, and statistical summaries.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"JAR: datum -- well, this will be very tricky to define, but maybe some \\ninformation-like stuff that might be put into a computer and that is \\nmeant, by someone, to denote and/or to be interpreted by some \\nprocess... I would include lists, tables, sentences... I think I might \\ndefer to Barry, or to Brian Cantwell Smith\\n\\nJAR: A data item is an approximately justified approximately true approximate belief\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"numDescendants\":83.0,\"numHierarchicalDescendants\":65.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/APOLLO_SV_00000522\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000096\",\"isObsolete\":false}]},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000443\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Data items include counts of things, analyte concentrations, and statistical summaries.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"JAR: datum -- well, this will be very tricky to define, but maybe some \\ninformation-like stuff that might be put into a computer and that is \\nmeant, by someone, to denote and/or to be interpreted by some \\nprocess... I would include lists, tables, sentences... I think I might \\ndefer to Barry, or to Brian Cantwell Smith\\n\\nJAR: A data item is an approximately justified approximately true approximate belief\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000027\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/APOLLO_SV_00000522\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code repository\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO:SV_00000522\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"data item extraction from journal article\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000027\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000027\"}}}","appearsIn":["duo"],"curie":"IAO:0000027","definition":"An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"data item","http__//purl.obolibrary.org/obo/IAO_0000112":"Data items include counts of things, analyte concentrations, and statistical summaries.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.","http__//purl.obolibrary.org/obo/IAO_0000116":["2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers.","2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum.","2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym.","2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/","JAR: datum -- well, this will be very tricky to define, but maybe some \ninformation-like stuff that might be put into a computer and that is \nmeant, by someone, to denote and/or to be interpreted by some \nprocess... I would include lists, tables, sentences... I think I might \ndefer to Barry, or to Brian Cantwell Smith\n\nJAR: A data item is an approximately justified approximately true approximate belief"],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Chris Stoeckert","PERSON: Jonathan Rees"],"http__//purl.obolibrary.org/obo/IAO_0000118":"data","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"data item","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000027","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000027","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"data item","numDescendants":"83.0","numHierarchicalDescendants":"65.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/APOLLO_SV_00000522","http://purl.obolibrary.org/obo/IAO_0000443"],"searchableAnnotationValues":["data item","Data items include counts of things, analyte concentrations, and statistical summaries.","An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.","2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers.","2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum.","2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym.","2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/","JAR: datum -- well, this will be very tricky to define, but maybe some \ninformation-like stuff that might be put into a computer and that is \nmeant, by someone, to denote and/or to be interpreted by some \nprocess... I would include lists, tables, sentences... I think I might \ndefer to Barry, or to Brian Cantwell Smith\n\nJAR: A data item is an approximately justified approximately true approximate belief","PERSON: Alan Ruttenberg","PERSON: Chris Stoeckert","PERSON: Jonathan Rees","data","false"],"shortForm":"IAO_0000027","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000028\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a serial number such as \\\"12324X\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a stop sign\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a written proper name such as \\\"OBI\\\"\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"20091104, MC: this needs work and will most probably change\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-03-31: We would like to have a deeper analysis of \\u0027mark\\u0027 and \\u0027sign\\u0027 in the future (see https://github.com/information-artifact-ontology/IAO/issues/154).\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: James A. Overton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"based on Oxford English Dictionary\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"numDescendants\":7.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a serial number such as \\\"12324X\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a stop sign\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a written proper name such as \\\"OBI\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"20091104, MC: this needs work and will most probably change\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-03-31: We would like to have a deeper analysis of \\u0027mark\\u0027 and \\u0027sign\\u0027 in the future (see https://github.com/information-artifact-ontology/IAO/issues/154).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: James A. Overton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"based on Oxford English Dictionary\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000028\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000028\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000028\"}}}","appearsIn":["duo"],"curie":"IAO:0000028","definition":"An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"symbol","http__//purl.obolibrary.org/obo/IAO_0000112":["a serial number such as \"12324X\"","a stop sign","a written proper name such as \"OBI\""],"http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity.","http__//purl.obolibrary.org/obo/IAO_0000116":["20091104, MC: this needs work and will most probably change","2014-03-31: We would like to have a deeper analysis of \u0027mark\u0027 and \u0027sign\u0027 in the future (see https://github.com/information-artifact-ontology/IAO/issues/154)."],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: James A. Overton","PERSON: Jonathan Rees"],"http__//purl.obolibrary.org/obo/IAO_0000119":"based on Oxford English Dictionary","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"symbol","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000028","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000028","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"symbol","numDescendants":"7.0","numHierarchicalDescendants":"7.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["symbol","a serial number such as \"12324X\"","a stop sign","a written proper name such as \"OBI\"","An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity.","20091104, MC: this needs work and will most probably change","2014-03-31: We would like to have a deeper analysis of \u0027mark\u0027 and \u0027sign\u0027 in the future (see https://github.com/information-artifact-ontology/IAO/issues/154).","PERSON: James A. Overton","PERSON: Jonathan Rees","based on Oxford English Dictionary","false"],"shortForm":"IAO_0000028","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000029\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000029\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A symbol that denotes a number.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"numeral\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A symbol that denotes a number.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"numeral\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"numeral\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"numeral\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A symbol that denotes a number.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000029\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000028\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000029\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000029\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000029\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000029","definition":"A symbol that denotes a number.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000028","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000028","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"numeral","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A symbol that denotes a number.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Jonathan Rees","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"numeral","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000028","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000029","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000029","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"numeral","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["numeral","A symbol that denotes a number.","PERSON: Jonathan Rees","false"],"shortForm":"IAO_0000029","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A generically dependent continuant that is about some thing.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000031\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000031\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of information content entites include journal articles, data, graphical layouts, and graphs.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A generically dependent continuant that is about some thing.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-03-10: The use of \\\"thing\\\" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information_content_entity \\u0027is_encoded_in\\u0027 some digital_entity in obi before split (040907). information_content_entity \\u0027is_encoded_in\\u0027 some physical_document in obi before split (040907).\\n\\nPrevious. An information content entity is a non-realizable information entity that \\u0027is encoded in\\u0027 some digital or physical entity.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000142\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/BFO_0000031\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"numDescendants\":229.0,\"numHierarchicalDescendants\":211.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000572\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000575\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000580\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000650\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000650\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false}],\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of information content entites include journal articles, data, graphical layouts, and graphs.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A generically dependent continuant that is about some thing.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-03-10: The use of \\\"thing\\\" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information_content_entity \\u0027is_encoded_in\\u0027 some digital_entity in obi before split (040907). information_content_entity \\u0027is_encoded_in\\u0027 some physical_document in obi before split (040907).\\n\\nPrevious. An information content entity is a non-realizable information entity that \\u0027is encoded in\\u0027 some digital or physical entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000142\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000030\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000030\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000030\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000575\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"associating information with a centrally registered identifier in its registry\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000575\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000572\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"documenting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000572\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000650\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database extract, transform, and load process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000650\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000580\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"looking up a centrally registered identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000580\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000030","definition":"A generically dependent continuant that is about some thing.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000031","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000031","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"information content entity","http__//purl.obolibrary.org/obo/IAO_0000112":"Examples of information content entites include journal articles, data, graphical layouts, and graphs.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A generically dependent continuant that is about some thing.","http__//purl.obolibrary.org/obo/IAO_0000116":["2014-03-10: The use of \"thing\" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ).","information_content_entity \u0027is_encoded_in\u0027 some digital_entity in obi before split (040907). information_content_entity \u0027is_encoded_in\u0027 some physical_document in obi before split (040907).\n\nPrevious. An information content entity is a non-realizable information entity that \u0027is encoded in\u0027 some digital or physical entity."],"http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Chris Stoeckert","http__//purl.obolibrary.org/obo/IAO_0000119":"OBI_0000142","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"information content entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/BFO_0000031"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000030","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000030","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"information content entity","numDescendants":"229.0","numHierarchicalDescendants":"211.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/IAO_0000572","http://purl.obolibrary.org/obo/IAO_0000575","http://purl.obolibrary.org/obo/IAO_0000580","http://purl.obolibrary.org/obo/IAO_0000650","http://purl.obolibrary.org/obo/IAO_0000650"],"relatedTo":"http://purl.obolibrary.org/obo/BFO_0000001","searchableAnnotationValues":["information content entity","Examples of information content entites include journal articles, data, graphical layouts, and graphs.","A generically dependent continuant that is about some thing.","2014-03-10: The use of \"thing\" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ).","information_content_entity \u0027is_encoded_in\u0027 some digital_entity in obi before split (040907). information_content_entity \u0027is_encoded_in\u0027 some physical_document in obi before split (040907).\n\nPrevious. An information content entity is a non-realizable information entity that \u0027is encoded in\u0027 some digital or physical entity.","PERSON: Chris Stoeckert","OBI_0000142","false"],"shortForm":"IAO_0000030","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000031\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000031\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A numeral that denotes an integer\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000029\",\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000029\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000029\",\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000029\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"integer numeral\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A numeral that denotes an integer\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"integer numeral\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000029\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"integer numeral\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"integer numeral\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A numeral that denotes an integer\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000031\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000031\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000031\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000031\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000029\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"numeral\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000029\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000031","definition":"A numeral that denotes an integer","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000029","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000029","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000029","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000029","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"integer numeral","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A numeral that denotes an integer","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Jonathan Rees","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"integer numeral","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000029","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000031","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000031","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"integer numeral","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["integer numeral","A numeral that denotes an integer","PERSON: Jonathan Rees","false"],"shortForm":"IAO_0000031","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000032\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000032\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000109\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000109\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"10 feet. 3 ml.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: we decided to keep datum singular in scalar measurement datum, as in\\nthis case we explicitly refer to the singular form\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Would write this as: has_part some \\u0027measurement unit label\\u0027 and has_part some numeral and has_part exactly 2, except for the fact that this won\\u0027t let us take advantage of OWL reasoning over the numbers. Instead use has measurment value property to represent the same. Use has measurement unit label (subproperty of has_part) so we can easily say that there is only one of them.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scalar measurement datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000109\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#minCardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#minCardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000004\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scalar measurement datum\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"10 feet. 3 ml.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: we decided to keep datum singular in scalar measurement datum, as in\\nthis case we explicitly refer to the singular form\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Would write this as: has_part some \\u0027measurement unit label\\u0027 and has_part some numeral and has_part exactly 2, except for the fact that this won\\u0027t let us take advantage of OWL reasoning over the numbers. Instead use has measurment value property to represent the same. Use has measurement unit label (subproperty of has_part) so we can easily say that there is only one of them.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000032\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000032\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000032\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000032\"},\"http://purl.obolibrary.org/obo/IAO_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000039\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement value\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000004\"},\"type\":[\"dataProperty\",\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000032","definition":"A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000109","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000109","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"10 feet. 3 ml.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label.","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-03-16: we decided to keep datum singular in scalar measurement datum, as in\nthis case we explicitly refer to the singular form","Would write this as: has_part some \u0027measurement unit label\u0027 and has_part some numeral and has_part exactly 2, except for the fact that this won\u0027t let us take advantage of OWL reasoning over the numbers. Instead use has measurment value property to represent the same. Use has measurement unit label (subproperty of has_part) so we can easily say that there is only one of them."],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Melanie Courtot"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"scalar measurement datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000109"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000032","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000032","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"scalar measurement datum","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["10 feet. 3 ml.","A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label.","2009-03-16: we decided to keep datum singular in scalar measurement datum, as in\nthis case we explicitly refer to the singular form","Would write this as: has_part some \u0027measurement unit label\u0027 and has_part some numeral and has_part exactly 2, except for the fact that this won\u0027t let us take advantage of OWL reasoning over the numbers. Instead use has measurment value property to represent the same. Use has measurement unit label (subproperty of has_part) so we can easily say that there is only one of them.","PERSON: Alan Ruttenberg","PERSON: Melanie Courtot","false"],"shortForm":"IAO_0000032","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity whose concretizations indicate to their bearer how to realize them in a process.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity whose concretizations indicate to their bearer how to realize them in a process.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: provenance: a term realizable information entity was proposed for OBI (OBI_0000337) , edited by the PlanAndPlannedProcess branch. Original definition was \\\"is the specification of a process that can be concretized and realized by an actor\\\" with alternative term \\\"instruction\\\".It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2013-05-30 Alan Ruttenberg: What differentiates a directive information entity from an information concretization is that it can have concretizations that are either qualities or realizable entities. The concretizations that are realizable entities are created when an individual chooses to take up the direction, i.e. has the intention to (try to) realize it.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"8/6/2009 Alan Ruttenberg: Changed label from \\\"information entity about a realizable\\\" after discussions at ICBO\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Werner pushed back on calling it realizable information entity as it isn\\u0027t realizable. However this name isn\\u0027t right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn\\u0027t about the plan, it, once concretized, *is* the plan. -Alan\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"numDescendants\":19.0,\"numHierarchicalDescendants\":19.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity whose concretizations indicate to their bearer how to realize them in a process.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: provenance: a term realizable information entity was proposed for OBI (OBI_0000337) , edited by the PlanAndPlannedProcess branch. Original definition was \\\"is the specification of a process that can be concretized and realized by an actor\\\" with alternative term \\\"instruction\\\".It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2013-05-30 Alan Ruttenberg: What differentiates a directive information entity from an information concretization is that it can have concretizations that are either qualities or realizable entities. The concretizations that are realizable entities are created when an individual chooses to take up the direction, i.e. has the intention to (try to) realize it.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"8/6/2009 Alan Ruttenberg: Changed label from \\\"information entity about a realizable\\\" after discussions at ICBO\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Werner pushed back on calling it realizable information entity as it isn\\u0027t realizable. However this name isn\\u0027t right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn\\u0027t about the plan, it, once concretized, *is* the plan. -Alan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000033\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000033\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000033\"},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000033","definition":"An information content entity whose concretizations indicate to their bearer how to realize them in a process.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity whose concretizations indicate to their bearer how to realize them in a process.","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-03-16: provenance: a term realizable information entity was proposed for OBI (OBI_0000337) , edited by the PlanAndPlannedProcess branch. Original definition was \"is the specification of a process that can be concretized and realized by an actor\" with alternative term \"instruction\".It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.","2013-05-30 Alan Ruttenberg: What differentiates a directive information entity from an information concretization is that it can have concretizations that are either qualities or realizable entities. The concretizations that are realizable entities are created when an individual chooses to take up the direction, i.e. has the intention to (try to) realize it.","8/6/2009 Alan Ruttenberg: Changed label from \"information entity about a realizable\" after discussions at ICBO","Werner pushed back on calling it realizable information entity as it isn\u0027t realizable. However this name isn\u0027t right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn\u0027t about the plan, it, once concretized, *is* the plan. -Alan"],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Bjoern Peters"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"directive information entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000030"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000033","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000033","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directive information entity","numDescendants":"19.0","numHierarchicalDescendants":"19.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/BFO_0000017","searchableAnnotationValues":["An information content entity whose concretizations indicate to their bearer how to realize them in a process.","2009-03-16: provenance: a term realizable information entity was proposed for OBI (OBI_0000337) , edited by the PlanAndPlannedProcess branch. Original definition was \"is the specification of a process that can be concretized and realized by an actor\" with alternative term \"instruction\".It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.","2013-05-30 Alan Ruttenberg: What differentiates a directive information entity from an information concretization is that it can have concretizations that are either qualities or realizable entities. The concretizations that are realizable entities are created when an individual chooses to take up the direction, i.e. has the intention to (try to) realize it.","8/6/2009 Alan Ruttenberg: Changed label from \"information entity about a realizable\" after discussions at ICBO","Werner pushed back on calling it realizable information entity as it isn\u0027t realizable. However this name isn\u0027t right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn\u0027t about the plan, it, once concretized, *is* the plan. -Alan","PERSON: Alan Ruttenberg","PERSON: Bjoern Peters","false"],"shortForm":"IAO_0000033","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000034\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000034\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000001\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000001\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time trigger\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PlanAndPlannedProcess Branch\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time trigger\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000001\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time trigger\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time trigger\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PlanAndPlannedProcess Branch\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000034\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000034\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000034\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000034\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conditional specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000034","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000001","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000001","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000001","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"time trigger","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000124","http__//purl.obolibrary.org/obo/IAO_0000117":"PlanAndPlannedProcess Branch","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"time trigger","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000001","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000034","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000034","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"time trigger","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["time trigger","PlanAndPlannedProcess Branch","false"],"shortForm":"IAO_0000034","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000035\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000035\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_study interpretation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"value\":\"2009-03-16: definition was \\\"A conclusion is a narrative object which can be published in a paper summerizing and interpreting a protocol application.\\\"\"},{\"type\":[\"literal\"],\"value\":\"2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The obsoleting of narrative object required a modest change in the definition of this term. Circularity with \\\"interpretation... interprets\\\" has been removed, using \\\"about the implications\\\" instead.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Alan Ruttenberg\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jennifer Fostel\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Melanie Courtot\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"value\":\"conclusion\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"OBI_0000005\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_study interpretation\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_study interpretation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_study interpretation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2009-03-16: definition was \\\"A conclusion is a narrative object which can be published in a paper summerizing and interpreting a protocol application.\\\"\"},{\"type\":[\"literal\"],\"value\":\"2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The obsoleting of narrative object required a modest change in the definition of this term. Circularity with \\\"interpretation... interprets\\\" has been removed, using \\\"about the implications\\\" instead.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Alan Ruttenberg\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jennifer Fostel\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Melanie Courtot\"},{\"type\":[\"literal\"],\"value\":\"conclusion\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000005\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000035\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000035\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000035\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000035\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000035","definition":"A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"obsolete_study interpretation","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-03-16: definition was \"A conclusion is a narrative object which can be published in a paper summerizing and interpreting a protocol application.\"","2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.","The obsoleting of narrative object required a modest change in the definition of this term. Circularity with \"interpretation... interprets\" has been removed, using \"about the implications\" instead."],"http__//purl.obolibrary.org/obo/IAO_0000117":["Lawrence Hunter","PERSON: Alan Ruttenberg","PERSON: Jennifer Fostel","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000118":"conclusion","http__//purl.obolibrary.org/obo/IAO_0000119":"OBI_0000005","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_study interpretation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000035","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000035","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_study interpretation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["obsolete_study interpretation","A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses","2009-03-16: definition was \"A conclusion is a narrative object which can be published in a paper summerizing and interpreting a protocol application.\"","2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.","The obsoleting of narrative object required a modest change in the definition of this term. Circularity with \"interpretation... interprets\" has been removed, using \"about the implications\" instead.","Lawrence Hunter","PERSON: Alan Ruttenberg","PERSON: Jennifer Fostel","PERSON: Melanie Courtot","conclusion","OBI_0000005","false"],"shortForm":"IAO_0000035","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000037\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000037\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dot plot\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Dot plot of SSC-H and FSC-H.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000002\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000123\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dot plot\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dot plot\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dot plot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Dot plot of SSC-H and FSC-H.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000123\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000037\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000037\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000037\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000037\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000002\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000037","definition":"A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"dot plot","http__//purl.obolibrary.org/obo/IAO_0000112":"Dot plot of SSC-H and FSC-H.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000002","http__//purl.obolibrary.org/obo/IAO_0000115":"A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions.","http__//purl.obolibrary.org/obo/IAO_0000117":["person:Allyson Lister","person:Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000123","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"dot plot","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000037","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000037","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"dot plot","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["dot plot","Dot plot of SSC-H and FSC-H.","A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions.","person:Allyson Lister","person:Chris Stoeckert","OBI_0000123","group:OBI","false"],"shortForm":"IAO_0000037","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000309\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000309\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000240\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000309\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"numDescendants\":9.0,\"numHierarchicalDescendants\":9.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000240\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000038\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000038\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000038\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000038","definition":"A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000309","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000309","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"graph","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Lawrence Hunter","person:Alan Ruttenberg","person:Allyson Lister"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000240","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"graph","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000309","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000038","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000038","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"graph","numDescendants":"9.0","numHierarchicalDescendants":"9.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["graph","A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way.","PERSON: Lawrence Hunter","person:Alan Ruttenberg","person:Allyson Lister","OBI_0000240","group:OBI","false"],"shortForm":"IAO_0000038","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000047\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000047\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A text based digital entity is a digital entity that is encoded so that it only contains text characters.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"text based digital entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XML file, C++ source code file\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A text based digital entity is a digital entity that is encoded so that it only contains text characters.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\nsuperclass was \\u0027digital document\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"digital_entity\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"OBI_0000132\"},{\"type\":[\"literal\"],\"value\":\"group:OBI\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_text based digital entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_text based digital entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"text based digital entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XML file, C++ source code file\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A text based digital entity is a digital entity that is encoded so that it only contains text characters.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\nsuperclass was \\u0027digital document\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"digital_entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000132\"},{\"type\":[\"literal\"],\"value\":\"group:OBI\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000047\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000047\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000047\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000047\"},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000047","definition":"A text based digital entity is a digital entity that is encoded so that it only contains text characters.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"text based digital entity","http__//purl.obolibrary.org/obo/IAO_0000112":"XML file, C++ source code file","http__//purl.obolibrary.org/obo/IAO_0000115":"A text based digital entity is a digital entity that is encoded so that it only contains text characters.","http__//purl.obolibrary.org/obo/IAO_0000116":["3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digital document\u0027","digital_entity"],"http__//purl.obolibrary.org/obo/IAO_0000117":"person:Chris Stoeckert","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000132","group:OBI"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete2_text based digital entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000047","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000047","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete2_text based digital entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["text based digital entity","XML file, C++ source code file","A text based digital entity is a digital entity that is encoded so that it only contains text characters.","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digital document\u0027","digital_entity","person:Chris Stoeckert","OBI_0000132","group:OBI","false"],"shortForm":"IAO_0000047","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000055\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000055\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A rule is an executable which guides, defines, restricts actions.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000001\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000001\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"rule\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be added\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A rule is an executable which guides, defines, restricts actions.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"MSI\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PRS\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0500021\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PRS\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"rule\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000001\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"rule\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"rule\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be added\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A rule is an executable which guides, defines, restricts actions.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"MSI\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PRS\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0500021\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000055\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conditional specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000001\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000055\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000055\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000055\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000055","definition":"A rule is an executable which guides, defines, restricts actions.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000001","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000001","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000001","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"rule","http__//purl.obolibrary.org/obo/IAO_0000112":"example to be added","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A rule is an executable which guides, defines, restricts actions.","http__//purl.obolibrary.org/obo/IAO_0000116":"MSI","http__//purl.obolibrary.org/obo/IAO_0000117":"PRS","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0500021","PRS"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"rule","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000001","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000055","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000055","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"rule","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["rule","example to be added","A rule is an executable which guides, defines, restricts actions.","MSI","PRS","OBI_0500021","false"],"shortForm":"IAO_0000055","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000057\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000057\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contour plot\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Contour plot of SSC-H, FSC-H, and FL1-H.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000002\",\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically_dependent_continuants\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000246\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:Flow Cytometry community\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contour plot\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contour plot\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contour plot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Contour plot of SSC-H, FSC-H, and FL1-H.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically_dependent_continuants\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000246\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:Flow Cytometry community\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000057\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000002\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000057\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000057\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000057\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000057","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"contour plot","http__//purl.obolibrary.org/obo/IAO_0000112":"Contour plot of SSC-H, FSC-H, and FL1-H.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000002","http__//purl.obolibrary.org/obo/IAO_0000116":"generically_dependent_continuants","http__//purl.obolibrary.org/obo/IAO_0000117":["person:Allyson Lister","person:Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000246","group:Flow Cytometry community"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"contour plot","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000057","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000057","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"contour plot","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["contour plot","Contour plot of SSC-H, FSC-H, and FL1-H.","generically_dependent_continuants","person:Allyson Lister","person:Chris Stoeckert","OBI_0000246","group:Flow Cytometry community","false"],"shortForm":"IAO_0000057","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000059\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000059\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report figure\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"I prepended the \\u0027report \\u0027 to make it clear that we mean parts of reports here. We may want a more generic version of \\u0027figure\\u0027, in which case this would become a defined class - figure and part_of some report\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Replaced by defined version of figure\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"OBI_0000027\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_report figure\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_report figure\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report figure\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"I prepended the \\u0027report \\u0027 to make it clear that we mean parts of reports here. We may want a more generic version of \\u0027figure\\u0027, in which case this would become a defined class - figure and part_of some report\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Replaced by defined version of figure\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000027\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000059\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000059\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000059\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000059\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000059","definition":"A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"report figure","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000124","http__//purl.obolibrary.org/obo/IAO_0000115":"A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements","http__//purl.obolibrary.org/obo/IAO_0000116":["I prepended the \u0027report \u0027 to make it clear that we mean parts of reports here. We may want a more generic version of \u0027figure\u0027, in which case this would become a defined class - figure and part_of some report","Replaced by defined version of figure"],"http__//purl.obolibrary.org/obo/IAO_0000117":["person:Alan Ruttenberg","person:Allyson Lister"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000027","group:OBI"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete2_report figure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000059","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000059","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete2_report figure","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["report figure","A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements","I prepended the \u0027report \u0027 to make it clear that we mean parts of reports here. We may want a more generic version of \u0027figure\u0027, in which case this would become a defined class - figure and part_of some report","Replaced by defined version of figure","person:Alan Ruttenberg","person:Allyson Lister","OBI_0000027","group:OBI","false"],"shortForm":"IAO_0000059","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000064\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000064\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"algorithm\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PMID: 18378114.Genomics. 2008 Mar 28. LINKGEN: A new algorithm to process data in genetic linkage studies.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Philippe Rocca-Serra\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PlanAndPlannedProcess Branch\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000270\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"adapted from discussion on OBI list (Matthew Pocock, Christian Cocos, Alan Ruttenberg)\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"algorithm\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"algorithm\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"algorithm\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PMID: 18378114.Genomics. 2008 Mar 28. LINKGEN: A new algorithm to process data in genetic linkage studies.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Philippe Rocca-Serra\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PlanAndPlannedProcess Branch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000270\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"adapted from discussion on OBI list (Matthew Pocock, Christian Cocos, Alan Ruttenberg)\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000064\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000064\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000064\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000064\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000064","definition":"A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000104","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000104","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"algorithm","http__//purl.obolibrary.org/obo/IAO_0000112":"PMID: 18378114.Genomics. 2008 Mar 28. LINKGEN: A new algorithm to process data in genetic linkage studies.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.","http__//purl.obolibrary.org/obo/IAO_0000117":["Philippe Rocca-Serra","PlanAndPlannedProcess Branch"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000270","adapted from discussion on OBI list (Matthew Pocock, Christian Cocos, Alan Ruttenberg)"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"algorithm","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000104","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000064","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000064","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"algorithm","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["algorithm","PMID: 18378114.Genomics. 2008 Mar 28. LINKGEN: A new algorithm to process data in genetic linkage studies.","A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.","Philippe Rocca-Serra","PlanAndPlannedProcess Branch","OBI_0000270","adapted from discussion on OBI list (Matthew Pocock, Christian Cocos, Alan Ruttenberg)","false"],"shortForm":"IAO_0000064","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000065\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000065\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software interpreter is a software application that executes some specified input software.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000064\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000064\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000064\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000064\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software interpreter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"R program, Perl interpreter, Java virtual machine\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software interpreter is a software application that executes some specified input software.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Do we care? Jennifer: Yes, there was a particular version of R that had a bug and it was fixed later. That would imply that we mean specific version of an interpreter. So an instance of this would be a particular version of the interpreter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000199\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software interpreter\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000064\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software interpreter\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software interpreter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"R program, Perl interpreter, Java virtual machine\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software interpreter is a software application that executes some specified input software.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Do we care? Jennifer: Yes, there was a particular version of R that had a bug and it was fixed later. That would imply that we mean specific version of an interpreter. So an instance of this would be a particular version of the interpreter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000199\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000065\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000065\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000065\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000065\"},\"http://purl.obolibrary.org/obo/IAO_0000064\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"algorithm\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000064\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000065","definition":"A software interpreter is a software application that executes some specified input software.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000064","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000064","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000064","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000064","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"software interpreter","http__//purl.obolibrary.org/obo/IAO_0000112":"R program, Perl interpreter, Java virtual machine","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A software interpreter is a software application that executes some specified input software.","http__//purl.obolibrary.org/obo/IAO_0000116":"Do we care? Jennifer: Yes, there was a particular version of R that had a bug and it was fixed later. That would imply that we mean specific version of an interpreter. So an instance of this would be a particular version of the interpreter","http__//purl.obolibrary.org/obo/IAO_0000117":["person:Alan Ruttenberg","person:Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000199","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"software interpreter","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000064","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000065","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000065","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"software interpreter","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["software interpreter","R program, Perl interpreter, Java virtual machine","A software interpreter is a software application that executes some specified input software.","Do we care? Jennifer: Yes, there was a particular version of R that had a bug and it was fixed later. That would imply that we mean specific version of an interpreter. So an instance of this would be a particular version of the interpreter","person:Alan Ruttenberg","person:Chris Stoeckert","OBI_0000199","group:OBI","false"],"shortForm":"IAO_0000065","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hasIndividuals\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Bill Bug\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000266\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#oneOf\":[\"http://purl.obolibrary.org/obo/IAO_0000002\",\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000423\",\"http://purl.obolibrary.org/obo/IAO_0000428\"]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"numDescendants\":9.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Bill Bug\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000266\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000078\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000078\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000078\"},\"http://purl.obolibrary.org/obo/IAO_0000428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000002\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000078","definition":"The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000102","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hasIndividuals":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000102","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"curation status specification","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","http__//purl.obolibrary.org/obo/IAO_0000116":"Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Bill Bug","http__//purl.obolibrary.org/obo/IAO_0000119":["GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","OBI_0000266"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"curation status specification","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000102","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000078","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000078","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"curation status specification","numDescendants":"9.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["curation status specification","The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)","PERSON:Bill Bug","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","OBI_0000266","false"],"shortForm":"IAO_0000078","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000079\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000079\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"density plot\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Density plot of SSC-H and FSC-H.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000002\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000179\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:Flow Cytometry community\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"density plot\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"density plot\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"density plot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Density plot of SSC-H and FSC-H.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000179\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:Flow Cytometry community\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000079\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000079\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000079\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000079\"},\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000002\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000079","definition":"A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"density plot","http__//purl.obolibrary.org/obo/IAO_0000112":"Density plot of SSC-H and FSC-H.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000002","http__//purl.obolibrary.org/obo/IAO_0000115":"A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel.","http__//purl.obolibrary.org/obo/IAO_0000117":["person:Allyson Lister","person:Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000179","group:Flow Cytometry community"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"density plot","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000079","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000079","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"density plot","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["density plot","Density plot of SSC-H and FSC-H.","A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel.","person:Allyson Lister","person:Chris Stoeckert","OBI_0000179","group:Flow Cytometry community","false"],"shortForm":"IAO_0000079","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000088\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000088\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of reports are gene lists and investigation reports. These are not published (journal) articles but may be included in a journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: comment from Darren Natale: I am slightly uneasy with the sentence \\\"Topic of the report is on \\nsomething that has completed.\\\" Should it be restricted to those things \\nthat are completed? For example, a progress report is (usually) about \\nsomething that definitely has *not* been completed, or may include \\n(only) projections. I think the definition would not suffer if the \\nwhole sentence is deleted.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: this was report of results with definition: A report is a narrative object that is a formal statement of the results of an investigation, or of any matter on which definite information is required, made by some person or body instructed or required to do so.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \\u0027document\\u0027. Alan restored as there are OBI dependencies and this merits further discussion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disagreement about where reports go. alan: only some gene lists are reports. Is a report all the content of some document? The example of usage suggests that a report may be part of some article. Term needs clarification\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: OBI\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000099\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of reports are gene lists and investigation reports. These are not published (journal) articles but may be included in a journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: comment from Darren Natale: I am slightly uneasy with the sentence \\\"Topic of the report is on \\nsomething that has completed.\\\" Should it be restricted to those things \\nthat are completed? For example, a progress report is (usually) about \\nsomething that definitely has *not* been completed, or may include \\n(only) projections. I think the definition would not suffer if the \\nwhole sentence is deleted.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: this was report of results with definition: A report is a narrative object that is a formal statement of the results of an investigation, or of any matter on which definite information is required, made by some person or body instructed or required to do so.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \\u0027document\\u0027. Alan restored as there are OBI dependencies and this merits further discussion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disagreement about where reports go. alan: only some gene lists are reports. Is a report all the content of some document? The example of usage suggests that a report may be part of some article. Term needs clarification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: OBI\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000099\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000088\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000088\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000088\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000088\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000088","definition":"A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000310","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000310","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"report","http__//purl.obolibrary.org/obo/IAO_0000112":"Examples of reports are gene lists and investigation reports. These are not published (journal) articles but may be included in a journal article.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record).","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-03-16: comment from Darren Natale: I am slightly uneasy with the sentence \"Topic of the report is on \nsomething that has completed.\" Should it be restricted to those things \nthat are completed? For example, a progress report is (usually) about \nsomething that definitely has *not* been completed, or may include \n(only) projections. I think the definition would not suffer if the \nwhole sentence is deleted.","2009-03-16: this was report of results with definition: A report is a narrative object that is a formal statement of the results of an investigation, or of any matter on which definite information is required, made by some person or body instructed or required to do so.","2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.","2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027document\u0027. Alan restored as there are OBI dependencies and this merits further discussion","disagreement about where reports go. alan: only some gene lists are reports. Is a report all the content of some document? The example of usage suggests that a report may be part of some article. Term needs clarification"],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Chris Stoeckert","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":["GROUP: OBI","OBI_0000099"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"report","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000310","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000088","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000088","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"report","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["report","Examples of reports are gene lists and investigation reports. These are not published (journal) articles but may be included in a journal article.","A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record).","2009-03-16: comment from Darren Natale: I am slightly uneasy with the sentence \"Topic of the report is on \nsomething that has completed.\" Should it be restricted to those things \nthat are completed? For example, a progress report is (usually) about \nsomething that definitely has *not* been completed, or may include \n(only) projections. I think the definition would not suffer if the \nwhole sentence is deleted.","2009-03-16: this was report of results with definition: A report is a narrative object that is a formal statement of the results of an investigation, or of any matter on which definite information is required, made by some person or body instructed or required to do so.","2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.","2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027document\u0027. Alan restored as there are OBI dependencies and this merits further discussion","disagreement about where reports go. alan: only some gene lists are reports. Is a report all the content of some document? The example of usage suggests that a report may be part of some article. Term needs clarification","PERSON: Alan Ruttenberg","PERSON: Chris Stoeckert","PERSON: Melanie Courtot","GROUP: OBI","OBI_0000099","false"],"shortForm":"IAO_0000088","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000091\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000091\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report element\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"value\":\"2009-03-16: needs some more work (clarify relations).\"},{\"type\":[\"literal\"],\"value\":\"2009-03-16: was report display element with definition: A report display element is a narrative object that is part of a report. Report display elements are set off from the textual parts of a report and are typically given a label(e.g. Figure 2) which is used to refer to the element from the text. Typically the 2d layout is part of the identity of such elements.\"},{\"type\":[\"literal\"],\"value\":\"2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.\"},{\"type\":[\"literal\"],\"value\":\"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \\u0027textual entity\\u0027 and \\u0027figure\\u0027. Alan restored as there are OBI dependencies and this merits further discussion\"},{\"type\":[\"literal\"],\"value\":\"Replaced by textual entity and figure\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"There will be some issue here about whether these are defined classes. As intended these are meant to denote the parts of the report that are not textual but are typically boxed and set within the text, labelled with some identifier, and referred to in the text\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Melanie Courtot\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000001\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_report element\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_report element\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report element\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2009-03-16: needs some more work (clarify relations).\"},{\"type\":[\"literal\"],\"value\":\"2009-03-16: was report display element with definition: A report display element is a narrative object that is part of a report. Report display elements are set off from the textual parts of a report and are typically given a label(e.g. Figure 2) which is used to refer to the element from the text. Typically the 2d layout is part of the identity of such elements.\"},{\"type\":[\"literal\"],\"value\":\"2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.\"},{\"type\":[\"literal\"],\"value\":\"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \\u0027textual entity\\u0027 and \\u0027figure\\u0027. Alan restored as there are OBI dependencies and this merits further discussion\"},{\"type\":[\"literal\"],\"value\":\"Replaced by textual entity and figure\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"There will be some issue here about whether these are defined classes. As intended these are meant to denote the parts of the report that are not textual but are typically boxed and set within the text, labelled with some identifier, and referred to in the text\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Melanie Courtot\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000001\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000091\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000091\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000091\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000091\"},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000091","definition":"A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"report element","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page).","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-03-16: needs some more work (clarify relations).","2009-03-16: was report display element with definition: A report display element is a narrative object that is part of a report. Report display elements are set off from the textual parts of a report and are typically given a label(e.g. Figure 2) which is used to refer to the element from the text. Typically the 2d layout is part of the identity of such elements.","2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.","2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity\u0027 and \u0027figure\u0027. Alan restored as there are OBI dependencies and this merits further discussion","Replaced by textual entity and figure","There will be some issue here about whether these are defined classes. As intended these are meant to denote the parts of the report that are not textual but are typically boxed and set within the text, labelled with some identifier, and referred to in the text"],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Allyson Lister","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":["GROUP:OBI","OBI_0000001"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_report element","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000091","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000091","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_report element","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["report element","A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page).","2009-03-16: needs some more work (clarify relations).","2009-03-16: was report display element with definition: A report display element is a narrative object that is part of a report. Report display elements are set off from the textual parts of a report and are typically given a label(e.g. Figure 2) which is used to refer to the element from the text. Typically the 2d layout is part of the identity of such elements.","2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.","2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity\u0027 and \u0027figure\u0027. Alan restored as there are OBI dependencies and this merits further discussion","Replaced by textual entity and figure","There will be some issue here about whether these are defined classes. As intended these are meant to denote the parts of the report that are not textual but are typically boxed and set within the text, labelled with some identifier, and referred to in the text","PERSON: Alan Ruttenberg","PERSON: Allyson Lister","PERSON: Melanie Courtot","GROUP:OBI","OBI_0000001","false"],"shortForm":"IAO_0000091","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000093\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000093\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"binary executable\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\nsuperclass was \\u0027digital entity\\u0027\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Jennifer Fostel\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"OBI_0000222\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_binary executable\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_binary executable\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"binary executable\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\nsuperclass was \\u0027digital entity\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Jennifer Fostel\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000222\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000093\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000093\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000093\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000093\"},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000093","definition":"Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"binary executable","http__//purl.obolibrary.org/obo/IAO_0000115":"Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)","http__//purl.obolibrary.org/obo/IAO_0000116":"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digital entity\u0027","http__//purl.obolibrary.org/obo/IAO_0000117":"person:Jennifer Fostel","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000222","group:OBI"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete2_binary executable","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000093","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000093","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete2_binary executable","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["binary executable","Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digital entity\u0027","person:Jennifer Fostel","OBI_0000222","group:OBI","false"],"shortForm":"IAO_0000093","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000096\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000096\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A source code module is a directive information entity that specifies, using a programming language, some algorithm.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The written source code that implements part of an algorithm. Test - if you know that it was written in a specific language, then it can be source code module. We mean here, roughly, the wording of a document such as a perl script.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A source code module is a directive information entity that specifies, using a programming language, some algorithm.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000039\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/APOLLO_SV_00000522\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000096\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The written source code that implements part of an algorithm. Test - if you know that it was written in a specific language, then it can be source code module. We mean here, roughly, the wording of a document such as a perl script.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A source code module is a directive information entity that specifies, using a programming language, some algorithm.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000039\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000096\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/APOLLO_SV_00000522\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code repository\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO:SV_00000522\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000096\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000096\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000096\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000096","definition":"A source code module is a directive information entity that specifies, using a programming language, some algorithm.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000033","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000033","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"source code module","http__//purl.obolibrary.org/obo/IAO_0000112":"The written source code that implements part of an algorithm. Test - if you know that it was written in a specific language, then it can be source code module. We mean here, roughly, the wording of a document such as a perl script.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A source code module is a directive information entity that specifies, using a programming language, some algorithm.","http__//purl.obolibrary.org/obo/IAO_0000117":["person:Alan Ruttenberg","person:Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000039","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"source code module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000033","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000096","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000096","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"source code module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/APOLLO_SV_00000522","searchableAnnotationValues":["source code module","The written source code that implements part of an algorithm. Test - if you know that it was written in a specific language, then it can be source code module. We mean here, roughly, the wording of a document such as a perl script.","A source code module is a directive information entity that specifies, using a programming language, some algorithm.","person:Alan Ruttenberg","person:Chris Stoeckert","OBI_0000039","group:OBI","false"],"shortForm":"IAO_0000096","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000097\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000097\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report table\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000002\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \\u0027textual entity table\\u0027. Alan restored as there are OBI dependencies and this merits further discussion\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"OBI_0000265\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_report table\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_report table\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report table\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \\u0027textual entity table\\u0027. Alan restored as there are OBI dependencies and this merits further discussion\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000265\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000097\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000002\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000097\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000097\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000097\"},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000097","definition":"A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"report table","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000002","http__//purl.obolibrary.org/obo/IAO_0000115":"A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content","http__//purl.obolibrary.org/obo/IAO_0000116":"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity table\u0027. Alan restored as there are OBI dependencies and this merits further discussion","http__//purl.obolibrary.org/obo/IAO_0000117":["person:Alan Ruttenberg","person:Allyson Lister"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000265","group:OBI"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_report table","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000097","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000097","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_report table","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["report table","A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content","2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity table\u0027. Alan restored as there are OBI dependencies and this merits further discussion","person:Alan Ruttenberg","person:Allyson Lister","OBI_0000265","group:OBI","false"],"shortForm":"IAO_0000097","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000098\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000098\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data format specification is the information content borne by the document published defining the specification.\\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data format specification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data format specification is the information content borne by the document published defining the specification.\\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: provenance: term imported from OBI_0000187, which had original definition \\\"A data format specification is a plan which organizes\\ninformation. Example: The ISO document specifying what encompasses an\\nXML document; The instructions in a XSD file\\\"\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PlanAndPlannedProcess Branch\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI branch derived\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000187\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data format specification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data format specification\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data format specification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data format specification is the information content borne by the document published defining the specification.\\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: provenance: term imported from OBI_0000187, which had original definition \\\"A data format specification is a plan which organizes\\ninformation. Example: The ISO document specifying what encompasses an\\nXML document; The instructions in a XSD file\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PlanAndPlannedProcess Branch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI branch derived\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000187\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000098\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000098\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000098\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000098\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000098","definition":"A data format specification is the information content borne by the document published defining the specification.\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000033","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000033","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"data format specification","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A data format specification is the information content borne by the document published defining the specification.\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file","http__//purl.obolibrary.org/obo/IAO_0000116":"2009-03-16: provenance: term imported from OBI_0000187, which had original definition \"A data format specification is a plan which organizes\ninformation. Example: The ISO document specifying what encompasses an\nXML document; The instructions in a XSD file\"","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PlanAndPlannedProcess Branch"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI branch derived","OBI_0000187"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"data format specification","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000033","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000098","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000098","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"data format specification","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["data format specification","A data format specification is the information content borne by the document published defining the specification.\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file","2009-03-16: provenance: term imported from OBI_0000187, which had original definition \"A data format specification is a plan which organizes\ninformation. Example: The ISO document specifying what encompasses an\nXML document; The instructions in a XSD file\"","PERSON: Alan Ruttenberg","PlanAndPlannedProcess Branch","OBI branch derived","OBI_0000187","false"],"shortForm":"IAO_0000098","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000100\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000100\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data set\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Intensity values in a CEL file or from multiple CEL files comprise a data set (as opposed to the CEL files themselves).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/10/23 Alan Ruttenberg. The intention is that this term represent collections of like data. So this isn\\u0027t for, e.g. the whole contents of a cel file, which includes parameters, metadata etc. This is more like java arrays of a certain rather specific type\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2014-05-05: Data sets are aggregates and thus must include two or more data items. We have chosen not to add logical axioms to make this restriction.\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000042\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data set\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data set\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data set\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Intensity values in a CEL file or from multiple CEL files comprise a data set (as opposed to the CEL files themselves).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/10/23 Alan Ruttenberg. The intention is that this term represent collections of like data. So this isn\\u0027t for, e.g. the whole contents of a cel file, which includes parameters, metadata etc. This is more like java arrays of a certain rather specific type\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2014-05-05: Data sets are aggregates and thus must include two or more data items. We have chosen not to add logical axioms to make this restriction.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000042\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000100\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000100\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000100\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000100\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000100","definition":"A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000027","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000027","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"data set","http__//purl.obolibrary.org/obo/IAO_0000112":"Intensity values in a CEL file or from multiple CEL files comprise a data set (as opposed to the CEL files themselves).","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets.","http__//purl.obolibrary.org/obo/IAO_0000116":["2009/10/23 Alan Ruttenberg. The intention is that this term represent collections of like data. So this isn\u0027t for, e.g. the whole contents of a cel file, which includes parameters, metadata etc. This is more like java arrays of a certain rather specific type","2014-05-05: Data sets are aggregates and thus must include two or more data items. We have chosen not to add logical axioms to make this restriction."],"http__//purl.obolibrary.org/obo/IAO_0000117":["person:Allyson Lister","person:Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000042","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"data set","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000027","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000100","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000100","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"data set","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["data set","Intensity values in a CEL file or from multiple CEL files comprise a data set (as opposed to the CEL files themselves).","A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets.","2009/10/23 Alan Ruttenberg. The intention is that this term represent collections of like data. So this isn\u0027t for, e.g. the whole contents of a cel file, which includes parameters, metadata etc. This is more like java arrays of a certain rather specific type","2014-05-05: Data sets are aggregates and thus must include two or more data items. We have chosen not to add logical axioms to make this restriction.","person:Allyson Lister","person:Chris Stoeckert","OBI_0000042","group:OBI","false"],"shortForm":"IAO_0000100","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000101\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000101\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"image\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000030\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"image\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"image\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"image\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000030\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000101\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000101\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000101\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000101\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000101","definition":"An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000308","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000308","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"image","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface.","http__//purl.obolibrary.org/obo/IAO_0000117":["person:Alan Ruttenberg","person:Allyson","person:Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000030","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"image","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000308","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000101","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000101","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"image","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["image","An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface.","person:Alan Ruttenberg","person:Allyson","person:Chris Stoeckert","OBI_0000030","group:OBI","false"],"shortForm":"IAO_0000101","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Data about an ontology part is a data item about a part of an ontology, for example a term\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Data about an ontology part is a data item about a part of an ontology, for example a term\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"numDescendants\":42.0,\"numHierarchicalDescendants\":24.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Data about an ontology part is a data item about a part of an ontology, for example a term\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000102\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000102\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000102\"}}}","appearsIn":["duo"],"curie":"IAO:0000102","definition":"Data about an ontology part is a data item about a part of an ontology, for example a term","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000027","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000027","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"data about an ontology part","http__//purl.obolibrary.org/obo/IAO_0000115":"Data about an ontology part is a data item about a part of an ontology, for example a term","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"data about an ontology part","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000027","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000102","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000102","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"data about an ontology part","numDescendants":"42.0","numHierarchicalDescendants":"24.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["data about an ontology part","Data about an ontology part is a data item about a part of an ontology, for example a term","Person:Alan Ruttenberg","false"],"shortForm":"IAO_0000102","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2/3/2009 Comment from OBI review.\\n\\nAction specification not well enough specified.\\nConditional specification not well enough specified.\\nQuestion whether all plan specifications have objective specifications.\\n\\nRequest that IAO either clarify these or change definitions not to use them\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was \\\" a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan\\\". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-03-31: A plan specification can have other parts, such as conditional specifications.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2022-01-16 Updated definition to that proposed by Clint Dowloand, IAO Issue 231.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Clint Dowland\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI Plan and Planned Process branch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000344\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2/3/2009 Comment from OBI review.\\n\\nAction specification not well enough specified.\\nConditional specification not well enough specified.\\nQuestion whether all plan specifications have objective specifications.\\n\\nRequest that IAO either clarify these or change definitions not to use them\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/231#issuecomment-1010455131\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000007\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"numDescendants\":11.0,\"numHierarchicalDescendants\":11.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000007\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000007\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was \\\" a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan\\\". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-03-31: A plan specification can have other parts, such as conditional specifications.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2022-01-16 Updated definition to that proposed by Clint Dowloand, IAO Issue 231.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Clint Dowland\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI Plan and Planned Process branch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000344\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000104\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"action specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000005\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"objective specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000005\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000104\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000104\"}}}","appearsIn":["duo"],"curie":"IAO:0000104","definition":["A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified.","2/3/2009 Comment from OBI review.\n\nAction specification not well enough specified.\nConditional specification not well enough specified.\nQuestion whether all plan specifications have objective specifications.\n\nRequest that IAO either clarify these or change definitions not to use them"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000033","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000033","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"plan specification","http__//purl.obolibrary.org/obo/IAO_0000112":"PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified.","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was \" a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan\". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.","2014-03-31: A plan specification can have other parts, such as conditional specifications.","2022-01-16 Updated definition to that proposed by Clint Dowloand, IAO Issue 231.","Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved"],"http__//purl.obolibrary.org/obo/IAO_0000117":["Alan Ruttenberg","Clint Dowland"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI Plan and Planned Process branch","OBI_0000344"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"2/3/2009 Comment from OBI review.\n\nAction specification not well enough specified.\nConditional specification not well enough specified.\nQuestion whether all plan specifications have objective specifications.\n\nRequest that IAO either clarify these or change definitions not to use them","http__//www.w3.org/2000/01/rdf-schema#label":"plan specification","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"https://github.com/information-artifact-ontology/IAO/issues/231#issuecomment-1010455131","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000033"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000104","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000104","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"plan specification","numDescendants":"11.0","numHierarchicalDescendants":"11.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/IAO_0000005","http://purl.obolibrary.org/obo/IAO_0000007"],"searchableAnnotationValues":["plan specification","PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice.","A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified.","2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was \" a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan\". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.","2014-03-31: A plan specification can have other parts, such as conditional specifications.","2022-01-16 Updated definition to that proposed by Clint Dowloand, IAO Issue 231.","Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved","Alan Ruttenberg","Clint Dowland","OBI Plan and Planned Process branch","OBI_0000344","false"],"shortForm":"IAO_0000104","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000105\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000105\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"digital document\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\nsuperclass was \\u0027digial entity\\u0027\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Jennifer Fostel\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"OBI_0000195\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_digital document\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_digital document\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"digital document\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\nsuperclass was \\u0027digial entity\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Jennifer Fostel\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000195\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000105\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000105\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000105\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000105\"}}}","appearsIn":["duo"],"curie":"IAO:0000105","definition":"A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"digital document","http__//purl.obolibrary.org/obo/IAO_0000115":"A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file.","http__//purl.obolibrary.org/obo/IAO_0000116":"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digial entity\u0027","http__//purl.obolibrary.org/obo/IAO_0000117":"person:Jennifer Fostel","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000195","group:OBI"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete2_digital document","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000105","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000105","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete2_digital document","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["digital document","A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file.","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digial entity\u0027","person:Jennifer Fostel","OBI_0000195","group:OBI","false"],"shortForm":"IAO_0000105","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000109\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000109\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of measurement data are the recoding of the weight of a mouse as {40,mass,\\\"grams\\\"}, the recording of an observation of the behavior of the mouse {,process,\\\"agitated\\\"}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2/2/2009 is_specified_output of some assay?\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000305\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of measurement data are the recoding of the weight of a mouse as {40,mass,\\\"grams\\\"}, the recording of an observation of the behavior of the mouse {,process,\\\"agitated\\\"}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2/2/2009 is_specified_output of some assay?\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000305\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000109\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000109\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000109\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000109\"},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000109","definition":"A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000027","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000027","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"measurement datum","http__//purl.obolibrary.org/obo/IAO_0000112":"Examples of measurement data are the recoding of the weight of a mouse as {40,mass,\"grams\"}, the recording of an observation of the behavior of the mouse {,process,\"agitated\"}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.","http__//purl.obolibrary.org/obo/IAO_0000116":"2/2/2009 is_specified_output of some assay?","http__//purl.obolibrary.org/obo/IAO_0000117":"person:Chris Stoeckert","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000305","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"measurement datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000027","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000109","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000109","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"measurement datum","numDescendants":"6.0","numHierarchicalDescendants":"6.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["measurement datum","Examples of measurement data are the recoding of the weight of a mouse as {40,mass,\"grams\"}, the recording of an observation of the behavior of the mouse {,process,\"agitated\"}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}.","A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.","2/2/2009 is_specified_output of some assay?","person:Chris Stoeckert","OBI_0000305","group:OBI","false"],"shortForm":"IAO_0000109","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000128\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000128\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"_identifier is a container under information content entity for collecting types of terms to indicate a specific instance or clas of what was used or participated in an investigation. Identifiers are borne by a product or its packaging, and can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\\n\\nNote: everybody agreed that identifier is probably a too general term. We however felt that it would be appropriate to group \\\"identifiying\\\" terms under some kind of umbrella. We therefore propose to use _identifier for that purpose. As per OBI conventions, the _ prefixing identifier indicates that this is a helper class and shouldn\\u0027t be considered as final.\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000226\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_identifier\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_identifier\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"_identifier is a container under information content entity for collecting types of terms to indicate a specific instance or clas of what was used or participated in an investigation. Identifiers are borne by a product or its packaging, and can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\\n\\nNote: everybody agreed that identifier is probably a too general term. We however felt that it would be appropriate to group \\\"identifiying\\\" terms under some kind of umbrella. We therefore propose to use _identifier for that purpose. As per OBI conventions, the _ prefixing identifier indicates that this is a helper class and shouldn\\u0027t be considered as final.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000128\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000226\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000128\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000128\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000128\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000128","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000121","http__//purl.obolibrary.org/obo/IAO_0000116":"_identifier is a container under information content entity for collecting types of terms to indicate a specific instance or clas of what was used or participated in an investigation. Identifiers are borne by a product or its packaging, and can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\n\nNote: everybody agreed that identifier is probably a too general term. We however felt that it would be appropriate to group \"identifiying\" terms under some kind of umbrella. We therefore propose to use _identifier for that purpose. As per OBI conventions, the _ prefixing identifier indicates that this is a helper class and shouldn\u0027t be considered as final.","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000226","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_identifier","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000128","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000128","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_identifier","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["_identifier is a container under information content entity for collecting types of terms to indicate a specific instance or clas of what was used or participated in an investigation. Identifiers are borne by a product or its packaging, and can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\n\nNote: everybody agreed that identifier is probably a too general term. We however felt that it would be appropriate to group \"identifiying\" terms under some kind of umbrella. We therefore propose to use _identifier for that purpose. As per OBI conventions, the _ prefixing identifier indicates that this is a helper class and shouldn\u0027t be considered as final.","false"],"shortForm":"IAO_0000128","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000129\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000129\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"version number\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Note: we feel that at the moment we are happy with a general version number, and that we will subclass as needed in the future. For example, see 7. genome sequence version\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"version number\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"version number\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"version number\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Note: we feel that at the moment we are happy with a general version number, and that we will subclass as needed in the future. For example, see 7. genome sequence version\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000129\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000129\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000129\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000129\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000129","definition":"A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000028","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000028","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"version number","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name.","http__//purl.obolibrary.org/obo/IAO_0000116":"Note: we feel that at the moment we are happy with a general version number, and that we will subclass as needed in the future. For example, see 7. genome sequence version","http__//purl.obolibrary.org/obo/IAO_0000117":"GROUP: IAO","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"version number","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000028","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000129","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000129","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"version number","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["version number","A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name.","Note: we feel that at the moment we are happy with a general version number, and that we will subclass as needed in the future. For example, see 7. genome sequence version","GROUP: IAO","false"],"shortForm":"IAO_0000129","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000131\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000131\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"serial number\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Note: during the call there was some confusion between serial number and model number. We agreed that it would be very helpful for all those terms to have example of usages - please add if you have any :-)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"serial number\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"serial number\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"serial number\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Note: during the call there was some confusion between serial number and model number. We agreed that it would be very helpful for all those terms to have example of usages - please add if you have any :-)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000131\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000131\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000131\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000131\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000131","definition":"A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000028","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000028","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"serial number","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","http__//purl.obolibrary.org/obo/IAO_0000116":"Note: during the call there was some confusion between serial number and model number. We agreed that it would be very helpful for all those terms to have example of usages - please add if you have any :-)","http__//purl.obolibrary.org/obo/IAO_0000117":"GROUP: IAO","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"serial number","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000028","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000131","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000131","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"serial number","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["serial number","A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","Note: during the call there was some confusion between serial number and model number. We agreed that it would be very helpful for all those terms to have example of usages - please add if you have any :-)","GROUP: IAO","false"],"shortForm":"IAO_0000131","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000132\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000132\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"lot number\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"batch number\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"lot number\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"lot number\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"lot number\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"batch number\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000132\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000132\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000132\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000132\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000132","definition":"A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000028","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000028","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"lot number","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots.","http__//purl.obolibrary.org/obo/IAO_0000117":"GROUP: IAO","http__//purl.obolibrary.org/obo/IAO_0000118":"batch number","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"lot number","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000028","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000132","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000132","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"lot number","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["lot number","A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots.","GROUP: IAO","batch number","false"],"shortForm":"IAO_0000132","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000140\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000140\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A settings datum is a datum that denotes some configuration of an instrument.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A settings datum is a datum that denotes some configuration of an instrument.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2/3/2009 Feedback from OBI\\n\\nThis should be a \\\"setting specification\\\". There is a question of whether it is information about a realizable or not.\\n\\nPro other specification are about realizables.\\nCons sometimes specifies a quality which is not a realizable.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan grouped these in placeholder for the moment. Name by analogy to measurement datum.\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"setting datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"setting datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A settings datum is a datum that denotes some configuration of an instrument.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2/3/2009 Feedback from OBI\\n\\nThis should be a \\\"setting specification\\\". There is a question of whether it is information about a realizable or not.\\n\\nPro other specification are about realizables.\\nCons sometimes specifies a quality which is not a realizable.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan grouped these in placeholder for the moment. Name by analogy to measurement datum.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000140\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000140\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000140\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000140\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000140","definition":"A settings datum is a datum that denotes some configuration of an instrument.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000027","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000027","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A settings datum is a datum that denotes some configuration of an instrument.","http__//purl.obolibrary.org/obo/IAO_0000116":["2/3/2009 Feedback from OBI\n\nThis should be a \"setting specification\". There is a question of whether it is information about a realizable or not.\n\nPro other specification are about realizables.\nCons sometimes specifies a quality which is not a realizable.","Alan grouped these in placeholder for the moment. Name by analogy to measurement datum."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"setting datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000027","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000140","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000140","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"setting datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A settings datum is a datum that denotes some configuration of an instrument.","2/3/2009 Feedback from OBI\n\nThis should be a \"setting specification\". There is a question of whether it is information about a realizable or not.\n\nPro other specification are about realizables.\nCons sometimes specifies a quality which is not a realizable.","Alan grouped these in placeholder for the moment. Name by analogy to measurement datum.","false"],"shortForm":"IAO_0000140","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000141\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000141\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\"},{\"type\":[\"literal\"],\"value\":\"Need to rework digital entity. Digital quality was suggested by Barry.\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_digital quality\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_digital quality\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\"},{\"type\":[\"literal\"],\"value\":\"Need to rework digital entity. Digital quality was suggested by Barry.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000141\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000141\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000141\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000141\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000141","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":["3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4","Need to rework digital entity. Digital quality was suggested by Barry."],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_digital quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000141","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000141","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_digital quality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4","Need to rework digital entity. Digital quality was suggested by Barry.","false"],"shortForm":"IAO_0000141","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000144\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000144\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \\u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\\u0027, by Lowenthal et. al.PMID:19696660\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/09/28 Alan Ruttenberg. Fucoidan-use-case\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/10/23 Alan Ruttenberg: We need to work on the definition still\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000615\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000144\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \\u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\\u0027, by Lowenthal et. al.PMID:19696660\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/09/28 Alan Ruttenberg. Fucoidan-use-case\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/10/23 Alan Ruttenberg: We need to work on the definition still\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000144\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"PMID:19696660\":{\"url\":\"http://www.ncbi.nlm.nih.gov/pubmed/19696660\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"PMID:19696660\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000144\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000144\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000144\"},\"http://purl.obolibrary.org/obo/IAO_0000615\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000615\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000144","definition":"A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"conclusion textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\u0027, by Lowenthal et. al.PMID:19696660","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers.","http__//purl.obolibrary.org/obo/IAO_0000116":["2009/09/28 Alan Ruttenberg. Fucoidan-use-case","2009/10/23 Alan Ruttenberg: We need to work on the definition still"],"http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"conclusion textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000144","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000144","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"conclusion textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000615","searchableAnnotationValues":["conclusion textual entity","that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\u0027, by Lowenthal et. al.PMID:19696660","A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers.","2009/09/28 Alan Ruttenberg. Fucoidan-use-case","2009/10/23 Alan Ruttenberg: We need to work on the definition still","Person:Alan Ruttenberg","false"],"shortForm":"IAO_0000144","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000178\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000178\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A material entity in which a concretization of an information content entity inheres.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material information bearer\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A page of a paperback novel with writing on it. The paper itself is a material information bearer, the pattern of ink is the information carrier.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a brain\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a hard drive\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A material entity in which a concretization of an information content entity inheres.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material information bearer\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000059\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material information bearer\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material information bearer\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A page of a paperback novel with writing on it. The paper itself is a material information bearer, the pattern of ink is the information carrier.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a brain\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a hard drive\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A material entity in which a concretization of an information content entity inheres.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000178\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000059\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"concretizes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000059\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000178\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000178\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000178\"},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000178","definition":"A material entity in which a concretization of an information content entity inheres.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000040","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000040","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"material information bearer","http__//purl.obolibrary.org/obo/IAO_0000112":["A page of a paperback novel with writing on it. The paper itself is a material information bearer, the pattern of ink is the information carrier.","a brain","a hard drive"],"http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A material entity in which a concretization of an information content entity inheres.","http__//purl.obolibrary.org/obo/IAO_0000117":"GROUP: IAO","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"material information bearer","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000040","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000178","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000178","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"material information bearer","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["material information bearer","A page of a paperback novel with writing on it. The paper itself is a material information bearer, the pattern of ink is the information carrier.","a brain","a hard drive","A material entity in which a concretization of an information content entity inheres.","GROUP: IAO","false"],"shortForm":"IAO_0000178","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000179\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000179\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A histogram is a report graph which is a statistical description of a\\ndistribution in terms of occurrence frequencies of different event classes.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"histogram\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A histogram is a report graph which is a statistical description of a\\ndistribution in terms of occurrence frequencies of different event classes.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"histogram\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"histogram\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"histogram\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A histogram is a report graph which is a statistical description of a\\ndistribution in terms of occurrence frequencies of different event classes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000179\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000179\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000179\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000179\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000179","definition":"A histogram is a report graph which is a statistical description of a\ndistribution in terms of occurrence frequencies of different event classes.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"histogram","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A histogram is a report graph which is a statistical description of a\ndistribution in terms of occurrence frequencies of different event classes.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"histogram","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000179","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000179","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"histogram","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["histogram","A histogram is a report graph which is a statistical description of a\ndistribution in terms of occurrence frequencies of different event classes.","PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot","GROUP:OBI","false"],"shortForm":"IAO_0000179","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000180\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000180\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A heatmap is a report graph which is a graphical representation of data\\nwhere the values taken by a variable(s) are shown as colors in a\\ntwo-dimensional map.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"heatmap\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A heatmap is a report graph which is a graphical representation of data\\nwhere the values taken by a variable(s) are shown as colors in a\\ntwo-dimensional map.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"heatmap\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"heatmap\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"heatmap\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A heatmap is a report graph which is a graphical representation of data\\nwhere the values taken by a variable(s) are shown as colors in a\\ntwo-dimensional map.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000180\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000180\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000180\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000180\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000180","definition":"A heatmap is a report graph which is a graphical representation of data\nwhere the values taken by a variable(s) are shown as colors in a\ntwo-dimensional map.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"heatmap","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A heatmap is a report graph which is a graphical representation of data\nwhere the values taken by a variable(s) are shown as colors in a\ntwo-dimensional map.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"heatmap","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000180","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000180","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"heatmap","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["heatmap","A heatmap is a report graph which is a graphical representation of data\nwhere the values taken by a variable(s) are shown as colors in a\ntwo-dimensional map.","PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot","GROUP:OBI","false"],"shortForm":"IAO_0000180","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000181\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000181\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A Venn diagram is a report graph showing all hypothetically possible\\nlogical relations between a finite collection of sets.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Venn diagram\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A Venn diagram is a report graph showing all hypothetically possible\\nlogical relations between a finite collection of sets.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wikipedia.org/wiki/Venn_diagram\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Venn diagram\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Venn diagram\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Venn diagram\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A Venn diagram is a report graph showing all hypothetically possible\\nlogical relations between a finite collection of sets.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wikipedia.org/wiki/Venn_diagram\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000181\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://en.wikipedia.org/wiki/Venn_diagram\":{\"url\":\"http://en.wikipedia.org/wiki/Venn_diagram\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Venn_diagram\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000181\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000181\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000181\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000181","definition":"A Venn diagram is a report graph showing all hypothetically possible\nlogical relations between a finite collection of sets.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"Venn diagram","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A Venn diagram is a report graph showing all hypothetically possible\nlogical relations between a finite collection of sets.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"WEB: http://en.wikipedia.org/wiki/Venn_diagram","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Venn diagram","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000181","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000181","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Venn diagram","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["Venn diagram","A Venn diagram is a report graph showing all hypothetically possible\nlogical relations between a finite collection of sets.","PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot","WEB: http://en.wikipedia.org/wiki/Venn_diagram","false"],"shortForm":"IAO_0000181","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000182\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000182\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_survival curve\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://www.graphpad.com/www/book/survive.htm\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_survival curve\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_survival curve\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_survival curve\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://www.graphpad.com/www/book/survive.htm\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000182\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000182\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000182\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000182\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000182","definition":"A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"obsolete_survival curve","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"WEB: http://www.graphpad.com/www/book/survive.htm","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_survival curve","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000182","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000182","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_survival curve","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["obsolete_survival curve","A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time.","PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot","WEB: http://www.graphpad.com/www/book/survive.htm","false"],"shortForm":"IAO_0000182","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000183\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000183\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A dendrogram is a report graph which is a tree diagram\\nfrequently used to illustrate the arrangement of the clusters produced by a\\nclustering algorithm.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dendrogram\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Dendrograms are often used in computational biology to\\nillustrate the clustering of genes.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A dendrogram is a report graph which is a tree diagram\\nfrequently used to illustrate the arrangement of the clusters produced by a\\nclustering algorithm.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wikipedia.org/wiki/Dendrogram\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dendrogram\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dendrogram\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dendrogram\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Dendrograms are often used in computational biology to\\nillustrate the clustering of genes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A dendrogram is a report graph which is a tree diagram\\nfrequently used to illustrate the arrangement of the clusters produced by a\\nclustering algorithm.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wikipedia.org/wiki/Dendrogram\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000183\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000183\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000183\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000183\"},\"http://en.wikipedia.org/wiki/Dendrogram\":{\"url\":\"http://en.wikipedia.org/wiki/Dendrogram\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Dendrogram\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000183","definition":"A dendrogram is a report graph which is a tree diagram\nfrequently used to illustrate the arrangement of the clusters produced by a\nclustering algorithm.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"dendrogram","http__//purl.obolibrary.org/obo/IAO_0000112":"Dendrograms are often used in computational biology to\nillustrate the clustering of genes.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A dendrogram is a report graph which is a tree diagram\nfrequently used to illustrate the arrangement of the clusters produced by a\nclustering algorithm.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"WEB: http://en.wikipedia.org/wiki/Dendrogram","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"dendrogram","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000183","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000183","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"dendrogram","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["dendrogram","Dendrograms are often used in computational biology to\nillustrate the clustering of genes.","A dendrogram is a report graph which is a tree diagram\nfrequently used to illustrate the arrangement of the clusters produced by a\nclustering algorithm.","PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot","WEB: http://en.wikipedia.org/wiki/Dendrogram","false"],"shortForm":"IAO_0000183","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000184\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000184\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scatter plot\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Comparison of gene expression values in two samples can be displayed in a scatter plot\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scattergraph\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wikipedia.org/wiki/Scatterplot\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scatter plot\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scatter plot\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scatter plot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Comparison of gene expression values in two samples can be displayed in a scatter plot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scattergraph\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wikipedia.org/wiki/Scatterplot\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000184\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://en.wikipedia.org/wiki/Scatterplot\":{\"url\":\"http://en.wikipedia.org/wiki/Scatterplot\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Scatterplot\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000184\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000184\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000184\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000184","definition":"A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"scatter plot","http__//purl.obolibrary.org/obo/IAO_0000112":"Comparison of gene expression values in two samples can be displayed in a scatter plot","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000118":"scattergraph","http__//purl.obolibrary.org/obo/IAO_0000119":"WEB: http://en.wikipedia.org/wiki/Scatterplot","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"scatter plot","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000184","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000184","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"scatter plot","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["scatter plot","Comparison of gene expression values in two samples can be displayed in a scatter plot","A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.","PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot","scattergraph","WEB: http://en.wikipedia.org/wiki/Scatterplot","false"],"shortForm":"IAO_0000184","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000185\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000185\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000101\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000101\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000101\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000101\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Joanne Luciano\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wiktionary.org/wiki/photograph\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"photograph\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000101\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"photograph\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Joanne Luciano\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wiktionary.org/wiki/photograph\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000185\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000185\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000185\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000185\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000101\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"image\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000101\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000185","definition":"A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000101","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000101","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000101","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000101","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Alan Ruttenberg","PERSON:Joanne Luciano","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"WEB: http://en.wiktionary.org/wiki/photograph","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"photograph","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000101","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000185","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000185","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"photograph","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc.","PERSON:Alan Ruttenberg","PERSON:Joanne Luciano","PERSON:Melanie Courtot","WEB: http://en.wiktionary.org/wiki/photograph","false"],"shortForm":"IAO_0000185","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000186\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000186\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A photographic print is a material entity upon which a photograph generically depends.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000178\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000178\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000178\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000178\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"photographic print\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A photographic print is a material entity upon which a photograph generically depends.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"photographic print\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000178\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000059\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000185\",\"isObsolete\":false},\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"photographic print\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"photographic print\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A photographic print is a material entity upon which a photograph generically depends.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000186\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000059\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"concretizes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000059\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000178\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material information bearer\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000178\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000186\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000186\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000186\"},\"http://purl.obolibrary.org/obo/IAO_0000185\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"photograph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000185\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000186","definition":"A photographic print is a material entity upon which a photograph generically depends.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000178","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000178","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000178","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000178","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"photographic print","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A photographic print is a material entity upon which a photograph generically depends.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Alan Ruttenberg","PERSON:Melanie Courtot"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"photographic print","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000178","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000186","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000186","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"photographic print","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["photographic print","A photographic print is a material entity upon which a photograph generically depends.","PERSON:Alan Ruttenberg","PERSON:Melanie Courtot","false"],"shortForm":"IAO_0000186","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000225\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000225\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hasIndividuals\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The creation of this class has been inspired in part by Werner Ceusters\\u0027 paper, Applying evolutionary terminology auditing to the Gene Ontology.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#oneOf\":[\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://purl.obolibrary.org/obo/IAO_0000226\",\"http://purl.obolibrary.org/obo/IAO_0000227\",\"http://purl.obolibrary.org/obo/IAO_0000228\",\"http://purl.obolibrary.org/obo/IAO_0000229\",\"http://purl.obolibrary.org/obo/OMO_0001000\"]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The creation of this class has been inspired in part by Werner Ceusters\\u0027 paper, Applying evolutionary terminology auditing to the Gene Ontology.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000225\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000228\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term imported\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000228\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000229\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term split\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000229\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/OMO_0001000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"out of scope\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OMO:0001000\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000226\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000227\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"terms merged\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000227\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000225\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000225\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000225\"}}}","appearsIn":["duo"],"curie":"IAO:0000225","definition":"The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000102","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hasIndividuals":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000102","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"obsolescence reason specification","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","http__//purl.obolibrary.org/obo/IAO_0000116":"The creation of this class has been inspired in part by Werner Ceusters\u0027 paper, Applying evolutionary terminology auditing to the Gene Ontology.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Melanie Courtot"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolescence reason specification","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000102","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000225","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000225","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"obsolescence reason specification","numDescendants":"6.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["obsolescence reason specification","The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","The creation of this class has been inspired in part by Werner Ceusters\u0027 paper, Applying evolutionary terminology auditing to the Gene Ontology.","PERSON: Alan Ruttenberg","PERSON: Melanie Courtot","false"],"shortForm":"IAO_0000225","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Words, sentences, paragraphs, and the written (non-figure) parts of publications are all textual entities\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"AR, (IAO call 2009-09-01): a document as a whole is not typically a textual entity, because it has pictures in it - rather there are parts of it that are textual entities. Examples: The title, paragraph 2 sentence 7, etc.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"MC, 2009-09-14 (following IAO call 2009-09-01): textual entities live at the FRBR (http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records) manifestation level. Everything is significant: line break, pdf and html versions of same document are different textual entities.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"text\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"numDescendants\":32.0,\"numHierarchicalDescendants\":32.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Words, sentences, paragraphs, and the written (non-figure) parts of publications are all textual entities\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"AR, (IAO call 2009-09-01): a document as a whole is not typically a textual entity, because it has pictures in it - rather there are parts of it that are textual entities. Examples: The title, paragraph 2 sentence 7, etc.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"MC, 2009-09-14 (following IAO call 2009-09-01): textual entities live at the FRBR (http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records) manifestation level. Everything is significant: line break, pdf and html versions of same document are different textual entities.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"text\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000300\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records)\":{\"url\":\"http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records)\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Functional_Requirements_for_Bibliographic_Records)\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000300\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000300\"}}}","appearsIn":["duo"],"curie":"IAO:0000300","definition":"A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"Words, sentences, paragraphs, and the written (non-figure) parts of publications are all textual entities","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc.","http__//purl.obolibrary.org/obo/IAO_0000116":["AR, (IAO call 2009-09-01): a document as a whole is not typically a textual entity, because it has pictures in it - rather there are parts of it that are textual entities. Examples: The title, paragraph 2 sentence 7, etc.","MC, 2009-09-14 (following IAO call 2009-09-01): textual entities live at the FRBR (http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records) manifestation level. Everything is significant: line break, pdf and html versions of same document are different textual entities."],"http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":"text","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000300","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000300","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"textual entity","numDescendants":"32.0","numHierarchicalDescendants":"32.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["textual entity","Words, sentences, paragraphs, and the written (non-figure) parts of publications are all textual entities","A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc.","AR, (IAO call 2009-09-01): a document as a whole is not typically a textual entity, because it has pictures in it - rather there are parts of it that are textual entities. Examples: The title, paragraph 2 sentence 7, etc.","MC, 2009-09-14 (following IAO call 2009-09-01): textual entities live at the FRBR (http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records) manifestation level. Everything is significant: line break, pdf and html versions of same document are different textual entities.","PERSON: Lawrence Hunter","text","false"],"shortForm":"IAO_0000300","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000301\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000301\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular publication.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"citation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Verspoor, K., Cohen, KB., Hunter, L. Textual characteristics of traditional and Open Access scientific journals are similar, BMC Bioinformatics 2009, 10:183.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular publication.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"citation\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"citation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000320\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000301\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"citation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Verspoor, K., Cohen, KB., Hunter, L. Textual characteristics of traditional and Open Access scientific journals are similar, BMC Bioinformatics 2009, 10:183.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular publication.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000301\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000320\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"references section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000320\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000301\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000301\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000301\"},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000301","definition":"A textual entity intended to identify a particular publication.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"citation","http__//purl.obolibrary.org/obo/IAO_0000112":"Verspoor, K., Cohen, KB., Hunter, L. Textual characteristics of traditional and Open Access scientific journals are similar, BMC Bioinformatics 2009, 10:183.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity intended to identify a particular publication.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"citation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000300"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000301","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000301","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"citation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000320","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000310","searchableAnnotationValues":["citation","Verspoor, K., Cohen, KB., Hunter, L. Textual characteristics of traditional and Open Access scientific journals are similar, BMC Bioinformatics 2009, 10:183.","A textual entity intended to identify a particular publication.","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000301","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000302\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000302\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular author\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000590\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000590\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000590\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000590\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author identification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"L. Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular author\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author identification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000590\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author identification\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000321\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000302\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author identification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"L. Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular author\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000302\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000590\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"written name\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000590\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000321\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author list\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000321\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000302\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000302\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000302\"}}}","appearsIn":["duo"],"curie":"IAO:0000302","definition":"A textual entity intended to identify a particular author","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000590","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000590","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000590","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000590","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"author identification","http__//purl.obolibrary.org/obo/IAO_0000112":"L. Hunter","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity intended to identify a particular author","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"author identification","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000590","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000302","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000302","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"author identification","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000321","searchableAnnotationValues":["author identification","L. Hunter","A textual entity intended to identify a particular author","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000302","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000303\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000303\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular institution\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institutional identification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"University of Colorado Denver School of Medicine\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular institution\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institutional identification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institutional identification\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000322\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000303\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institutional identification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"University of Colorado Denver School of Medicine\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular institution\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000303\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000322\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institution list\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000322\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000303\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000303\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000303\"}}}","appearsIn":["duo"],"curie":"IAO:0000303","definition":"A textual entity intended to identify a particular institution","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"institutional identification","http__//purl.obolibrary.org/obo/IAO_0000112":"University of Colorado Denver School of Medicine","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity intended to identify a particular institution","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"institutional identification","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000303","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000303","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"institutional identification","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000322","searchableAnnotationValues":["institutional identification","University of Colorado Denver School of Medicine","A textual entity intended to identify a particular institution","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000303","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000304\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000304\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that describes a figure\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"caption\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Figure 1: A system diagram describing the modules of the Hanalyzer. Reading methods (green) take external sources of knowledge (blue) and extract information from them, either by parsing structured data or biomedical language processing to extract information from unstructured data. Reading modules are responsible for tracking the provenance of all knowledge. Reasoning methods (yellow) enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. All knowledge sources, read or reasoned, are assigned a reliability score, and all are combined using that score into a knowledge network (orange) that represents the integration of all sorts of relationship between a pair of genes and a combined reliability score. A data network (also orange) is created from experimental results to be analyzed. The reporting modules (pink) integrate the data and knowledge networks, producing visualizations that can be queried with the associated drill-down tool.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that describes a figure\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"caption\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"caption\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"caption\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Figure 1: A system diagram describing the modules of the Hanalyzer. Reading methods (green) take external sources of knowledge (blue) and extract information from them, either by parsing structured data or biomedical language processing to extract information from unstructured data. Reading modules are responsible for tracking the provenance of all knowledge. Reasoning methods (yellow) enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. All knowledge sources, read or reasoned, are assigned a reliability score, and all are combined using that score into a knowledge network (orange) that represents the integration of all sorts of relationship between a pair of genes and a combined reliability score. A data network (also orange) is created from experimental results to be analyzed. The reporting modules (pink) integrate the data and knowledge networks, producing visualizations that can be queried with the associated drill-down tool.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that describes a figure\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000304\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000304\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000304\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000304\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000304","definition":"A textual entity that describes a figure","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"caption","http__//purl.obolibrary.org/obo/IAO_0000112":"Figure 1: A system diagram describing the modules of the Hanalyzer. Reading methods (green) take external sources of knowledge (blue) and extract information from them, either by parsing structured data or biomedical language processing to extract information from unstructured data. Reading modules are responsible for tracking the provenance of all knowledge. Reasoning methods (yellow) enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. All knowledge sources, read or reasoned, are assigned a reliability score, and all are combined using that score into a knowledge network (orange) that represents the integration of all sorts of relationship between a pair of genes and a combined reliability score. A data network (also orange) is created from experimental results to be analyzed. The reporting modules (pink) integrate the data and knowledge networks, producing visualizations that can be queried with the associated drill-down tool.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that describes a figure","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"caption","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000300"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000304","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000304","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"caption","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000308","searchableAnnotationValues":["caption","Figure 1: A system diagram describing the modules of the Hanalyzer. Reading methods (green) take external sources of knowledge (blue) and extract information from them, either by parsing structured data or biomedical language processing to extract information from unstructured data. Reading modules are responsible for tracking the provenance of all knowledge. Reasoning methods (yellow) enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. All knowledge sources, read or reasoned, are assigned a reliability score, and all are combined using that score into a knowledge network (orange) that represents the integration of all sorts of relationship between a pair of genes and a combined reliability score. A data network (also orange) is created from experimental results to be analyzed. The reporting modules (pink) integrate the data and knowledge networks, producing visualizations that can be queried with the associated drill-down tool.","A textual entity that describes a figure","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000304","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000305\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000305\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that names a document\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document title\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Textual characteristics of traditional and Open Access scientific journals are similar\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that names a document\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document title\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document title\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document title\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Textual characteristics of traditional and Open Access scientific journals are similar\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that names a document\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000305\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000305\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000305\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000305\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000305","definition":"A textual entity that names a document","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"document title","http__//purl.obolibrary.org/obo/IAO_0000112":"Textual characteristics of traditional and Open Access scientific journals are similar","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that names a document","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"document title","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000305","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000305","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"document title","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["document title","Textual characteristics of traditional and Open Access scientific journals are similar","A textual entity that names a document","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000305","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000306\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"| T F\\n--+-----\\nT | T F\\nF | F F\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000645\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"| T F\\n--+-----\\nT | T F\\nF | F F\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000306\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000645\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"tables section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000645\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000306\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000306\"},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000306","definition":"A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"table","http__//purl.obolibrary.org/obo/IAO_0000112":"| T F\n--+-----\nT | T F\nF | F F","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"table","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000306","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000306","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"table","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000645","searchableAnnotationValues":["table","| T F\n--+-----\nT | T F\nF | F F","A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000306","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000307\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000307\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table where the constituent texts are abbreviations and their expansions\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000306\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000306\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of abbreviations\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"IAO information artifact ontology\\nOBI ontology of biomedical investiations\\nGO gene ontology\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table where the constituent texts are abbreviations and their expansions\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of abbreviations\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of abbreviations\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"IAO information artifact ontology\\nOBI ontology of biomedical investiations\\nGO gene ontology\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table where the constituent texts are abbreviations and their expansions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000307\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000306\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000306\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000307\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000307\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000307\"},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000307","definition":"A table where the constituent texts are abbreviations and their expansions","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000306","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000306","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"table of abbreviations","http__//purl.obolibrary.org/obo/IAO_0000112":"IAO information artifact ontology\nOBI ontology of biomedical investiations\nGO gene ontology","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A table where the constituent texts are abbreviations and their expansions","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"table of abbreviations","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000306","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000307","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000307","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"table of abbreviations","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["table of abbreviations","IAO information artifact ontology\nOBI ontology of biomedical investiations\nGO gene ontology","A table where the constituent texts are abbreviations and their expansions","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000307","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Any picture, diagram or table\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"numDescendants\":13.0,\"numHierarchicalDescendants\":13.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000304\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000622\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Any picture, diagram or table\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000308\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000308\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000308\"},\"http://purl.obolibrary.org/obo/IAO_0000622\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figures section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000622\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000304\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"caption\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000304\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000308","definition":"An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"figure","http__//purl.obolibrary.org/obo/IAO_0000112":"Any picture, diagram or table","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"figure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000308","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000308","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"figure","numDescendants":"13.0","numHierarchicalDescendants":"13.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/IAO_0000304","http://purl.obolibrary.org/obo/IAO_0000622"],"searchableAnnotationValues":["figure","Any picture, diagram or table","An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something.","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000308","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000309\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A figure that expresses one or more propositions\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A molecular structure ribbon cartoon showing helices, turns and sheets and their relations to each other in space.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A figure that expresses one or more propositions\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":10.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A molecular structure ribbon cartoon showing helices, turns and sheets and their relations to each other in space.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A figure that expresses one or more propositions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000309\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000309\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000309\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000309\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000309","definition":"A figure that expresses one or more propositions","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000308","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000308","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"diagram","http__//purl.obolibrary.org/obo/IAO_0000112":"A molecular structure ribbon cartoon showing helices, turns and sheets and their relations to each other in space.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A figure that expresses one or more propositions","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"diagram","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000308","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000309","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000309","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"diagram","numDescendants":"10.0","numHierarchicalDescendants":"10.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["diagram","A molecular structure ribbon cartoon showing helices, turns and sheets and their relations to each other in space.","A figure that expresses one or more propositions","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000309","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A collection of information content entities intended to be understood together as a whole\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A journal article, patent application, laboratory notebook, or a book\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A collection of information content entities intended to be understood together as a whole\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"numDescendants\":7.0,\"numHierarchicalDescendants\":51.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000301\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000315\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000572\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A journal article, patent application, laboratory notebook, or a book\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A collection of information content entities intended to be understood together as a whole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000310\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000310\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000310\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000315\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abstract\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000315\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000572\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"documenting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000572\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000301\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"citation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000301\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000310","definition":"A collection of information content entities intended to be understood together as a whole","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"document","http__//purl.obolibrary.org/obo/IAO_0000112":"A journal article, patent application, laboratory notebook, or a book","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A collection of information content entities intended to be understood together as a whole","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"document","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000310","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000310","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"document","numDescendants":"7.0","numHierarchicalDescendants":"51.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/IAO_0000301","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000315","http://purl.obolibrary.org/obo/IAO_0000572"],"searchableAnnotationValues":["document","A journal article, patent application, laboratory notebook, or a book","A collection of information content entities intended to be understood together as a whole","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000310","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000311\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000311\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that is the output of a publishing process.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Revisit the term in Octorber 2020. Improve the defintion.\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"journal article, newspaper story, book, etc.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that is the output of a publishing process.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jie Zheng\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"published document\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/232\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Revisit the term in Octorber 2020. Improve the defintion.\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000444\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"journal article, newspaper story, book, etc.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that is the output of a publishing process.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jie Zheng\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"published document\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000311\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000311\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000311\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000311\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000312\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000312\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000444\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publishing process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000444\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000311","definition":["A document that is the output of a publishing process.","Revisit the term in Octorber 2020. Improve the defintion."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000310","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000310","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"publication","http__//purl.obolibrary.org/obo/IAO_0000112":"journal article, newspaper story, book, etc.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A document that is the output of a publishing process.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Chris Stoeckert","PERSON: Jie Zheng","PERSON: Lawrence Hunter"],"http__//purl.obolibrary.org/obo/IAO_0000118":"published document","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/232","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Revisit the term in Octorber 2020. Improve the defintion.","http__//www.w3.org/2000/01/rdf-schema#label":"publication","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000310","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000311","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000311","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"publication","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["publication","journal article, newspaper story, book, etc.","A document that is the output of a publishing process.","PERSON: Chris Stoeckert","PERSON: Jie Zheng","PERSON: Lawrence Hunter","published document","false"],"shortForm":"IAO_0000311","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000312\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000312\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A publication that is about an investigation\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000311\",\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000311\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000311\",\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000311\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication about an investigation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Most scientific journal articles\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A publication that is about an investigation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scientific publication\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication about an investigation\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000311\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication about an investigation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication about an investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Most scientific journal articles\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A publication that is about an investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scientific publication\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000312\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/OBI_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000312\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000312\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000312\"},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000311\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000311\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000312","definition":"A publication that is about an investigation","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000311","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000311","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000311","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000311","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"publication about an investigation","http__//purl.obolibrary.org/obo/IAO_0000112":"Most scientific journal articles","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A publication that is about an investigation","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":"scientific publication","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"publication about an investigation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000311"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000312","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000312","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"publication about an investigation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/OBI_0000066","searchableAnnotationValues":["publication about an investigation","Most scientific journal articles","A publication that is about an investigation","PERSON: Lawrence Hunter","scientific publication","false"],"shortForm":"IAO_0000312","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000313\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000313\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that has been accepted by a patent authority\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patent\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"US Patent 6,449,603\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that has been accepted by a patent authority\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patent\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patent\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patent\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"US Patent 6,449,603\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that has been accepted by a patent authority\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000313\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000313\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000313\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000313\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000313","definition":"A document that has been accepted by a patent authority","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000310","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000310","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"patent","http__//purl.obolibrary.org/obo/IAO_0000112":"US Patent 6,449,603","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A document that has been accepted by a patent authority","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"patent","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000310","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000313","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000313","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"patent","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["patent","US Patent 6,449,603","A document that has been accepted by a patent authority","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000313","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is part of a document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An abstract, introduction, method or results section.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is part of a document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"numDescendants\":43.0,\"numHierarchicalDescendants\":43.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000325\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An abstract, introduction, method or results section.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is part of a document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000314\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000314\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000314\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000325\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"footnote\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000325\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000314","definition":"An information content entity that is part of a document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"document part","http__//purl.obolibrary.org/obo/IAO_0000112":"An abstract, introduction, method or results section.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity that is part of a document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"document part","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000030"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000314","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000314","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"document part","numDescendants":"43.0","numHierarchicalDescendants":"43.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000325","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000310","searchableAnnotationValues":["document part","An abstract, introduction, method or results section.","An information content entity that is part of a document.","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000314","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000315\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000315\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abstract\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The profusion of high-throughput instruments and the explosion of new results in the scientific literature, particularly in molecular biomedicine, is both a blessing and a curse to the bench researcher. Even knowledgeable and experienced scientists can benefit from computational tools that help navigate this vast and rapidly evolving terrain. In this paper, we describe a novel computational approach to this challenge, a knowledge-based system that combines reading, reasoning and reporting methods to facilitate analysis of experimental data. Reading methods extract information from external resources, either by parsing structured data or biomedical language processing to extract information from unstructured data, and track knowledge provenance. Reasoning methods enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. Reasoning is also used to combine all sources into a knowledge network that represents the integration of all sorts of relationships between a pair of genes, and to calculate a combined reliability score. Reporting methods combine the knowledge network with a congruent network constructed from experimental data and visualize the combined network in a tool that facilitates the knowledge-based analysis of that data.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precis\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abstract\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abstract\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abstract\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The profusion of high-throughput instruments and the explosion of new results in the scientific literature, particularly in molecular biomedicine, is both a blessing and a curse to the bench researcher. Even knowledgeable and experienced scientists can benefit from computational tools that help navigate this vast and rapidly evolving terrain. In this paper, we describe a novel computational approach to this challenge, a knowledge-based system that combines reading, reasoning and reporting methods to facilitate analysis of experimental data. Reading methods extract information from external resources, either by parsing structured data or biomedical language processing to extract information from unstructured data, and track knowledge provenance. Reasoning methods enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. Reasoning is also used to combine all sources into a knowledge network that represents the integration of all sorts of relationships between a pair of genes, and to calculate a combined reliability score. Reporting methods combine the knowledge network with a congruent network constructed from experimental data and visualize the combined network in a tool that facilitates the knowledge-based analysis of that data.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precis\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000315\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000315\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000315\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000315\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000315","definition":"A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"abstract","http__//purl.obolibrary.org/obo/IAO_0000112":"The profusion of high-throughput instruments and the explosion of new results in the scientific literature, particularly in molecular biomedicine, is both a blessing and a curse to the bench researcher. Even knowledgeable and experienced scientists can benefit from computational tools that help navigate this vast and rapidly evolving terrain. In this paper, we describe a novel computational approach to this challenge, a knowledge-based system that combines reading, reasoning and reporting methods to facilitate analysis of experimental data. Reading methods extract information from external resources, either by parsing structured data or biomedical language processing to extract information from unstructured data, and track knowledge provenance. Reasoning methods enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. Reasoning is also used to combine all sources into a knowledge network that represents the integration of all sorts of relationships between a pair of genes, and to calculate a combined reliability score. Reporting methods combine the knowledge network with a congruent network constructed from experimental data and visualize the combined network in a tool that facilitates the knowledge-based analysis of that data.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":"precis","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"abstract","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000315","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000315","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"abstract","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000310","searchableAnnotationValues":["abstract","The profusion of high-throughput instruments and the explosion of new results in the scientific literature, particularly in molecular biomedicine, is both a blessing and a curse to the bench researcher. Even knowledgeable and experienced scientists can benefit from computational tools that help navigate this vast and rapidly evolving terrain. In this paper, we describe a novel computational approach to this challenge, a knowledge-based system that combines reading, reasoning and reporting methods to facilitate analysis of experimental data. Reading methods extract information from external resources, either by parsing structured data or biomedical language processing to extract information from unstructured data, and track knowledge provenance. Reasoning methods enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. Reasoning is also used to combine all sources into a knowledge network that represents the integration of all sorts of relationships between a pair of genes, and to calculate a combined reliability score. Reporting methods combine the knowledge network with a congruent network constructed from experimental data and visualize the combined network in a tool that facilitates the knowledge-based analysis of that data.","A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes.","PERSON: Lawrence Hunter","precis","false"],"shortForm":"IAO_0000315","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000316\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000316\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the objective specification (why the investigation is being done)\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"introduction to a publication about an investigation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Section labelled \\u0027introduction\\u0027 of a typical scientific journal article\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the objective specification (why the investigation is being done)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"background\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"introduction\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overview\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"introduction to a publication about an investigation\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"introduction to a publication about an investigation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"introduction to a publication about an investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Section labelled \\u0027introduction\\u0027 of a typical scientific journal article\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the objective specification (why the investigation is being done)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"background\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"introduction\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overview\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000316\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000316\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000316\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000316\"},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000005\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"objective specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000005\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000316","definition":"A part of a publication about an investigation that is about the objective specification (why the investigation is being done)","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"introduction to a publication about an investigation","http__//purl.obolibrary.org/obo/IAO_0000112":"Section labelled \u0027introduction\u0027 of a typical scientific journal article","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a publication about an investigation that is about the objective specification (why the investigation is being done)","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":["background","introduction","overview"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"introduction to a publication about an investigation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000316","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000316","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"introduction to a publication about an investigation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000005","searchableAnnotationValues":["introduction to a publication about an investigation","Section labelled \u0027introduction\u0027 of a typical scientific journal article","A part of a publication about an investigation that is about the objective specification (why the investigation is being done)","PERSON: Lawrence Hunter","background","introduction","overview","false"],"shortForm":"IAO_0000316","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000317\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000317\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the study design of the investigation\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methods section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027Methods\\u0027 or \\u0027Materials and Methods\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the study design of the investigation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental methods\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental procedures\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"method\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methodology\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methods\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methods section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methods section\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methods section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027Methods\\u0027 or \\u0027Materials and Methods\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the study design of the investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental methods\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental procedures\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"method\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methodology\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methods\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000317\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000317\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000317\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000317\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0500000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study design\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0500000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000317","definition":"A part of a publication about an investigation that is about the study design of the investigation","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"methods section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027Methods\u0027 or \u0027Materials and Methods\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a publication about an investigation that is about the study design of the investigation","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":["experimental","experimental methods","experimental procedures","experimental section","method","methodology","methods"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"methods section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000317","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000317","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"methods section","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/OBI_0500000","searchableAnnotationValues":["methods section","The section labelled \u0027Methods\u0027 or \u0027Materials and Methods\u0027 in a typical scientific journal article.","A part of a publication about an investigation that is about the study design of the investigation","PERSON: Lawrence Hunter","experimental","experimental methods","experimental procedures","experimental section","method","methodology","methods","false"],"shortForm":"IAO_0000317","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000318\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000318\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about a study design execution\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"results section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027results\\u0027 in a typical scientific journal article\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about a study design execution\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"results\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"results section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0000471\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"results section\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/OBI_0000471\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0000471\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"results section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027results\\u0027 in a typical scientific journal article\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about a study design execution\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"results\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000318\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000318\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000318\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000318\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000471\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"study design execution\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000471\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000318","definition":"A part of a publication about an investigation that is about a study design execution","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"results section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027results\u0027 in a typical scientific journal article","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a publication about an investigation that is about a study design execution","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":"results","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"results section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000318","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000318","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"results section","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/OBI_0000471","searchableAnnotationValues":["results section","The section labelled \u0027results\u0027 in a typical scientific journal article","A part of a publication about an investigation that is about a study design execution","PERSON: Lawrence Hunter","results","false"],"shortForm":"IAO_0000318","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000319\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000319\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the study interpretation of the investigation\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussion section of a publication about an investigation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the study interpretation of the investigation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussion section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussions\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussion section of a publication about an investigation\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussion section of a publication about an investigation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussion section of a publication about an investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the study interpretation of the investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussion section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussions\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000319\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000319\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000319\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000319\"},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000319","definition":"A part of a publication about an investigation that is about the study interpretation of the investigation","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"discussion section of a publication about an investigation","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a publication about an investigation that is about the study interpretation of the investigation","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":["discussion","discussion section","discussions"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"discussion section of a publication about an investigation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000319","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000319","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"discussion section of a publication about an investigation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["discussion section of a publication about an investigation","A part of a publication about an investigation that is about the study interpretation of the investigation","PERSON: Lawrence Hunter","discussion","discussion section","discussions","false"],"shortForm":"IAO_0000319","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000320\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000320\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that has citations as parts\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"references section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The list of citations found at the end of a scientific publication, grant proposal or patent application, sometimes called \\\"literature cited\\\" or \\\"bibliography\\\"\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that has citations as parts\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"literature cited\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"reference\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"reference list\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"references\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"references section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000301\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"references section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000301\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000301\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"references section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The list of citations found at the end of a scientific publication, grant proposal or patent application, sometimes called \\\"literature cited\\\" or \\\"bibliography\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that has citations as parts\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"literature cited\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"reference\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"reference list\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"references\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000320\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000320\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000320\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000320\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000301\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"citation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000301\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000320","definition":"A part of a document that has citations as parts","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"references section","http__//purl.obolibrary.org/obo/IAO_0000112":"The list of citations found at the end of a scientific publication, grant proposal or patent application, sometimes called \"literature cited\" or \"bibliography\"","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document that has citations as parts","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":["literature cited","reference","reference list","references"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"references section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000320","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000320","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"references section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000301","searchableAnnotationValues":["references section","The list of citations found at the end of a scientific publication, grant proposal or patent application, sometimes called \"literature cited\" or \"bibliography\"","A part of a document that has citations as parts","PERSON: Lawrence Hunter","literature cited","reference","reference list","references","false"],"shortForm":"IAO_0000320","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000321\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000321\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that enumerates the authors of the document\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author list\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Lawrence Hunter and Kevin Brettonel Cohen\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that enumerates the authors of the document\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author list\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000302\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author list\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000302\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000302\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author list\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Lawrence Hunter and Kevin Brettonel Cohen\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that enumerates the authors of the document\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000321\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000321\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000321\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000321\"},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000302\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author identification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000302\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000321","definition":"A part of a document that enumerates the authors of the document","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"author list","http__//purl.obolibrary.org/obo/IAO_0000112":"Lawrence Hunter and Kevin Brettonel Cohen","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document that enumerates the authors of the document","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"author list","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000321","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000321","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"author list","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000302","searchableAnnotationValues":["author list","Lawrence Hunter and Kevin Brettonel Cohen","A part of a document that enumerates the authors of the document","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000321","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000322\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000322\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that has parts that are institution identifications associated with the authors of the document\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institution list\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The University of Colorado Denver School of Medicine and the University of Colorado Boulder.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that has parts that are institution identifications associated with the authors of the document\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institution list\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000303\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institution list\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000303\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000303\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institution list\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The University of Colorado Denver School of Medicine and the University of Colorado Boulder.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that has parts that are institution identifications associated with the authors of the document\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000322\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000322\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000322\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000322\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000303\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institutional identification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000303\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000322","definition":"A part of a document that has parts that are institution identifications associated with the authors of the document","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"institution list","http__//purl.obolibrary.org/obo/IAO_0000112":"The University of Colorado Denver School of Medicine and the University of Colorado Boulder.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document that has parts that are institution identifications associated with the authors of the document","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"institution list","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000322","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000322","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"institution list","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000303","searchableAnnotationValues":["institution list","The University of Colorado Denver School of Medicine and the University of Colorado Boulder.","A part of a document that has parts that are institution identifications associated with the authors of the document","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000322","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000323\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000323\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication that is about the specific contributions of each author\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author contributions section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"LH conceived of the hypothesis, designed the study and contributed to the writing of the manuscript. KBC executed the experiments, analyzed the data, and contributed to the writing of the manuscript.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication that is about the specific contributions of each author\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author contributions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors\\u0027 contribution\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors\\u0027 contributions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors\\u0027 roles\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contributions by the authors\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contributorship\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author contributions section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author contributions section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author contributions section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"LH conceived of the hypothesis, designed the study and contributed to the writing of the manuscript. KBC executed the experiments, analyzed the data, and contributed to the writing of the manuscript.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication that is about the specific contributions of each author\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author contributions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors\\u0027 contribution\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors\\u0027 contributions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors\\u0027 roles\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contributions by the authors\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contributorship\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000323\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000323\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000323\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000323\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000323","definition":"A part of a publication that is about the specific contributions of each author","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"author contributions section","http__//purl.obolibrary.org/obo/IAO_0000112":"LH conceived of the hypothesis, designed the study and contributed to the writing of the manuscript. KBC executed the experiments, analyzed the data, and contributed to the writing of the manuscript.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a publication that is about the specific contributions of each author","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":["author contributions","authors\u0027 contribution","authors\u0027 contributions","authors\u0027 roles","contributions by the authors","contributorship"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"author contributions section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000323","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000323","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"author contributions section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["author contributions section","LH conceived of the hypothesis, designed the study and contributed to the writing of the manuscript. KBC executed the experiments, analyzed the data, and contributed to the writing of the manuscript.","A part of a publication that is about the specific contributions of each author","PERSON: Lawrence Hunter","author contributions","authors\u0027 contribution","authors\u0027 contributions","authors\u0027 roles","contributions by the authors","contributorship","false"],"shortForm":"IAO_0000323","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000324\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000324\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Part of a publication that is about the contributions of people or institutions other than the authors.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgements section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The authors wish to thank Alan Ruttenberg for his constructive comments about an earlier draft of this manuscript\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Part of a publication that is about the contributions of people or institutions other than the authors.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgements\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgment\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgments\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgements section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgements section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgements section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The authors wish to thank Alan Ruttenberg for his constructive comments about an earlier draft of this manuscript\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Part of a publication that is about the contributions of people or institutions other than the authors.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgements\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgment\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgments\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000324\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000324\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000324\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000324\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000324","definition":"Part of a publication that is about the contributions of people or institutions other than the authors.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"acknowledgements section","http__//purl.obolibrary.org/obo/IAO_0000112":"The authors wish to thank Alan Ruttenberg for his constructive comments about an earlier draft of this manuscript","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"Part of a publication that is about the contributions of people or institutions other than the authors.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":["acknowledgement","acknowledgements","acknowledgment","acknowledgments"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"acknowledgements section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000324","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000324","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"acknowledgements section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["acknowledgements section","The authors wish to thank Alan Ruttenberg for his constructive comments about an earlier draft of this manuscript","Part of a publication that is about the contributions of people or institutions other than the authors.","PERSON: Lawrence Hunter","acknowledgement","acknowledgements","acknowledgment","acknowledgments","false"],"shortForm":"IAO_0000324","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000325\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000325\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"footnote\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The referent in the text is usually indicated by a special typographic character such as * or a superscripted number, which is also used to indicate the footnote that refers to that text.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"endnote\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"footnotes\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"footnote\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"footnote\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"footnote\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The referent in the text is usually indicated by a special typographic character such as * or a superscripted number, which is also used to indicate the footnote that refers to that text.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"endnote\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"footnotes\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000325\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000325\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000325\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000325\"},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000325","definition":"A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"footnote","http__//purl.obolibrary.org/obo/IAO_0000112":"The referent in the text is usually indicated by a special typographic character such as * or a superscripted number, which is also used to indicate the footnote that refers to that text.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":["endnote","footnotes"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"footnote","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000325","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000325","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"footnote","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000314","searchableAnnotationValues":["footnote","The referent in the text is usually indicated by a special typographic character such as * or a superscripted number, which is also used to indicate the footnote that refers to that text.","A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document.","PERSON: Lawrence Hunter","endnote","footnotes","false"],"shortForm":"IAO_0000325","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000326\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000326\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that is segregated from the rest of the document due to its size\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary material to a document\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that is segregated from the rest of the document due to its size\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional file\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional files\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"appendix\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"electronic supplementary material\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"electronic supplementary materials\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplemental data\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplemental information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplemental material\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary data\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary files\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary material\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary materials\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supporting information\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary material to a document\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary material to a document\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary material to a document\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that is segregated from the rest of the document due to its size\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional file\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional files\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"appendix\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"electronic supplementary material\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"electronic supplementary materials\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplemental data\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplemental information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplemental material\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary data\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary files\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary material\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary materials\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supporting information\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000326\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000326\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000326\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000326\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000326","definition":"A part of a document that is segregated from the rest of the document due to its size","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"supplementary material to a document","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document that is segregated from the rest of the document due to its size","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":["additional file","additional files","additional information","appendix","electronic supplementary material","electronic supplementary materials","supplemental data","supplemental information","supplemental material","supplementary data","supplementary files","supplementary information","supplementary material","supplementary materials","supporting information"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"supplementary material to a document","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000326","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000326","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"supplementary material to a document","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["supplementary material to a document","A part of a document that is segregated from the rest of the document due to its size","PERSON: Lawrence Hunter","additional file","additional files","additional information","appendix","electronic supplementary material","electronic supplementary materials","supplemental data","supplemental information","supplemental material","supplementary data","supplementary files","supplementary information","supplementary material","supplementary materials","supporting information","false"],"shortForm":"IAO_0000326","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000327\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000327\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000306\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000306\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of contents\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of contents\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of contents\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of contents\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000327\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000306\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000306\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000327\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000327\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000327\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000327","definition":"A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000306","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000306","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"table of contents","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred).","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"table of contents","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000306","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000327","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000327","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"table of contents","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["table of contents","A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred).","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000327","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000328\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000328\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000306\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000306\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of figures\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of figures\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of figures\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of figures\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000328\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000306\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000306\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000328\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000328\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000328\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000328","definition":"A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000306","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000306","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"table of figures","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred).","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"table of figures","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000306","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000328","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000328","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"table of figures","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["table of figures","A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred).","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000328","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000329\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000329\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A shorter version of a document title\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000305\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000305\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000305\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000305\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"running title\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A shorter version of a document title\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"running title\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000305\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"running title\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"running title\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A shorter version of a document title\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000329\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000305\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document title\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000305\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000329\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000329\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000329\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000329","definition":"A shorter version of a document title","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000305","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000305","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000305","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000305","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"running title","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A shorter version of a document title","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"running title","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000305","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000329","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000329","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"running title","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["running title","A shorter version of a document title","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000329","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000330\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000330\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes legal restrictions on making or distributing copies of the document\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"copyright section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes legal restrictions on making or distributing copies of the document\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"copyright section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"copyright section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"copyright section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes legal restrictions on making or distributing copies of the document\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000330\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000330\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000330\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000330\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000330","definition":"A document part that describes legal restrictions on making or distributing copies of the document","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"copyright section","http__//purl.obolibrary.org/obo/IAO_0000112":"This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A document part that describes legal restrictions on making or distributing copies of the document","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"copyright section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000330","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000330","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"copyright section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["copyright section","This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.","A document part that describes legal restrictions on making or distributing copies of the document","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000330","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-08-18 Alan Ruttenberg - question to BFO list about whether the BFO sense of the lower dimensional regions is that they are always part of actual space (the three dimensional sort) http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"value\":\"AR notes: We need to discuss whether it should include site.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000018\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#cardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000407\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"value\":\"http://purl.obolibrary.org/obo/BFO_0000018\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000018\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-08-18 Alan Ruttenberg - question to BFO list about whether the BFO sense of the lower dimensional regions is that they are always part of actual space (the three dimensional sort) http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"AR notes: We need to discuss whether it should include site.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000400\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000400\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000400\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000407\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has coordinate unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000407\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000219\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000400","definition":"A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000027","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000027","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude","http__//purl.obolibrary.org/obo/IAO_0000116":"2009-08-18 Alan Ruttenberg - question to BFO list about whether the BFO sense of the lower dimensional regions is that they are always part of actual space (the three dimensional sort) http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000232":"AR notes: We need to discuss whether it should include site.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cartesian spatial coordinate datum","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000027"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000400","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000400","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cartesian spatial coordinate datum","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/BFO_0000018","searchableAnnotationValues":["A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude","2009-08-18 Alan Ruttenberg - question to BFO list about whether the BFO sense of the lower dimensional regions is that they are always part of actual space (the three dimensional sort) http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617","Alan Ruttenberg","AR notes: We need to discuss whether it should include site.","false"],"shortForm":"IAO_0000400","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000401\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000401\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000026\",\"isObsolete\":false}]},\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#cardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000404\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"value\":\"http://purl.obolibrary.org/obo/BFO_0000018\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000026\",\"isObsolete\":false}]},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000401\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000401\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000401\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000401\"},\"http://purl.obolibrary.org/obo/IAO_0000404\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has x coordinate value\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000404\"},\"type\":[\"dataProperty\",\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000219\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000026\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000401","definition":"A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000400","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000400","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"one dimensional cartesian spatial coordinate datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000400"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000401","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000401","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"one dimensional cartesian spatial coordinate datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/BFO_0000018","searchableAnnotationValues":["A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region","Alan Ruttenberg","false"],"shortForm":"IAO_0000401","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000402\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000402\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000009\",\"isObsolete\":false}]},\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#cardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000404\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#cardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000406\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"value\":\"http://purl.obolibrary.org/obo/BFO_0000018\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000009\",\"isObsolete\":false}]},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000402\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000402\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000402\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000402\"},\"http://purl.obolibrary.org/obo/IAO_0000406\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has y coordinate value\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000406\"},\"type\":[\"dataProperty\",\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000404\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has x coordinate value\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000404\"},\"type\":[\"dataProperty\",\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000219\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000402","definition":"A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000400","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000400","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"two dimensional cartesian spatial coordinate datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000400"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000402","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000402","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"two dimensional cartesian spatial coordinate datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/BFO_0000018","searchableAnnotationValues":["A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region","Alan Ruttenberg","false"],"shortForm":"IAO_0000402","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000403\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000403\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000028\",\"isObsolete\":false}]},\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#cardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000404\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#cardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000405\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#cardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000406\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"value\":\"http://purl.obolibrary.org/obo/BFO_0000018\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000028\",\"isObsolete\":false}]},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000403\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000403\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000403\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000403\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000406\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has y coordinate value\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000406\"},\"type\":[\"dataProperty\",\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000404\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has x coordinate value\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000404\"},\"type\":[\"dataProperty\",\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000405\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has z coordinate value\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000405\"},\"type\":[\"dataProperty\",\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000219\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000403","definition":"A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000400","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000400","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"three dimensional cartesian spatial coordinate datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000400"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000403","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000403","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"three dimensional cartesian spatial coordinate datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/BFO_0000018","searchableAnnotationValues":["A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region","Alan Ruttenberg","false"],"shortForm":"IAO_0000403","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000408\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000408\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measurement of length quality\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000032\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000032\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measurement of length quality\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"length measurement datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UO_0000001\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000221\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0000122\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"length measurement datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"value\":\"http://purl.obolibrary.org/obo/UO_0000001\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UO_0000001\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000221\",\"value\":\"http://purl.obolibrary.org/obo/PATO_0000122\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000221\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0000122\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measurement of length quality\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000408\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000032\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scalar measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000032\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"length\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000122\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000039\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"length unit\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UO:0000001\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000408\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000408\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000408\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000221\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measurement of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000221\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000408","definition":"A scalar measurement datum that is the result of measurement of length quality","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000032","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000032","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A scalar measurement datum that is the result of measurement of length quality","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"length measurement datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000032"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000408","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000408","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"length measurement datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/UO_0000001","http://purl.obolibrary.org/obo/PATO_0000122"],"searchableAnnotationValues":["A scalar measurement datum that is the result of measurement of length quality","Alan Ruttenberg","false"],"shortForm":"IAO_0000408","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000409\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000409\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A denotator type indicates how a term should be interpreted from an ontological perspective.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hasIndividuals\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotator type\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are \\\"natural kinds\\\" and the latter arbitrary collections of entities.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A denotator type indicates how a term should be interpreted from an ontological perspective.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Barry Smith, Werner Ceusters\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotator type\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#oneOf\":[\"http://purl.obolibrary.org/obo/IAO_0000410\",\"http://purl.obolibrary.org/obo/IAO_0000420\",\"http://purl.obolibrary.org/obo/IAO_0000421\"]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotator type\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotator type\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are \\\"natural kinds\\\" and the latter arbitrary collections of entities.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A denotator type indicates how a term should be interpreted from an ontological perspective.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Barry Smith, Werner Ceusters\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000409\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000409\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000409\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000409\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000410\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"universal\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000410\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000420\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined class\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000420\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000421\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"named class expression\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000421\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000409","definition":"A denotator type indicates how a term should be interpreted from an ontological perspective.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000102","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hasIndividuals":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000102","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"denotator type","http__//purl.obolibrary.org/obo/IAO_0000112":"The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are \"natural kinds\" and the latter arbitrary collections of entities.","http__//purl.obolibrary.org/obo/IAO_0000115":"A denotator type indicates how a term should be interpreted from an ontological perspective.","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Barry Smith, Werner Ceusters","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"denotator type","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000102","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000409","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000409","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"denotator type","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["denotator type","The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are \"natural kinds\" and the latter arbitrary collections of entities.","A denotator type indicates how a term should be interpreted from an ontological perspective.","Alan Ruttenberg","Barry Smith, Werner Ceusters","false"],"shortForm":"IAO_0000409","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000414\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000414\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measurement of mass quality\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000032\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000032\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measurement of mass quality\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/09/28 Alan Ruttenberg. Fucoidan-use-case\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"mass measurement datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/UO_0000002\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0000125\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000221\",\"isObsolete\":false}]}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"mass measurement datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measurement of mass quality\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/09/28 Alan Ruttenberg. Fucoidan-use-case\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000414\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"mass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000125\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000032\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scalar measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000032\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000039\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"mass unit\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000414\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000414\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000414\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000221\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measurement of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000221\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000414","definition":"A scalar measurement datum that is the result of measurement of mass quality","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000032","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000032","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A scalar measurement datum that is the result of measurement of mass quality","http__//purl.obolibrary.org/obo/IAO_0000116":"2009/09/28 Alan Ruttenberg. Fucoidan-use-case","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"mass measurement datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000032"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000414","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000414","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"mass measurement datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A scalar measurement datum that is the result of measurement of mass quality","2009/09/28 Alan Ruttenberg. Fucoidan-use-case","Person:Alan Ruttenberg","false"],"shortForm":"IAO_0000414","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000415\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000415\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses an assertion that is intended to be tested.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"hypothesis textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \\u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\\u0027, by Lowenthal et. al.PMID:19696660\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses an assertion that is intended to be tested.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/09/28 Alan Ruttenberg. Fucoidan-use-case\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"hypothesis textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"hypothesis textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"hypothesis textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \\u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\\u0027, by Lowenthal et. al.PMID:19696660\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses an assertion that is intended to be tested.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/09/28 Alan Ruttenberg. Fucoidan-use-case\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000415\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"PMID:19696660\":{\"url\":\"http://www.ncbi.nlm.nih.gov/pubmed/19696660\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"PMID:19696660\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000415\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000415\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000415\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000415","definition":"A textual entity that expresses an assertion that is intended to be tested.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"hypothesis textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\u0027, by Lowenthal et. al.PMID:19696660","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that expresses an assertion that is intended to be tested.","http__//purl.obolibrary.org/obo/IAO_0000116":"2009/09/28 Alan Ruttenberg. Fucoidan-use-case","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hypothesis textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000415","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000415","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hypothesis textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["hypothesis textual entity","that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\u0027, by Lowenthal et. al.PMID:19696660","A textual entity that expresses an assertion that is intended to be tested.","2009/09/28 Alan Ruttenberg. Fucoidan-use-case","Person:Alan Ruttenberg","false"],"shortForm":"IAO_0000415","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000416\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000416\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measuring a temporal interval\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000032\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000032\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measuring a temporal interval\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/09/28 Alan Ruttenberg. Fucoidan-use-case\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time measurement datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/UO_0000003\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000413\",\"isObsolete\":false}]}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time measurement datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measuring a temporal interval\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/09/28 Alan Ruttenberg. Fucoidan-use-case\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000416\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000032\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scalar measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000032\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000039\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"time unit\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000413\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is duration of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000413\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"IAO:0000416\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000416\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000416\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000416","definition":"A scalar measurement datum that is the result of measuring a temporal interval","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000032","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000032","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A scalar measurement datum that is the result of measuring a temporal interval","http__//purl.obolibrary.org/obo/IAO_0000116":"2009/09/28 Alan Ruttenberg. Fucoidan-use-case","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"time measurement datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000032"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000416","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000416","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"time measurement datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A scalar measurement datum that is the result of measuring a temporal interval","2009/09/28 Alan Ruttenberg. Fucoidan-use-case","Person:Alan Ruttenberg","false"],"shortForm":"IAO_0000416","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000422\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000422\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A textual entity that is used as directive to deliver something to a person, or organization\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A textual entity that is used as directive to deliver something to a person, or organization\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"2010-05-24 Alan Ruttenberg. Use label for the string representation. See issue https://github.com/information-artifact-ontology/IAO/issues/59\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"postal address\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"postal address\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A textual entity that is used as directive to deliver something to a person, or organization\"},{\"type\":[\"literal\"],\"value\":\"2010-05-24 Alan Ruttenberg. Use label for the string representation. See issue https://github.com/information-artifact-ontology/IAO/issues/59\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000422\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000422\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000422\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000422\"},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000422","definition":"A textual entity that is used as directive to deliver something to a person, or organization","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that is used as directive to deliver something to a person, or organization","http__//purl.obolibrary.org/obo/IAO_0000116":"2010-05-24 Alan Ruttenberg. Use label for the string representation. See issue https://github.com/information-artifact-ontology/IAO/issues/59","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"postal address","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000422","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000422","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"postal address","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A textual entity that is used as directive to deliver something to a person, or organization","2010-05-24 Alan Ruttenberg. Use label for the string representation. See issue https://github.com/information-artifact-ontology/IAO/issues/59","false"],"shortForm":"IAO_0000422","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000429\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000429\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"email address\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg 1/3/2012 - Provisional id, see issue at https://github.com/information-artifact-ontology/IAO/issues/130\\u0026thanks\\u003d130\\u0026ts\\u003d1325636583\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Chris Stoeckart\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"email address\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"email address\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"email address\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg 1/3/2012 - Provisional id, see issue at https://github.com/information-artifact-ontology/IAO/issues/130\\u0026thanks\\u003d130\\u0026ts\\u003d1325636583\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Chris Stoeckart\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000429\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000429\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000429\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000429\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000429","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"email address","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000116":"Alan Ruttenberg 1/3/2012 - Provisional id, see issue at https://github.com/information-artifact-ontology/IAO/issues/130\u0026thanks\u003d130\u0026ts\u003d1325636583","http__//purl.obolibrary.org/obo/IAO_0000117":["Person:Alan Ruttenberg","Person:Chris Stoeckart"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"email address","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000429","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000429","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"email address","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["email address","Alan Ruttenberg 1/3/2012 - Provisional id, see issue at https://github.com/information-artifact-ontology/IAO/issues/130\u0026thanks\u003d130\u0026ts\u003d1325636583","Person:Alan Ruttenberg","Person:Chris Stoeckart","false"],"shortForm":"IAO_0000429","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000442\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000442\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000023\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000023\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author role\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author role\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author role\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author role\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000442\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000442\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000442\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000442\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000023\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000442","definition":"A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000023","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000023","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000023","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000023","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"author role","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Melanie Courtot"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"author role","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000023","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000442","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000442","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"author role","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["author role","A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name.","PERSON: Alan Ruttenberg","PERSON: Melanie Courtot","false"],"shortForm":"IAO_0000442","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000443\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000443\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"value\":\"Person:Alan Ruttenberg\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"data item extraction from journal article\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000013\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"data item extraction from journal article\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000013\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000013\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing\"},{\"type\":[\"literal\"],\"value\":\"Person:Alan Ruttenberg\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000443\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000443\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000443\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000443\"},\"http://purl.obolibrary.org/obo/IAO_0000013\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"journal article\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000013\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000443","definition":"A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"data item extraction from journal article","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/OBI_0000011"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000443","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000443","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"data item extraction from journal article","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/IAO_0000013","http://purl.obolibrary.org/obo/IAO_0000027"],"searchableAnnotationValues":["A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing","Person:Alan Ruttenberg","false"],"shortForm":"IAO_0000443","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000444\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000444\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"https://en.wikipedia.org/wiki/Publishing\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/232\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"VEuPathDB\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publishing process\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publishing process\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000013\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000444\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"https://en.wikipedia.org/wiki/Publishing\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"VEuPathDB\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000444\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000312\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000312\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000444\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000444\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000444\"},\"http://purl.obolibrary.org/obo/IAO_0000013\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"journal article\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000013\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000444","definition":"A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free.","http__//purl.obolibrary.org/obo/IAO_0000117":"Person: Jie Zheng","http__//purl.obolibrary.org/obo/IAO_0000119":"https://en.wikipedia.org/wiki/Publishing","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/232","http__//purl.obolibrary.org/obo/IAO_0000234":"VEuPathDB","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"publishing process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000011","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000444","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000444","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"publishing process","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000013","searchableAnnotationValues":["A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free.","Person: Jie Zheng","https://en.wikipedia.org/wiki/Publishing","VEuPathDB","false"],"shortForm":"IAO_0000444","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000445\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000445\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that is in preparation for submission to be published.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that is in preparation for submission to be published.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jie Zheng\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"EFO_0001795 in preparation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/232\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"VEuPathDB\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document in preparation for publication\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document in preparation for publication\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that is in preparation for submission to be published.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jie Zheng\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"EFO_0001795 in preparation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"VEuPathDB\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000445\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000445\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000445\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000445\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000445","definition":"A document that is in preparation for submission to be published.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000310","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000310","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A document that is in preparation for submission to be published.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Jie Zheng","http__//purl.obolibrary.org/obo/IAO_0000119":"EFO_0001795 in preparation","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/232","http__//purl.obolibrary.org/obo/IAO_0000234":"VEuPathDB","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"document in preparation for publication","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000310","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000445","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000445","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"document in preparation for publication","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A document that is in preparation for submission to be published.","PERSON: Jie Zheng","EFO_0001795 in preparation","VEuPathDB","false"],"shortForm":"IAO_0000445","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000572\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000572\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a document is created or added to by including the specified input in it.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Recording the current temperature in a laboratory notebook. Writing a journal article. Updating a patient record in a database.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a document is created or added to by including the specified input in it.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"6/11/9: Edited at OBI workshop. We need to be able identify a child form of information artifact which corresponds to something enduring (not brain like). This used to be restricted to physical document or digital entity as the output, but that excludes e.g. an audio cassette tape\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Bjoern Peters\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"wikipedia http://en.wikipedia.org/wiki/Documenting\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"documenting\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"documenting\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Recording the current temperature in a laboratory notebook. Writing a journal article. Updating a patient record in a database.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a document is created or added to by including the specified input in it.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"6/11/9: Edited at OBI workshop. We need to be able identify a child form of information artifact which corresponds to something enduring (not brain like). This used to be restricted to physical document or digital entity as the output, but that excludes e.g. an audio cassette tape\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"wikipedia http://en.wikipedia.org/wiki/Documenting\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000572\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000572\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000572\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000572\"},\"http://en.wikipedia.org/wiki/Documenting\":{\"url\":\"http://en.wikipedia.org/wiki/Documenting\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Documenting\"},\"http://purl.obolibrary.org/obo/OBI_0000293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000572","definition":"A planned process in which a document is created or added to by including the specified input in it.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"Recording the current temperature in a laboratory notebook. Writing a journal article. Updating a patient record in a database.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process in which a document is created or added to by including the specified input in it.","http__//purl.obolibrary.org/obo/IAO_0000116":"6/11/9: Edited at OBI workshop. We need to be able identify a child form of information artifact which corresponds to something enduring (not brain like). This used to be restricted to physical document or digital entity as the output, but that excludes e.g. an audio cassette tape","http__//purl.obolibrary.org/obo/IAO_0000117":"Bjoern Peters","http__//purl.obolibrary.org/obo/IAO_0000119":"wikipedia http://en.wikipedia.org/wiki/Documenting","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"documenting","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/OBI_0000011"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000572","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000572","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"documenting","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000310"],"searchableAnnotationValues":["Recording the current temperature in a laboratory notebook. Writing a journal article. Updating a patient record in a database.","A planned process in which a document is created or added to by including the specified input in it.","6/11/9: Edited at OBI workshop. We need to be able identify a child form of information artifact which corresponds to something enduring (not brain like). This used to be restricted to physical document or digital entity as the output, but that excludes e.g. an audio cassette tape","Bjoern Peters","wikipedia http://en.wikipedia.org/wiki/Documenting","false"],"shortForm":"IAO_0000572","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000573\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000573\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A line graph is a type of graph created by connecting a series of data\\npoints together with a line.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"line graph\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A line graph is a type of graph created by connecting a series of data\\npoints together with a line.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"line chart\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wikipedia.org/wiki/Line_chart\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"line graph\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"line graph\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"line graph\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A line graph is a type of graph created by connecting a series of data\\npoints together with a line.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"line chart\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wikipedia.org/wiki/Line_chart\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000573\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://en.wikipedia.org/wiki/Line_chart\":{\"url\":\"http://en.wikipedia.org/wiki/Line_chart\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Line_chart\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000573\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000573\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000573\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000573","definition":"A line graph is a type of graph created by connecting a series of data\npoints together with a line.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"line graph","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A line graph is a type of graph created by connecting a series of data\npoints together with a line.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Chris Stoeckert","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000118":"line chart","http__//purl.obolibrary.org/obo/IAO_0000119":["GROUP:OBI","WEB: http://en.wikipedia.org/wiki/Line_chart"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"line graph","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000573","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000573","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"line graph","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["line graph","A line graph is a type of graph created by connecting a series of data\npoints together with a line.","PERSON:Chris Stoeckert","PERSON:Melanie Courtot","line chart","GROUP:OBI","WEB: http://en.wikipedia.org/wiki/Line_chart","false"],"shortForm":"IAO_0000573","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000574\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000574\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A new pubmed ID being created for a journal article, and the associated pubmed record containing information to the journal article. A license plate number registered at the DMV to be belonging to a specific vehicle and owner. Placing a barcode on a product and entering information in a database that this barcode is assigned.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-05-05: It is the CRID registry that assigns CRIDs, not the users of the registry.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"value\":\"assigning a CRID\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"assigning a centrally registered identifier\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"assigning a centrally registered identifier\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A new pubmed ID being created for a journal article, and the associated pubmed record containing information to the journal article. A license plate number registered at the DMV to be belonging to a specific vehicle and owner. Placing a barcode on a product and entering information in a database that this barcode is assigned.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-05-05: It is the CRID registry that assigns CRIDs, not the users of the registry.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"assigning a CRID\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000574\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000574\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000574\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000574\"},\"http://purl.obolibrary.org/obo/IAO_0000579\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier registry\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000579\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000577\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000577\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000574","definition":"A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"A new pubmed ID being created for a journal article, and the associated pubmed record containing information to the journal article. A license plate number registered at the DMV to be belonging to a specific vehicle and owner. Placing a barcode on a product and entering information in a database that this barcode is assigned.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity","http__//purl.obolibrary.org/obo/IAO_0000116":"2014-05-05: It is the CRID registry that assigns CRIDs, not the users of the registry.","http__//purl.obolibrary.org/obo/IAO_0000117":["Person:Alan Ruttenberg","Person:Bjoern Peters","Person:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000118":"assigning a CRID","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"assigning a centrally registered identifier","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/OBI_0000011"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000574","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000574","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"assigning a centrally registered identifier","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/IAO_0000577","http://purl.obolibrary.org/obo/IAO_0000579"],"searchableAnnotationValues":["A new pubmed ID being created for a journal article, and the associated pubmed record containing information to the journal article. A license plate number registered at the DMV to be belonging to a specific vehicle and owner. Placing a barcode on a product and entering information in a database that this barcode is assigned.","A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity","2014-05-05: It is the CRID registry that assigns CRIDs, not the users of the registry.","Person:Alan Ruttenberg","Person:Bjoern Peters","Person:Melanie Courtot","assigning a CRID","false"],"shortForm":"IAO_0000574","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000575\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000575\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a CRID registry associates an information content entity with a CRID symbol\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"value\":\"Articles in Pubmed are reviewed by curators who add MESH terms to the Pubmed records in order to categorize them better and improve the ability to search for them. \"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a CRID registry associates an information content entity with a CRID symbol\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"value\":\"associating information with a CRID in the CRID registry\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"associating information with a centrally registered identifier in its registry\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"associating information with a centrally registered identifier in its registry\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Articles in Pubmed are reviewed by curators who add MESH terms to the Pubmed records in order to categorize them better and improve the ability to search for them. \"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a CRID registry associates an information content entity with a CRID symbol\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"associating information with a CRID in the CRID registry\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000575\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000579\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier registry\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000579\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000577\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000577\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000575\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000575\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000575\"},\"http://purl.obolibrary.org/obo/OBI_0000293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000575","definition":"A planned process in which a CRID registry associates an information content entity with a CRID symbol","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"Articles in Pubmed are reviewed by curators who add MESH terms to the Pubmed records in order to categorize them better and improve the ability to search for them. ","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process in which a CRID registry associates an information content entity with a CRID symbol","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000118":"associating information with a CRID in the CRID registry","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"associating information with a centrally registered identifier in its registry","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/OBI_0000011"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000575","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000575","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"associating information with a centrally registered identifier in its registry","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000577","http://purl.obolibrary.org/obo/IAO_0000579"],"searchableAnnotationValues":["Articles in Pubmed are reviewed by curators who add MESH terms to the Pubmed records in order to categorize them better and improve the ability to search for them. ","A planned process in which a CRID registry associates an information content entity with a CRID symbol","PERSON:Alan Ruttenberg","associating information with a CRID in the CRID registry","false"],"shortForm":"IAO_0000575","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000576\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000576\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"MC, 20101124: deprecated following discussion at IAO call 20101124. Term was deemed not necessary - no use case for now.\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_establishing a CRID registry\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_establishing a CRID registry\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.\"},{\"type\":[\"literal\"],\"value\":\"MC, 20101124: deprecated following discussion at IAO call 20101124. Term was deemed not necessary - no use case for now.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000576\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000576\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000576\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000576\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000576","definition":"a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.","http__//purl.obolibrary.org/obo/IAO_0000116":"MC, 20101124: deprecated following discussion at IAO call 20101124. Term was deemed not necessary - no use case for now.","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_establishing a CRID registry","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000576","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000576","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_establishing a CRID registry","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.","MC, 20101124: deprecated following discussion at IAO call 20101124. Term was deemed not necessary - no use case for now.","false"],"shortForm":"IAO_0000576","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000577\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\\u0027s registry.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000578\",\"http://purl.obolibrary.org/obo/IAO_0020000\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The sentence \\\"The article has Pubmed ID 12345.\\\" contains a CRID that has two parts: one part is the CRID symbol, which is \\u002712345\\u0027; the other part denotes the CRID registry, which is Pubmed.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\\u0027s registry.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"value\":\"CRID symbol\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Original proposal from Bjoern, discussions at IAO calls\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier symbol\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier symbol\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000574\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000575\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000580\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false}],\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The sentence \\\"The article has Pubmed ID 12345.\\\" contains a CRID that has two parts: one part is the CRID symbol, which is \\u002712345\\u0027; the other part denotes the CRID registry, which is Pubmed.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\\u0027s registry.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"CRID symbol\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Original proposal from Bjoern, discussions at IAO calls\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000577\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000578\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000578\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000574\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"assigning a centrally registered identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000574\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000575\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"associating information with a centrally registered identifier in its registry\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000575\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000577\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000577\"},\"http://purl.obolibrary.org/obo/OBI_0000293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000580\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"looking up a centrally registered identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000580\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000577","definition":"A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\u0027s registry.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000028","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000578","http://purl.obolibrary.org/obo/IAO_0020000"],"hierarchicalParent":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000578"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"The sentence \"The article has Pubmed ID 12345.\" contains a CRID that has two parts: one part is the CRID symbol, which is \u002712345\u0027; the other part denotes the CRID registry, which is Pubmed.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\u0027s registry.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Bill Hogan","PERSON: Bjoern Peters","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000118":"CRID symbol","http__//purl.obolibrary.org/obo/IAO_0000119":"Original proposal from Bjoern, discussions at IAO calls","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"centrally registered identifier symbol","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000028"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000577","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000577","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"centrally registered identifier symbol","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/IAO_0000574","http://purl.obolibrary.org/obo/IAO_0000575","http://purl.obolibrary.org/obo/IAO_0000578","http://purl.obolibrary.org/obo/IAO_0000580"],"relatedTo":"http://purl.obolibrary.org/obo/IAO_0000578","searchableAnnotationValues":["The sentence \"The article has Pubmed ID 12345.\" contains a CRID that has two parts: one part is the CRID symbol, which is \u002712345\u0027; the other part denotes the CRID registry, which is Pubmed.","A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\u0027s registry.","PERSON: Alan Ruttenberg","PERSON: Bill Hogan","PERSON: Bjoern Peters","PERSON: Melanie Courtot","CRID symbol","Original proposal from Bjoern, discussions at IAO calls","false"],"shortForm":"IAO_0000577","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000578\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The sentence \\\"The article has Pubmed ID 12345.\\\" contains a CRID that has two parts: one part is the CRID symbol, which is \\u002712345\\u0027; the other part denotes the CRID registry, which is Pubmed.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-05-05: In defining this term we take no position on what the CRID denotes. In particular do not assume it denotes a *record* in the CRID registry (since the registry might not have \\u0027records\\u0027).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan, IAO call 20101124: potentially the CRID denotes the instance it was associated with during creation.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Note, IAO call 20101124: URIs are not always CRID, as not centrally registered. We acknowledge that CRID is a subset of a larger identifier class, but this subset fulfills our current needs. OBI PURLs are CRID as they are registered with OCLC. UPCs (Universal Product Codes from AC Nielsen)are not CRID as they are not centrally registered.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"value\":\"CRID\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Original proposal from Bjoern, discussions at IAO calls\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false},\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The sentence \\\"The article has Pubmed ID 12345.\\\" contains a CRID that has two parts: one part is the CRID symbol, which is \\u002712345\\u0027; the other part denotes the CRID registry, which is Pubmed.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-05-05: In defining this term we take no position on what the CRID denotes. In particular do not assume it denotes a *record* in the CRID registry (since the registry might not have \\u0027records\\u0027).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan, IAO call 20101124: potentially the CRID denotes the instance it was associated with during creation.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Note, IAO call 20101124: URIs are not always CRID, as not centrally registered. We acknowledge that CRID is a subset of a larger identifier class, but this subset fulfills our current needs. OBI PURLs are CRID as they are registered with OCLC. UPCs (Universal Product Codes from AC Nielsen)are not CRID as they are not centrally registered.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"CRID\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Original proposal from Bjoern, discussions at IAO calls\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000578\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000579\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier registry\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000579\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000577\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000577\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000578\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000578\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000219\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000578","definition":"An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0020000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0020000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"The sentence \"The article has Pubmed ID 12345.\" contains a CRID that has two parts: one part is the CRID symbol, which is \u002712345\u0027; the other part denotes the CRID registry, which is Pubmed.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs.","http__//purl.obolibrary.org/obo/IAO_0000116":["2014-05-05: In defining this term we take no position on what the CRID denotes. In particular do not assume it denotes a *record* in the CRID registry (since the registry might not have \u0027records\u0027).","Alan, IAO call 20101124: potentially the CRID denotes the instance it was associated with during creation.","Note, IAO call 20101124: URIs are not always CRID, as not centrally registered. We acknowledge that CRID is a subset of a larger identifier class, but this subset fulfills our current needs. OBI PURLs are CRID as they are registered with OCLC. UPCs (Universal Product Codes from AC Nielsen)are not CRID as they are not centrally registered."],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Bill Hogan","PERSON: Bjoern Peters","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000118":"CRID","http__//purl.obolibrary.org/obo/IAO_0000119":"Original proposal from Bjoern, discussions at IAO calls","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"centrally registered identifier","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0020000"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000578","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000578","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"centrally registered identifier","numDescendants":"1.0","numHierarchicalDescendants":"2.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000577","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000577","searchableAnnotationValues":["The sentence \"The article has Pubmed ID 12345.\" contains a CRID that has two parts: one part is the CRID symbol, which is \u002712345\u0027; the other part denotes the CRID registry, which is Pubmed.","An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs.","2014-05-05: In defining this term we take no position on what the CRID denotes. In particular do not assume it denotes a *record* in the CRID registry (since the registry might not have \u0027records\u0027).","Alan, IAO call 20101124: potentially the CRID denotes the instance it was associated with during creation.","Note, IAO call 20101124: URIs are not always CRID, as not centrally registered. We acknowledge that CRID is a subset of a larger identifier class, but this subset fulfills our current needs. OBI PURLs are CRID as they are registered with OCLC. UPCs (Universal Product Codes from AC Nielsen)are not CRID as they are not centrally registered.","PERSON: Alan Ruttenberg","PERSON: Bill Hogan","PERSON: Bjoern Peters","PERSON: Melanie Courtot","CRID","Original proposal from Bjoern, discussions at IAO calls","false"],"shortForm":"IAO_0000578","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000579\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000100\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0020020\"],\"directParent\":[\"http://purl.obolibrary.org/obo/IAO_0000100\",\"http://purl.obolibrary.org/obo/IAO_0020020\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000100\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0020020\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/IAO_0000100\",\"http://purl.obolibrary.org/obo/IAO_0020020\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PubMed is a CRID registry. It has a code set of PubMed identifiers associated with journal articles. \",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"value\":\"CRID registry\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Original proposal from Bjoern, discussions at IAO calls\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier registry\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000100\",\"http://purl.obolibrary.org/obo/IAO_0020020\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier registry\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000574\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000575\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000580\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PubMed is a CRID registry. It has a code set of PubMed identifiers associated with journal articles. \",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"CRID registry\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Original proposal from Bjoern, discussions at IAO calls\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000579\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000579\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000579\"},\"http://purl.obolibrary.org/obo/IAO_0020020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"code set\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020020\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000574\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"assigning a centrally registered identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000574\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000575\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"associating information with a centrally registered identifier in its registry\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000575\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000580\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"looking up a centrally registered identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000580\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data set\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000100\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000579","definition":"A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0020020"],"directParent":["http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0020020"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0020020"],"hierarchicalParent":["http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0020020"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"PubMed is a CRID registry. It has a code set of PubMed identifiers associated with journal articles. ","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process.","http__//purl.obolibrary.org/obo/IAO_0000117":["Justin Whorton","PERSON: Alan Ruttenberg","PERSON: Bill Hogan","PERSON: Bjoern Peters","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000118":"CRID registry","http__//purl.obolibrary.org/obo/IAO_0000119":"Original proposal from Bjoern, discussions at IAO calls","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/237","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"centrally registered identifier registry","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0020020"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000579","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000579","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"centrally registered identifier registry","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/IAO_0000574","http://purl.obolibrary.org/obo/IAO_0000575","http://purl.obolibrary.org/obo/IAO_0000580"],"searchableAnnotationValues":["PubMed is a CRID registry. It has a code set of PubMed identifiers associated with journal articles. ","A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process.","Justin Whorton","PERSON: Alan Ruttenberg","PERSON: Bill Hogan","PERSON: Bjoern Peters","PERSON: Melanie Courtot","CRID registry","Original proposal from Bjoern, discussions at IAO calls","https://github.com/information-artifact-ontology/IAO/issues/237","false"],"shortForm":"IAO_0000579","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000580\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000580\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"value\":\"Going to the PubMed website and entering a PubMed ID in order to retrieve the Pubmed information associated with that ID. \"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"value\":\"looking up a CRID\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"looking up a centrally registered identifier\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"looking up a centrally registered identifier\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Going to the PubMed website and entering a PubMed ID in order to retrieve the Pubmed information associated with that ID. \"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"looking up a CRID\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000580\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000579\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier registry\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000579\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000577\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000577\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000580\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000580\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000580\"},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000580","definition":"A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"Going to the PubMed website and entering a PubMed ID in order to retrieve the Pubmed information associated with that ID. ","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Bill Hogan","PERSON: Bjoern Peters","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000118":"looking up a CRID","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"looking up a centrally registered identifier","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/OBI_0000011"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000580","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000580","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"looking up a centrally registered identifier","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/IAO_0000577","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000579"],"searchableAnnotationValues":["Going to the PubMed website and entering a PubMed ID in order to retrieve the Pubmed information associated with that ID. ","A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol","PERSON: Alan Ruttenberg","PERSON: Bill Hogan","PERSON: Bjoern Peters","PERSON: Melanie Courtot","looking up a CRID","false"],"shortForm":"IAO_0000580","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000582\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000582\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000109\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000109\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time stamped measurement datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000109\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000581\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000416\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000583\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000109\",\"isObsolete\":false}]}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time stamped measurement datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000584\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000582\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000582\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000582\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000582\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000582\"},\"http://purl.obolibrary.org/obo/IAO_0000416\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000416\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000581\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has time stamp\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000581\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000583\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000583\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000584\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time sampled measurement data set\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000584\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000582","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000109","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000109","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"time stamped measurement datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000109"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000582","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000582","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"time stamped measurement datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000584","searchableAnnotationValues":"false","shortForm":"IAO_0000582","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000584\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000584\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000100\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000100\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000100\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000100\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pmid:20604925 - time-lapse live cell microscopy\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental time series\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time sampled measurement data set\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000100\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000582\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time sampled measurement data set\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000582\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000582\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pmid:20604925 - time-lapse live cell microscopy\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental time series\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000584\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000584\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000584\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000584\"},\"http://purl.obolibrary.org/obo/IAO_0000582\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time stamped measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000582\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data set\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000100\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000584","definition":"A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000100","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000100","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"pmid:20604925 - time-lapse live cell microscopy","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time.","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000118":"experimental time series","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"time sampled measurement data set","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000100"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000584","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000584","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"time sampled measurement data set","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000582","searchableAnnotationValues":["pmid:20604925 - time-lapse live cell microscopy","A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time.","Alan Ruttenberg","experimental time series","false"],"shortForm":"IAO_0000584","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000590\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000590\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that denotes a particular in reality.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"written name\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\\\"Bill Clinton\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\\\"The Eiffel Tower\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\\\"United States of America\\\"\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that denotes a particular in reality.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/114\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The qualifier \\\"written\\\" is to set it apart from spoken names. Also, note the restrictions to particulars. We are not naming universals. We could however, be naming, attributive collections which are particulars, so \\\"All people located in the boundaries of the city of Little Rock, AR on June 18, 2011 at 9:50a CDT\\\" would be a name.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"written name\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"written name\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"written name\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\\\"Bill Clinton\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\\\"The Eiffel Tower\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\\\"United States of America\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that denotes a particular in reality.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/114\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The qualifier \\\"written\\\" is to set it apart from spoken names. Also, note the restrictions to particulars. We are not naming universals. We could however, be naming, attributive collections which are particulars, so \\\"All people located in the boundaries of the city of Little Rock, AR on June 18, 2011 at 9:50a CDT\\\" would be a name.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000590\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000590\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000590\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000590\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000590","definition":"A textual entity that denotes a particular in reality.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"written name","http__//purl.obolibrary.org/obo/IAO_0000112":["\"Bill Clinton\"","\"The Eiffel Tower\"","\"United States of America\""],"http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that denotes a particular in reality.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Hogan","http__//purl.obolibrary.org/obo/IAO_0000119":"https://github.com/information-artifact-ontology/IAO/issues/114","http__//purl.obolibrary.org/obo/IAO_0000232":"The qualifier \"written\" is to set it apart from spoken names. Also, note the restrictions to particulars. We are not naming universals. We could however, be naming, attributive collections which are particulars, so \"All people located in the boundaries of the city of Little Rock, AR on June 18, 2011 at 9:50a CDT\" would be a name.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"written name","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000590","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000590","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"written name","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["written name","\"Bill Clinton\"","\"The Eiffel Tower\"","\"United States of America\"","A textual entity that denotes a particular in reality.","PERSON: Bill Hogan","https://github.com/information-artifact-ontology/IAO/issues/114","The qualifier \"written\" is to set it apart from spoken names. Also, note the restrictions to particulars. We are not naming universals. We could however, be naming, attributive collections which are particulars, so \"All people located in the boundaries of the city of Little Rock, AR on June 18, 2011 at 9:50a CDT\" would be a name.","false"],"shortForm":"IAO_0000590","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000591\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000591\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software method\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software method\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000591\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000591\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000591\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000591\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000591","definition":"A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000010","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000010","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Melanie Courtot","PERSON: Michel Dumontier"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://github.com/information-artifact-ontology/IAO/issues/80","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"software method","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000010","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000591","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000591","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"software method","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task.","PERSON: Melanie Courtot","PERSON: Michel Dumontier","https://github.com/information-artifact-ontology/IAO/issues/80","false"],"shortForm":"IAO_0000591","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000592\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000592\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software module is software composed of a collection of software methods.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software module is software composed of a collection of software methods.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanei Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software module is software composed of a collection of software methods.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanei Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000592\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000592\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000592\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000592\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000592","definition":"A software module is software composed of a collection of software methods.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000010","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000010","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A software module is software composed of a collection of software methods.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Melanei Courtot","PERSON: Michel Dumontier"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://github.com/information-artifact-ontology/IAO/issues/80","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"software module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000010","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000592","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000592","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"software module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A software module is software composed of a collection of software methods.","PERSON: Melanei Courtot","PERSON: Michel Dumontier","https://github.com/information-artifact-ontology/IAO/issues/80","false"],"shortForm":"IAO_0000592","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000593\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000593\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software library\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software library\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000593\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000593\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000593\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000593\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000593","definition":"A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000010","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000010","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Melanie Courtot","PERSON: Michel Dumontier"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://github.com/information-artifact-ontology/IAO/issues/80","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"software library","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000010","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000593","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000593","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"software library","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application.","PERSON: Melanie Courtot","PERSON: Michel Dumontier","https://github.com/information-artifact-ontology/IAO/issues/80","false"],"shortForm":"IAO_0000593","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000594\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000594\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software application is software that can be directly executed by some processing unit.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software application is software that can be directly executed by some processing unit.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software application\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software application\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software application is software that can be directly executed by some processing unit.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000594\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000594\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000594\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000594\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000594","definition":"A software application is software that can be directly executed by some processing unit.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000010","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000010","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A software application is software that can be directly executed by some processing unit.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Melanie Courtot","PERSON: Michel Dumontier"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://github.com/information-artifact-ontology/IAO/issues/80","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"software application","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000010","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000594","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000594","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"software application","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A software application is software that can be directly executed by some processing unit.","PERSON: Melanie Courtot","PERSON: Michel Dumontier","https://github.com/information-artifact-ontology/IAO/issues/80","false"],"shortForm":"IAO_0000594","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000595\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000595\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software script is software whose instructions can be executed using a software interpreter.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software script is software whose instructions can be executed using a software interpreter.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software script\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software script\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software script is software whose instructions can be executed using a software interpreter.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000595\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000595\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000595\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000595\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000595","definition":"A software script is software whose instructions can be executed using a software interpreter.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000010","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000010","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A software script is software whose instructions can be executed using a software interpreter.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Melanie Courtot","PERSON: Michel Dumontier"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://github.com/information-artifact-ontology/IAO/issues/80","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"software script","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000010","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000595","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000595","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"software script","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A software script is software whose instructions can be executed using a software interpreter.","PERSON: Melanie Courtot","PERSON: Michel Dumontier","https://github.com/information-artifact-ontology/IAO/issues/80","false"],"shortForm":"IAO_0000595","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000605\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000605\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity listing abbreviations and their expansions that are used in a document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\\n\\nBAC: Bacterial artificial chromosome; CR: Calretinin; GFAP: Glial fibrillary acidic protein; MAP: Microtubule-associated protein; MRI: Magnetic resonance imaging; NSC: Neural stem cell; PDA: Patent ductus arteriosus; PMG: Polymicrogyria; PNH: Periventricular nodular heterotopia; VSD: Ventricular septal defect.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity listing abbreviations and their expansions that are used in a document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000606\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000605\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\\n\\nBAC: Bacterial artificial chromosome; CR: Calretinin; GFAP: Glial fibrillary acidic protein; MAP: Microtubule-associated protein; MRI: Magnetic resonance imaging; NSC: Neural stem cell; PDA: Patent ductus arteriosus; PMG: Polymicrogyria; PNH: Periventricular nodular heterotopia; VSD: Ventricular septal defect.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity listing abbreviations and their expansions that are used in a document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000605\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000605\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000605\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000605\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000606\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000606\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000605","definition":"A textual entity listing abbreviations and their expansions that are used in a document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"abbreviation textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\n\nBAC: Bacterial artificial chromosome; CR: Calretinin; GFAP: Glial fibrillary acidic protein; MAP: Microtubule-associated protein; MRI: Magnetic resonance imaging; NSC: Neural stem cell; PDA: Patent ductus arteriosus; PMG: Polymicrogyria; PNH: Periventricular nodular heterotopia; VSD: Ventricular septal defect.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity listing abbreviations and their expansions that are used in a document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"abbreviation textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000605","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000605","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"abbreviation textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000606","searchableAnnotationValues":["abbreviation textual entity","From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\n\nBAC: Bacterial artificial chromosome; CR: Calretinin; GFAP: Glial fibrillary acidic protein; MAP: Microtubule-associated protein; MRI: Magnetic resonance imaging; NSC: Neural stem cell; PDA: Patent ductus arteriosus; PMG: Polymicrogyria; PNH: Periventricular nodular heterotopia; VSD: Ventricular septal defect.","A textual entity listing abbreviations and their expansions that are used in a document.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000605","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000606\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000606\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document where abbreviations and their long-forms used within the document are listed.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027abbreviations\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document where abbreviations and their long-forms used within the document are listed.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation and acronyms\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation list\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations and acronyms\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations list\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations used\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definitions for abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"list of abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"list of abbreviations used\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"non-standard abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"nonstandard abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"nonstandard abbreviations and acronyms\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":[\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"https://github.com/information-artifact-ontology/IAO/issues/234\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000605\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000605\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000605\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027abbreviations\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document where abbreviations and their long-forms used within the document are listed.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation and acronyms\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation list\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations and acronyms\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations list\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations used\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definitions for abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"list of abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"list of abbreviations used\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"non-standard abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"nonstandard abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"nonstandard abbreviations and acronyms\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000606\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000606\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000606\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000606\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000605\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000605\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000606","definition":"A part of a document where abbreviations and their long-forms used within the document are listed.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"abbreviations section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027abbreviations\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document where abbreviations and their long-forms used within the document are listed.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["abbreviation and acronyms","abbreviation list","abbreviations","abbreviations and acronyms","abbreviations list","abbreviations used","definitions for abbreviations","list of abbreviations","list of abbreviations used","non-standard abbreviations","nonstandard abbreviations","nonstandard abbreviations and acronyms"],"http__//purl.obolibrary.org/obo/IAO_0000233":["https://github.com/information-artifact-ontology/IAO/issues/183","https://github.com/information-artifact-ontology/IAO/issues/234"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"abbreviations section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000606","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000606","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"abbreviations section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000605","searchableAnnotationValues":["abbreviations section","The section labelled \u0027abbreviations\u0027 in a typical scientific journal article.","A part of a document where abbreviations and their long-forms used within the document are listed.","PERSON: Bill Baumgartner","abbreviation and acronyms","abbreviation list","abbreviations","abbreviations and acronyms","abbreviations list","abbreviations used","definitions for abbreviations","list of abbreviations","list of abbreviations used","non-standard abbreviations","nonstandard abbreviations","nonstandard abbreviations and acronyms","false"],"shortForm":"IAO_0000606","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000607\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000607\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the authors that provides biographical information and may discuss how the authors\\u0027 professional experiences are relevant to the work described in the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027author information\\u0027 in a typical scientific journal article, e.g. in Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the authors that provides biographical information and may discuss how the authors\\u0027 professional experiences are relevant to the work described in the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors’ information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"biographies\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contributor information\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":[\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"https://github.com/information-artifact-ontology/IAO/issues/234\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000608\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000608\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000608\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027author information\\u0027 in a typical scientific journal article, e.g. in Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the authors that provides biographical information and may discuss how the authors\\u0027 professional experiences are relevant to the work described in the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors’ information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"biographies\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contributor information\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000607\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000607\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000607\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000607\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000608\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000608\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000607","definition":"A part of a document about the authors that provides biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"author information section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027author information\u0027 in a typical scientific journal article, e.g. in Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about the authors that provides biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["author information","authors’ information","biographies","contributor information"],"http__//purl.obolibrary.org/obo/IAO_0000233":["https://github.com/information-artifact-ontology/IAO/issues/183","https://github.com/information-artifact-ontology/IAO/issues/234"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"author information section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000607","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000607","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"author information section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000608","searchableAnnotationValues":["author information section","The section labelled \u0027author information\u0027 in a typical scientific journal article, e.g. in Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/)","A part of a document about the authors that provides biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document.","PERSON: Bill Baumgartner","author information","authors’ information","biographies","contributor information","false"],"shortForm":"IAO_0000607","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000608\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000608\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\\u0027 professional experiences are relevant to the work described in the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/):\\n\\nIT [the author] is the lead paediatrician for ADHD services in East Hertfordshire, UK, where she runs a weekly joint ADHD clinic with the Child and Adolescent psychiatrist and works within an ADHD specialist team. IT also sees children with other neurodisability issues who may have comorbid ADHD, where the presentation may be more complex and challenging to manage. IT has vast experience in managing children with complex ADHD. She has 18 years of experience in paediatrics and also has extensive experience in the use of psychopharmacologic agents in managing children with ADHD.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\\u0027 professional experiences are relevant to the work described in the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000607\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000608\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/):\\n\\nIT [the author] is the lead paediatrician for ADHD services in East Hertfordshire, UK, where she runs a weekly joint ADHD clinic with the Child and Adolescent psychiatrist and works within an ADHD specialist team. IT also sees children with other neurodisability issues who may have comorbid ADHD, where the presentation may be more complex and challenging to manage. IT has vast experience in managing children with complex ADHD. She has 18 years of experience in paediatrics and also has extensive experience in the use of psychopharmacologic agents in managing children with ADHD.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\\u0027 professional experiences are relevant to the work described in the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000608\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000608\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000608\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000608\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000607\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000607\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000608","definition":"A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"author information textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/):\n\nIT [the author] is the lead paediatrician for ADHD services in East Hertfordshire, UK, where she runs a weekly joint ADHD clinic with the Child and Adolescent psychiatrist and works within an ADHD specialist team. IT also sees children with other neurodisability issues who may have comorbid ADHD, where the presentation may be more complex and challenging to manage. IT has vast experience in managing children with complex ADHD. She has 18 years of experience in paediatrics and also has extensive experience in the use of psychopharmacologic agents in managing children with ADHD.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"author information textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000608","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000608","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"author information textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000607","searchableAnnotationValues":["author information textual entity","From Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/):\n\nIT [the author] is the lead paediatrician for ADHD services in East Hertfordshire, UK, where she runs a weekly joint ADHD clinic with the Child and Adolescent psychiatrist and works within an ADHD specialist team. IT also sees children with other neurodisability issues who may have comorbid ADHD, where the presentation may be more complex and challenging to manage. IT has vast experience in managing children with complex ADHD. She has 18 years of experience in paediatrics and also has extensive experience in the use of psychopharmacologic agents in managing children with ADHD.","A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000608","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000609\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000609\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027synopsis\\u0027 in a typical scientific journal article, e.g. in Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"summary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"synopsis\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000610\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000610\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000610\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027synopsis\\u0027 in a typical scientific journal article, e.g. in Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"summary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"synopsis\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000609\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000609\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000609\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000609\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000610\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000610\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000609","definition":"A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"author summary section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027synopsis\u0027 in a typical scientific journal article, e.g. in Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["author summary","summary","synopsis"],"http__//purl.obolibrary.org/obo/IAO_0000119":"Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"author summary section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000609","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000609","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"author summary section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000610","searchableAnnotationValues":["author summary section","The section labelled \u0027synopsis\u0027 in a typical scientific journal article, e.g. in Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/)","A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers.","PERSON: Bill Baumgartner","author summary","summary","synopsis","Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)","false"],"shortForm":"IAO_0000609","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000610\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000610\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/):\\n\\n\\nThe search for genetic risk factors for common human diseases often relies on the use of linkage and association studies to establish correlation between genomic markers and disease risk. These studies require additional functional evaluation of candidate genes, including their possible interaction with diet and environment. The number of candidate genes is typically large and the development of appropriate genetic tools in mammalian systems is slow. By contrast, large-scale genetic screens, using widely available genetic tools, are routinely conducted in the fruit fly Drosophila melanogaster. In this study, we used Drosophila to screen candidate genes identified in human genome-wide scans as associated with risk of metabolic abnormalities such as type 2 diabetes. We show that a number of human candidate genes have fly orthologs that play an important role in Drosophila tolerance to high dietary sucrose. We further explored some of the specific metabolic abnormalities that can result when these genes’ activities are reduced in flies, focusing on a gene we call dHHEX (CG7056), the fly ortholog of human HHEX.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000609\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000610\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/):\\n\\n\\nThe search for genetic risk factors for common human diseases often relies on the use of linkage and association studies to establish correlation between genomic markers and disease risk. These studies require additional functional evaluation of candidate genes, including their possible interaction with diet and environment. The number of candidate genes is typically large and the development of appropriate genetic tools in mammalian systems is slow. By contrast, large-scale genetic screens, using widely available genetic tools, are routinely conducted in the fruit fly Drosophila melanogaster. In this study, we used Drosophila to screen candidate genes identified in human genome-wide scans as associated with risk of metabolic abnormalities such as type 2 diabetes. We show that a number of human candidate genes have fly orthologs that play an important role in Drosophila tolerance to high dietary sucrose. We further explored some of the specific metabolic abnormalities that can result when these genes’ activities are reduced in flies, focusing on a gene we call dHHEX (CG7056), the fly ortholog of human HHEX.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000610\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000609\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000609\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000610\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000610\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000610\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000610","definition":"A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"author summary textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/):\n\n\nThe search for genetic risk factors for common human diseases often relies on the use of linkage and association studies to establish correlation between genomic markers and disease risk. These studies require additional functional evaluation of candidate genes, including their possible interaction with diet and environment. The number of candidate genes is typically large and the development of appropriate genetic tools in mammalian systems is slow. By contrast, large-scale genetic screens, using widely available genetic tools, are routinely conducted in the fruit fly Drosophila melanogaster. In this study, we used Drosophila to screen candidate genes identified in human genome-wide scans as associated with risk of metabolic abnormalities such as type 2 diabetes. We show that a number of human candidate genes have fly orthologs that play an important role in Drosophila tolerance to high dietary sucrose. We further explored some of the specific metabolic abnormalities that can result when these genes’ activities are reduced in flies, focusing on a gene we call dHHEX (CG7056), the fly ortholog of human HHEX.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000119":"Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"author summary textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000610","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000610","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"author summary textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000609","searchableAnnotationValues":["author summary textual entity","From Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/):\n\n\nThe search for genetic risk factors for common human diseases often relies on the use of linkage and association studies to establish correlation between genomic markers and disease risk. These studies require additional functional evaluation of candidate genes, including their possible interaction with diet and environment. The number of candidate genes is typically large and the development of appropriate genetic tools in mammalian systems is slow. By contrast, large-scale genetic screens, using widely available genetic tools, are routinely conducted in the fruit fly Drosophila melanogaster. In this study, we used Drosophila to screen candidate genes identified in human genome-wide scans as associated with risk of metabolic abnormalities such as type 2 diabetes. We show that a number of human candidate genes have fly orthologs that play an important role in Drosophila tolerance to high dietary sucrose. We further explored some of the specific metabolic abnormalities that can result when these genes’ activities are reduced in flies, focusing on a gene we call dHHEX (CG7056), the fly ortholog of human HHEX.","A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).","PERSON: Bill Baumgartner","Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).","false"],"shortForm":"IAO_0000610","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000611\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000611\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027availability and requirements\\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability of data\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data archiving\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data availability\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data availability statement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data sharing statement\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":[\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"https://github.com/information-artifact-ontology/IAO/issues/234\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000612\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000612\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000612\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027availability and requirements\\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability of data\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data archiving\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data availability\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data availability statement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data sharing statement\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000611\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000612\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000612\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000611\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000611\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000611\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000611","definition":"A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"availability section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027availability and requirements\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["availability","availability of data","data archiving","data availability","data availability statement","data sharing statement"],"http__//purl.obolibrary.org/obo/IAO_0000233":["https://github.com/information-artifact-ontology/IAO/issues/183","https://github.com/information-artifact-ontology/IAO/issues/234"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"availability section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000611","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000611","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"availability section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000612","searchableAnnotationValues":["availability section","The section labelled \u0027availability and requirements\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).","A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained.","PERSON: Bill Baumgartner","availability","availability of data","data archiving","data availability","data availability statement","data sharing statement","false"],"shortForm":"IAO_0000611","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000612\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000612\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\\n\\nProject home page:http://krux.googlecode.com\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000611\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000612\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\\n\\nProject home page:http://krux.googlecode.com\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000612\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000611\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000611\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000612\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000612\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000612\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000612","definition":"A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"availability textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\n\nProject home page:http://krux.googlecode.com","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"availability textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000612","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000612","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"availability textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000611","searchableAnnotationValues":["availability textual entity","From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\n\nProject home page:http://krux.googlecode.com","A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000612","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000613\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000613\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the medical history of a specific patient as it relates to the topic of the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027case report\\u0027 in a typical scientific journal article, e.g. in Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the medical history of a specific patient as it relates to the topic of the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case presentation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000614\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000614\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000614\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027case report\\u0027 in a typical scientific journal article, e.g. in Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the medical history of a specific patient as it relates to the topic of the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case presentation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000613\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000613\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000613\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000613\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000614\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000614\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000613","definition":"A part of a document about the medical history of a specific patient as it relates to the topic of the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"case report section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027case report\u0027 in a typical scientific journal article, e.g. in Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about the medical history of a specific patient as it relates to the topic of the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["case presentation","case report"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"case report section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000613","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000613","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"case report section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000614","searchableAnnotationValues":["case report section","The section labelled \u0027case report\u0027 in a typical scientific journal article, e.g. in Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/)","A part of a document about the medical history of a specific patient as it relates to the topic of the document.","PERSON: Bill Baumgartner","case presentation","case report","false"],"shortForm":"IAO_0000613","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000614\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000614\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses a detailed account of a portion of the medical history for a specific patient.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/):\\n\\nThe patient is a 50-year-old man. His medical history was not contributory. At the age of 37 years, he complained of persistent fatigue and dyspnoea even for modest efforts and oedema of lower limbs. The patient was examined at the department of internal medicine of the local hospital, and hospitalised with a diagnosis of dilated cardiomyopathy probably consequence of a myocarditis process. Soon after he was transferred to the cardiologic department of the regional hospital, and pharmacologically treated for heart failure and pulmonary hypertension.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses a detailed account of a portion of the medical history for a specific patient.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000613\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000614\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/):\\n\\nThe patient is a 50-year-old man. His medical history was not contributory. At the age of 37 years, he complained of persistent fatigue and dyspnoea even for modest efforts and oedema of lower limbs. The patient was examined at the department of internal medicine of the local hospital, and hospitalised with a diagnosis of dilated cardiomyopathy probably consequence of a myocarditis process. Soon after he was transferred to the cardiologic department of the regional hospital, and pharmacologically treated for heart failure and pulmonary hypertension.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses a detailed account of a portion of the medical history for a specific patient.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000614\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000614\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000614\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000614\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000613\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000613\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000614","definition":"A textual entity that expresses a detailed account of a portion of the medical history for a specific patient.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"case report textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"Excerpt from Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/):\n\nThe patient is a 50-year-old man. His medical history was not contributory. At the age of 37 years, he complained of persistent fatigue and dyspnoea even for modest efforts and oedema of lower limbs. The patient was examined at the department of internal medicine of the local hospital, and hospitalised with a diagnosis of dilated cardiomyopathy probably consequence of a myocarditis process. Soon after he was transferred to the cardiologic department of the regional hospital, and pharmacologically treated for heart failure and pulmonary hypertension.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that expresses a detailed account of a portion of the medical history for a specific patient.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"case report textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000614","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000614","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"case report textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000613","searchableAnnotationValues":["case report textual entity","Excerpt from Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/):\n\nThe patient is a 50-year-old man. His medical history was not contributory. At the age of 37 years, he complained of persistent fatigue and dyspnoea even for modest efforts and oedema of lower limbs. The patient was examined at the department of internal medicine of the local hospital, and hospitalised with a diagnosis of dilated cardiomyopathy probably consequence of a myocarditis process. Soon after he was transferred to the cardiologic department of the regional hospital, and pharmacologically treated for heart failure and pulmonary hypertension.","A textual entity that expresses a detailed account of a portion of the medical history for a specific patient.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000614","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000615\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000615\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027conclusion\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"concluding remarks\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"findings\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"summary\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000144\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000144\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000144\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027conclusion\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"concluding remarks\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"findings\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"summary\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000615\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000615\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000615\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000615\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000144\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000144\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000615","definition":"A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"conclusion section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027conclusion\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["concluding remarks","conclusion","conclusions","findings","summary"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"conclusion section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000615","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000615","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"conclusion section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000144","searchableAnnotationValues":["conclusion section","The section labelled \u0027conclusion\u0027 in a typical scientific journal article.","A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document.","PERSON: Bill Baumgartner","concluding remarks","conclusion","conclusions","findings","summary","false"],"shortForm":"IAO_0000615","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000616\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000616\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027conflict of interest statement\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors\\u0027 disclosures of potential conflicts of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"competing financial interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"competing interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest statement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflicts of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"declaration of competing interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"declaration of competing interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"declaration of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"declaration of interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disclosure of conflict of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disclosure of potential conflicts of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"duality of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statement of interest\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":[\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"https://github.com/information-artifact-ontology/IAO/issues/234\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000617\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000617\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000617\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027conflict of interest statement\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors\\u0027 disclosures of potential conflicts of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"competing financial interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"competing interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest statement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflicts of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"declaration of competing interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"declaration of competing interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"declaration of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"declaration of interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disclosure of conflict of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disclosure of potential conflicts of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"duality of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statement of interest\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000616\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000616\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000616\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000616\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000617\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000617\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000616","definition":"A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"conflict of interest section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027conflict of interest statement\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["authors\u0027 disclosures of potential conflicts of interest","competing financial interests","competing interests","conflict of interest","conflict of interest statement","conflict of interests","conflicts of interest","declaration of competing interest","declaration of competing interests","declaration of interest","declaration of interests","disclosure of conflict of interest","disclosure of potential conflicts of interest","duality of interest","statement of interest"],"http__//purl.obolibrary.org/obo/IAO_0000233":["https://github.com/information-artifact-ontology/IAO/issues/183","https://github.com/information-artifact-ontology/IAO/issues/234"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"conflict of interest section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000616","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000616","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"conflict of interest section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000617","searchableAnnotationValues":["conflict of interest section","The section labelled \u0027conflict of interest statement\u0027 in a typical scientific journal article.","A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document.","PERSON: Bill Baumgartner","authors\u0027 disclosures of potential conflicts of interest","competing financial interests","competing interests","conflict of interest","conflict of interest statement","conflict of interests","conflicts of interest","declaration of competing interest","declaration of competing interests","declaration of interest","declaration of interests","disclosure of conflict of interest","disclosure of potential conflicts of interest","duality of interest","statement of interest","false"],"shortForm":"IAO_0000616","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000617\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000617\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest statement\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"SD [an author] is a Merck employee and Merck is the sponsor of this study. [Taken from \\u0027Effects of obstructive sleep apnoea risk on postoperative respiratory complications: protocol for a hospital-based registry study\\u0027 Shin et al. 2016 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4735131/)] \",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000616\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000617\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest statement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"SD [an author] is a Merck employee and Merck is the sponsor of this study. [Taken from \\u0027Effects of obstructive sleep apnoea risk on postoperative respiratory complications: protocol for a hospital-based registry study\\u0027 Shin et al. 2016 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4735131/)] \",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000617\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000617\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000617\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000617\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000616\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000616\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000617","definition":"A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"conflict of interest statement","http__//purl.obolibrary.org/obo/IAO_0000112":"SD [an author] is a Merck employee and Merck is the sponsor of this study. [Taken from \u0027Effects of obstructive sleep apnoea risk on postoperative respiratory complications: protocol for a hospital-based registry study\u0027 Shin et al. 2016 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4735131/)] ","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"conflict of interest textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000617","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000617","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"conflict of interest textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000616","searchableAnnotationValues":["conflict of interest statement","SD [an author] is a Merck employee and Merck is the sponsor of this study. [Taken from \u0027Effects of obstructive sleep apnoea risk on postoperative respiratory complications: protocol for a hospital-based registry study\u0027 Shin et al. 2016 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4735131/)] ","A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000617","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000618\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000618\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the consent process that was used to enroll patients in a study.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027consent\\u0027 in a typical scientific journal article, e.g. Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the consent process that was used to enroll patients in a study.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000619\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000619\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000619\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027consent\\u0027 in a typical scientific journal article, e.g. Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the consent process that was used to enroll patients in a study.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000618\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000618\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000618\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000618\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000619\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000619\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000618","definition":"A part of a document about the consent process that was used to enroll patients in a study.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"consent section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027consent\u0027 in a typical scientific journal article, e.g. Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about the consent process that was used to enroll patients in a study.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"consent","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"consent section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000618","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000618","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"consent section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000619","searchableAnnotationValues":["consent section","The section labelled \u0027consent\u0027 in a typical scientific journal article, e.g. Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/)","A part of a document about the consent process that was used to enroll patients in a study.","PERSON: Bill Baumgartner","consent","false"],"shortForm":"IAO_0000618","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000619\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000619\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that documents the consenting process used to enroll patients in a study.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\\n\\nWritten informed consent was obtained from the patient’s parents for publication of this Case report and any accompanying images. A copy of the written consent is available for review by the Editor-in chief of this journal.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that documents the consenting process used to enroll patients in a study.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000618\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000619\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\\n\\nWritten informed consent was obtained from the patient’s parents for publication of this Case report and any accompanying images. A copy of the written consent is available for review by the Editor-in chief of this journal.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that documents the consenting process used to enroll patients in a study.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000619\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000619\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000619\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000619\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000618\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000618\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000619","definition":"A textual entity that documents the consenting process used to enroll patients in a study.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"consent textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\n\nWritten informed consent was obtained from the patient’s parents for publication of this Case report and any accompanying images. A copy of the written consent is available for review by the Editor-in chief of this journal.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that documents the consenting process used to enroll patients in a study.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"consent textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000619","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000619","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"consent textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000618","searchableAnnotationValues":["consent textual entity","From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\n\nWritten informed consent was obtained from the patient’s parents for publication of this Case report and any accompanying images. A copy of the written consent is available for review by the Editor-in chief of this journal.","A textual entity that documents the consenting process used to enroll patients in a study.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000619","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000620\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000620\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027ethical approval\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical requirements\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethics\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethics statement\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":[\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"https://github.com/information-artifact-ontology/IAO/issues/234\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000621\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000621\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000621\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027ethical approval\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical requirements\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethics\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethics statement\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000620\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000621\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000621\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000620\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000620\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000620\"}}}","appearsIn":["duo"],"curie":"IAO:0000620","definition":"A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"ethical approval section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027ethical approval\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["ethical approval","ethical requirements","ethics","ethics statement"],"http__//purl.obolibrary.org/obo/IAO_0000233":["https://github.com/information-artifact-ontology/IAO/issues/183","https://github.com/information-artifact-ontology/IAO/issues/234"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"ethical approval section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000620","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000620","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ethical approval section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000621","searchableAnnotationValues":["ethical approval section","The section labelled \u0027ethical approval\u0027 in a typical scientific journal article.","A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis.","PERSON: Bill Baumgartner","ethical approval","ethical requirements","ethics","ethics statement","false"],"shortForm":"IAO_0000620","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000621\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000621\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that documents the ethical approval of some study design.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):\\n\\nThe NHS National Research Ethics Service had previously approved the use of these anonymised data for research purposes and this analysis did not require independent review.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that documents the ethical approval of some study design.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000620\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000621\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):\\n\\nThe NHS National Research Ethics Service had previously approved the use of these anonymised data for research purposes and this analysis did not require independent review.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that documents the ethical approval of some study design.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000621\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0500000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study design\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0500000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000620\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000620\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000621\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000621\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000621\"}}}","appearsIn":["duo"],"curie":"IAO:0000621","definition":"A textual entity that documents the ethical approval of some study design.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"ethical approval textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):\n\nThe NHS National Research Ethics Service had previously approved the use of these anonymised data for research purposes and this analysis did not require independent review.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that documents the ethical approval of some study design.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"ethical approval textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000300"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000621","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000621","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ethical approval textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000620","relatedTo":"http://purl.obolibrary.org/obo/OBI_0500000","searchableAnnotationValues":["ethical approval textual entity","From McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):\n\nThe NHS National Research Ethics Service had previously approved the use of these anonymised data for research purposes and this analysis did not require independent review.","A textual entity that documents the ethical approval of some study design.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000621","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000622\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000622\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that contains one or more figures.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figures section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027figures\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that contains one or more figures.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figures\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figures section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figures section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figures section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027figures\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that contains one or more figures.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figures\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000622\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000622\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000622\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000622\"}}}","appearsIn":["duo"],"curie":"IAO:0000622","definition":"A part of a document that contains one or more figures.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"figures section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027figures\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document that contains one or more figures.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"figures","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"figures section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000622","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000622","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"figures section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000308","searchableAnnotationValues":["figures section","The section labelled \u0027figures\u0027 in a typical scientific journal article.","A part of a document that contains one or more figures.","PERSON: Bill Baumgartner","figures","false"],"shortForm":"IAO_0000622","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000623\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000623\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to detail information regarding the source of funding used in support of the generation of the document content.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding source declaration section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027funding\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to detail information regarding the source of funding used in support of the generation of the document content.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"financial support\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding sources\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding statement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding/support\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"grants\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role of the funding source\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source of funding\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"sources of funding\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study funding\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":[\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"https://github.com/information-artifact-ontology/IAO/issues/234\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding source declaration section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000624\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding source declaration section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000624\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000624\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding source declaration section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027funding\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to detail information regarding the source of funding used in support of the generation of the document content.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"financial support\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding sources\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding statement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding/support\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"grants\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role of the funding source\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source of funding\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"sources of funding\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study funding\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000623\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000624\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding source declaration textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000624\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000623\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000623\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000623\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000623","definition":"A part of a document used to detail information regarding the source of funding used in support of the generation of the document content.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"funding source declaration section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027funding\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document used to detail information regarding the source of funding used in support of the generation of the document content.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["financial support","funding","funding information","funding sources","funding statement","funding/support","grants","role of the funding source","source of funding","sources of funding","study funding"],"http__//purl.obolibrary.org/obo/IAO_0000233":["https://github.com/information-artifact-ontology/IAO/issues/183","https://github.com/information-artifact-ontology/IAO/issues/234"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"funding source declaration section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000623","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000623","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"funding source declaration section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000624","searchableAnnotationValues":["funding source declaration section","The section labelled \u0027funding\u0027 in a typical scientific journal article.","A part of a document used to detail information regarding the source of funding used in support of the generation of the document content.","PERSON: Bill Baumgartner","financial support","funding","funding information","funding sources","funding statement","funding/support","grants","role of the funding source","source of funding","sources of funding","study funding","false"],"shortForm":"IAO_0000623","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000624\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000624\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity documenting the source of funding that supported some study.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding souce declaration textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Stephan et al. Accid Anal Prev. 2011 May; 43(3): 1062–1067. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3062852/):\\n\\nThis study was supported by the International Collaborative Research Grants Scheme with joint grants from the Wellcome Trust UK (GR071587MA) and the Australian NHMRC (268055). The funding sources played no role in study design, data collection, analysis or interpretation, writing the report, or the decision to submit the paper for publication.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity documenting the source of funding that supported some study.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding source declaration textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding source declaration textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000623\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000624\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding souce declaration textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Stephan et al. Accid Anal Prev. 2011 May; 43(3): 1062–1067. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3062852/):\\n\\nThis study was supported by the International Collaborative Research Grants Scheme with joint grants from the Wellcome Trust UK (GR071587MA) and the Australian NHMRC (268055). The funding sources played no role in study design, data collection, analysis or interpretation, writing the report, or the decision to submit the paper for publication.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity documenting the source of funding that supported some study.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000624\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000624\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000624\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000624\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000623\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding source declaration section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000623\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000624","definition":"A textual entity documenting the source of funding that supported some study.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"funding souce declaration textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Stephan et al. Accid Anal Prev. 2011 May; 43(3): 1062–1067. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3062852/):\n\nThis study was supported by the International Collaborative Research Grants Scheme with joint grants from the Wellcome Trust UK (GR071587MA) and the Australian NHMRC (268055). The funding sources played no role in study design, data collection, analysis or interpretation, writing the report, or the decision to submit the paper for publication.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity documenting the source of funding that supported some study.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"funding source declaration textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000624","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000624","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"funding source declaration textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000623","searchableAnnotationValues":["funding souce declaration textual entity","From Stephan et al. Accid Anal Prev. 2011 May; 43(3): 1062–1067. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3062852/):\n\nThis study was supported by the International Collaborative Research Grants Scheme with joint grants from the Wellcome Trust UK (GR071587MA) and the Australian NHMRC (268055). The funding sources played no role in study design, data collection, analysis or interpretation, writing the report, or the decision to submit the paper for publication.","A textual entity documenting the source of funding that supported some study.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000624","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000625\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000625\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document detailing extensions of the described work that may be implemented at some future point in time.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027future directions\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document detailing extensions of the described work that may be implemented at some future point in time.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future challenges\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future considerations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future developments\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future outlook\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future perspectives\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future plans\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future prospects\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future research\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future research directions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future studies\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future work\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"outlook\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":[\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"https://github.com/information-artifact-ontology/IAO/issues/234\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000626\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000626\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000626\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027future directions\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document detailing extensions of the described work that may be implemented at some future point in time.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future challenges\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future considerations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future developments\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future outlook\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future perspectives\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future plans\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future prospects\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future research\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future research directions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future studies\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future work\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"outlook\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000625\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000626\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000626\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000625\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000625\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000625\"}}}","appearsIn":["duo"],"curie":"IAO:0000625","definition":"A part of a document detailing extensions of the described work that may be implemented at some future point in time.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"future directions section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027future directions\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document detailing extensions of the described work that may be implemented at some future point in time.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["future challenges","future considerations","future developments","future directions","future outlook","future perspectives","future plans","future prospects","future research","future research directions","future studies","future work","outlook"],"http__//purl.obolibrary.org/obo/IAO_0000233":["https://github.com/information-artifact-ontology/IAO/issues/183","https://github.com/information-artifact-ontology/IAO/issues/234"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"future directions section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000625","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000625","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"future directions section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000626","searchableAnnotationValues":["future directions section","The section labelled \u0027future directions\u0027 in a typical scientific journal article.","A part of a document detailing extensions of the described work that may be implemented at some future point in time.","PERSON: Bill Baumgartner","future challenges","future considerations","future developments","future directions","future outlook","future perspectives","future plans","future prospects","future research","future research directions","future studies","future work","outlook","false"],"shortForm":"IAO_0000625","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000626\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000626\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing ideas regarding future work relevant to work described in a document that could be done.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Wang and Li. Acta Pharmacol Sin. 2016 Jan; 37(1): 25–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4722976/):\\n\\nIn the future, several questions will need to be resolved regarding the physiological assembly of KCNQ channels and their functional implications in complex neural circuits. First, we still lack sufficiently selective inhibitors and activators among the KCNQ family members.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing ideas regarding future work relevant to work described in a document that could be done.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000625\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000626\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Wang and Li. Acta Pharmacol Sin. 2016 Jan; 37(1): 25–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4722976/):\\n\\nIn the future, several questions will need to be resolved regarding the physiological assembly of KCNQ channels and their functional implications in complex neural circuits. First, we still lack sufficiently selective inhibitors and activators among the KCNQ family members.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing ideas regarding future work relevant to work described in a document that could be done.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000626\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000625\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000625\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000626\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000626\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000626\"},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000626","definition":"A textual entity expressing ideas regarding future work relevant to work described in a document that could be done.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"future directions textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"Excerpt from Wang and Li. Acta Pharmacol Sin. 2016 Jan; 37(1): 25–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4722976/):\n\nIn the future, several questions will need to be resolved regarding the physiological assembly of KCNQ channels and their functional implications in complex neural circuits. First, we still lack sufficiently selective inhibitors and activators among the KCNQ family members.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity expressing ideas regarding future work relevant to work described in a document that could be done.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"future directions textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000626","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000626","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"future directions textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000625","searchableAnnotationValues":["future directions textual entity","Excerpt from Wang and Li. Acta Pharmacol Sin. 2016 Jan; 37(1): 25–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4722976/):\n\nIn the future, several questions will need to be resolved regarding the physiological assembly of KCNQ channels and their functional implications in complex neural circuits. First, we still lack sufficiently selective inhibitors and activators among the KCNQ family members.","A textual entity expressing ideas regarding future work relevant to work described in a document that could be done.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000626","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000627\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000627\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part announcing the publication of a novel draft genome sequence.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027genome announcement\\u0027 in a typical scientific journal article, e.g. in Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part announcing the publication of a novel draft genome sequence.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000628\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000628\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000628\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027genome announcement\\u0027 in a typical scientific journal article, e.g. in Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part announcing the publication of a novel draft genome sequence.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000627\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000628\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000628\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000627\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000627\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000627\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000627","definition":"A document part announcing the publication of a novel draft genome sequence.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"genome announcement section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027genome announcement\u0027 in a typical scientific journal article, e.g. in Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A document part announcing the publication of a novel draft genome sequence.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"genome announcement","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"genome announcement section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000627","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000627","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"genome announcement section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000628","searchableAnnotationValues":["genome announcement section","The section labelled \u0027genome announcement\u0027 in a typical scientific journal article, e.g. in Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/)","A document part announcing the publication of a novel draft genome sequence.","PERSON: Bill Baumgartner","genome announcement","false"],"shortForm":"IAO_0000627","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000628\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000628\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that describes the generation and public release of a novel, draft genome sequence.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/):\\n\\nHere we report the genome sequence of Lactobacillus malefermentans KCTC 3548, which we obtained using a whole-genome shotgun strategy (4) with Roche 454 GS (FLX Titanium) pyrosequencing (257,559 reads totaling ∼89.8 Mb; ∼45-fold coverage of the genome) at the Genome Resource Center, Korea Research Institute of Bioscience and Biotechnology (KRIBB).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that describes the generation and public release of a novel, draft genome sequence.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000627\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000628\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/):\\n\\nHere we report the genome sequence of Lactobacillus malefermentans KCTC 3548, which we obtained using a whole-genome shotgun strategy (4) with Roche 454 GS (FLX Titanium) pyrosequencing (257,559 reads totaling ∼89.8 Mb; ∼45-fold coverage of the genome) at the Genome Resource Center, Korea Research Institute of Bioscience and Biotechnology (KRIBB).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that describes the generation and public release of a novel, draft genome sequence.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000628\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000627\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000627\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000628\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000628\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000628\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000628","definition":"A textual entity that describes the generation and public release of a novel, draft genome sequence.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"genome announcement textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"Excerpt from Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/):\n\nHere we report the genome sequence of Lactobacillus malefermentans KCTC 3548, which we obtained using a whole-genome shotgun strategy (4) with Roche 454 GS (FLX Titanium) pyrosequencing (257,559 reads totaling ∼89.8 Mb; ∼45-fold coverage of the genome) at the Genome Resource Center, Korea Research Institute of Bioscience and Biotechnology (KRIBB).","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that describes the generation and public release of a novel, draft genome sequence.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"genome announcement textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000628","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000628","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"genome announcement textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000627","searchableAnnotationValues":["genome announcement textual entity","Excerpt from Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/):\n\nHere we report the genome sequence of Lactobacillus malefermentans KCTC 3548, which we obtained using a whole-genome shotgun strategy (4) with Roche 454 GS (FLX Titanium) pyrosequencing (257,559 reads totaling ∼89.8 Mb; ∼45-fold coverage of the genome) at the Genome Resource Center, Korea Research Institute of Bioscience and Biotechnology (KRIBB).","A textual entity that describes the generation and public release of a novel, draft genome sequence.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000628","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000629\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000629\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity listing keywords indicating the major theme(s) of a document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keyword textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From: Fu and Lin. Identification of gene-oriented exon orthology between human and mouse. BMC Genomics. 2012; 13(Suppl 1): S10. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3303729/):\\n\\nExon orthology; alternative splicing; exon duplication; intron-exon structure.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity listing keywords indicating the major theme(s) of a document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keyword textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keyword textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000630\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000629\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keyword textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From: Fu and Lin. Identification of gene-oriented exon orthology between human and mouse. BMC Genomics. 2012; 13(Suppl 1): S10. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3303729/):\\n\\nExon orthology; alternative splicing; exon duplication; intron-exon structure.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity listing keywords indicating the major theme(s) of a document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000629\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000630\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keywords section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000630\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000629\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000629\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000629\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000629","definition":"A textual entity listing keywords indicating the major theme(s) of a document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"keyword textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From: Fu and Lin. Identification of gene-oriented exon orthology between human and mouse. BMC Genomics. 2012; 13(Suppl 1): S10. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3303729/):\n\nExon orthology; alternative splicing; exon duplication; intron-exon structure.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity listing keywords indicating the major theme(s) of a document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"keyword textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000629","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000629","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"keyword textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000630","searchableAnnotationValues":["keyword textual entity","From: Fu and Lin. Identification of gene-oriented exon orthology between human and mouse. BMC Genomics. 2012; 13(Suppl 1): S10. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3303729/):\n\nExon orthology; alternative splicing; exon duplication; intron-exon structure.","A textual entity listing keywords indicating the major theme(s) of a document.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000629","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000630\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000630\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keywords section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027keywords\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keywords\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keywords section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000629\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keywords section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000629\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000629\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keywords section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027keywords\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keywords\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000630\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000629\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keyword textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000629\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"IAO:0000630\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000630\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000630\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000630","definition":"A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"keywords section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027keywords\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"keywords","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"keywords section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000630","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000630","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"keywords section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000629","searchableAnnotationValues":["keywords section","The section labelled \u0027keywords\u0027 in a typical scientific journal article.","A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed.","PERSON: Bill Baumgartner","keywords","false"],"shortForm":"IAO_0000630","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000631\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000631\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about biases or short comings related to the study design and execution.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027limitations\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about biases or short comings related to the study design and execution.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"limitations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000632\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations section\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000632\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000632\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027limitations\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about biases or short comings related to the study design and execution.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"limitations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000631\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000632\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000632\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000631\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000631\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000631\"},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0500000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study design\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0500000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000631","definition":"A part of a document about biases or short comings related to the study design and execution.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"study limitations section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027limitations\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about biases or short comings related to the study design and execution.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["limitations","study limitations"],"http__//purl.obolibrary.org/obo/IAO_0000119":"Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"study limitations section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000631","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000631","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"study limitations section","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/IAO_0000632","http://purl.obolibrary.org/obo/OBI_0500000"],"searchableAnnotationValues":["study limitations section","The section labelled \u0027limitations\u0027 in a typical scientific journal article.","A part of a document about biases or short comings related to the study design and execution.","PERSON: Bill Baumgartner","limitations","study limitations","Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)","false"],"shortForm":"IAO_0000631","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000632\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000632\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity addressing a shortcoming or bias of a study design or execution.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from the Limitations section of Fermann et al 2015, Acad Emerg Med. 2015 Mar; 22(3): 299–307 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4405051/). \\n\\nOwing to the nature of a post hoc study, any significant values must be interpreted with caution. In the current analysis, no multiple testing was conducted and p-values remain unadjusted. Moreover, a selection bias arising from the randomized open-label design of the original EINSTEIN PE study cannot be ruled out.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity addressing a shortcoming or bias of a study design or execution.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000631\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000632\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from the Limitations section of Fermann et al 2015, Acad Emerg Med. 2015 Mar; 22(3): 299–307 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4405051/). \\n\\nOwing to the nature of a post hoc study, any significant values must be interpreted with caution. In the current analysis, no multiple testing was conducted and p-values remain unadjusted. Moreover, a selection bias arising from the randomized open-label design of the original EINSTEIN PE study cannot be ruled out.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity addressing a shortcoming or bias of a study design or execution.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000632\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000631\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000631\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"IAO:0000632\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000632\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000632\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000632","definition":"A textual entity addressing a shortcoming or bias of a study design or execution.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"study limitations textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"Excerpt from the Limitations section of Fermann et al 2015, Acad Emerg Med. 2015 Mar; 22(3): 299–307 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4405051/). \n\nOwing to the nature of a post hoc study, any significant values must be interpreted with caution. In the current analysis, no multiple testing was conducted and p-values remain unadjusted. Moreover, a selection bias arising from the randomized open-label design of the original EINSTEIN PE study cannot be ruled out.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity addressing a shortcoming or bias of a study design or execution.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000119":"Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"study limitations textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000632","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000632","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"study limitations textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000631","searchableAnnotationValues":["study limitations textual entity","Excerpt from the Limitations section of Fermann et al 2015, Acad Emerg Med. 2015 Mar; 22(3): 299–307 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4405051/). \n\nOwing to the nature of a post hoc study, any significant values must be interpreted with caution. In the current analysis, no multiple testing was conducted and p-values remain unadjusted. Moreover, a selection bias arising from the randomized open-label design of the original EINSTEIN PE study cannot be ruled out.","A textual entity addressing a shortcoming or bias of a study design or execution.","PERSON: Bill Baumgartner","Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)","false"],"shortForm":"IAO_0000632","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000633\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000633\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the materials required to reproduce the content of the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"materials section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027materials\\u0027 in a typical scientific journal article, e.g. Nguyen et al. BMC Bioinformatics. 2010; 11: 279. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2889936/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the materials required to reproduce the content of the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"materials\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"materials section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"materials section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"materials section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027materials\\u0027 in a typical scientific journal article, e.g. Nguyen et al. BMC Bioinformatics. 2010; 11: 279. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2889936/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the materials required to reproduce the content of the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"materials\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000633\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000633\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000633\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000633\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000633","definition":"A part of a document about the materials required to reproduce the content of the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"materials section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027materials\u0027 in a typical scientific journal article, e.g. Nguyen et al. BMC Bioinformatics. 2010; 11: 279. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2889936/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about the materials required to reproduce the content of the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"materials","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"materials section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000633","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000633","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"materials section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["materials section","The section labelled \u0027materials\u0027 in a typical scientific journal article, e.g. Nguyen et al. BMC Bioinformatics. 2010; 11: 279. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2889936/)","A part of a document about the materials required to reproduce the content of the document.","PERSON: Bill Baumgartner","materials","false"],"shortForm":"IAO_0000633","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000634\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000634\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notes section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027notes\\u0027 in a typical scientific journal article, e.g. McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notes\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notes section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notes section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notes section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027notes\\u0027 in a typical scientific journal article, e.g. McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notes\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000634\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000634\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000634\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000634\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000634","definition":"A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"notes section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027notes\u0027 in a typical scientific journal article, e.g. McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"notes","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"notes section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000634","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000634","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"notes section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["notes section","The section labelled \u0027notes\u0027 in a typical scientific journal article, e.g. McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):","A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc.","PERSON: Bill Baumgartner","notes","false"],"shortForm":"IAO_0000634","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000635\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000635\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the patients that participated in a study.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027patients\\u0027 in a typical scientific journal article, e.g. in Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the patients that participated in a study.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000636\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000636\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000636\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027patients\\u0027 in a typical scientific journal article, e.g. in Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the patients that participated in a study.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000635\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000635\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000635\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000635\"},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000636\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000636\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000635","definition":"A part of a document about the patients that participated in a study.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"patients section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027patients\u0027 in a typical scientific journal article, e.g. in Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about the patients that participated in a study.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"patients section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000635","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000635","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"patients section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000636","searchableAnnotationValues":["patients section","The section labelled \u0027patients\u0027 in a typical scientific journal article, e.g. in Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/)","A part of a document about the patients that participated in a study.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000635","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000636\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000636\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing information regarding the patients used in a study.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/):\\n\\nBetween January 1996 and February 2012, we treated 4 patients with interprosthetic femoral fractures (3 of them women) (Figure 2) using a custom-made interposition device (Waldemar Link GmbH, Hamburg, Germany) (Figure 1). Mean age was 74 (59–86) years. The fractures occurred mean 18 (13–28) years after primary THA and mean 14 (10–17) years after primary TKA. At the latest follow-up, after mean 8 (0.5–16) years, revision surgery with a total femur replacement was required in 1 case due to aseptic loosening. No other complications requiring revision surgery occurred.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing information regarding the patients used in a study.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000635\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000636\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/):\\n\\nBetween January 1996 and February 2012, we treated 4 patients with interprosthetic femoral fractures (3 of them women) (Figure 2) using a custom-made interposition device (Waldemar Link GmbH, Hamburg, Germany) (Figure 1). Mean age was 74 (59–86) years. The fractures occurred mean 18 (13–28) years after primary THA and mean 14 (10–17) years after primary TKA. At the latest follow-up, after mean 8 (0.5–16) years, revision surgery with a total femur replacement was required in 1 case due to aseptic loosening. No other complications requiring revision surgery occurred.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing information regarding the patients used in a study.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000636\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000636\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000636\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000636\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000635\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000635\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000636","definition":"A textual entity expressing information regarding the patients used in a study.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"patients textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"Excerpt from Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/):\n\nBetween January 1996 and February 2012, we treated 4 patients with interprosthetic femoral fractures (3 of them women) (Figure 2) using a custom-made interposition device (Waldemar Link GmbH, Hamburg, Germany) (Figure 1). Mean age was 74 (59–86) years. The fractures occurred mean 18 (13–28) years after primary THA and mean 14 (10–17) years after primary TKA. At the latest follow-up, after mean 8 (0.5–16) years, revision surgery with a total femur replacement was required in 1 case due to aseptic loosening. No other complications requiring revision surgery occurred.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity expressing information regarding the patients used in a study.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"patients textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000636","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000636","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"patients textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000635","searchableAnnotationValues":["patients textual entity","Excerpt from Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/):\n\nBetween January 1996 and February 2012, we treated 4 patients with interprosthetic femoral fractures (3 of them women) (Figure 2) using a custom-made interposition device (Waldemar Link GmbH, Hamburg, Germany) (Figure 1). Mean age was 74 (59–86) years. The fractures occurred mean 18 (13–28) years after primary THA and mean 14 (10–17) years after primary TKA. At the latest follow-up, after mean 8 (0.5–16) years, revision surgery with a total femur replacement was required in 1 case due to aseptic loosening. No other complications requiring revision surgery occurred.","A textual entity expressing information regarding the patients used in a study.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000636","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000637\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000637\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027pre-publication history\\u0027 in a typical scientific journal article, e.g. in Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notice of republication\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000638\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000638\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000638\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027pre-publication history\\u0027 in a typical scientific journal article, e.g. in Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notice of republication\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000637\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000637\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000637\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000637\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000638\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000638\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000637","definition":"A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"pre-publication history section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027pre-publication history\u0027 in a typical scientific journal article, e.g. in Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["notice of republication","pre-publication history"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"pre-publication history section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000637","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000637","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"pre-publication history section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000638","searchableAnnotationValues":["pre-publication history section","The section labelled \u0027pre-publication history\u0027 in a typical scientific journal article, e.g. in Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/)","A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors.","PERSON: Bill Baumgartner","notice of republication","pre-publication history","false"],"shortForm":"IAO_0000637","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000638\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000638\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/):\\n\\nThe pre-publication history for this paper can be accessed here:\\nhttp://www.biomedcentral.com/1471-2253/13/33/prepub\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000637\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000638\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/):\\n\\nThe pre-publication history for this paper can be accessed here:\\nhttp://www.biomedcentral.com/1471-2253/13/33/prepub\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000638\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000638\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000638\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000638\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000637\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000637\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000638","definition":"A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"pre-publication history textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/):\n\nThe pre-publication history for this paper can be accessed here:\nhttp://www.biomedcentral.com/1471-2253/13/33/prepub","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"pre-publication history textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000638","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000638","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"pre-publication history textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000637","searchableAnnotationValues":["pre-publication history textual entity","From Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/):\n\nThe pre-publication history for this paper can be accessed here:\nhttp://www.biomedcentral.com/1471-2253/13/33/prepub","A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000638","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000639\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000639\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about work in other publications that is relevant to the content of the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027related work\\u0027 in a typical scientific journal article, e.g. Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about work in other publications that is relevant to the content of the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related literature\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000640\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000640\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000640\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027related work\\u0027 in a typical scientific journal article, e.g. Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about work in other publications that is relevant to the content of the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related literature\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000639\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000639\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000639\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000639\"},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000640\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000640\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000639","definition":"A part of a document about work in other publications that is relevant to the content of the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"related work section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027related work\u0027 in a typical scientific journal article, e.g. Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about work in other publications that is relevant to the content of the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["related literature","related work"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"related work section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000639","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000639","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"related work section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000640","searchableAnnotationValues":["related work section","The section labelled \u0027related work\u0027 in a typical scientific journal article, e.g. Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/)","A part of a document about work in other publications that is relevant to the content of the document.","PERSON: Bill Baumgartner","related literature","related work","false"],"shortForm":"IAO_0000639","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000640\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000640\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that discusses work from other publications and expresses their relevancy to the content of a document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/):\\n\\nOur work presented here is similar in spirit to our recently developed methodology for data fusion via collective matrix factorization (Žitnik and Zupan, 2015).\\n\\n\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that discusses work from other publications and expresses their relevancy to the content of a document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000639\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000640\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/):\\n\\nOur work presented here is similar in spirit to our recently developed methodology for data fusion via collective matrix factorization (Žitnik and Zupan, 2015).\\n\\n\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that discusses work from other publications and expresses their relevancy to the content of a document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000640\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000640\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000640\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000640\"},\"http://purl.obolibrary.org/obo/IAO_0000639\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000639\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000640","definition":"A textual entity that discusses work from other publications and expresses their relevancy to the content of a document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"related work textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"Excerpt from Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/):\n\nOur work presented here is similar in spirit to our recently developed methodology for data fusion via collective matrix factorization (Žitnik and Zupan, 2015).\n\n","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that discusses work from other publications and expresses their relevancy to the content of a document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"related work textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000640","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000640","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"related work textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000639","searchableAnnotationValues":["related work textual entity","Excerpt from Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/):\n\nOur work presented here is similar in spirit to our recently developed methodology for data fusion via collective matrix factorization (Žitnik and Zupan, 2015).\n\n","A textual entity that discusses work from other publications and expresses their relevancy to the content of a document.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000640","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000641\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000641\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027availability and requirements\\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000642\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000642\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000642\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027availability and requirements\\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000641\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000642\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000642\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000641\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000641\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000641\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000641","definition":"A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"requirements section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027availability and requirements\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"requirements","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"requirements section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000641","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000641","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"requirements section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000642","searchableAnnotationValues":["requirements section","The section labelled \u0027availability and requirements\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).","A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource.","PERSON: Bill Baumgartner","requirements","false"],"shortForm":"IAO_0000641","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000642\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000642\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the requirements necessary to use a resource, e.g. software.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\\n\\n• Operating systems: Platform independent\\n\\n• Programming language: Matlab, R, Python\\n\\n• Other requirements: None\\n\\n• License: GNU GPL v3\\n\\n• Any restrictions to use by non-academics: None\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the requirements necessary to use a resource, e.g. software.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000641\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000642\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\\n\\n• Operating systems: Platform independent\\n\\n• Programming language: Matlab, R, Python\\n\\n• Other requirements: None\\n\\n• License: GNU GPL v3\\n\\n• Any restrictions to use by non-academics: None\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the requirements necessary to use a resource, e.g. software.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000642\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000642\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000642\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000642\"},\"http://purl.obolibrary.org/obo/IAO_0000641\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000641\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000642","definition":"A textual entity that expresses the requirements necessary to use a resource, e.g. software.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"requirements textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\n\n• Operating systems: Platform independent\n\n• Programming language: Matlab, R, Python\n\n• Other requirements: None\n\n• License: GNU GPL v3\n\n• Any restrictions to use by non-academics: None","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that expresses the requirements necessary to use a resource, e.g. software.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"requirements textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000642","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000642","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"requirements textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000641","searchableAnnotationValues":["requirements textual entity","From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\n\n• Operating systems: Platform independent\n\n• Programming language: Matlab, R, Python\n\n• Other requirements: None\n\n• License: GNU GPL v3\n\n• Any restrictions to use by non-academics: None","A textual entity that expresses the requirements necessary to use a resource, e.g. software.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000642","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000643\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000643\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity documenting statistical analysis tools and techniques employed.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/):\\n\\nData were captured into EPI-DATA (version 3.1), cleaned and then exported to Stata version 10 for analysis. Continuous variables were summarised as mean (± standard deviation) and median (inter-quartile range), and presented in the tables. Categorical data were analysed using frequency and percentages, and results are presented in frequency tables and bar charts. Test of significance (p-value) was determined using the chi-square test. A p-value of less than 0.05 was considered significant.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity documenting statistical analysis tools and techniques employed.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000644\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000643\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/):\\n\\nData were captured into EPI-DATA (version 3.1), cleaned and then exported to Stata version 10 for analysis. Continuous variables were summarised as mean (± standard deviation) and median (inter-quartile range), and presented in the tables. Categorical data were analysed using frequency and percentages, and results are presented in frequency tables and bar charts. Test of significance (p-value) was determined using the chi-square test. A p-value of less than 0.05 was considered significant.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity documenting statistical analysis tools and techniques employed.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000643\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000644\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000644\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000643\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000643\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000643\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000643","definition":"A textual entity documenting statistical analysis tools and techniques employed.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"statistical analysis textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/):\n\nData were captured into EPI-DATA (version 3.1), cleaned and then exported to Stata version 10 for analysis. Continuous variables were summarised as mean (± standard deviation) and median (inter-quartile range), and presented in the tables. Categorical data were analysed using frequency and percentages, and results are presented in frequency tables and bar charts. Test of significance (p-value) was determined using the chi-square test. A p-value of less than 0.05 was considered significant.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity documenting statistical analysis tools and techniques employed.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"statistical analysis textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000643","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000643","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"statistical analysis textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000644","searchableAnnotationValues":["statistical analysis textual entity","From Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/):\n\nData were captured into EPI-DATA (version 3.1), cleaned and then exported to Stata version 10 for analysis. Continuous variables were summarised as mean (± standard deviation) and median (inter-quartile range), and presented in the tables. Categorical data were analysed using frequency and percentages, and results are presented in frequency tables and bar charts. Test of significance (p-value) was determined using the chi-square test. A p-value of less than 0.05 was considered significant.","A textual entity documenting statistical analysis tools and techniques employed.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000643","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000644\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000644\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of the document used to describe the statistical methodologies employed in the work presented in the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027statistical analysis\\u0027 in a typical scientific journal article, e.g. Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of the document used to describe the statistical methodologies employed in the work presented in the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000643\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000643\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000643\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027statistical analysis\\u0027 in a typical scientific journal article, e.g. Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of the document used to describe the statistical methodologies employed in the work presented in the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000644\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000643\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000643\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000644\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000644\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000644\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000644","definition":"A part of the document used to describe the statistical methodologies employed in the work presented in the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"statistical analysis section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027statistical analysis\u0027 in a typical scientific journal article, e.g. Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of the document used to describe the statistical methodologies employed in the work presented in the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"statistical analysis","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"statistical analysis section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000644","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000644","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"statistical analysis section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000643","searchableAnnotationValues":["statistical analysis section","The section labelled \u0027statistical analysis\u0027 in a typical scientific journal article, e.g. Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/)","A part of the document used to describe the statistical methodologies employed in the work presented in the document.","PERSON: Bill Baumgartner","statistical analysis","false"],"shortForm":"IAO_0000644","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000645\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000645\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that contains one or more tables.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"tables section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027tables\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that contains one or more tables.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"tables\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"tables section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"tables section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"tables section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027tables\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that contains one or more tables.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"tables\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000645\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000306\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000306\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000645\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000645\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000645\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000645","definition":"A part of a document that contains one or more tables.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"tables section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027tables\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document that contains one or more tables.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"tables","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"tables section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000645","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000645","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"tables section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000306","searchableAnnotationValues":["tables section","The section labelled \u0027tables\u0027 in a typical scientific journal article.","A part of a document that contains one or more tables.","PERSON: Bill Baumgartner","tables","false"],"shortForm":"IAO_0000645","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000646\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000646\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"postal code\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"postal code\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000646\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000646\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000646\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000646\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000646","definition":"An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0020000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0020000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail.","http__//purl.obolibrary.org/obo/IAO_0000117":"Mathias Brochhausen","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"postal code","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0020000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000646","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000646","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"postal code","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail.","Mathias Brochhausen","false"],"shortForm":"IAO_0000646","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000647\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000647\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Postal delivery route\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Postal delivery route\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000647\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000647\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000647\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000647\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000647","definition":"A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000104","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000104","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region.","http__//purl.obolibrary.org/obo/IAO_0000117":"Mathias Brochhausen","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Postal delivery route","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000104","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000647","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000647","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Postal delivery route","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region.","Mathias Brochhausen","false"],"shortForm":"IAO_0000647","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000648\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000648\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000646\",\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000646\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000646\",\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000646\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ZIP code\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zone improvement plan code\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000646\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zone improvement plan code\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ZIP code\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000648\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000648\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000648\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000648\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"postal code\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000648","definition":"A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000646","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000646","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000646","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000646","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes.","http__//purl.obolibrary.org/obo/IAO_0000117":"Mathias Brochhausen","http__//purl.obolibrary.org/obo/IAO_0000118":"ZIP code","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"zone improvement plan code","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000646","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000648","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000648","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"zone improvement plan code","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes.","Mathias Brochhausen","ZIP code","false"],"shortForm":"IAO_0000648","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000650\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000650\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database extract, transform, and load process\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"value\":\"Alan Ruttenberg 12/21/16: Maybe this definition instead: A planned process which takes as input a database and copies concretizations from the first, optionally transforms then copies the result to the second\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg 12/21/16: We don\\u0027t define database in IAO, currently, as the bare word is ambiguous. Reasonable interpretations of the word might be the material entity, an information structure, an information content entity. However this definition commits, at least, to there being some material thing which bear concretizations of information entities and that there are new concretizations created during the process. We consider the ETL process in terms of information entities rather than the concretizations. No committment is made as to whether the specified output.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"value\":\"PERSON:Alan Ruttenberg\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ETL\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"WEB:https://en.wikipedia.org/wiki/Extract,_transform,_load\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/187\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"https://github.com/information-artifact-ontology/IAO\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database extract, transform, and load process\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false}],\"http://xmlns.com/foaf/0.1/page\":\"https://en.wikipedia.org/wiki/Extract,_transform,_load\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database extract, transform, and load process\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database extract, transform, and load process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Alan Ruttenberg 12/21/16: Maybe this definition instead: A planned process which takes as input a database and copies concretizations from the first, optionally transforms then copies the result to the second\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg 12/21/16: We don\\u0027t define database in IAO, currently, as the bare word is ambiguous. Reasonable interpretations of the word might be the material entity, an information structure, an information content entity. However this definition commits, at least, to there being some material thing which bear concretizations of information entities and that there are new concretizations created during the process. We consider the ETL process in terms of information entities rather than the concretizations. No committment is made as to whether the specified output.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON:Alan Ruttenberg\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ETL\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"WEB:https://en.wikipedia.org/wiki/Extract,_transform,_load\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000650\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://xmlns.com/foaf/0.1/page\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"page\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"page\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000650\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000650\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000650\"},\"http://purl.obolibrary.org/obo/OBI_0000293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"https://github.com/information-artifact-ontology/IAO\":{\"url\":\"https://github.com/information-artifact-ontology/IAO\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"github:information-artifact-ontology/IAO\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000650","definition":"A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"database extract, transform, and load process","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second.","http__//purl.obolibrary.org/obo/IAO_0000116":["Alan Ruttenberg 12/21/16: Maybe this definition instead: A planned process which takes as input a database and copies concretizations from the first, optionally transforms then copies the result to the second","Alan Ruttenberg 12/21/16: We don\u0027t define database in IAO, currently, as the bare word is ambiguous. Reasonable interpretations of the word might be the material entity, an information structure, an information content entity. However this definition commits, at least, to there being some material thing which bear concretizations of information entities and that there are new concretizations created during the process. We consider the ETL process in terms of information entities rather than the concretizations. No committment is made as to whether the specified output."],"http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000118":"ETL","http__//purl.obolibrary.org/obo/IAO_0000119":"WEB:https://en.wikipedia.org/wiki/Extract,_transform,_load","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/187","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"https://github.com/information-artifact-ontology/IAO","http__//www.w3.org/2000/01/rdf-schema#label":"database extract, transform, and load process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/OBI_0000011"],"http__//xmlns.com/foaf/0.1/page":"https://en.wikipedia.org/wiki/Extract,_transform,_load","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000650","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000650","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"database extract, transform, and load process","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030"],"searchableAnnotationValues":["database extract, transform, and load process","A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second.","Alan Ruttenberg 12/21/16: Maybe this definition instead: A planned process which takes as input a database and copies concretizations from the first, optionally transforms then copies the result to the second","Alan Ruttenberg 12/21/16: We don\u0027t define database in IAO, currently, as the bare word is ambiguous. Reasonable interpretations of the word might be the material entity, an information structure, an information content entity. However this definition commits, at least, to there being some material thing which bear concretizations of information entities and that there are new concretizations created during the process. We consider the ETL process in terms of information entities rather than the concretizations. No committment is made as to whether the specified output.","PERSON:Alan Ruttenberg","ETL","WEB:https://en.wikipedia.org/wiki/Extract,_transform,_load","false"],"shortForm":"IAO_0000650","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000701\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000701\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"descriptive data section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/prisma/\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/235\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"descriptive data section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"descriptive data section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"descriptive data section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/prisma/\"},{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000701\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000701\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000701\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000701\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000701","definition":"A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"descriptive data section","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Chen Yang","PERSON: Jie Zheng"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://www.equator-network.org/reporting-guidelines/prisma/","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/235","http__//purl.obolibrary.org/obo/IAO_0000234":"ONE ontology","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"descriptive data section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000701","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000701","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"descriptive data section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["descriptive data section","A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made.","PERSON: Chen Yang","PERSON: Jie Zheng","https://www.equator-network.org/reporting-guidelines/prisma/","ONE ontology","false"],"shortForm":"IAO_0000701","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000702\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000702\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000318\",\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000318\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000318\",\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000318\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional results section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/consort/\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/prisma/\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/strobe/\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/235\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional results section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000318\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional results section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional results section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/consort/\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/prisma/\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/strobe/\"},{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000702\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000318\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"results section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000318\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000702\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000702\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000702\"}}}","appearsIn":["duo"],"curie":"IAO:0000702","definition":"A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000318","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000318","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000318","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000318","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"additional results section","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Chen Yang","PERSON: Jie Zheng"],"http__//purl.obolibrary.org/obo/IAO_0000119":["https://www.equator-network.org/reporting-guidelines/consort/","https://www.equator-network.org/reporting-guidelines/prisma/","https://www.equator-network.org/reporting-guidelines/strobe/"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/235","http__//purl.obolibrary.org/obo/IAO_0000234":"ONE ontology","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"additional results section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000318","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000702","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000702","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"additional results section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["additional results section","A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)","PERSON: Chen Yang","PERSON: Jie Zheng","https://www.equator-network.org/reporting-guidelines/consort/","https://www.equator-network.org/reporting-guidelines/prisma/","https://www.equator-network.org/reporting-guidelines/strobe/","ONE ontology","false"],"shortForm":"IAO_0000702","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000703\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000703\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes human subject(s) that participated in a study (e.g. inclusion \\u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"research participants section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes human subject(s) that participated in a study (e.g. inclusion \\u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/consort/\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/prisma/\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/strobe-nut/\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/235\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"research participants section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"research participants section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"research participants section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes human subject(s) that participated in a study (e.g. inclusion \\u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/consort/\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/prisma/\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/strobe-nut/\"},{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000703\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000703\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000703\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000703\"}}}","appearsIn":["duo"],"curie":"IAO:0000703","definition":"A document part that describes human subject(s) that participated in a study (e.g. inclusion \u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"research participants section","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A document part that describes human subject(s) that participated in a study (e.g. inclusion \u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.).","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Chen Yang","PERSON: Jie Zheng"],"http__//purl.obolibrary.org/obo/IAO_0000119":["https://www.equator-network.org/reporting-guidelines/consort/","https://www.equator-network.org/reporting-guidelines/prisma/","https://www.equator-network.org/reporting-guidelines/strobe-nut/"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/235","http__//purl.obolibrary.org/obo/IAO_0000234":"ONE ontology","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"research participants section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000703","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000703","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"research participants section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["research participants section","A document part that describes human subject(s) that participated in a study (e.g. inclusion \u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.).","PERSON: Chen Yang","PERSON: Jie Zheng","https://www.equator-network.org/reporting-guidelines/consort/","https://www.equator-network.org/reporting-guidelines/prisma/","https://www.equator-network.org/reporting-guidelines/strobe-nut/","ONE ontology","false"],"shortForm":"IAO_0000703","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000704\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000704\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A methods section that describes details of data assessment methods (data measurement).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000317\",\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000317\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000317\",\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000317\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement methods section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A methods section that describes details of data assessment methods (data measurement).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/strobe/\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/235\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement methods section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000317\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement methods section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement methods section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A methods section that describes details of data assessment methods (data measurement).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/strobe/\"},{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000704\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000317\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methods section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000317\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000704\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000704\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000704\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000704","definition":"A methods section that describes details of data assessment methods (data measurement).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000317","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000317","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000317","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000317","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"measurement methods section","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A methods section that describes details of data assessment methods (data measurement).","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Chen Yang","PERSON: Jie Zheng"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://www.equator-network.org/reporting-guidelines/strobe/","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/235","http__//purl.obolibrary.org/obo/IAO_0000234":"ONE ontology","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"measurement methods section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000317","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000704","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000704","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"measurement methods section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["measurement methods section","A methods section that describes details of data assessment methods (data measurement).","PERSON: Chen Yang","PERSON: Jie Zheng","https://www.equator-network.org/reporting-guidelines/strobe/","ONE ontology","false"],"shortForm":"IAO_0000704","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000705\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000705\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes the physical/social/cultural conditions around a research trial.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"research settings section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes the physical/social/cultural conditions around a research trial.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"https://www.ncbi.nlm.nih.gov/books/NBK262175/\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/235\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"research settings section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"research settings section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"research settings section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes the physical/social/cultural conditions around a research trial.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"},{\"type\":[\"literal\"],\"value\":\"https://www.ncbi.nlm.nih.gov/books/NBK262175/\"},{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000705\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000705\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000705\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000705\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000705","definition":"A document part that describes the physical/social/cultural conditions around a research trial.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"research settings section","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A document part that describes the physical/social/cultural conditions around a research trial.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Chen Yang","PERSON: Jie Zheng"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://www.ncbi.nlm.nih.gov/books/NBK262175/","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/235","http__//purl.obolibrary.org/obo/IAO_0000234":"ONE ontology","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"research settings section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000705","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000705","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"research settings section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["research settings section","A document part that describes the physical/social/cultural conditions around a research trial.","PERSON: Chen Yang","PERSON: Jie Zheng","https://www.ncbi.nlm.nih.gov/books/NBK262175/","ONE ontology","false"],"shortForm":"IAO_0000705","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000706\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000706\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000631\",\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000631\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000631\",\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000631\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study bias section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"DOI: 10.1097/PRS.0b013e3181de24bc\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/235\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study bias section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000631\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study bias section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study bias section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"},{\"type\":[\"literal\"],\"value\":\"DOI: 10.1097/PRS.0b013e3181de24bc\"},{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000706\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000631\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000631\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000706\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000706\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000706\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000706","definition":"A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000631","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000631","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000631","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000631","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"study bias section","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Chen Yang","PERSON: Jie Zheng"],"http__//purl.obolibrary.org/obo/IAO_0000119":"DOI: 10.1097/PRS.0b013e3181de24bc","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/235","http__//purl.obolibrary.org/obo/IAO_0000234":"ONE ontology","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"study bias section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000631","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000706","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000706","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"study bias section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["study bias section","A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others.","PERSON: Chen Yang","PERSON: Jie Zheng","DOI: 10.1097/PRS.0b013e3181de24bc","ONE ontology","false"],"shortForm":"IAO_0000706","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000707\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000707\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An abstract that is pictorial summary of the main findings described in the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000315\",\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000315\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000315\",\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000315\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graphical abstract\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An abstract that is pictorial summary of the main findings described in the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Tim Beck\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"visual abstract\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"https://www.elsevier.com/authors/journal-authors/graphical-abstract\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"value\":\"Biomedical literature NLP project\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graphical abstract\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000315\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graphical abstract\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graphical abstract\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An abstract that is pictorial summary of the main findings described in the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Tim Beck\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"visual abstract\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"https://www.elsevier.com/authors/journal-authors/graphical-abstract\"},{\"type\":[\"literal\"],\"value\":\"Biomedical literature NLP project\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000707\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000315\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abstract\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000315\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000707\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000707\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000707\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000707","definition":"An abstract that is pictorial summary of the main findings described in the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000315","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000315","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000315","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000315","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"graphical abstract","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"An abstract that is pictorial summary of the main findings described in the document.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Jie Zheng","PERSON: Tim Beck"],"http__//purl.obolibrary.org/obo/IAO_0000118":"visual abstract","http__//purl.obolibrary.org/obo/IAO_0000119":"https://www.elsevier.com/authors/journal-authors/graphical-abstract","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//purl.obolibrary.org/obo/IAO_0000234":"Biomedical literature NLP project","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"graphical abstract","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000315","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000707","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000707","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"graphical abstract","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["graphical abstract","An abstract that is pictorial summary of the main findings described in the document.","PERSON: Jie Zheng","PERSON: Tim Beck","visual abstract","https://www.elsevier.com/authors/journal-authors/graphical-abstract","Biomedical literature NLP project","false"],"shortForm":"IAO_0000707","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000708\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000708\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000578\",\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000578\",\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"value\":\"\\\"You can connect your iD with your professional information — affiliations, grants, publications, peer review, and more. You can use your iD to share your information with other systems, ensuring you get recognition for all your contributions, saving you time and hassle, and reducing the risk of errors.\\\" [https://orcid.org/]\"},{\"type\":[\"literal\"],\"value\":\"This class was originally defined in Apollo_SV (http://purl.obolibrary.org/obo/APOLLO_SV_00000496) but due to it being more in scope of IAO, it was decided to add it to IAO and deprecate its Apollo_SV equivalent. (2022-10-25)\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"value\":\"http://orcid.org/0000-0002-1595-3213\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"value\":\"ORCID ID\"},{\"type\":[\"literal\"],\"value\":\"ORCiD\"},{\"type\":[\"literal\"],\"value\":\"Open Researcher and Contributor ID\"},{\"type\":[\"literal\"],\"value\":\"Open Researcher and Contributor Identifier\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/259\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ORCID identifier\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ORCID identifier\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.\"},{\"type\":[\"literal\"],\"value\":\"\\\"You can connect your iD with your professional information — affiliations, grants, publications, peer review, and more. You can use your iD to share your information with other systems, ensuring you get recognition for all your contributions, saving you time and hassle, and reducing the risk of errors.\\\" [https://orcid.org/]\"},{\"type\":[\"literal\"],\"value\":\"This class was originally defined in Apollo_SV (http://purl.obolibrary.org/obo/APOLLO_SV_00000496) but due to it being more in scope of IAO, it was decided to add it to IAO and deprecate its Apollo_SV equivalent. (2022-10-25)\"},{\"type\":[\"literal\"],\"value\":\"http://orcid.org/0000-0002-1595-3213\"},{\"type\":[\"literal\"],\"value\":\"ORCID ID\"},{\"type\":[\"literal\"],\"value\":\"ORCiD\"},{\"type\":[\"literal\"],\"value\":\"Open Researcher and Contributor ID\"},{\"type\":[\"literal\"],\"value\":\"Open Researcher and Contributor Identifier\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/259\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000708\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/\":{\"url\":\"https://orcid.org/\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000578\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000578\"},\"type\":[\"class\",\"entity\"]},\"https://orcid.org/)\":{\"url\":\"https://orcid.org/)\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:)\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000708\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000708\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000708\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000708","definition":"A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000578","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000578","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000578","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000578","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.","http__//purl.obolibrary.org/obo/IAO_0000116":["\"You can connect your iD with your professional information — affiliations, grants, publications, peer review, and more. You can use your iD to share your information with other systems, ensuring you get recognition for all your contributions, saving you time and hassle, and reducing the risk of errors.\" [https://orcid.org/]","This class was originally defined in Apollo_SV (http://purl.obolibrary.org/obo/APOLLO_SV_00000496) but due to it being more in scope of IAO, it was decided to add it to IAO and deprecate its Apollo_SV equivalent. (2022-10-25)"],"http__//purl.obolibrary.org/obo/IAO_0000117":"http://orcid.org/0000-0002-1595-3213","http__//purl.obolibrary.org/obo/IAO_0000118":["ORCID ID","ORCiD","Open Researcher and Contributor ID","Open Researcher and Contributor Identifier"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://orcid.org/","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/259","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"ORCID identifier","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000578","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000708","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000708","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ORCID identifier","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.","\"You can connect your iD with your professional information — affiliations, grants, publications, peer review, and more. You can use your iD to share your information with other systems, ensuring you get recognition for all your contributions, saving you time and hassle, and reducing the risk of errors.\" [https://orcid.org/]","This class was originally defined in Apollo_SV (http://purl.obolibrary.org/obo/APOLLO_SV_00000496) but due to it being more in scope of IAO, it was decided to add it to IAO and deprecate its Apollo_SV equivalent. (2022-10-25)","http://orcid.org/0000-0002-1595-3213","ORCID ID","ORCiD","Open Researcher and Contributor ID","Open Researcher and Contributor Identifier","https://orcid.org/","https://github.com/information-artifact-ontology/IAO/issues/259","true"],"shortForm":"IAO_0000708","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Sep 29, 2016: The current definition has been amended from the previous version: \\\"A proper name is an information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\\\" to more accuratly reflect the necessary and sufficient condition on the class. (MB)\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"proper name\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},\"http://purl.org/dc/elements/1.1/creator\":{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Sep 29, 2016: The current definition has been amended from the previous version: \\\"A proper name is an information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\\\" to more accuratly reflect the necessary and sufficient condition on the class. (MB)\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0020010\",\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"numDescendants\":7.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0020020\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"proper name\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0020000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0020000\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0020000\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000312\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000312\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"code set\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020020\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000219\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.org/dc/elements/1.1/creator\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier creating process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020010\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0020000","definition":["An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.","Sep 29, 2016: The current definition has been amended from the previous version: \"A proper name is an information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\" to more accuratly reflect the necessary and sufficient condition on the class. (MB)"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"identifier","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.","http__//purl.obolibrary.org/obo/IAO_0000117":["Justin Whorton","Mathias Brochhausen"],"http__//purl.obolibrary.org/obo/IAO_0000118":"proper name","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/237","http__//purl.org/dc/elements/1.1/creator":"Mathias Brochhausen","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Sep 29, 2016: The current definition has been amended from the previous version: \"A proper name is an information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\" to more accuratly reflect the necessary and sufficient condition on the class. (MB)","http__//www.w3.org/2000/01/rdf-schema#label":"identifier","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0020000","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0020000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"identifier","numDescendants":"7.0","numHierarchicalDescendants":"8.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0020020","searchableAnnotationValues":["identifier","An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.","Justin Whorton","Mathias Brochhausen","proper name","https://github.com/information-artifact-ontology/IAO/issues/237","Mathias Brochhausen","false"],"shortForm":"IAO_0020000","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0020001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020001\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a fundamental unit in a written language.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Grapheme is not about anything and hence is likely to not be an information content entity. If a new subclass of GDC for information structure entities is created it should move there.\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alphabetic letters, Chinese characters, numerical digits, punctuation marks, and the individual symbols of any of the world\\u0027s writing systems\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a fundamental unit in a written language.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Grapheme\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},\"http://purl.org/dc/elements/1.1/creator\":{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Grapheme is not about anything and hence is likely to not be an information content entity. If a new subclass of GDC for information structure entities is created it should move there.\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"grapheme\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"grapheme\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alphabetic letters, Chinese characters, numerical digits, punctuation marks, and the individual symbols of any of the world\\u0027s writing systems\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a fundamental unit in a written language.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Grapheme\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0020001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"IAO:0020001\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0020001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0020001\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://en.wikipedia.org/wiki/Grapheme\":{\"url\":\"http://en.wikipedia.org/wiki/Grapheme\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Grapheme\"},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.org/dc/elements/1.1/creator\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0020001","definition":["An information content entity that is a fundamental unit in a written language.","Grapheme is not about anything and hence is likely to not be an information content entity. If a new subclass of GDC for information structure entities is created it should move there."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"alphabetic letters, Chinese characters, numerical digits, punctuation marks, and the individual symbols of any of the world\u0027s writing systems","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity that is a fundamental unit in a written language.","http__//purl.obolibrary.org/obo/IAO_0000117":"Justin Whorton","http__//purl.obolibrary.org/obo/IAO_0000119":"http://en.wikipedia.org/wiki/Grapheme","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/237","http__//purl.org/dc/elements/1.1/creator":"Mathias Brochhausen","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Grapheme is not about anything and hence is likely to not be an information content entity. If a new subclass of GDC for information structure entities is created it should move there.","http__//www.w3.org/2000/01/rdf-schema#label":"grapheme","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0020001","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0020001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"grapheme","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["alphabetic letters, Chinese characters, numerical digits, punctuation marks, and the individual symbols of any of the world\u0027s writing systems","An information content entity that is a fundamental unit in a written language.","Justin Whorton","http://en.wikipedia.org/wiki/Grapheme","https://github.com/information-artifact-ontology/IAO/issues/237","Mathias Brochhausen","true"],"shortForm":"IAO_0020001","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0020010\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020010\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dubbing process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"naming\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},\"http://purl.org/dc/elements/1.1/creator\":{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier creating process\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"isObsolete\":false}]},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier creating process\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dubbing process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"naming\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0020010\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"IAO:0020010\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0020010\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0020010\"},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.org/dc/elements/1.1/creator\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0020010","definition":"A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity.","http__//purl.obolibrary.org/obo/IAO_0000117":["Justin Whorton","Mathias Brochhausen"],"http__//purl.obolibrary.org/obo/IAO_0000118":["dubbing process","naming"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/237","http__//purl.org/dc/elements/1.1/creator":"Mathias Brochhausen","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"identifier creating process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000011","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0020010","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0020010","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"identifier creating process","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity.","Justin Whorton","Mathias Brochhausen","dubbing process","naming","https://github.com/information-artifact-ontology/IAO/issues/237","Mathias Brochhausen","true"],"shortForm":"IAO_0020010","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0020015\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020015\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier referring to an individual entity that is ascribed personhood by the user of the identifier.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Personal names \\\"today usually comprises a given name bestowed at birth or at a young age plus a surname. It is nearly universal for a human to have a name; except in rare cases, for example feral children growing up in isolation, or infants orphaned by natural disaster for whom no written record survives.[citation needed] The Convention on the Rights of the Child specifies that a child has the right from birth to a name. Certain isolated tribes, such as the Machiguenga of the Amazon, also lack personal names.\\\" (http://en.wikipedia.org/wiki/Personal_name)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Personal names to not include names of fictional characters, e.g. Sherlock Holmes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Sep 29, 2016: The comment that including the wikipedia definition of personal name is not to be interpreted in a way that restricts this class to only contain strings of letters. A numerical or alphanumerical identifier that denotes a human is being is a personal name, too. (MB)\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier referring to an individual entity that is ascribed personhood by the user of the identifier.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Personal_name\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Personal names \\\"today usually comprises a given name bestowed at birth or at a young age plus a surname. It is nearly universal for a human to have a name; except in rare cases, for example feral children growing up in isolation, or infants orphaned by natural disaster for whom no written record survives.[citation needed] The Convention on the Rights of the Child specifies that a child has the right from birth to a name. Certain isolated tribes, such as the Machiguenga of the Amazon, also lack personal names.\\\" (http://en.wikipedia.org/wiki/Personal_name)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Personal names to not include names of fictional characters, e.g. Sherlock Holmes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Sep 29, 2016: The comment that including the wikipedia definition of personal name is not to be interpreted in a way that restricts this class to only contain strings of letters. A numerical or alphanumerical identifier that denotes a human is being is a personal name, too. (MB)\",\"lang\":\"en\"}],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"personal name\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"personal name\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier referring to an individual entity that is ascribed personhood by the user of the identifier.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Personal_name\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0020015\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://en.wikipedia.org/wiki/Personal_name)\":{\"url\":\"http://en.wikipedia.org/wiki/Personal_name)\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Personal_name)\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://en.wikipedia.org/wiki/Personal_name\":{\"url\":\"http://en.wikipedia.org/wiki/Personal_name\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Personal_name\"},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0020015\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0020015\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0020015\"}}}","appearsIn":["duo"],"curie":"IAO:0020015","definition":["An identifier referring to an individual entity that is ascribed personhood by the user of the identifier.","Personal names \"today usually comprises a given name bestowed at birth or at a young age plus a surname. It is nearly universal for a human to have a name; except in rare cases, for example feral children growing up in isolation, or infants orphaned by natural disaster for whom no written record survives.[citation needed] The Convention on the Rights of the Child specifies that a child has the right from birth to a name. Certain isolated tribes, such as the Machiguenga of the Amazon, also lack personal names.\" (http://en.wikipedia.org/wiki/Personal_name)","Personal names to not include names of fictional characters, e.g. Sherlock Holmes.","Sep 29, 2016: The comment that including the wikipedia definition of personal name is not to be interpreted in a way that restricts this class to only contain strings of letters. A numerical or alphanumerical identifier that denotes a human is being is a personal name, too. (MB)"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0020000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0020000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An identifier referring to an individual entity that is ascribed personhood by the user of the identifier.","http__//purl.obolibrary.org/obo/IAO_0000117":["Justin Whorton","Mathias Brochhausen"],"http__//purl.obolibrary.org/obo/IAO_0000119":"http://en.wikipedia.org/wiki/Personal_name","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/237","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":["Personal names \"today usually comprises a given name bestowed at birth or at a young age plus a surname. It is nearly universal for a human to have a name; except in rare cases, for example feral children growing up in isolation, or infants orphaned by natural disaster for whom no written record survives.[citation needed] The Convention on the Rights of the Child specifies that a child has the right from birth to a name. Certain isolated tribes, such as the Machiguenga of the Amazon, also lack personal names.\" (http://en.wikipedia.org/wiki/Personal_name)","Personal names to not include names of fictional characters, e.g. Sherlock Holmes.","Sep 29, 2016: The comment that including the wikipedia definition of personal name is not to be interpreted in a way that restricts this class to only contain strings of letters. A numerical or alphanumerical identifier that denotes a human is being is a personal name, too. (MB)"],"http__//www.w3.org/2000/01/rdf-schema#label":"personal name","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0020000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0020015","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0020015","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"personal name","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["An identifier referring to an individual entity that is ascribed personhood by the user of the identifier.","Justin Whorton","Mathias Brochhausen","http://en.wikipedia.org/wiki/Personal_name","https://github.com/information-artifact-ontology/IAO/issues/237","true"],"shortForm":"IAO_0020015","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0020016\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020016\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\\u0027s parents at or near birth, in contrast to an inherited one such as a family name\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020015\",\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0020015\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020015\",\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0020015\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\\u0027s parents at or near birth, in contrast to an inherited one such as a family name\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"first name\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Given_name\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"given name\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0020015\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"given name\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\\u0027s parents at or near birth, in contrast to an inherited one such as a family name\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"first name\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Given_name\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0020016\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://en.wikipedia.org/wiki/Given_name\":{\"url\":\"http://en.wikipedia.org/wiki/Given_name\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Given_name\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"personal name\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020015\"},\"type\":[\"class\",\"entity\"]},\"IAO:0020016\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0020016\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0020016\"}}}","appearsIn":["duo"],"curie":"IAO:0020016","definition":"A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\u0027s parents at or near birth, in contrast to an inherited one such as a family name","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0020015","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0020015","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0020015","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0020015","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\u0027s parents at or near birth, in contrast to an inherited one such as a family name","http__//purl.obolibrary.org/obo/IAO_0000117":["Justin Whorton","Mathias Brochhausen"],"http__//purl.obolibrary.org/obo/IAO_0000118":"first name","http__//purl.obolibrary.org/obo/IAO_0000119":"http://en.wikipedia.org/wiki/Given_name","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/237","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"given name","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0020015","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0020016","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0020016","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"given name","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\u0027s parents at or near birth, in contrast to an inherited one such as a family name","Justin Whorton","Mathias Brochhausen","first name","http://en.wikipedia.org/wiki/Given_name","https://github.com/information-artifact-ontology/IAO/issues/237","true"],"shortForm":"IAO_0020016","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0020017\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020017\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier that is typically a part of a person\\u0027s name which has been passed, according to law or custom, from one or both parents to their children.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier that is typically a part of a person\\u0027s name which has been passed, according to law or custom, from one or both parents to their children.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"last name\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"surname\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Family_name\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"family name\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"family name\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier that is typically a part of a person\\u0027s name which has been passed, according to law or custom, from one or both parents to their children.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"last name\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"surname\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Family_name\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0020017\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://en.wikipedia.org/wiki/Family_name\":{\"url\":\"http://en.wikipedia.org/wiki/Family_name\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Family_name\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0020017\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0020017\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0020017\"}}}","appearsIn":["duo"],"curie":"IAO:0020017","definition":"An identifier that is typically a part of a person\u0027s name which has been passed, according to law or custom, from one or both parents to their children.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0020000","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0020000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An identifier that is typically a part of a person\u0027s name which has been passed, according to law or custom, from one or both parents to their children.","http__//purl.obolibrary.org/obo/IAO_0000117":["Justin Whorton","Mathias Brochhausen"],"http__//purl.obolibrary.org/obo/IAO_0000118":["last name","surname"],"http__//purl.obolibrary.org/obo/IAO_0000119":"http://en.wikipedia.org/wiki/Family_name","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/237","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"family name","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0020000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0020017","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0020017","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"family name","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["An identifier that is typically a part of a person\u0027s name which has been passed, according to law or custom, from one or both parents to their children.","Justin Whorton","Mathias Brochhausen","last name","surname","http://en.wikipedia.org/wiki/Family_name","https://github.com/information-artifact-ontology/IAO/issues/237","true"],"shortForm":"IAO_0020017","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0020020\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020020\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Code sets might include non-entities/things (e.g. missing thumbs).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Does not imply absence vs. presence of any taxonomy.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Does not imply that aggregated entities denote particulars, universals, or defined classes (a.k.a. attributive collections) or even that they denote only one of these three types of entities.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Each aggregated entity is often (but not necessarily) associated with a text string—variously called a “description,” “name,” “title,” or “label”—that helps humans reach the target of denotation.\\n\\nWhen there is no such string, it is almost always because the entities take the form of human language words. For example, a “sex” or “gender” code set could contain “MALE” and “FEMALE,” or even “M” and “F” (by convention, we understand what these mean).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For National Drug Codes (NDCs) and similar code sets, there doesn’t even have to be a single, fully-concretized copy somewhere (for example, for NDCs there is no centralized database or repository where they all live as one instance of concretization of code set). The code set can be “distributively” concretized. This seems like an unusual exception, but it also likely applies to Universal Product Codes (UPCs) and their follow on Global Trade Item Numbers (GTINs).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For each given domain, there can potentially exist multiple code sets. The multiplicity of code sets is partially due to the different specific purposes of those code sets.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Many code sets are created for a specific purpose in addition to merely identifying or annotating core ideas of a specified domain.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The information content entities do not denote each other.\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"code map\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"code system\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"codeset\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"coding system\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"controlled vocabulary\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},\"http://purl.org/dc/elements/1.1/contributor\":[{\"type\":[\"literal\"],\"value\":\"Alan Ruttenberg\"},{\"type\":[\"literal\"],\"value\":\"Clint Dowland\"},{\"type\":[\"literal\"],\"value\":\"Matt Diller\"},{\"type\":[\"literal\"],\"value\":\"Sarah Bost\"},{\"type\":[\"literal\"],\"value\":\"William R. Hogan\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Code sets might include non-entities/things (e.g. missing thumbs).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Does not imply absence vs. presence of any taxonomy.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Does not imply that aggregated entities denote particulars, universals, or defined classes (a.k.a. attributive collections) or even that they denote only one of these three types of entities.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Each aggregated entity is often (but not necessarily) associated with a text string—variously called a “description,” “name,” “title,” or “label”—that helps humans reach the target of denotation.\\n\\nWhen there is no such string, it is almost always because the entities take the form of human language words. For example, a “sex” or “gender” code set could contain “MALE” and “FEMALE,” or even “M” and “F” (by convention, we understand what these mean).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For National Drug Codes (NDCs) and similar code sets, there doesn’t even have to be a single, fully-concretized copy somewhere (for example, for NDCs there is no centralized database or repository where they all live as one instance of concretization of code set). The code set can be “distributively” concretized. This seems like an unusual exception, but it also likely applies to Universal Product Codes (UPCs) and their follow on Global Trade Item Numbers (GTINs).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For each given domain, there can potentially exist multiple code sets. The multiplicity of code sets is partially due to the different specific purposes of those code sets.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Many code sets are created for a specific purpose in addition to merely identifying or annotating core ideas of a specified domain.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The information content entities do not denote each other.\",\"lang\":\"en\"}],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"code set\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"isObsolete\":false}],\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"code set\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"code map\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"code system\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"codeset\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"coding system\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"controlled vocabulary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Alan Ruttenberg\"},{\"type\":[\"literal\"],\"value\":\"Clint Dowland\"},{\"type\":[\"literal\"],\"value\":\"Matt Diller\"},{\"type\":[\"literal\"],\"value\":\"Sarah Bost\"},{\"type\":[\"literal\"],\"value\":\"William R. Hogan\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0020020\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0020020\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0020020\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0020020\"},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/elements/1.1/contributor\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"contributor\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"contributor\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0020020","definition":["An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things.","Code sets might include non-entities/things (e.g. missing thumbs).","Does not imply absence vs. presence of any taxonomy.","Does not imply that aggregated entities denote particulars, universals, or defined classes (a.k.a. attributive collections) or even that they denote only one of these three types of entities.","Each aggregated entity is often (but not necessarily) associated with a text string—variously called a “description,” “name,” “title,” or “label”—that helps humans reach the target of denotation.\n\nWhen there is no such string, it is almost always because the entities take the form of human language words. For example, a “sex” or “gender” code set could contain “MALE” and “FEMALE,” or even “M” and “F” (by convention, we understand what these mean).","For National Drug Codes (NDCs) and similar code sets, there doesn’t even have to be a single, fully-concretized copy somewhere (for example, for NDCs there is no centralized database or repository where they all live as one instance of concretization of code set). The code set can be “distributively” concretized. This seems like an unusual exception, but it also likely applies to Universal Product Codes (UPCs) and their follow on Global Trade Item Numbers (GTINs).","For each given domain, there can potentially exist multiple code sets. The multiplicity of code sets is partially due to the different specific purposes of those code sets.","Many code sets are created for a specific purpose in addition to merely identifying or annotating core ideas of a specified domain.","The information content entities do not denote each other."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things.","http__//purl.obolibrary.org/obo/IAO_0000117":["Alan Ruttenberg","Justin Whorton","Mathias Brochhausen"],"http__//purl.obolibrary.org/obo/IAO_0000118":["code map","code system","codeset","coding system","controlled vocabulary"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/237","http__//purl.org/dc/elements/1.1/contributor":["Alan Ruttenberg","Clint Dowland","Matt Diller","Sarah Bost","William R. Hogan"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":["Code sets might include non-entities/things (e.g. missing thumbs).","Does not imply absence vs. presence of any taxonomy.","Does not imply that aggregated entities denote particulars, universals, or defined classes (a.k.a. attributive collections) or even that they denote only one of these three types of entities.","Each aggregated entity is often (but not necessarily) associated with a text string—variously called a “description,” “name,” “title,” or “label”—that helps humans reach the target of denotation.\n\nWhen there is no such string, it is almost always because the entities take the form of human language words. For example, a “sex” or “gender” code set could contain “MALE” and “FEMALE,” or even “M” and “F” (by convention, we understand what these mean).","For National Drug Codes (NDCs) and similar code sets, there doesn’t even have to be a single, fully-concretized copy somewhere (for example, for NDCs there is no centralized database or repository where they all live as one instance of concretization of code set). The code set can be “distributively” concretized. This seems like an unusual exception, but it also likely applies to Universal Product Codes (UPCs) and their follow on Global Trade Item Numbers (GTINs).","For each given domain, there can potentially exist multiple code sets. The multiplicity of code sets is partially due to the different specific purposes of those code sets.","Many code sets are created for a specific purpose in addition to merely identifying or annotating core ideas of a specified domain.","The information content entities do not denote each other."],"http__//www.w3.org/2000/01/rdf-schema#label":"code set","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000030"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0020020","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0020020","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"code set","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0020000","searchableAnnotationValues":["An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things.","Alan Ruttenberg","Justin Whorton","Mathias Brochhausen","code map","code system","codeset","coding system","controlled vocabulary","https://github.com/information-artifact-ontology/IAO/issues/237","Alan Ruttenberg","Clint Dowland","Matt Diller","Sarah Bost","William R. Hogan","true"],"shortForm":"IAO_0020020","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"I have placed this under \\u0027data about an ontology part\\u0027, but this can be discussed. I think this is OK if \\u0027part\\u0027 is interpreted reflexively, as an ontology module is the whole ontology rather than part of it.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology file\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This class and it\\u0027s subclasses are applied to OWL ontologies. Using an rdf:type triple will result in problems with OWL-DL. I propose that dcterms:type is instead used to connect an ontology URI with a class from this hierarchy. The class hierarchy is not disjoint, so multiple assertions can be made about a single ontology.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"numDescendants\":20.0,\"numHierarchicalDescendants\":20.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"I have placed this under \\u0027data about an ontology part\\u0027, but this can be discussed. I think this is OK if \\u0027part\\u0027 is interpreted reflexively, as an ontology module is the whole ontology rather than part of it.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology file\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This class and it\\u0027s subclasses are applied to OWL ontologies. Using an rdf:type triple will result in problems with OWL-DL. I propose that dcterms:type is instead used to connect an ontology URI with a class from this hierarchy. The class hierarchy is not disjoint, so multiple assertions can be made about a single ontology.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:8000000\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000000\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000000","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000102","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000102","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"ontology module","http__//purl.obolibrary.org/obo/IAO_0000116":"I have placed this under \u0027data about an ontology part\u0027, but this can be discussed. I think this is OK if \u0027part\u0027 is interpreted reflexively, as an ontology module is the whole ontology rather than part of it.","http__//purl.obolibrary.org/obo/IAO_0000118":"ontology file","http__//purl.obolibrary.org/obo/IAO_0000232":"This class and it\u0027s subclasses are applied to OWL ontologies. Using an rdf:type triple will result in problems with OWL-DL. I propose that dcterms:type is instead used to connect an ontology URI with a class from this hierarchy. The class hierarchy is not disjoint, so multiple assertions can be made about a single ontology.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000102","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000000","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ontology module","numDescendants":"20.0","numHierarchicalDescendants":"20.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["ontology module","I have placed this under \u0027data about an ontology part\u0027, but this can be discussed. I think this is OK if \u0027part\u0027 is interpreted reflexively, as an ontology module is the whole ontology rather than part of it.","ontology file","This class and it\u0027s subclasses are applied to OWL ontologies. Using an rdf:type triple will result in problems with OWL-DL. I propose that dcterms:type is instead used to connect an ontology URI with a class from this hierarchy. The class hierarchy is not disjoint, so multiple assertions can be made about a single ontology.","false"],"shortForm":"IAO_8000000","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000001\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"base ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"base ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"https://github.com/INCATools/ontology-starter-kit/issues/50\",\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"base ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"base ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:8000001\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000001\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000001","definition":"An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000000","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"base ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"base ontology module","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"https://github.com/INCATools/ontology-starter-kit/issues/50","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000001","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"base ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["base ontology module","An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies.","false"],"shortForm":"IAO_8000001","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000002\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000002\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editors ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source ontology module\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editors ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editors ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editors ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source ontology module\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:8000002\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000002\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000002\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000002","definition":"An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000000","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"editors ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users.","http__//purl.obolibrary.org/obo/IAO_0000118":"source ontology module","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"editors ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000002","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000002","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"editors ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["editors ontology module","An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users.","source ontology module","false"],"shortForm":"IAO_8000002","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000003\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended to be the primary release product and the one consumed by the majority of tools.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"main release ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended to be the primary release product and the one consumed by the majority of tools.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"TODO: Add logical axioms that state that a main release ontology module is derived from (directly or indirectly) an editors module\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"main release ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"main release ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"main release ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended to be the primary release product and the one consumed by the majority of tools.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"TODO: Add logical axioms that state that a main release ontology module is derived from (directly or indirectly) an editors module\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000003\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:8000003\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000003\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000003\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000003","definition":"An ontology module that is intended to be the primary release product and the one consumed by the majority of tools.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000000","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"main release ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that is intended to be the primary release product and the one consumed by the majority of tools.","http__//purl.obolibrary.org/obo/IAO_0000116":"TODO: Add logical axioms that state that a main release ontology module is derived from (directly or indirectly) an editors module","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"main release ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000003","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000003","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"main release ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["main release ontology module","An ontology module that is intended to be the primary release product and the one consumed by the majority of tools.","TODO: Add logical axioms that state that a main release ontology module is derived from (directly or indirectly) an editors module","false"],"shortForm":"IAO_8000003","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000004\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000004\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bridge ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bridge ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"https://github.com/obophenotype/uberon/wiki/inter-anatomy-ontology-bridge-ontologies\",\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bridge ontology module\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bridge ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000004\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:8000004\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000004\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000004\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000004","definition":"An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"bridge ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"bridge ontology module","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"https://github.com/obophenotype/uberon/wiki/inter-anatomy-ontology-bridge-ontologies","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000004","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000004","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"bridge ontology module","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["bridge ontology module","An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module.","false"],"shortForm":"IAO_8000004","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000005\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000005\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology module that is intended to be imported from another ontology.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"import ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology module that is intended to be imported from another ontology.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"TODO: add axioms that indicate this is the output of a module extraction process.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"import file\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"import ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"http://robot.obolibrary.org/extract\",\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"import ontology module\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"import ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology module that is intended to be imported from another ontology.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"TODO: add axioms that indicate this is the output of a module extraction process.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"import file\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000005\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:8000005\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000005\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000005\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000005","definition":"A subset ontology module that is intended to be imported from another ontology.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000006","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"import ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"A subset ontology module that is intended to be imported from another ontology.","http__//purl.obolibrary.org/obo/IAO_0000116":"TODO: add axioms that indicate this is the output of a module extraction process.","http__//purl.obolibrary.org/obo/IAO_0000118":"import file","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"import ontology module","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"http://robot.obolibrary.org/extract","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000006","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000005","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000005","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"import ontology module","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["import ontology module","A subset ontology module that is intended to be imported from another ontology.","TODO: add axioms that indicate this is the output of a module extraction process.","import file","false"],"shortForm":"IAO_8000005","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology slim\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":[\"http://robot.obolibrary.org/filter\",\"http://www.geneontology.org/page/go-slim-and-subset-guide\"],\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"numDescendants\":11.0,\"numHierarchicalDescendants\":11.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology slim\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000006\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:8000006\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000006\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000006","definition":"An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"subset ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms.","http__//purl.obolibrary.org/obo/IAO_0000118":["ontology slim","subset ontology"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"subset ontology module","http__//www.w3.org/2000/01/rdf-schema#seeAlso":["http://robot.obolibrary.org/filter","http://www.geneontology.org/page/go-slim-and-subset-guide"],"http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000006","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000006","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"subset ontology module","numDescendants":"11.0","numHierarchicalDescendants":"11.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["subset ontology module","An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms.","ontology slim","subset ontology","false"],"shortForm":"IAO_8000006","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000007\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000007\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation subset ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation subset ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation subset ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation subset ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000007\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:8000007\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000007\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000007\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000007","definition":"A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"curation subset ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"curation subset ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000006","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000007","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000007","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"curation subset ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["curation subset ontology module","A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation.","false"],"shortForm":"IAO_8000007","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000008\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000008\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended for usage in analysis or discovery applications.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"analysis ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended for usage in analysis or discovery applications.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"analysis subset ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"analysis subset ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"analysis ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended for usage in analysis or discovery applications.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000008\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:8000008\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000008\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000008\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000008","definition":"An ontology module that is intended for usage in analysis or discovery applications.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"analysis ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that is intended for usage in analysis or discovery applications.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"analysis subset ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000006","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000008","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000008","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"analysis subset ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["analysis ontology module","An ontology module that is intended for usage in analysis or discovery applications.","false"],"shortForm":"IAO_8000008","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000009\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000009\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"single layer ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ribbon subset\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"single layer subset ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"single layer subset ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"single layer ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ribbon subset\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000009\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:8000009\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000009\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000009\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000009","definition":"A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"single layer ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint.","http__//purl.obolibrary.org/obo/IAO_0000118":"ribbon subset","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"single layer subset ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000006","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000009","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000009","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"single layer subset ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["single layer ontology module","A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint.","ribbon subset","false"],"shortForm":"IAO_8000009","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000010\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000010\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"exclusion subset ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"antislim\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"exclusion subset ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"exclusion subset ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"exclusion subset ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"antislim\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000010\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:8000010\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000010\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000010\"},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000010","definition":"A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"exclusion subset ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes.","http__//purl.obolibrary.org/obo/IAO_0000118":"antislim","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"exclusion subset ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000006","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000010","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000010","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"exclusion subset ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["exclusion subset ontology module","A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes.","antislim","false"],"shortForm":"IAO_8000010","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000011\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000011\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000005\",\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000005\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000005\",\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000005\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"external import ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"external import\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"external import ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000005\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"external import ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"external import ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"external import\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000011\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:8000011\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000011\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000011\"},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000005\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"import ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000005\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000011","definition":"An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000005","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000005","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000005","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000005","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"external import ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach.","http__//purl.obolibrary.org/obo/IAO_0000118":"external import","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"external import ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000005","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000011","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000011","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"external import ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["external import ontology module","An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach.","external import","false"],"shortForm":"IAO_8000011","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000012\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000012\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is crafted to either include or exclude a taxonomic grouping of species.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"species subset ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is crafted to either include or exclude a taxonomic grouping of species.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"taxon subset\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"species subset ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"https://github.com/obophenotype/uberon/wiki/Taxon-constraints\",\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"species subset ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"species subset ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is crafted to either include or exclude a taxonomic grouping of species.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"taxon subset\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000012\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:8000012\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000012\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000012\"},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000012","definition":"A subset ontology that is crafted to either include or exclude a taxonomic grouping of species.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"species subset ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"A subset ontology that is crafted to either include or exclude a taxonomic grouping of species.","http__//purl.obolibrary.org/obo/IAO_0000118":"taxon subset","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"species subset ontology module","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"https://github.com/obophenotype/uberon/wiki/Taxon-constraints","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000006","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000012","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000012","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"species subset ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["species subset ontology module","A subset ontology that is crafted to either include or exclude a taxonomic grouping of species.","taxon subset","false"],"shortForm":"IAO_8000012","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000013\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000013\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"reasoned ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"reasoned ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"http://robot.obolibrary.org/reason\",\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"reasoned ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"reasoned ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000013\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:8000013\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000013\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000013\"},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000013","definition":"An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000000","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"reasoned ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"reasoned ontology module","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"http://robot.obolibrary.org/reason","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000013","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000013","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"reasoned ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["reasoned ontology module","An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available.","false"],"shortForm":"IAO_8000013","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000014\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000014\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generated ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"TODO: Add axioms (using PROV-O?) that indicate this is the output-of some reasoning process\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generated ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generated ontology module\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generated ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"TODO: Add axioms (using PROV-O?) that indicate this is the output-of some reasoning process\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000014\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:8000014\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000014\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000014\"},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000014","definition":"An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"generated ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV.","http__//purl.obolibrary.org/obo/IAO_0000116":"TODO: Add axioms (using PROV-O?) that indicate this is the output-of some reasoning process","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"generated ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000014","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000014","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"generated ontology module","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["generated ontology module","An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV.","TODO: Add axioms (using PROV-O?) that indicate this is the output-of some reasoning process","false"],"shortForm":"IAO_8000014","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000015\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000015\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is automatically generated from a template specification and fillers for slots in that template.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000014\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000014\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000014\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000014\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"template generated ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is automatically generated from a template specification and fillers for slots in that template.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"template generated ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":[\"http://robot.obolibrary.org/template\",\"https://doi.org/10.1186/s13326-017-0126-0\",\"https://github.com/dosumis/dead_simple_owl_design_patterns/\"],\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000014\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"template generated ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"template generated ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is automatically generated from a template specification and fillers for slots in that template.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000015\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://doi.org/10.1186/s13326-017-0126-0\":{\"url\":\"http://dx.doi.org/10.1186/s13326-017-0126-0\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"doi:10.1186/s13326-017-0126-0\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000014\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generated ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000014\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:8000015\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000015\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000015\"},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000015","definition":"An ontology module that is automatically generated from a template specification and fillers for slots in that template.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000014","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000014","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000014","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000014","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"template generated ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that is automatically generated from a template specification and fillers for slots in that template.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"template generated ontology module","http__//www.w3.org/2000/01/rdf-schema#seeAlso":["http://robot.obolibrary.org/template","https://doi.org/10.1186/s13326-017-0126-0","https://github.com/dosumis/dead_simple_owl_design_patterns/"],"http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000014","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000015","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000015","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"template generated ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["template generated ontology module","An ontology module that is automatically generated from a template specification and fillers for slots in that template.","false"],"shortForm":"IAO_8000015","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000016\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000016\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000004\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000004\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000004\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000004\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"taxonomic bridge ontology module\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"taxonomic bridge ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000004\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"taxonomic bridge ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"taxonomic bridge ontology module\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000016\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:8000016\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000016\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000016\"},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bridge ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000016","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000004","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000004","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000004","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000004","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"taxonomic bridge ontology module","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"taxonomic bridge ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000004","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000016","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000016","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"taxonomic bridge ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["taxonomic bridge ontology module","false"],"shortForm":"IAO_8000016","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000017\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000017\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by expressivity\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by expressivity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by expressivity\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by expressivity\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000017\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:8000017\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000017\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000017\"},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000017","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000006","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"ontology module subsetted by expressivity","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"ontology module subsetted by expressivity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000006","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000017","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000017","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ontology module subsetted by expressivity","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["ontology module subsetted by expressivity","false"],"shortForm":"IAO_8000017","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000018\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000018\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\\n\\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\\n\\nAn ontology is OBO Basic if and only if it has the following characteristics:\\nDAG\\nUnidirectional\\nNo Dangling Clauses\\nFully Asserted\\nFully Labeled\\nNo equivalence axioms\\nSingly labeled edges\\nNo qualifier lists\\nNo disjointness axioms\\nNo owl-axioms header\\nNo imports\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000017\",\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000017\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000017\",\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000017\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obo basic subset ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\\n\\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\\n\\nAn ontology is OBO Basic if and only if it has the following characteristics:\\nDAG\\nUnidirectional\\nNo Dangling Clauses\\nFully Asserted\\nFully Labeled\\nNo equivalence axioms\\nSingly labeled edges\\nNo qualifier lists\\nNo disjointness axioms\\nNo owl-axioms header\\nNo imports\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obo basic subset ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"http://owlcollab.github.io/oboformat/doc/obo-syntax.html#6.2\",\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000017\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obo basic subset ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obo basic subset ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\\n\\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\\n\\nAn ontology is OBO Basic if and only if it has the following characteristics:\\nDAG\\nUnidirectional\\nNo Dangling Clauses\\nFully Asserted\\nFully Labeled\\nNo equivalence axioms\\nSingly labeled edges\\nNo qualifier lists\\nNo disjointness axioms\\nNo owl-axioms header\\nNo imports\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000018\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by expressivity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:8000018\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000018\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000018\"},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000018","definition":"A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\n\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\n\nAn ontology is OBO Basic if and only if it has the following characteristics:\nDAG\nUnidirectional\nNo Dangling Clauses\nFully Asserted\nFully Labeled\nNo equivalence axioms\nSingly labeled edges\nNo qualifier lists\nNo disjointness axioms\nNo owl-axioms header\nNo imports","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000017","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000017","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000017","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000017","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"obo basic subset ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\n\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\n\nAn ontology is OBO Basic if and only if it has the following characteristics:\nDAG\nUnidirectional\nNo Dangling Clauses\nFully Asserted\nFully Labeled\nNo equivalence axioms\nSingly labeled edges\nNo qualifier lists\nNo disjointness axioms\nNo owl-axioms header\nNo imports","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obo basic subset ontology module","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"http://owlcollab.github.io/oboformat/doc/obo-syntax.html#6.2","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000017","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000018","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000018","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"obo basic subset ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["obo basic subset ontology module","A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\n\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\n\nAn ontology is OBO Basic if and only if it has the following characteristics:\nDAG\nUnidirectional\nNo Dangling Clauses\nFully Asserted\nFully Labeled\nNo equivalence axioms\nSingly labeled edges\nNo qualifier lists\nNo disjointness axioms\nNo owl-axioms header\nNo imports","false"],"shortForm":"IAO_8000018","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000019\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000019\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000017\",\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000017\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000017\",\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000017\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by OWL profile\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by OWL profile\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000017\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by OWL profile\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by OWL profile\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000019\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by expressivity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:8000019\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000019\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000019\"},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000019","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000017","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000017","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000017","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000017","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"ontology module subsetted by OWL profile","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"ontology module subsetted by OWL profile","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000017","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000019","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000019","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ontology module subsetted by OWL profile","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["ontology module subsetted by OWL profile","false"],"shortForm":"IAO_8000019","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000020\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000020\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000019\",\"http://purl.obolibrary.org/obo/IAO_8000017\",\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000019\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000019\",\"http://purl.obolibrary.org/obo/IAO_8000017\",\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000019\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"EL++ ontology module\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"EL++ ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000019\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"EL++ ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"EL++ ontology module\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000020\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:8000020\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_8000020\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:8000020\"},\"http://purl.obolibrary.org/obo/IAO_8000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by OWL profile\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by expressivity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000020","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000019","http://purl.obolibrary.org/obo/IAO_8000017","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000019","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000019","http://purl.obolibrary.org/obo/IAO_8000017","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000019","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"EL++ ontology module","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"EL++ ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000019","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000020","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000020","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"EL++ ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["EL++ ontology module","false"],"shortForm":"IAO_8000020","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000001\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that specifies what should happen if the trigger condition is fulfilled.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conditional specification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that specifies what should happen if the trigger condition is fulfilled.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PlanAndPlannedProcess Branch\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI branch derived\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000349\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conditional specification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conditional specification\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conditional specification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that specifies what should happen if the trigger condition is fulfilled.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PlanAndPlannedProcess Branch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI branch derived\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000349\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000001","definition":"A directive information entity that specifies what should happen if the trigger condition is fulfilled.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000033","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000033","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"conditional specification","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A directive information entity that specifies what should happen if the trigger condition is fulfilled.","http__//purl.obolibrary.org/obo/IAO_0000117":"PlanAndPlannedProcess Branch","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI branch derived","OBI_0000349"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"conditional specification","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000033","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000001","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"conditional specification","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["conditional specification","A directive information entity that specifies what should happen if the trigger condition is fulfilled.","PlanAndPlannedProcess Branch","OBI branch derived","OBI_0000349","false"],"shortForm":"IAO_0000001","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000003\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000009\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000009\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000009\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000009\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement unit label\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of measurement unit labels are liters, inches, weight per volume.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: provenance: a term measurement unit was\\nproposed for OBI (OBI_0000176) , edited by Chris Stoeckert and\\nCristian Cocos, and subsequently moved to IAO where the objective for\\nwhich the original term was defined was satisfied with the definition\\nof this, different, term.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: review of this term done during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement unit label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000009\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement unit label\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement unit label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of measurement unit labels are liters, inches, weight per volume.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: provenance: a term measurement unit was\\nproposed for OBI (OBI_0000176) , edited by Chris Stoeckert and\\nCristian Cocos, and subsequently moved to IAO where the objective for\\nwhich the original term was defined was satisfied with the definition\\nof this, different, term.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: review of this term done during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000003\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"datum label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000003","definition":"A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000009","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000009","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"measurement unit label","http__//purl.obolibrary.org/obo/IAO_0000112":"Examples of measurement unit labels are liters, inches, weight per volume.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure.","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-03-16: provenance: a term measurement unit was\nproposed for OBI (OBI_0000176) , edited by Chris Stoeckert and\nCristian Cocos, and subsequently moved to IAO where the objective for\nwhich the original term was defined was satisfied with the definition\nof this, different, term.","2009-03-16: review of this term done during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI."],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Melanie Courtot"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"measurement unit label","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000009","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000003","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000003","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"measurement unit label","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["measurement unit label","Examples of measurement unit labels are liters, inches, weight per volume.","A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure.","2009-03-16: provenance: a term measurement unit was\nproposed for OBI (OBI_0000176) , edited by Chris Stoeckert and\nCristian Cocos, and subsequently moved to IAO where the objective for\nwhich the original term was defined was satisfied with the definition\nof this, different, term.","2009-03-16: review of this term done during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.","PERSON: Alan Ruttenberg","PERSON: Melanie Courtot","false"],"shortForm":"IAO_0000003","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000005\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"objective specification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: original definition when imported from OBI read: \\\"objective is an non realizable information entity which can serve as that proper part of a plan towards which the realization of the plan is directed.\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-03-31: In the example of usage (\\\"In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction\\\") there is a protocol which is the ChIP assay protocol. In addition to being concretized on paper, the protocol can be concretized as a realizable entity, such as a plan that inheres in a person. The objective specification is the part that says that some protein and DNA interactions are identified. This is a specification of a process endpoint: the boundary in the process before which they are not identified and after which they are. During the realization of the plan, the goal is to get to the point of having the interactions, and participants in the realization of the plan try to do that.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Answers the question, why did you do this experiment?\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Barry Smith\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jennifer Fostel\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"goal specification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI Plan and Planned Process/Roles Branch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000217\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"objective specification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"objective specification\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000316\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"objective specification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: original definition when imported from OBI read: \\\"objective is an non realizable information entity which can serve as that proper part of a plan towards which the realization of the plan is directed.\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-03-31: In the example of usage (\\\"In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction\\\") there is a protocol which is the ChIP assay protocol. In addition to being concretized on paper, the protocol can be concretized as a realizable entity, such as a plan that inheres in a person. The objective specification is the part that says that some protein and DNA interactions are identified. This is a specification of a process endpoint: the boundary in the process before which they are not identified and after which they are. During the realization of the plan, the goal is to get to the point of having the interactions, and participants in the realization of the plan try to do that.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Answers the question, why did you do this experiment?\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Barry Smith\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jennifer Fostel\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"goal specification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI Plan and Planned Process/Roles Branch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000217\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000005\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000316\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"introduction to a publication about an investigation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000316\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000005","definition":"A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000033","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000033","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"objective specification","http__//purl.obolibrary.org/obo/IAO_0000112":"In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-03-16: original definition when imported from OBI read: \"objective is an non realizable information entity which can serve as that proper part of a plan towards which the realization of the plan is directed.\"","2014-03-31: In the example of usage (\"In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction\") there is a protocol which is the ChIP assay protocol. In addition to being concretized on paper, the protocol can be concretized as a realizable entity, such as a plan that inheres in a person. The objective specification is the part that says that some protein and DNA interactions are identified. This is a specification of a process endpoint: the boundary in the process before which they are not identified and after which they are. During the realization of the plan, the goal is to get to the point of having the interactions, and participants in the realization of the plan try to do that.","Answers the question, why did you do this experiment?"],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Barry Smith","PERSON: Bjoern Peters","PERSON: Jennifer Fostel"],"http__//purl.obolibrary.org/obo/IAO_0000118":"goal specification","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI Plan and Planned Process/Roles Branch","OBI_0000217"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"objective specification","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000033","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000005","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000005","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"objective specification","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000316"],"searchableAnnotationValues":["objective specification","In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction.","A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.","2009-03-16: original definition when imported from OBI read: \"objective is an non realizable information entity which can serve as that proper part of a plan towards which the realization of the plan is directed.\"","2014-03-31: In the example of usage (\"In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction\") there is a protocol which is the ChIP assay protocol. In addition to being concretized on paper, the protocol can be concretized as a realizable entity, such as a plan that inheres in a person. The objective specification is the part that says that some protein and DNA interactions are identified. This is a specification of a process endpoint: the boundary in the process before which they are not identified and after which they are. During the realization of the plan, the goal is to get to the point of having the interactions, and participants in the realization of the plan try to do that.","Answers the question, why did you do this experiment?","PERSON: Alan Ruttenberg","PERSON: Barry Smith","PERSON: Bjoern Peters","PERSON: Jennifer Fostel","goal specification","OBI Plan and Planned Process/Roles Branch","OBI_0000217","false"],"shortForm":"IAO_0000005","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000006\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000006\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A narrative object is an information content entity that is a set of propositions.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"narrative object\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of narrative objects are reports, journal articles, and patents submission.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A narrative object is an information content entity that is a set of propositions.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \\u0027textual entity\\u0027 and \\u0027figure\\u0027. Alan restored as there are OBI dependencies and this merits further discussion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"agree - DENRIE. Issue(alan) do we only mean text? What about a story told by mime. Does music count? (no) what about an oral report. Regarding definition, saying it is a set of propositions means we loose the idea that wording matters. Maybe adjust saying a narrative object has some relationshop to a set of propositions\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000013\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"narrative object\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"narrative object\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"narrative object\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of narrative objects are reports, journal articles, and patents submission.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A narrative object is an information content entity that is a set of propositions.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \\u0027textual entity\\u0027 and \\u0027figure\\u0027. Alan restored as there are OBI dependencies and this merits further discussion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"agree - DENRIE. Issue(alan) do we only mean text? What about a story told by mime. Does music count? (no) what about an oral report. Regarding definition, saying it is a set of propositions means we loose the idea that wording matters. Maybe adjust saying a narrative object has some relationshop to a set of propositions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000013\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000006\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000006","definition":"A narrative object is an information content entity that is a set of propositions.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"narrative object","http__//purl.obolibrary.org/obo/IAO_0000112":"Examples of narrative objects are reports, journal articles, and patents submission.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A narrative object is an information content entity that is a set of propositions.","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity\u0027 and \u0027figure\u0027. Alan restored as there are OBI dependencies and this merits further discussion","agree - DENRIE. Issue(alan) do we only mean text? What about a story told by mime. Does music count? (no) what about an oral report. Regarding definition, saying it is a set of propositions means we loose the idea that wording matters. Maybe adjust saying a narrative object has some relationshop to a set of propositions"],"http__//purl.obolibrary.org/obo/IAO_0000117":"person:Chris Stoeckert","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000013","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"narrative object","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000006","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000006","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"narrative object","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["narrative object","Examples of narrative objects are reports, journal articles, and patents submission.","A narrative object is an information content entity that is a set of propositions.","2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity\u0027 and \u0027figure\u0027. Alan restored as there are OBI dependencies and this merits further discussion","agree - DENRIE. Issue(alan) do we only mean text? What about a story told by mime. Does music count? (no) what about an oral report. Regarding definition, saying it is a set of propositions means we loose the idea that wording matters. Maybe adjust saying a narrative object has some relationshop to a set of propositions","person:Chris Stoeckert","OBI_0000013","group:OBI","false"],"shortForm":"IAO_0000006","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000007\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000007\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that describes an action the bearer will take.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Pour the contents of flask 1 into flask 2\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that describes an action the bearer will take.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI Plan and Planned Process branch\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"action specification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"action specification\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000007\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Pour the contents of flask 1 into flask 2\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity that describes an action the bearer will take.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI Plan and Planned Process branch\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000007\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000007","definition":"A directive information entity that describes an action the bearer will take.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000033","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000033","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"Pour the contents of flask 1 into flask 2","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A directive information entity that describes an action the bearer will take.","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"OBI Plan and Planned Process branch","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"action specification","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000033","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000007","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000007","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"action specification","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000104","searchableAnnotationValues":["Pour the contents of flask 1 into flask 2","A directive information entity that describes an action the bearer will take.","Alan Ruttenberg","OBI Plan and Planned Process branch","false"],"shortForm":"IAO_0000007","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000008\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000008\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_artifact\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_artifact\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000008\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000008","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_artifact","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000008","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000008","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_artifact","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"false","shortForm":"IAO_0000008","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000009\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000009\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"datum label\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"http://www.golovchenko.org/cgi-bin/wnsearch?q\\u003dlabel#4n\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"value\":\"9/22/11 BP: changed the rdfs:label for this class from \\u0027label\\u0027 to \\u0027datum label\\u0027 to convey that this class is not intended to cover all kinds of labels (stickers, radiolabels, etc.), and not even all kind of textual labels, but rather the kind of labels occuring in a datum. \\n\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"datum label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"datum label\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"datum label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"http://www.golovchenko.org/cgi-bin/wnsearch?q\\u003dlabel#4n\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"9/22/11 BP: changed the rdfs:label for this class from \\u0027label\\u0027 to \\u0027datum label\\u0027 to convey that this class is not intended to cover all kinds of labels (stickers, radiolabels, etc.), and not even all kind of textual labels, but rather the kind of labels occuring in a datum. \\n\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000009\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000009","definition":"A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"datum label","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label","http__//purl.obolibrary.org/obo/IAO_0000116":"http://www.golovchenko.org/cgi-bin/wnsearch?q\u003dlabel#4n","http__//purl.obolibrary.org/obo/IAO_0000117":"GROUP: IAO","http__//purl.obolibrary.org/obo/IAO_0000232":"9/22/11 BP: changed the rdfs:label for this class from \u0027label\u0027 to \u0027datum label\u0027 to convey that this class is not intended to cover all kinds of labels (stickers, radiolabels, etc.), and not even all kind of textual labels, but rather the kind of labels occuring in a datum. \n","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"datum label","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000009","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000009","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"datum label","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["datum label","A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label","http://www.golovchenko.org/cgi-bin/wnsearch?q\u003dlabel#4n","GROUP: IAO","9/22/11 BP: changed the rdfs:label for this class from \u0027label\u0027 to \u0027datum label\u0027 to convey that this class is not intended to cover all kinds of labels (stickers, radiolabels, etc.), and not even all kind of textual labels, but rather the kind of labels occuring in a datum. \n","false"],"shortForm":"IAO_0000009","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000010\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Software is a plan specification composed of a series of instructions that can be \\ninterpreted by or directly executed by a processing unit.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Software is a plan specification composed of a series of instructions that can be \\ninterpreted by or directly executed by a processing unit.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"see sourceforge tracker discussion at http://sourceforge.net/tracker/index.php?func\\u003ddetail\\u0026aid\\u003d1958818\\u0026group_id\\u003d177891\\u0026atid\\u003d886178\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: OBI\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Software is a plan specification composed of a series of instructions that can be \\ninterpreted by or directly executed by a processing unit.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"see sourceforge tracker discussion at http://sourceforge.net/tracker/index.php?func\\u003ddetail\\u0026aid\\u003d1958818\\u0026group_id\\u003d177891\\u0026atid\\u003d886178\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000010\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000010","definition":"Software is a plan specification composed of a series of instructions that can be \ninterpreted by or directly executed by a processing unit.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000104","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000104","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"software","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"Software is a plan specification composed of a series of instructions that can be \ninterpreted by or directly executed by a processing unit.","http__//purl.obolibrary.org/obo/IAO_0000116":"see sourceforge tracker discussion at http://sourceforge.net/tracker/index.php?func\u003ddetail\u0026aid\u003d1958818\u0026group_id\u003d177891\u0026atid\u003d886178","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Bjoern Peters","PERSON: Chris Stoeckert","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP: OBI","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"software","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000104","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000010","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000010","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"software","numDescendants":"5.0","numHierarchicalDescendants":"5.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["software","Software is a plan specification composed of a series of instructions that can be \ninterpreted by or directly executed by a processing unit.","see sourceforge tracker discussion at http://sourceforge.net/tracker/index.php?func\u003ddetail\u0026aid\u003d1958818\u0026group_id\u003d177891\u0026atid\u003d886178","PERSON: Alan Ruttenberg","PERSON: Bjoern Peters","PERSON: Chris Stoeckert","PERSON: Melanie Courtot","GROUP: OBI","false"],"shortForm":"IAO_0000010","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000012\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000012\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_digital entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\n\\nSuperclass was \\u0027digitial quality\\u0027\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"OBI_0000261\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_digital entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_digital entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_digital entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\n\\nSuperclass was \\u0027digitial quality\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000261\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000012\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000012","definition":"A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"obsolete_digital entity","http__//purl.obolibrary.org/obo/IAO_0000115":"A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical.","http__//purl.obolibrary.org/obo/IAO_0000116":"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\n\nSuperclass was \u0027digitial quality\u0027","http__//purl.obolibrary.org/obo/IAO_0000117":"person:Chris Stoeckert","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000261","group:OBI"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete2_digital entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000012","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000012","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete2_digital entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["obsolete_digital entity","A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical.","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\n\nSuperclass was \u0027digitial quality\u0027","person:Chris Stoeckert","OBI_0000261","group:OBI","false"],"shortForm":"IAO_0000012","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000013\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000013\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report that is published in a journal.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000088\",\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000311\"],\"directParent\":[\"http://purl.obolibrary.org/obo/IAO_0000088\",\"http://purl.obolibrary.org/obo/IAO_0000311\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000088\",\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000311\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/IAO_0000088\",\"http://purl.obolibrary.org/obo/IAO_0000311\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"journal article\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples are articles published in the journals, Nature and Science. The content can often be cited by reference to a paper based encoding, e.g. Authors, Title of article, Journal name, date or year of publication, volume and page number.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report that is published in a journal.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000159\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"journal article\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000088\",\"http://purl.obolibrary.org/obo/IAO_0000311\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000444\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000444\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"journal article\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000443\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000013\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000444\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000444\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"journal article\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples are articles published in the journals, Nature and Science. The content can often be cited by reference to a paper based encoding, e.g. Authors, Title of article, Journal name, date or year of publication, volume and page number.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report that is published in a journal.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000159\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000013\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000311\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000311\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000312\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000312\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000444\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publishing process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000444\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"data item extraction from journal article\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000088\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000088\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000013","definition":"A report that is published in a journal.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000088","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000311"],"directParent":["http://purl.obolibrary.org/obo/IAO_0000088","http://purl.obolibrary.org/obo/IAO_0000311"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000088","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000311"],"hierarchicalParent":["http://purl.obolibrary.org/obo/IAO_0000088","http://purl.obolibrary.org/obo/IAO_0000311"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"journal article","http__//purl.obolibrary.org/obo/IAO_0000112":"Examples are articles published in the journals, Nature and Science. The content can often be cited by reference to a paper based encoding, e.g. Authors, Title of article, Journal name, date or year of publication, volume and page number.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A report that is published in a journal.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000159","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"journal article","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000088","http://purl.obolibrary.org/obo/IAO_0000311"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000013","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000013","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"journal article","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000443","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000444","searchableAnnotationValues":["journal article","Examples are articles published in the journals, Nature and Science. The content can often be cited by reference to a paper based encoding, e.g. Authors, Title of article, Journal name, date or year of publication, volume and page number.","A report that is published in a journal.","PERSON: Alan Ruttenberg","PERSON: Chris Stoeckert","OBI_0000159","group:OBI","false"],"shortForm":"IAO_0000013","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000015\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000015\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A quality of an information bearer that imparts the information content\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information carrier\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"In the case of a printed paperback novel the physicality of the ink and of the paper form part of the information bearer. The qualities of appearing black and having a certain pattern for the ink and appearing white for the paper form part of the information carrier in this case.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A quality of an information bearer that imparts the information content\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"12/15/09: There is a concern that some ways that carry information may be processes rather than qualities, such as in a \\u0027delayed wave carrier\\u0027.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2014-03-10: We are not certain that all information carriers are qualities. There was a discussion of dropping it.\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Smith, Ceusters, Ruttenberg, 2000 years of philosophy\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information carrier\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000019\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000059\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information carrier\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information carrier\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"In the case of a printed paperback novel the physicality of the ink and of the paper form part of the information bearer. The qualities of appearing black and having a certain pattern for the ink and appearing white for the paper form part of the information carrier in this case.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A quality of an information bearer that imparts the information content\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"12/15/09: There is a concern that some ways that carry information may be processes rather than qualities, such as in a \\u0027delayed wave carrier\\u0027.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2014-03-10: We are not certain that all information carriers are qualities. There was a discussion of dropping it.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Smith, Ceusters, Ruttenberg, 2000 years of philosophy\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000015\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000059\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"concretizes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000059\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000015","definition":"A quality of an information bearer that imparts the information content","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000019","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000019","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"information carrier","http__//purl.obolibrary.org/obo/IAO_0000112":"In the case of a printed paperback novel the physicality of the ink and of the paper form part of the information bearer. The qualities of appearing black and having a certain pattern for the ink and appearing white for the paper form part of the information carrier in this case.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A quality of an information bearer that imparts the information content","http__//purl.obolibrary.org/obo/IAO_0000116":["12/15/09: There is a concern that some ways that carry information may be processes rather than qualities, such as in a \u0027delayed wave carrier\u0027.","2014-03-10: We are not certain that all information carriers are qualities. There was a discussion of dropping it."],"http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Smith, Ceusters, Ruttenberg, 2000 years of philosophy","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"information carrier","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000019","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000015","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000015","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"information carrier","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["information carrier","In the case of a printed paperback novel the physicality of the ink and of the paper form part of the information bearer. The qualities of appearing black and having a certain pattern for the ink and appearing white for the paper form part of the information carrier in this case.","A quality of an information bearer that imparts the information content","12/15/09: There is a concern that some ways that carry information may be processes rather than qualities, such as in a \u0027delayed wave carrier\u0027.","2014-03-10: We are not certain that all information carriers are qualities. There was a discussion of dropping it.","PERSON: Alan Ruttenberg","Smith, Ceusters, Ruttenberg, 2000 years of philosophy","false"],"shortForm":"IAO_0000015","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000017\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000017\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"model number\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"manufactered items may have more than one model number, sometimes by rebranding, or because companies are sold and the products issued new model numbers\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"model number\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"model number\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"model number\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"manufactered items may have more than one model number, sometimes by rebranding, or because companies are sold and the products issued new model numbers\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000017\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000017","definition":"A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000028","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000028","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"model number","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","http__//purl.obolibrary.org/obo/IAO_0000116":"manufactered items may have more than one model number, sometimes by rebranding, or because companies are sold and the products issued new model numbers","http__//purl.obolibrary.org/obo/IAO_0000117":"Person: Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"model number","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000028","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000017","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000017","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"model number","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["model number","A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","manufactered items may have more than one model number, sometimes by rebranding, or because companies are sold and the products issued new model numbers","Person: Alan Ruttenberg","false"],"shortForm":"IAO_0000017","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000018\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000018\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000226\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_material_entity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_material_entity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000018\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000226\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000018","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000226","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_material_entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000018","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000018","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_material_entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"false","shortForm":"IAO_0000018","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000019\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000019\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"binary digital entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"MS Word document, ZIP file, DICOM file, JPEG file\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\nSuperclass was \\u0027digital entity\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"digital_entity\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"OBI_0000244\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_binary digital entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_binary digital entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"binary digital entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"MS Word document, ZIP file, DICOM file, JPEG file\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\nSuperclass was \\u0027digital entity\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"digital_entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000244\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000019\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000019","definition":"A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"binary digital entity","http__//purl.obolibrary.org/obo/IAO_0000112":"MS Word document, ZIP file, DICOM file, JPEG file","http__//purl.obolibrary.org/obo/IAO_0000115":"A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters.","http__//purl.obolibrary.org/obo/IAO_0000116":["3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nSuperclass was \u0027digital entity\u0027","digital_entity"],"http__//purl.obolibrary.org/obo/IAO_0000117":"person:Chris Stoeckert","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000244","group:OBI"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete2_binary digital entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000019","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000019","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete2_binary digital entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["binary digital entity","MS Word document, ZIP file, DICOM file, JPEG file","A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters.","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nSuperclass was \u0027digital entity\u0027","digital_entity","person:Chris Stoeckert","OBI_0000244","group:OBI","false"],"shortForm":"IAO_0000019","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000024\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000024\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"a unit of measure is the quality of some material entity compared to which another quality is some multiple of.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"value\":\"The length of a ruler.\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"a unit of measure is the quality of some material entity compared to which another quality is some multiple of.\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"value\":\"Alan Ruttenberg\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"Smith, Ceusters, Ruttenberg, 2000 years of philosophy\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_unit of measure\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_unit of measure\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The length of a ruler.\"},{\"type\":[\"literal\"],\"value\":\"a unit of measure is the quality of some material entity compared to which another quality is some multiple of.\"},{\"type\":[\"literal\"],\"value\":\"Alan Ruttenberg\"},{\"type\":[\"literal\"],\"value\":\"Smith, Ceusters, Ruttenberg, 2000 years of philosophy\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000024\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000024","definition":"a unit of measure is the quality of some material entity compared to which another quality is some multiple of.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"The length of a ruler.","http__//purl.obolibrary.org/obo/IAO_0000115":"a unit of measure is the quality of some material entity compared to which another quality is some multiple of.","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Smith, Ceusters, Ruttenberg, 2000 years of philosophy","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_unit of measure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000024","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000024","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_unit of measure","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["The length of a ruler.","a unit of measure is the quality of some material entity compared to which another quality is some multiple of.","Alan Ruttenberg","Smith, Ceusters, Ruttenberg, 2000 years of philosophy","false"],"shortForm":"IAO_0000024","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000025\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000025\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"programming language\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"R, Perl, Java\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000058\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"programming language\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"programming language\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"programming language\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"R, Perl, Java\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000058\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000025\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000025","definition":"A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000104","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000104","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"programming language","http__//purl.obolibrary.org/obo/IAO_0000112":"R, Perl, Java","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.","http__//purl.obolibrary.org/obo/IAO_0000117":["person:Alan Ruttenberg","person:Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000058","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"programming language","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000104","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000025","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000025","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"programming language","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["programming language","R, Perl, Java","A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.","person:Alan Ruttenberg","person:Chris Stoeckert","OBI_0000058","group:OBI","false"],"shortForm":"IAO_0000025","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Data items include counts of things, analyte concentrations, and statistical summaries.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"JAR: datum -- well, this will be very tricky to define, but maybe some \\ninformation-like stuff that might be put into a computer and that is \\nmeant, by someone, to denote and/or to be interpreted by some \\nprocess... I would include lists, tables, sentences... I think I might \\ndefer to Barry, or to Brian Cantwell Smith\\n\\nJAR: A data item is an approximately justified approximately true approximate belief\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"numDescendants\":83.0,\"numHierarchicalDescendants\":65.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/APOLLO_SV_00000522\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000096\",\"isObsolete\":false}]},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000443\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Data items include counts of things, analyte concentrations, and statistical summaries.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"JAR: datum -- well, this will be very tricky to define, but maybe some \\ninformation-like stuff that might be put into a computer and that is \\nmeant, by someone, to denote and/or to be interpreted by some \\nprocess... I would include lists, tables, sentences... I think I might \\ndefer to Barry, or to Brian Cantwell Smith\\n\\nJAR: A data item is an approximately justified approximately true approximate belief\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000027\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/APOLLO_SV_00000522\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code repository\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO:SV_00000522\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000443\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"data item extraction from journal article\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000443\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000096\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000096\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000027","definition":"An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"data item","http__//purl.obolibrary.org/obo/IAO_0000112":"Data items include counts of things, analyte concentrations, and statistical summaries.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.","http__//purl.obolibrary.org/obo/IAO_0000116":["2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers.","2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum.","2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym.","2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/","JAR: datum -- well, this will be very tricky to define, but maybe some \ninformation-like stuff that might be put into a computer and that is \nmeant, by someone, to denote and/or to be interpreted by some \nprocess... I would include lists, tables, sentences... I think I might \ndefer to Barry, or to Brian Cantwell Smith\n\nJAR: A data item is an approximately justified approximately true approximate belief"],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Chris Stoeckert","PERSON: Jonathan Rees"],"http__//purl.obolibrary.org/obo/IAO_0000118":"data","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"data item","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000027","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000027","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"data item","numDescendants":"83.0","numHierarchicalDescendants":"65.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/APOLLO_SV_00000522","http://purl.obolibrary.org/obo/IAO_0000443"],"searchableAnnotationValues":["data item","Data items include counts of things, analyte concentrations, and statistical summaries.","An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.","2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers.","2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum.","2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym.","2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/","JAR: datum -- well, this will be very tricky to define, but maybe some \ninformation-like stuff that might be put into a computer and that is \nmeant, by someone, to denote and/or to be interpreted by some \nprocess... I would include lists, tables, sentences... I think I might \ndefer to Barry, or to Brian Cantwell Smith\n\nJAR: A data item is an approximately justified approximately true approximate belief","PERSON: Alan Ruttenberg","PERSON: Chris Stoeckert","PERSON: Jonathan Rees","data","false"],"shortForm":"IAO_0000027","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000028\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a serial number such as \\\"12324X\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a stop sign\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a written proper name such as \\\"OBI\\\"\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"20091104, MC: this needs work and will most probably change\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-03-31: We would like to have a deeper analysis of \\u0027mark\\u0027 and \\u0027sign\\u0027 in the future (see https://github.com/information-artifact-ontology/IAO/issues/154).\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: James A. Overton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"based on Oxford English Dictionary\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"numDescendants\":7.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a serial number such as \\\"12324X\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a stop sign\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a written proper name such as \\\"OBI\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"20091104, MC: this needs work and will most probably change\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-03-31: We would like to have a deeper analysis of \\u0027mark\\u0027 and \\u0027sign\\u0027 in the future (see https://github.com/information-artifact-ontology/IAO/issues/154).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: James A. Overton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"based on Oxford English Dictionary\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000028\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000028","definition":"An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"symbol","http__//purl.obolibrary.org/obo/IAO_0000112":["a serial number such as \"12324X\"","a stop sign","a written proper name such as \"OBI\""],"http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity.","http__//purl.obolibrary.org/obo/IAO_0000116":["20091104, MC: this needs work and will most probably change","2014-03-31: We would like to have a deeper analysis of \u0027mark\u0027 and \u0027sign\u0027 in the future (see https://github.com/information-artifact-ontology/IAO/issues/154)."],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: James A. Overton","PERSON: Jonathan Rees"],"http__//purl.obolibrary.org/obo/IAO_0000119":"based on Oxford English Dictionary","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"symbol","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000028","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000028","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"symbol","numDescendants":"7.0","numHierarchicalDescendants":"7.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["symbol","a serial number such as \"12324X\"","a stop sign","a written proper name such as \"OBI\"","An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity.","20091104, MC: this needs work and will most probably change","2014-03-31: We would like to have a deeper analysis of \u0027mark\u0027 and \u0027sign\u0027 in the future (see https://github.com/information-artifact-ontology/IAO/issues/154).","PERSON: James A. Overton","PERSON: Jonathan Rees","based on Oxford English Dictionary","false"],"shortForm":"IAO_0000028","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000029\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000029\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A symbol that denotes a number.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"numeral\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A symbol that denotes a number.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"numeral\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"numeral\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"numeral\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A symbol that denotes a number.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000029\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000029","definition":"A symbol that denotes a number.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000028","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000028","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"numeral","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A symbol that denotes a number.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Jonathan Rees","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"numeral","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000028","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000029","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000029","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"numeral","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["numeral","A symbol that denotes a number.","PERSON: Jonathan Rees","false"],"shortForm":"IAO_0000029","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A generically dependent continuant that is about some thing.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000031\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000031\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of information content entites include journal articles, data, graphical layouts, and graphs.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A generically dependent continuant that is about some thing.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-03-10: The use of \\\"thing\\\" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information_content_entity \\u0027is_encoded_in\\u0027 some digital_entity in obi before split (040907). information_content_entity \\u0027is_encoded_in\\u0027 some physical_document in obi before split (040907).\\n\\nPrevious. An information content entity is a non-realizable information entity that \\u0027is encoded in\\u0027 some digital or physical entity.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000142\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/BFO_0000031\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"numDescendants\":229.0,\"numHierarchicalDescendants\":211.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000572\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000575\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000580\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000650\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000650\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false}],\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of information content entites include journal articles, data, graphical layouts, and graphs.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A generically dependent continuant that is about some thing.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-03-10: The use of \\\"thing\\\" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information_content_entity \\u0027is_encoded_in\\u0027 some digital_entity in obi before split (040907). information_content_entity \\u0027is_encoded_in\\u0027 some physical_document in obi before split (040907).\\n\\nPrevious. An information content entity is a non-realizable information entity that \\u0027is encoded in\\u0027 some digital or physical entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000142\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000030\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000575\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"associating information with a centrally registered identifier in its registry\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000575\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000572\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"documenting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000572\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000650\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database extract, transform, and load process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000650\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000580\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"looking up a centrally registered identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000580\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000030","definition":"A generically dependent continuant that is about some thing.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000031","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000031","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"information content entity","http__//purl.obolibrary.org/obo/IAO_0000112":"Examples of information content entites include journal articles, data, graphical layouts, and graphs.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A generically dependent continuant that is about some thing.","http__//purl.obolibrary.org/obo/IAO_0000116":["2014-03-10: The use of \"thing\" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ).","information_content_entity \u0027is_encoded_in\u0027 some digital_entity in obi before split (040907). information_content_entity \u0027is_encoded_in\u0027 some physical_document in obi before split (040907).\n\nPrevious. An information content entity is a non-realizable information entity that \u0027is encoded in\u0027 some digital or physical entity."],"http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Chris Stoeckert","http__//purl.obolibrary.org/obo/IAO_0000119":"OBI_0000142","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"information content entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/BFO_0000031"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000030","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000030","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"information content entity","numDescendants":"229.0","numHierarchicalDescendants":"211.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/IAO_0000572","http://purl.obolibrary.org/obo/IAO_0000575","http://purl.obolibrary.org/obo/IAO_0000580","http://purl.obolibrary.org/obo/IAO_0000650","http://purl.obolibrary.org/obo/IAO_0000650"],"relatedTo":"http://purl.obolibrary.org/obo/BFO_0000001","searchableAnnotationValues":["information content entity","Examples of information content entites include journal articles, data, graphical layouts, and graphs.","A generically dependent continuant that is about some thing.","2014-03-10: The use of \"thing\" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ).","information_content_entity \u0027is_encoded_in\u0027 some digital_entity in obi before split (040907). information_content_entity \u0027is_encoded_in\u0027 some physical_document in obi before split (040907).\n\nPrevious. An information content entity is a non-realizable information entity that \u0027is encoded in\u0027 some digital or physical entity.","PERSON: Chris Stoeckert","OBI_0000142","false"],"shortForm":"IAO_0000030","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000031\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000031\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A numeral that denotes an integer\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000029\",\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000029\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000029\",\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000029\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"integer numeral\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A numeral that denotes an integer\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"integer numeral\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000029\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"integer numeral\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"integer numeral\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A numeral that denotes an integer\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000031\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000029\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"numeral\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000029\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000031","definition":"A numeral that denotes an integer","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000029","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000029","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000029","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000029","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"integer numeral","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A numeral that denotes an integer","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Jonathan Rees","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"integer numeral","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000029","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000031","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000031","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"integer numeral","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["integer numeral","A numeral that denotes an integer","PERSON: Jonathan Rees","false"],"shortForm":"IAO_0000031","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000032\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000032\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000109\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000109\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"10 feet. 3 ml.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: we decided to keep datum singular in scalar measurement datum, as in\\nthis case we explicitly refer to the singular form\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Would write this as: has_part some \\u0027measurement unit label\\u0027 and has_part some numeral and has_part exactly 2, except for the fact that this won\\u0027t let us take advantage of OWL reasoning over the numbers. Instead use has measurment value property to represent the same. Use has measurement unit label (subproperty of has_part) so we can easily say that there is only one of them.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scalar measurement datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000109\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#minCardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#minCardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000004\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scalar measurement datum\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"10 feet. 3 ml.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: we decided to keep datum singular in scalar measurement datum, as in\\nthis case we explicitly refer to the singular form\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Would write this as: has_part some \\u0027measurement unit label\\u0027 and has_part some numeral and has_part exactly 2, except for the fact that this won\\u0027t let us take advantage of OWL reasoning over the numbers. Instead use has measurment value property to represent the same. Use has measurement unit label (subproperty of has_part) so we can easily say that there is only one of them.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000032\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000039\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement value\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000004\"},\"type\":[\"dataProperty\",\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000032","definition":"A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000109","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000109","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"10 feet. 3 ml.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label.","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-03-16: we decided to keep datum singular in scalar measurement datum, as in\nthis case we explicitly refer to the singular form","Would write this as: has_part some \u0027measurement unit label\u0027 and has_part some numeral and has_part exactly 2, except for the fact that this won\u0027t let us take advantage of OWL reasoning over the numbers. Instead use has measurment value property to represent the same. Use has measurement unit label (subproperty of has_part) so we can easily say that there is only one of them."],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Melanie Courtot"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"scalar measurement datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000109"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000032","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000032","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"scalar measurement datum","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["10 feet. 3 ml.","A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label.","2009-03-16: we decided to keep datum singular in scalar measurement datum, as in\nthis case we explicitly refer to the singular form","Would write this as: has_part some \u0027measurement unit label\u0027 and has_part some numeral and has_part exactly 2, except for the fact that this won\u0027t let us take advantage of OWL reasoning over the numbers. Instead use has measurment value property to represent the same. Use has measurement unit label (subproperty of has_part) so we can easily say that there is only one of them.","PERSON: Alan Ruttenberg","PERSON: Melanie Courtot","false"],"shortForm":"IAO_0000032","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity whose concretizations indicate to their bearer how to realize them in a process.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity whose concretizations indicate to their bearer how to realize them in a process.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: provenance: a term realizable information entity was proposed for OBI (OBI_0000337) , edited by the PlanAndPlannedProcess branch. Original definition was \\\"is the specification of a process that can be concretized and realized by an actor\\\" with alternative term \\\"instruction\\\".It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2013-05-30 Alan Ruttenberg: What differentiates a directive information entity from an information concretization is that it can have concretizations that are either qualities or realizable entities. The concretizations that are realizable entities are created when an individual chooses to take up the direction, i.e. has the intention to (try to) realize it.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"8/6/2009 Alan Ruttenberg: Changed label from \\\"information entity about a realizable\\\" after discussions at ICBO\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Werner pushed back on calling it realizable information entity as it isn\\u0027t realizable. However this name isn\\u0027t right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn\\u0027t about the plan, it, once concretized, *is* the plan. -Alan\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"numDescendants\":19.0,\"numHierarchicalDescendants\":19.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity whose concretizations indicate to their bearer how to realize them in a process.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: provenance: a term realizable information entity was proposed for OBI (OBI_0000337) , edited by the PlanAndPlannedProcess branch. Original definition was \\\"is the specification of a process that can be concretized and realized by an actor\\\" with alternative term \\\"instruction\\\".It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2013-05-30 Alan Ruttenberg: What differentiates a directive information entity from an information concretization is that it can have concretizations that are either qualities or realizable entities. The concretizations that are realizable entities are created when an individual chooses to take up the direction, i.e. has the intention to (try to) realize it.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"8/6/2009 Alan Ruttenberg: Changed label from \\\"information entity about a realizable\\\" after discussions at ICBO\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Werner pushed back on calling it realizable information entity as it isn\\u0027t realizable. However this name isn\\u0027t right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn\\u0027t about the plan, it, once concretized, *is* the plan. -Alan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000033\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000033","definition":"An information content entity whose concretizations indicate to their bearer how to realize them in a process.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity whose concretizations indicate to their bearer how to realize them in a process.","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-03-16: provenance: a term realizable information entity was proposed for OBI (OBI_0000337) , edited by the PlanAndPlannedProcess branch. Original definition was \"is the specification of a process that can be concretized and realized by an actor\" with alternative term \"instruction\".It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.","2013-05-30 Alan Ruttenberg: What differentiates a directive information entity from an information concretization is that it can have concretizations that are either qualities or realizable entities. The concretizations that are realizable entities are created when an individual chooses to take up the direction, i.e. has the intention to (try to) realize it.","8/6/2009 Alan Ruttenberg: Changed label from \"information entity about a realizable\" after discussions at ICBO","Werner pushed back on calling it realizable information entity as it isn\u0027t realizable. However this name isn\u0027t right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn\u0027t about the plan, it, once concretized, *is* the plan. -Alan"],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Bjoern Peters"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"directive information entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000030"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000033","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000033","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"directive information entity","numDescendants":"19.0","numHierarchicalDescendants":"19.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/BFO_0000017","searchableAnnotationValues":["An information content entity whose concretizations indicate to their bearer how to realize them in a process.","2009-03-16: provenance: a term realizable information entity was proposed for OBI (OBI_0000337) , edited by the PlanAndPlannedProcess branch. Original definition was \"is the specification of a process that can be concretized and realized by an actor\" with alternative term \"instruction\".It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.","2013-05-30 Alan Ruttenberg: What differentiates a directive information entity from an information concretization is that it can have concretizations that are either qualities or realizable entities. The concretizations that are realizable entities are created when an individual chooses to take up the direction, i.e. has the intention to (try to) realize it.","8/6/2009 Alan Ruttenberg: Changed label from \"information entity about a realizable\" after discussions at ICBO","Werner pushed back on calling it realizable information entity as it isn\u0027t realizable. However this name isn\u0027t right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn\u0027t about the plan, it, once concretized, *is* the plan. -Alan","PERSON: Alan Ruttenberg","PERSON: Bjoern Peters","false"],"shortForm":"IAO_0000033","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000034\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000034\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000001\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000001\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time trigger\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PlanAndPlannedProcess Branch\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time trigger\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000001\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time trigger\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time trigger\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PlanAndPlannedProcess Branch\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000034\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conditional specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000034","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000001","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000001","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000001","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"time trigger","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000124","http__//purl.obolibrary.org/obo/IAO_0000117":"PlanAndPlannedProcess Branch","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"time trigger","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000001","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000034","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000034","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"time trigger","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["time trigger","PlanAndPlannedProcess Branch","false"],"shortForm":"IAO_0000034","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000035\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000035\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_study interpretation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"value\":\"2009-03-16: definition was \\\"A conclusion is a narrative object which can be published in a paper summerizing and interpreting a protocol application.\\\"\"},{\"type\":[\"literal\"],\"value\":\"2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The obsoleting of narrative object required a modest change in the definition of this term. Circularity with \\\"interpretation... interprets\\\" has been removed, using \\\"about the implications\\\" instead.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Alan Ruttenberg\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jennifer Fostel\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Melanie Courtot\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"value\":\"conclusion\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"OBI_0000005\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_study interpretation\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_study interpretation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_study interpretation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2009-03-16: definition was \\\"A conclusion is a narrative object which can be published in a paper summerizing and interpreting a protocol application.\\\"\"},{\"type\":[\"literal\"],\"value\":\"2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The obsoleting of narrative object required a modest change in the definition of this term. Circularity with \\\"interpretation... interprets\\\" has been removed, using \\\"about the implications\\\" instead.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Alan Ruttenberg\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jennifer Fostel\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Melanie Courtot\"},{\"type\":[\"literal\"],\"value\":\"conclusion\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000005\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000035\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000035","definition":"A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"obsolete_study interpretation","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-03-16: definition was \"A conclusion is a narrative object which can be published in a paper summerizing and interpreting a protocol application.\"","2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.","The obsoleting of narrative object required a modest change in the definition of this term. Circularity with \"interpretation... interprets\" has been removed, using \"about the implications\" instead."],"http__//purl.obolibrary.org/obo/IAO_0000117":["Lawrence Hunter","PERSON: Alan Ruttenberg","PERSON: Jennifer Fostel","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000118":"conclusion","http__//purl.obolibrary.org/obo/IAO_0000119":"OBI_0000005","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_study interpretation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000035","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000035","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_study interpretation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["obsolete_study interpretation","A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses","2009-03-16: definition was \"A conclusion is a narrative object which can be published in a paper summerizing and interpreting a protocol application.\"","2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.","The obsoleting of narrative object required a modest change in the definition of this term. Circularity with \"interpretation... interprets\" has been removed, using \"about the implications\" instead.","Lawrence Hunter","PERSON: Alan Ruttenberg","PERSON: Jennifer Fostel","PERSON: Melanie Courtot","conclusion","OBI_0000005","false"],"shortForm":"IAO_0000035","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000037\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000037\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dot plot\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Dot plot of SSC-H and FSC-H.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000002\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000123\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dot plot\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dot plot\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dot plot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Dot plot of SSC-H and FSC-H.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000123\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000037\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000002\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000037","definition":"A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"dot plot","http__//purl.obolibrary.org/obo/IAO_0000112":"Dot plot of SSC-H and FSC-H.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000002","http__//purl.obolibrary.org/obo/IAO_0000115":"A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions.","http__//purl.obolibrary.org/obo/IAO_0000117":["person:Allyson Lister","person:Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000123","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"dot plot","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000037","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000037","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"dot plot","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["dot plot","Dot plot of SSC-H and FSC-H.","A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions.","person:Allyson Lister","person:Chris Stoeckert","OBI_0000123","group:OBI","false"],"shortForm":"IAO_0000037","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000309\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000309\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000240\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000309\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"numDescendants\":9.0,\"numHierarchicalDescendants\":9.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000240\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000038\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000038","definition":"A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000309","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000309","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"graph","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Lawrence Hunter","person:Alan Ruttenberg","person:Allyson Lister"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000240","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"graph","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000309","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000038","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000038","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"graph","numDescendants":"9.0","numHierarchicalDescendants":"9.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["graph","A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way.","PERSON: Lawrence Hunter","person:Alan Ruttenberg","person:Allyson Lister","OBI_0000240","group:OBI","false"],"shortForm":"IAO_0000038","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000047\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000047\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A text based digital entity is a digital entity that is encoded so that it only contains text characters.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"text based digital entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XML file, C++ source code file\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A text based digital entity is a digital entity that is encoded so that it only contains text characters.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\nsuperclass was \\u0027digital document\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"digital_entity\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"OBI_0000132\"},{\"type\":[\"literal\"],\"value\":\"group:OBI\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_text based digital entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_text based digital entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"text based digital entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XML file, C++ source code file\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A text based digital entity is a digital entity that is encoded so that it only contains text characters.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\nsuperclass was \\u0027digital document\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"digital_entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000132\"},{\"type\":[\"literal\"],\"value\":\"group:OBI\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000047\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000047","definition":"A text based digital entity is a digital entity that is encoded so that it only contains text characters.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"text based digital entity","http__//purl.obolibrary.org/obo/IAO_0000112":"XML file, C++ source code file","http__//purl.obolibrary.org/obo/IAO_0000115":"A text based digital entity is a digital entity that is encoded so that it only contains text characters.","http__//purl.obolibrary.org/obo/IAO_0000116":["3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digital document\u0027","digital_entity"],"http__//purl.obolibrary.org/obo/IAO_0000117":"person:Chris Stoeckert","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000132","group:OBI"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete2_text based digital entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000047","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000047","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete2_text based digital entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["text based digital entity","XML file, C++ source code file","A text based digital entity is a digital entity that is encoded so that it only contains text characters.","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digital document\u0027","digital_entity","person:Chris Stoeckert","OBI_0000132","group:OBI","false"],"shortForm":"IAO_0000047","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000055\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000055\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A rule is an executable which guides, defines, restricts actions.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000001\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000001\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"rule\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be added\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A rule is an executable which guides, defines, restricts actions.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"MSI\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PRS\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0500021\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PRS\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"rule\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000001\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"rule\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"rule\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be added\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A rule is an executable which guides, defines, restricts actions.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"MSI\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PRS\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0500021\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000055\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conditional specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000055","definition":"A rule is an executable which guides, defines, restricts actions.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000001","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000001","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000001","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"rule","http__//purl.obolibrary.org/obo/IAO_0000112":"example to be added","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A rule is an executable which guides, defines, restricts actions.","http__//purl.obolibrary.org/obo/IAO_0000116":"MSI","http__//purl.obolibrary.org/obo/IAO_0000117":"PRS","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0500021","PRS"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"rule","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000001","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000055","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000055","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"rule","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["rule","example to be added","A rule is an executable which guides, defines, restricts actions.","MSI","PRS","OBI_0500021","false"],"shortForm":"IAO_0000055","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000057\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000057\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contour plot\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Contour plot of SSC-H, FSC-H, and FL1-H.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000002\",\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically_dependent_continuants\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000246\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:Flow Cytometry community\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contour plot\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contour plot\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contour plot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Contour plot of SSC-H, FSC-H, and FL1-H.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically_dependent_continuants\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000246\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:Flow Cytometry community\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000057\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000002\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000057","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"contour plot","http__//purl.obolibrary.org/obo/IAO_0000112":"Contour plot of SSC-H, FSC-H, and FL1-H.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000002","http__//purl.obolibrary.org/obo/IAO_0000116":"generically_dependent_continuants","http__//purl.obolibrary.org/obo/IAO_0000117":["person:Allyson Lister","person:Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000246","group:Flow Cytometry community"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"contour plot","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000057","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000057","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"contour plot","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["contour plot","Contour plot of SSC-H, FSC-H, and FL1-H.","generically_dependent_continuants","person:Allyson Lister","person:Chris Stoeckert","OBI_0000246","group:Flow Cytometry community","false"],"shortForm":"IAO_0000057","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000059\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000059\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report figure\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"I prepended the \\u0027report \\u0027 to make it clear that we mean parts of reports here. We may want a more generic version of \\u0027figure\\u0027, in which case this would become a defined class - figure and part_of some report\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Replaced by defined version of figure\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"OBI_0000027\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_report figure\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_report figure\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report figure\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"I prepended the \\u0027report \\u0027 to make it clear that we mean parts of reports here. We may want a more generic version of \\u0027figure\\u0027, in which case this would become a defined class - figure and part_of some report\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Replaced by defined version of figure\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000027\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000059\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000059","definition":"A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"report figure","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000124","http__//purl.obolibrary.org/obo/IAO_0000115":"A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements","http__//purl.obolibrary.org/obo/IAO_0000116":["I prepended the \u0027report \u0027 to make it clear that we mean parts of reports here. We may want a more generic version of \u0027figure\u0027, in which case this would become a defined class - figure and part_of some report","Replaced by defined version of figure"],"http__//purl.obolibrary.org/obo/IAO_0000117":["person:Alan Ruttenberg","person:Allyson Lister"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000027","group:OBI"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete2_report figure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000059","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000059","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete2_report figure","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["report figure","A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements","I prepended the \u0027report \u0027 to make it clear that we mean parts of reports here. We may want a more generic version of \u0027figure\u0027, in which case this would become a defined class - figure and part_of some report","Replaced by defined version of figure","person:Alan Ruttenberg","person:Allyson Lister","OBI_0000027","group:OBI","false"],"shortForm":"IAO_0000059","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000064\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000064\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"algorithm\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PMID: 18378114.Genomics. 2008 Mar 28. LINKGEN: A new algorithm to process data in genetic linkage studies.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Philippe Rocca-Serra\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PlanAndPlannedProcess Branch\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000270\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"adapted from discussion on OBI list (Matthew Pocock, Christian Cocos, Alan Ruttenberg)\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"algorithm\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"algorithm\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"algorithm\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PMID: 18378114.Genomics. 2008 Mar 28. LINKGEN: A new algorithm to process data in genetic linkage studies.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Philippe Rocca-Serra\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PlanAndPlannedProcess Branch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000270\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"adapted from discussion on OBI list (Matthew Pocock, Christian Cocos, Alan Ruttenberg)\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000064\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000064","definition":"A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000104","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000104","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"algorithm","http__//purl.obolibrary.org/obo/IAO_0000112":"PMID: 18378114.Genomics. 2008 Mar 28. LINKGEN: A new algorithm to process data in genetic linkage studies.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.","http__//purl.obolibrary.org/obo/IAO_0000117":["Philippe Rocca-Serra","PlanAndPlannedProcess Branch"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000270","adapted from discussion on OBI list (Matthew Pocock, Christian Cocos, Alan Ruttenberg)"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"algorithm","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000104","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000064","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000064","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"algorithm","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["algorithm","PMID: 18378114.Genomics. 2008 Mar 28. LINKGEN: A new algorithm to process data in genetic linkage studies.","A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.","Philippe Rocca-Serra","PlanAndPlannedProcess Branch","OBI_0000270","adapted from discussion on OBI list (Matthew Pocock, Christian Cocos, Alan Ruttenberg)","false"],"shortForm":"IAO_0000064","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000065\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000065\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software interpreter is a software application that executes some specified input software.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000064\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000064\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000064\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000064\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software interpreter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"R program, Perl interpreter, Java virtual machine\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software interpreter is a software application that executes some specified input software.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Do we care? Jennifer: Yes, there was a particular version of R that had a bug and it was fixed later. That would imply that we mean specific version of an interpreter. So an instance of this would be a particular version of the interpreter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000199\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software interpreter\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000064\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software interpreter\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software interpreter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"R program, Perl interpreter, Java virtual machine\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software interpreter is a software application that executes some specified input software.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Do we care? Jennifer: Yes, there was a particular version of R that had a bug and it was fixed later. That would imply that we mean specific version of an interpreter. So an instance of this would be a particular version of the interpreter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000199\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000065\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000064\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"algorithm\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000064\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000065","definition":"A software interpreter is a software application that executes some specified input software.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000064","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000064","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000064","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000064","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"software interpreter","http__//purl.obolibrary.org/obo/IAO_0000112":"R program, Perl interpreter, Java virtual machine","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A software interpreter is a software application that executes some specified input software.","http__//purl.obolibrary.org/obo/IAO_0000116":"Do we care? Jennifer: Yes, there was a particular version of R that had a bug and it was fixed later. That would imply that we mean specific version of an interpreter. So an instance of this would be a particular version of the interpreter","http__//purl.obolibrary.org/obo/IAO_0000117":["person:Alan Ruttenberg","person:Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000199","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"software interpreter","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000064","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000065","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000065","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"software interpreter","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["software interpreter","R program, Perl interpreter, Java virtual machine","A software interpreter is a software application that executes some specified input software.","Do we care? Jennifer: Yes, there was a particular version of R that had a bug and it was fixed later. That would imply that we mean specific version of an interpreter. So an instance of this would be a particular version of the interpreter","person:Alan Ruttenberg","person:Chris Stoeckert","OBI_0000199","group:OBI","false"],"shortForm":"IAO_0000065","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hasIndividuals\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Bill Bug\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000266\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#oneOf\":[\"http://purl.obolibrary.org/obo/IAO_0000002\",\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000423\",\"http://purl.obolibrary.org/obo/IAO_0000428\"]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"numDescendants\":9.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Bill Bug\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000266\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000078\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000002\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000078","definition":"The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000102","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hasIndividuals":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000102","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"curation status specification","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","http__//purl.obolibrary.org/obo/IAO_0000116":"Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Bill Bug","http__//purl.obolibrary.org/obo/IAO_0000119":["GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","OBI_0000266"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"curation status specification","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000102","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000078","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000078","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"curation status specification","numDescendants":"9.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["curation status specification","The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)","PERSON:Bill Bug","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","OBI_0000266","false"],"shortForm":"IAO_0000078","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000079\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000079\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"density plot\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Density plot of SSC-H and FSC-H.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000002\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000179\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:Flow Cytometry community\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"density plot\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"density plot\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"density plot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Density plot of SSC-H and FSC-H.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000179\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:Flow Cytometry community\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000079\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000002\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000079","definition":"A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"density plot","http__//purl.obolibrary.org/obo/IAO_0000112":"Density plot of SSC-H and FSC-H.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000002","http__//purl.obolibrary.org/obo/IAO_0000115":"A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel.","http__//purl.obolibrary.org/obo/IAO_0000117":["person:Allyson Lister","person:Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000179","group:Flow Cytometry community"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"density plot","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000079","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000079","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"density plot","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["density plot","Density plot of SSC-H and FSC-H.","A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel.","person:Allyson Lister","person:Chris Stoeckert","OBI_0000179","group:Flow Cytometry community","false"],"shortForm":"IAO_0000079","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000088\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000088\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of reports are gene lists and investigation reports. These are not published (journal) articles but may be included in a journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: comment from Darren Natale: I am slightly uneasy with the sentence \\\"Topic of the report is on \\nsomething that has completed.\\\" Should it be restricted to those things \\nthat are completed? For example, a progress report is (usually) about \\nsomething that definitely has *not* been completed, or may include \\n(only) projections. I think the definition would not suffer if the \\nwhole sentence is deleted.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: this was report of results with definition: A report is a narrative object that is a formal statement of the results of an investigation, or of any matter on which definite information is required, made by some person or body instructed or required to do so.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \\u0027document\\u0027. Alan restored as there are OBI dependencies and this merits further discussion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disagreement about where reports go. alan: only some gene lists are reports. Is a report all the content of some document? The example of usage suggests that a report may be part of some article. Term needs clarification\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: OBI\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000099\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of reports are gene lists and investigation reports. These are not published (journal) articles but may be included in a journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: comment from Darren Natale: I am slightly uneasy with the sentence \\\"Topic of the report is on \\nsomething that has completed.\\\" Should it be restricted to those things \\nthat are completed? For example, a progress report is (usually) about \\nsomething that definitely has *not* been completed, or may include \\n(only) projections. I think the definition would not suffer if the \\nwhole sentence is deleted.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: this was report of results with definition: A report is a narrative object that is a formal statement of the results of an investigation, or of any matter on which definite information is required, made by some person or body instructed or required to do so.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \\u0027document\\u0027. Alan restored as there are OBI dependencies and this merits further discussion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disagreement about where reports go. alan: only some gene lists are reports. Is a report all the content of some document? The example of usage suggests that a report may be part of some article. Term needs clarification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: OBI\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000099\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000088\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000088","definition":"A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000310","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000310","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"report","http__//purl.obolibrary.org/obo/IAO_0000112":"Examples of reports are gene lists and investigation reports. These are not published (journal) articles but may be included in a journal article.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record).","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-03-16: comment from Darren Natale: I am slightly uneasy with the sentence \"Topic of the report is on \nsomething that has completed.\" Should it be restricted to those things \nthat are completed? For example, a progress report is (usually) about \nsomething that definitely has *not* been completed, or may include \n(only) projections. I think the definition would not suffer if the \nwhole sentence is deleted.","2009-03-16: this was report of results with definition: A report is a narrative object that is a formal statement of the results of an investigation, or of any matter on which definite information is required, made by some person or body instructed or required to do so.","2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.","2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027document\u0027. Alan restored as there are OBI dependencies and this merits further discussion","disagreement about where reports go. alan: only some gene lists are reports. Is a report all the content of some document? The example of usage suggests that a report may be part of some article. Term needs clarification"],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Chris Stoeckert","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":["GROUP: OBI","OBI_0000099"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"report","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000310","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000088","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000088","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"report","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["report","Examples of reports are gene lists and investigation reports. These are not published (journal) articles but may be included in a journal article.","A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record).","2009-03-16: comment from Darren Natale: I am slightly uneasy with the sentence \"Topic of the report is on \nsomething that has completed.\" Should it be restricted to those things \nthat are completed? For example, a progress report is (usually) about \nsomething that definitely has *not* been completed, or may include \n(only) projections. I think the definition would not suffer if the \nwhole sentence is deleted.","2009-03-16: this was report of results with definition: A report is a narrative object that is a formal statement of the results of an investigation, or of any matter on which definite information is required, made by some person or body instructed or required to do so.","2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.","2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027document\u0027. Alan restored as there are OBI dependencies and this merits further discussion","disagreement about where reports go. alan: only some gene lists are reports. Is a report all the content of some document? The example of usage suggests that a report may be part of some article. Term needs clarification","PERSON: Alan Ruttenberg","PERSON: Chris Stoeckert","PERSON: Melanie Courtot","GROUP: OBI","OBI_0000099","false"],"shortForm":"IAO_0000088","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000091\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000091\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report element\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"value\":\"2009-03-16: needs some more work (clarify relations).\"},{\"type\":[\"literal\"],\"value\":\"2009-03-16: was report display element with definition: A report display element is a narrative object that is part of a report. Report display elements are set off from the textual parts of a report and are typically given a label(e.g. Figure 2) which is used to refer to the element from the text. Typically the 2d layout is part of the identity of such elements.\"},{\"type\":[\"literal\"],\"value\":\"2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.\"},{\"type\":[\"literal\"],\"value\":\"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \\u0027textual entity\\u0027 and \\u0027figure\\u0027. Alan restored as there are OBI dependencies and this merits further discussion\"},{\"type\":[\"literal\"],\"value\":\"Replaced by textual entity and figure\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"There will be some issue here about whether these are defined classes. As intended these are meant to denote the parts of the report that are not textual but are typically boxed and set within the text, labelled with some identifier, and referred to in the text\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Melanie Courtot\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000001\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_report element\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_report element\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report element\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2009-03-16: needs some more work (clarify relations).\"},{\"type\":[\"literal\"],\"value\":\"2009-03-16: was report display element with definition: A report display element is a narrative object that is part of a report. Report display elements are set off from the textual parts of a report and are typically given a label(e.g. Figure 2) which is used to refer to the element from the text. Typically the 2d layout is part of the identity of such elements.\"},{\"type\":[\"literal\"],\"value\":\"2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.\"},{\"type\":[\"literal\"],\"value\":\"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \\u0027textual entity\\u0027 and \\u0027figure\\u0027. Alan restored as there are OBI dependencies and this merits further discussion\"},{\"type\":[\"literal\"],\"value\":\"Replaced by textual entity and figure\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"There will be some issue here about whether these are defined classes. As intended these are meant to denote the parts of the report that are not textual but are typically boxed and set within the text, labelled with some identifier, and referred to in the text\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Melanie Courtot\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000001\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000091\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000091","definition":"A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"report element","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page).","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-03-16: needs some more work (clarify relations).","2009-03-16: was report display element with definition: A report display element is a narrative object that is part of a report. Report display elements are set off from the textual parts of a report and are typically given a label(e.g. Figure 2) which is used to refer to the element from the text. Typically the 2d layout is part of the identity of such elements.","2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.","2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity\u0027 and \u0027figure\u0027. Alan restored as there are OBI dependencies and this merits further discussion","Replaced by textual entity and figure","There will be some issue here about whether these are defined classes. As intended these are meant to denote the parts of the report that are not textual but are typically boxed and set within the text, labelled with some identifier, and referred to in the text"],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Allyson Lister","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":["GROUP:OBI","OBI_0000001"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_report element","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000091","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000091","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_report element","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["report element","A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page).","2009-03-16: needs some more work (clarify relations).","2009-03-16: was report display element with definition: A report display element is a narrative object that is part of a report. Report display elements are set off from the textual parts of a report and are typically given a label(e.g. Figure 2) which is used to refer to the element from the text. Typically the 2d layout is part of the identity of such elements.","2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.","2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity\u0027 and \u0027figure\u0027. Alan restored as there are OBI dependencies and this merits further discussion","Replaced by textual entity and figure","There will be some issue here about whether these are defined classes. As intended these are meant to denote the parts of the report that are not textual but are typically boxed and set within the text, labelled with some identifier, and referred to in the text","PERSON: Alan Ruttenberg","PERSON: Allyson Lister","PERSON: Melanie Courtot","GROUP:OBI","OBI_0000001","false"],"shortForm":"IAO_0000091","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000093\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000093\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"binary executable\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\nsuperclass was \\u0027digital entity\\u0027\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Jennifer Fostel\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"OBI_0000222\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_binary executable\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_binary executable\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"binary executable\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\nsuperclass was \\u0027digital entity\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Jennifer Fostel\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000222\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000093\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000093","definition":"Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"binary executable","http__//purl.obolibrary.org/obo/IAO_0000115":"Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)","http__//purl.obolibrary.org/obo/IAO_0000116":"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digital entity\u0027","http__//purl.obolibrary.org/obo/IAO_0000117":"person:Jennifer Fostel","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000222","group:OBI"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete2_binary executable","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000093","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000093","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete2_binary executable","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["binary executable","Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digital entity\u0027","person:Jennifer Fostel","OBI_0000222","group:OBI","false"],"shortForm":"IAO_0000093","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000096\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000096\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A source code module is a directive information entity that specifies, using a programming language, some algorithm.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The written source code that implements part of an algorithm. Test - if you know that it was written in a specific language, then it can be source code module. We mean here, roughly, the wording of a document such as a perl script.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A source code module is a directive information entity that specifies, using a programming language, some algorithm.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000039\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/APOLLO_SV_00000522\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000096\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The written source code that implements part of an algorithm. Test - if you know that it was written in a specific language, then it can be source code module. We mean here, roughly, the wording of a document such as a perl script.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A source code module is a directive information entity that specifies, using a programming language, some algorithm.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000039\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000096\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/APOLLO_SV_00000522\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source code repository\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"APOLLO:SV_00000522\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000096","definition":"A source code module is a directive information entity that specifies, using a programming language, some algorithm.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000033","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000033","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"source code module","http__//purl.obolibrary.org/obo/IAO_0000112":"The written source code that implements part of an algorithm. Test - if you know that it was written in a specific language, then it can be source code module. We mean here, roughly, the wording of a document such as a perl script.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A source code module is a directive information entity that specifies, using a programming language, some algorithm.","http__//purl.obolibrary.org/obo/IAO_0000117":["person:Alan Ruttenberg","person:Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000039","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"source code module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000033","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000096","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000096","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"source code module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/APOLLO_SV_00000522","searchableAnnotationValues":["source code module","The written source code that implements part of an algorithm. Test - if you know that it was written in a specific language, then it can be source code module. We mean here, roughly, the wording of a document such as a perl script.","A source code module is a directive information entity that specifies, using a programming language, some algorithm.","person:Alan Ruttenberg","person:Chris Stoeckert","OBI_0000039","group:OBI","false"],"shortForm":"IAO_0000096","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000097\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000097\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report table\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000002\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \\u0027textual entity table\\u0027. Alan restored as there are OBI dependencies and this merits further discussion\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"OBI_0000265\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_report table\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_report table\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"report table\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \\u0027textual entity table\\u0027. Alan restored as there are OBI dependencies and this merits further discussion\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000265\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000097\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000002\"},\"type\":[\"individual\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000097","definition":"A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"report table","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000002","http__//purl.obolibrary.org/obo/IAO_0000115":"A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content","http__//purl.obolibrary.org/obo/IAO_0000116":"2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity table\u0027. Alan restored as there are OBI dependencies and this merits further discussion","http__//purl.obolibrary.org/obo/IAO_0000117":["person:Alan Ruttenberg","person:Allyson Lister"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000265","group:OBI"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_report table","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000097","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000097","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_report table","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["report table","A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content","2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity table\u0027. Alan restored as there are OBI dependencies and this merits further discussion","person:Alan Ruttenberg","person:Allyson Lister","OBI_0000265","group:OBI","false"],"shortForm":"IAO_0000097","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000098\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000098\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data format specification is the information content borne by the document published defining the specification.\\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data format specification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data format specification is the information content borne by the document published defining the specification.\\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: provenance: term imported from OBI_0000187, which had original definition \\\"A data format specification is a plan which organizes\\ninformation. Example: The ISO document specifying what encompasses an\\nXML document; The instructions in a XSD file\\\"\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PlanAndPlannedProcess Branch\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI branch derived\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000187\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data format specification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data format specification\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data format specification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data format specification is the information content borne by the document published defining the specification.\\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: provenance: term imported from OBI_0000187, which had original definition \\\"A data format specification is a plan which organizes\\ninformation. Example: The ISO document specifying what encompasses an\\nXML document; The instructions in a XSD file\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PlanAndPlannedProcess Branch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI branch derived\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000187\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000098\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000098","definition":"A data format specification is the information content borne by the document published defining the specification.\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000033","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000033","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"data format specification","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A data format specification is the information content borne by the document published defining the specification.\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file","http__//purl.obolibrary.org/obo/IAO_0000116":"2009-03-16: provenance: term imported from OBI_0000187, which had original definition \"A data format specification is a plan which organizes\ninformation. Example: The ISO document specifying what encompasses an\nXML document; The instructions in a XSD file\"","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PlanAndPlannedProcess Branch"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI branch derived","OBI_0000187"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"data format specification","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000033","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000098","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000098","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"data format specification","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["data format specification","A data format specification is the information content borne by the document published defining the specification.\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file","2009-03-16: provenance: term imported from OBI_0000187, which had original definition \"A data format specification is a plan which organizes\ninformation. Example: The ISO document specifying what encompasses an\nXML document; The instructions in a XSD file\"","PERSON: Alan Ruttenberg","PlanAndPlannedProcess Branch","OBI branch derived","OBI_0000187","false"],"shortForm":"IAO_0000098","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000100\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000100\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data set\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Intensity values in a CEL file or from multiple CEL files comprise a data set (as opposed to the CEL files themselves).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/10/23 Alan Ruttenberg. The intention is that this term represent collections of like data. So this isn\\u0027t for, e.g. the whole contents of a cel file, which includes parameters, metadata etc. This is more like java arrays of a certain rather specific type\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2014-05-05: Data sets are aggregates and thus must include two or more data items. We have chosen not to add logical axioms to make this restriction.\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000042\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data set\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data set\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data set\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Intensity values in a CEL file or from multiple CEL files comprise a data set (as opposed to the CEL files themselves).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/10/23 Alan Ruttenberg. The intention is that this term represent collections of like data. So this isn\\u0027t for, e.g. the whole contents of a cel file, which includes parameters, metadata etc. This is more like java arrays of a certain rather specific type\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"2014-05-05: Data sets are aggregates and thus must include two or more data items. We have chosen not to add logical axioms to make this restriction.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson Lister\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000042\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000100\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000100","definition":"A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000027","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000027","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"data set","http__//purl.obolibrary.org/obo/IAO_0000112":"Intensity values in a CEL file or from multiple CEL files comprise a data set (as opposed to the CEL files themselves).","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets.","http__//purl.obolibrary.org/obo/IAO_0000116":["2009/10/23 Alan Ruttenberg. The intention is that this term represent collections of like data. So this isn\u0027t for, e.g. the whole contents of a cel file, which includes parameters, metadata etc. This is more like java arrays of a certain rather specific type","2014-05-05: Data sets are aggregates and thus must include two or more data items. We have chosen not to add logical axioms to make this restriction."],"http__//purl.obolibrary.org/obo/IAO_0000117":["person:Allyson Lister","person:Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000042","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"data set","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000027","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000100","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000100","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"data set","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["data set","Intensity values in a CEL file or from multiple CEL files comprise a data set (as opposed to the CEL files themselves).","A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets.","2009/10/23 Alan Ruttenberg. The intention is that this term represent collections of like data. So this isn\u0027t for, e.g. the whole contents of a cel file, which includes parameters, metadata etc. This is more like java arrays of a certain rather specific type","2014-05-05: Data sets are aggregates and thus must include two or more data items. We have chosen not to add logical axioms to make this restriction.","person:Allyson Lister","person:Chris Stoeckert","OBI_0000042","group:OBI","false"],"shortForm":"IAO_0000100","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000101\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000101\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"image\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000030\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"image\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"image\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"image\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Allyson\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000030\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000101\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000101","definition":"An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000308","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000308","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"image","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface.","http__//purl.obolibrary.org/obo/IAO_0000117":["person:Alan Ruttenberg","person:Allyson","person:Chris Stoeckert"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000030","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"image","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000308","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000101","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000101","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"image","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["image","An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface.","person:Alan Ruttenberg","person:Allyson","person:Chris Stoeckert","OBI_0000030","group:OBI","false"],"shortForm":"IAO_0000101","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Data about an ontology part is a data item about a part of an ontology, for example a term\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Data about an ontology part is a data item about a part of an ontology, for example a term\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"numDescendants\":42.0,\"numHierarchicalDescendants\":24.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Data about an ontology part is a data item about a part of an ontology, for example a term\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000102\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000102","definition":"Data about an ontology part is a data item about a part of an ontology, for example a term","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000027","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000027","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"data about an ontology part","http__//purl.obolibrary.org/obo/IAO_0000115":"Data about an ontology part is a data item about a part of an ontology, for example a term","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"data about an ontology part","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000027","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000102","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000102","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"data about an ontology part","numDescendants":"42.0","numHierarchicalDescendants":"24.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["data about an ontology part","Data about an ontology part is a data item about a part of an ontology, for example a term","Person:Alan Ruttenberg","false"],"shortForm":"IAO_0000102","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2/3/2009 Comment from OBI review.\\n\\nAction specification not well enough specified.\\nConditional specification not well enough specified.\\nQuestion whether all plan specifications have objective specifications.\\n\\nRequest that IAO either clarify these or change definitions not to use them\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000033\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was \\\" a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan\\\". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-03-31: A plan specification can have other parts, such as conditional specifications.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2022-01-16 Updated definition to that proposed by Clint Dowloand, IAO Issue 231.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Clint Dowland\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI Plan and Planned Process branch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000344\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2/3/2009 Comment from OBI review.\\n\\nAction specification not well enough specified.\\nConditional specification not well enough specified.\\nQuestion whether all plan specifications have objective specifications.\\n\\nRequest that IAO either clarify these or change definitions not to use them\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/231#issuecomment-1010455131\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000033\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000007\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"numDescendants\":11.0,\"numHierarchicalDescendants\":11.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000007\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000007\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was \\\" a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan\\\". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-03-31: A plan specification can have other parts, such as conditional specifications.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2022-01-16 Updated definition to that proposed by Clint Dowloand, IAO Issue 231.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Clint Dowland\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI Plan and Planned Process branch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000344\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000104\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"action specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000005\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"objective specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000005\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000104","definition":["A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified.","2/3/2009 Comment from OBI review.\n\nAction specification not well enough specified.\nConditional specification not well enough specified.\nQuestion whether all plan specifications have objective specifications.\n\nRequest that IAO either clarify these or change definitions not to use them"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000033","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000033","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"plan specification","http__//purl.obolibrary.org/obo/IAO_0000112":"PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified.","http__//purl.obolibrary.org/obo/IAO_0000116":["2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was \" a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan\". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.","2014-03-31: A plan specification can have other parts, such as conditional specifications.","2022-01-16 Updated definition to that proposed by Clint Dowloand, IAO Issue 231.","Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved"],"http__//purl.obolibrary.org/obo/IAO_0000117":["Alan Ruttenberg","Clint Dowland"],"http__//purl.obolibrary.org/obo/IAO_0000119":["OBI Plan and Planned Process branch","OBI_0000344"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"2/3/2009 Comment from OBI review.\n\nAction specification not well enough specified.\nConditional specification not well enough specified.\nQuestion whether all plan specifications have objective specifications.\n\nRequest that IAO either clarify these or change definitions not to use them","http__//www.w3.org/2000/01/rdf-schema#label":"plan specification","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"https://github.com/information-artifact-ontology/IAO/issues/231#issuecomment-1010455131","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000033"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000104","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000104","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"plan specification","numDescendants":"11.0","numHierarchicalDescendants":"11.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/IAO_0000005","http://purl.obolibrary.org/obo/IAO_0000007"],"searchableAnnotationValues":["plan specification","PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice.","A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified.","2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was \" a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan\". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.","2014-03-31: A plan specification can have other parts, such as conditional specifications.","2022-01-16 Updated definition to that proposed by Clint Dowloand, IAO Issue 231.","Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved","Alan Ruttenberg","Clint Dowland","OBI Plan and Planned Process branch","OBI_0000344","false"],"shortForm":"IAO_0000104","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000105\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000105\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"digital document\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\nsuperclass was \\u0027digial entity\\u0027\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Jennifer Fostel\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"OBI_0000195\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_digital document\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete2_digital document\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"digital document\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\\nsuperclass was \\u0027digial entity\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Jennifer Fostel\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBI_0000195\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000105\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000105","definition":"A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"digital document","http__//purl.obolibrary.org/obo/IAO_0000115":"A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file.","http__//purl.obolibrary.org/obo/IAO_0000116":"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digial entity\u0027","http__//purl.obolibrary.org/obo/IAO_0000117":"person:Jennifer Fostel","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000195","group:OBI"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete2_digital document","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000105","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000105","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete2_digital document","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["digital document","A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file.","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digial entity\u0027","person:Jennifer Fostel","OBI_0000195","group:OBI","false"],"shortForm":"IAO_0000105","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000109\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000109\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of measurement data are the recoding of the weight of a mouse as {40,mass,\\\"grams\\\"}, the recording of an observation of the behavior of the mouse {,process,\\\"agitated\\\"}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2/2/2009 is_specified_output of some assay?\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000305\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Examples of measurement data are the recoding of the weight of a mouse as {40,mass,\\\"grams\\\"}, the recording of an observation of the behavior of the mouse {,process,\\\"agitated\\\"}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2/2/2009 is_specified_output of some assay?\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000305\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000109\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000109","definition":"A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000027","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000027","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"measurement datum","http__//purl.obolibrary.org/obo/IAO_0000112":"Examples of measurement data are the recoding of the weight of a mouse as {40,mass,\"grams\"}, the recording of an observation of the behavior of the mouse {,process,\"agitated\"}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.","http__//purl.obolibrary.org/obo/IAO_0000116":"2/2/2009 is_specified_output of some assay?","http__//purl.obolibrary.org/obo/IAO_0000117":"person:Chris Stoeckert","http__//purl.obolibrary.org/obo/IAO_0000119":["OBI_0000305","group:OBI"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"measurement datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000027","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000109","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000109","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"measurement datum","numDescendants":"6.0","numHierarchicalDescendants":"6.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["measurement datum","Examples of measurement data are the recoding of the weight of a mouse as {40,mass,\"grams\"}, the recording of an observation of the behavior of the mouse {,process,\"agitated\"}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}.","A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.","2/2/2009 is_specified_output of some assay?","person:Chris Stoeckert","OBI_0000305","group:OBI","false"],"shortForm":"IAO_0000109","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000128\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000128\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"_identifier is a container under information content entity for collecting types of terms to indicate a specific instance or clas of what was used or participated in an investigation. Identifiers are borne by a product or its packaging, and can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\\n\\nNote: everybody agreed that identifier is probably a too general term. We however felt that it would be appropriate to group \\\"identifiying\\\" terms under some kind of umbrella. We therefore propose to use _identifier for that purpose. As per OBI conventions, the _ prefixing identifier indicates that this is a helper class and shouldn\\u0027t be considered as final.\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000226\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_identifier\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_identifier\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"_identifier is a container under information content entity for collecting types of terms to indicate a specific instance or clas of what was used or participated in an investigation. Identifiers are borne by a product or its packaging, and can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\\n\\nNote: everybody agreed that identifier is probably a too general term. We however felt that it would be appropriate to group \\\"identifiying\\\" terms under some kind of umbrella. We therefore propose to use _identifier for that purpose. As per OBI conventions, the _ prefixing identifier indicates that this is a helper class and shouldn\\u0027t be considered as final.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000128\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000226\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000128","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000121","http__//purl.obolibrary.org/obo/IAO_0000116":"_identifier is a container under information content entity for collecting types of terms to indicate a specific instance or clas of what was used or participated in an investigation. Identifiers are borne by a product or its packaging, and can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\n\nNote: everybody agreed that identifier is probably a too general term. We however felt that it would be appropriate to group \"identifiying\" terms under some kind of umbrella. We therefore propose to use _identifier for that purpose. As per OBI conventions, the _ prefixing identifier indicates that this is a helper class and shouldn\u0027t be considered as final.","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000226","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_identifier","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000128","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000128","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_identifier","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["_identifier is a container under information content entity for collecting types of terms to indicate a specific instance or clas of what was used or participated in an investigation. Identifiers are borne by a product or its packaging, and can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\n\nNote: everybody agreed that identifier is probably a too general term. We however felt that it would be appropriate to group \"identifiying\" terms under some kind of umbrella. We therefore propose to use _identifier for that purpose. As per OBI conventions, the _ prefixing identifier indicates that this is a helper class and shouldn\u0027t be considered as final.","false"],"shortForm":"IAO_0000128","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000129\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000129\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"version number\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Note: we feel that at the moment we are happy with a general version number, and that we will subclass as needed in the future. For example, see 7. genome sequence version\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"version number\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"version number\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"version number\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Note: we feel that at the moment we are happy with a general version number, and that we will subclass as needed in the future. For example, see 7. genome sequence version\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000129\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000129","definition":"A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000028","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000028","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"version number","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name.","http__//purl.obolibrary.org/obo/IAO_0000116":"Note: we feel that at the moment we are happy with a general version number, and that we will subclass as needed in the future. For example, see 7. genome sequence version","http__//purl.obolibrary.org/obo/IAO_0000117":"GROUP: IAO","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"version number","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000028","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000129","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000129","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"version number","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["version number","A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name.","Note: we feel that at the moment we are happy with a general version number, and that we will subclass as needed in the future. For example, see 7. genome sequence version","GROUP: IAO","false"],"shortForm":"IAO_0000129","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000131\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000131\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"serial number\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Note: during the call there was some confusion between serial number and model number. We agreed that it would be very helpful for all those terms to have example of usages - please add if you have any :-)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"serial number\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"serial number\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"serial number\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Note: during the call there was some confusion between serial number and model number. We agreed that it would be very helpful for all those terms to have example of usages - please add if you have any :-)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000131\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000131","definition":"A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000028","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000028","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"serial number","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","http__//purl.obolibrary.org/obo/IAO_0000116":"Note: during the call there was some confusion between serial number and model number. We agreed that it would be very helpful for all those terms to have example of usages - please add if you have any :-)","http__//purl.obolibrary.org/obo/IAO_0000117":"GROUP: IAO","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"serial number","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000028","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000131","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000131","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"serial number","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["serial number","A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","Note: during the call there was some confusion between serial number and model number. We agreed that it would be very helpful for all those terms to have example of usages - please add if you have any :-)","GROUP: IAO","false"],"shortForm":"IAO_0000131","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000132\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000132\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"lot number\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"batch number\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"lot number\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"lot number\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"lot number\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"batch number\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000132\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000132","definition":"A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000028","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000028","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"lot number","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots.","http__//purl.obolibrary.org/obo/IAO_0000117":"GROUP: IAO","http__//purl.obolibrary.org/obo/IAO_0000118":"batch number","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"lot number","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000028","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000132","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000132","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"lot number","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["lot number","A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots.","GROUP: IAO","batch number","false"],"shortForm":"IAO_0000132","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000140\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000140\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A settings datum is a datum that denotes some configuration of an instrument.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A settings datum is a datum that denotes some configuration of an instrument.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2/3/2009 Feedback from OBI\\n\\nThis should be a \\\"setting specification\\\". There is a question of whether it is information about a realizable or not.\\n\\nPro other specification are about realizables.\\nCons sometimes specifies a quality which is not a realizable.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan grouped these in placeholder for the moment. Name by analogy to measurement datum.\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"setting datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"setting datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A settings datum is a datum that denotes some configuration of an instrument.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2/3/2009 Feedback from OBI\\n\\nThis should be a \\\"setting specification\\\". There is a question of whether it is information about a realizable or not.\\n\\nPro other specification are about realizables.\\nCons sometimes specifies a quality which is not a realizable.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan grouped these in placeholder for the moment. Name by analogy to measurement datum.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000140\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000140","definition":"A settings datum is a datum that denotes some configuration of an instrument.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000027","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000027","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A settings datum is a datum that denotes some configuration of an instrument.","http__//purl.obolibrary.org/obo/IAO_0000116":["2/3/2009 Feedback from OBI\n\nThis should be a \"setting specification\". There is a question of whether it is information about a realizable or not.\n\nPro other specification are about realizables.\nCons sometimes specifies a quality which is not a realizable.","Alan grouped these in placeholder for the moment. Name by analogy to measurement datum."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"setting datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000027","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000140","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000140","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"setting datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A settings datum is a datum that denotes some configuration of an instrument.","2/3/2009 Feedback from OBI\n\nThis should be a \"setting specification\". There is a question of whether it is information about a realizable or not.\n\nPro other specification are about realizables.\nCons sometimes specifies a quality which is not a realizable.","Alan grouped these in placeholder for the moment. Name by analogy to measurement datum.","false"],"shortForm":"IAO_0000140","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000141\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000141\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\"},{\"type\":[\"literal\"],\"value\":\"Need to rework digital entity. Digital quality was suggested by Barry.\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_digital quality\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_digital quality\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\"},{\"type\":[\"literal\"],\"value\":\"Need to rework digital entity. Digital quality was suggested by Barry.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000141\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000141","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000116":["3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4","Need to rework digital entity. Digital quality was suggested by Barry."],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_digital quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000141","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000141","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_digital quality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4","Need to rework digital entity. Digital quality was suggested by Barry.","false"],"shortForm":"IAO_0000141","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000144\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000144\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \\u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\\u0027, by Lowenthal et. al.PMID:19696660\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/09/28 Alan Ruttenberg. Fucoidan-use-case\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/10/23 Alan Ruttenberg: We need to work on the definition still\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000615\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000144\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \\u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\\u0027, by Lowenthal et. al.PMID:19696660\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/09/28 Alan Ruttenberg. Fucoidan-use-case\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/10/23 Alan Ruttenberg: We need to work on the definition still\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000144\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"PMID:19696660\":{\"url\":\"http://www.ncbi.nlm.nih.gov/pubmed/19696660\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"PMID:19696660\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000615\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000615\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000144","definition":"A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"conclusion textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\u0027, by Lowenthal et. al.PMID:19696660","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers.","http__//purl.obolibrary.org/obo/IAO_0000116":["2009/09/28 Alan Ruttenberg. Fucoidan-use-case","2009/10/23 Alan Ruttenberg: We need to work on the definition still"],"http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"conclusion textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000144","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000144","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"conclusion textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000615","searchableAnnotationValues":["conclusion textual entity","that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\u0027, by Lowenthal et. al.PMID:19696660","A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers.","2009/09/28 Alan Ruttenberg. Fucoidan-use-case","2009/10/23 Alan Ruttenberg: We need to work on the definition still","Person:Alan Ruttenberg","false"],"shortForm":"IAO_0000144","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000178\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000178\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A material entity in which a concretization of an information content entity inheres.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material information bearer\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A page of a paperback novel with writing on it. The paper itself is a material information bearer, the pattern of ink is the information carrier.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a brain\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a hard drive\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A material entity in which a concretization of an information content entity inheres.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material information bearer\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000059\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material information bearer\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material information bearer\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A page of a paperback novel with writing on it. The paper itself is a material information bearer, the pattern of ink is the information carrier.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a brain\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a hard drive\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A material entity in which a concretization of an information content entity inheres.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP: IAO\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000178\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000059\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"concretizes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000059\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000178","definition":"A material entity in which a concretization of an information content entity inheres.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000040","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000040","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"material information bearer","http__//purl.obolibrary.org/obo/IAO_0000112":["A page of a paperback novel with writing on it. The paper itself is a material information bearer, the pattern of ink is the information carrier.","a brain","a hard drive"],"http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A material entity in which a concretization of an information content entity inheres.","http__//purl.obolibrary.org/obo/IAO_0000117":"GROUP: IAO","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"material information bearer","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000040","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000178","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000178","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"material information bearer","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["material information bearer","A page of a paperback novel with writing on it. The paper itself is a material information bearer, the pattern of ink is the information carrier.","a brain","a hard drive","A material entity in which a concretization of an information content entity inheres.","GROUP: IAO","false"],"shortForm":"IAO_0000178","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000179\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000179\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A histogram is a report graph which is a statistical description of a\\ndistribution in terms of occurrence frequencies of different event classes.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"histogram\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A histogram is a report graph which is a statistical description of a\\ndistribution in terms of occurrence frequencies of different event classes.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"histogram\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"histogram\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"histogram\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A histogram is a report graph which is a statistical description of a\\ndistribution in terms of occurrence frequencies of different event classes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000179\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000179","definition":"A histogram is a report graph which is a statistical description of a\ndistribution in terms of occurrence frequencies of different event classes.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"histogram","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A histogram is a report graph which is a statistical description of a\ndistribution in terms of occurrence frequencies of different event classes.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"histogram","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000179","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000179","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"histogram","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["histogram","A histogram is a report graph which is a statistical description of a\ndistribution in terms of occurrence frequencies of different event classes.","PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot","GROUP:OBI","false"],"shortForm":"IAO_0000179","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000180\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000180\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A heatmap is a report graph which is a graphical representation of data\\nwhere the values taken by a variable(s) are shown as colors in a\\ntwo-dimensional map.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"heatmap\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A heatmap is a report graph which is a graphical representation of data\\nwhere the values taken by a variable(s) are shown as colors in a\\ntwo-dimensional map.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"heatmap\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"heatmap\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"heatmap\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A heatmap is a report graph which is a graphical representation of data\\nwhere the values taken by a variable(s) are shown as colors in a\\ntwo-dimensional map.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000180\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000180","definition":"A heatmap is a report graph which is a graphical representation of data\nwhere the values taken by a variable(s) are shown as colors in a\ntwo-dimensional map.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"heatmap","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A heatmap is a report graph which is a graphical representation of data\nwhere the values taken by a variable(s) are shown as colors in a\ntwo-dimensional map.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"heatmap","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000180","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000180","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"heatmap","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["heatmap","A heatmap is a report graph which is a graphical representation of data\nwhere the values taken by a variable(s) are shown as colors in a\ntwo-dimensional map.","PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot","GROUP:OBI","false"],"shortForm":"IAO_0000180","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000181\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000181\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A Venn diagram is a report graph showing all hypothetically possible\\nlogical relations between a finite collection of sets.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Venn diagram\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A Venn diagram is a report graph showing all hypothetically possible\\nlogical relations between a finite collection of sets.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wikipedia.org/wiki/Venn_diagram\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Venn diagram\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Venn diagram\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Venn diagram\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A Venn diagram is a report graph showing all hypothetically possible\\nlogical relations between a finite collection of sets.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wikipedia.org/wiki/Venn_diagram\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000181\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://en.wikipedia.org/wiki/Venn_diagram\":{\"url\":\"http://en.wikipedia.org/wiki/Venn_diagram\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Venn_diagram\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000181","definition":"A Venn diagram is a report graph showing all hypothetically possible\nlogical relations between a finite collection of sets.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"Venn diagram","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A Venn diagram is a report graph showing all hypothetically possible\nlogical relations between a finite collection of sets.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"WEB: http://en.wikipedia.org/wiki/Venn_diagram","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Venn diagram","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000181","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000181","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Venn diagram","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["Venn diagram","A Venn diagram is a report graph showing all hypothetically possible\nlogical relations between a finite collection of sets.","PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot","WEB: http://en.wikipedia.org/wiki/Venn_diagram","false"],"shortForm":"IAO_0000181","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000182\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000182\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_survival curve\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://www.graphpad.com/www/book/survive.htm\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_survival curve\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_survival curve\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_survival curve\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://www.graphpad.com/www/book/survive.htm\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000182\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000182","definition":"A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"obsolete_survival curve","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"WEB: http://www.graphpad.com/www/book/survive.htm","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_survival curve","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000182","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000182","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_survival curve","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["obsolete_survival curve","A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time.","PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot","WEB: http://www.graphpad.com/www/book/survive.htm","false"],"shortForm":"IAO_0000182","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000183\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000183\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A dendrogram is a report graph which is a tree diagram\\nfrequently used to illustrate the arrangement of the clusters produced by a\\nclustering algorithm.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dendrogram\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Dendrograms are often used in computational biology to\\nillustrate the clustering of genes.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A dendrogram is a report graph which is a tree diagram\\nfrequently used to illustrate the arrangement of the clusters produced by a\\nclustering algorithm.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wikipedia.org/wiki/Dendrogram\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dendrogram\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dendrogram\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dendrogram\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Dendrograms are often used in computational biology to\\nillustrate the clustering of genes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A dendrogram is a report graph which is a tree diagram\\nfrequently used to illustrate the arrangement of the clusters produced by a\\nclustering algorithm.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wikipedia.org/wiki/Dendrogram\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000183\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://en.wikipedia.org/wiki/Dendrogram\":{\"url\":\"http://en.wikipedia.org/wiki/Dendrogram\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Dendrogram\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000183","definition":"A dendrogram is a report graph which is a tree diagram\nfrequently used to illustrate the arrangement of the clusters produced by a\nclustering algorithm.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"dendrogram","http__//purl.obolibrary.org/obo/IAO_0000112":"Dendrograms are often used in computational biology to\nillustrate the clustering of genes.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A dendrogram is a report graph which is a tree diagram\nfrequently used to illustrate the arrangement of the clusters produced by a\nclustering algorithm.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"WEB: http://en.wikipedia.org/wiki/Dendrogram","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"dendrogram","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000183","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000183","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"dendrogram","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["dendrogram","Dendrograms are often used in computational biology to\nillustrate the clustering of genes.","A dendrogram is a report graph which is a tree diagram\nfrequently used to illustrate the arrangement of the clusters produced by a\nclustering algorithm.","PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot","WEB: http://en.wikipedia.org/wiki/Dendrogram","false"],"shortForm":"IAO_0000183","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000184\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000184\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scatter plot\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Comparison of gene expression values in two samples can be displayed in a scatter plot\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scattergraph\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wikipedia.org/wiki/Scatterplot\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scatter plot\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scatter plot\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scatter plot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Comparison of gene expression values in two samples can be displayed in a scatter plot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:James Malone\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scattergraph\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wikipedia.org/wiki/Scatterplot\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000184\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://en.wikipedia.org/wiki/Scatterplot\":{\"url\":\"http://en.wikipedia.org/wiki/Scatterplot\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Scatterplot\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000184","definition":"A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"scatter plot","http__//purl.obolibrary.org/obo/IAO_0000112":"Comparison of gene expression values in two samples can be displayed in a scatter plot","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000118":"scattergraph","http__//purl.obolibrary.org/obo/IAO_0000119":"WEB: http://en.wikipedia.org/wiki/Scatterplot","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"scatter plot","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000184","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000184","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"scatter plot","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["scatter plot","Comparison of gene expression values in two samples can be displayed in a scatter plot","A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.","PERSON:Chris Stoeckert","PERSON:James Malone","PERSON:Melanie Courtot","scattergraph","WEB: http://en.wikipedia.org/wiki/Scatterplot","false"],"shortForm":"IAO_0000184","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000185\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000185\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000101\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000101\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000101\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000101\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Joanne Luciano\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wiktionary.org/wiki/photograph\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"photograph\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000101\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"photograph\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Joanne Luciano\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wiktionary.org/wiki/photograph\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000185\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000101\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"image\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000101\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000185","definition":"A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000101","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000101","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000101","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000101","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Alan Ruttenberg","PERSON:Joanne Luciano","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"WEB: http://en.wiktionary.org/wiki/photograph","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"photograph","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000101","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000185","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000185","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"photograph","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc.","PERSON:Alan Ruttenberg","PERSON:Joanne Luciano","PERSON:Melanie Courtot","WEB: http://en.wiktionary.org/wiki/photograph","false"],"shortForm":"IAO_0000185","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000186\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000186\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A photographic print is a material entity upon which a photograph generically depends.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000178\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000178\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000178\",\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000178\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"photographic print\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A photographic print is a material entity upon which a photograph generically depends.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"photographic print\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000178\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000040\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000059\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000185\",\"isObsolete\":false},\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"photographic print\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"photographic print\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A photographic print is a material entity upon which a photograph generically depends.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000186\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000059\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"concretizes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000059\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000178\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material information bearer\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000178\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000185\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"photograph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000185\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000186","definition":"A photographic print is a material entity upon which a photograph generically depends.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000178","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000178","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000178","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000178","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"photographic print","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A photographic print is a material entity upon which a photograph generically depends.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Alan Ruttenberg","PERSON:Melanie Courtot"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"photographic print","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000178","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000186","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000186","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"photographic print","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["photographic print","A photographic print is a material entity upon which a photograph generically depends.","PERSON:Alan Ruttenberg","PERSON:Melanie Courtot","false"],"shortForm":"IAO_0000186","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000225\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000225\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hasIndividuals\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The creation of this class has been inspired in part by Werner Ceusters\\u0027 paper, Applying evolutionary terminology auditing to the Gene Ontology.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#oneOf\":[\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://purl.obolibrary.org/obo/IAO_0000226\",\"http://purl.obolibrary.org/obo/IAO_0000227\",\"http://purl.obolibrary.org/obo/IAO_0000228\",\"http://purl.obolibrary.org/obo/IAO_0000229\",\"http://purl.obolibrary.org/obo/OMO_0001000\"]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"numDescendants\":6.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The creation of this class has been inspired in part by Werner Ceusters\\u0027 paper, Applying evolutionary terminology auditing to the Gene Ontology.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000225\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000228\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term imported\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000228\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000229\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term split\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000229\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/OMO_0001000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"out of scope\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OMO:0001000\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000226\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000227\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"terms merged\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000227\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000225","definition":"The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000102","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hasIndividuals":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000102","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"obsolescence reason specification","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","http__//purl.obolibrary.org/obo/IAO_0000116":"The creation of this class has been inspired in part by Werner Ceusters\u0027 paper, Applying evolutionary terminology auditing to the Gene Ontology.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Melanie Courtot"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolescence reason specification","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000102","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000225","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000225","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"obsolescence reason specification","numDescendants":"6.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["obsolescence reason specification","The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","The creation of this class has been inspired in part by Werner Ceusters\u0027 paper, Applying evolutionary terminology auditing to the Gene Ontology.","PERSON: Alan Ruttenberg","PERSON: Melanie Courtot","false"],"shortForm":"IAO_0000225","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Words, sentences, paragraphs, and the written (non-figure) parts of publications are all textual entities\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"AR, (IAO call 2009-09-01): a document as a whole is not typically a textual entity, because it has pictures in it - rather there are parts of it that are textual entities. Examples: The title, paragraph 2 sentence 7, etc.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"MC, 2009-09-14 (following IAO call 2009-09-01): textual entities live at the FRBR (http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records) manifestation level. Everything is significant: line break, pdf and html versions of same document are different textual entities.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"text\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"numDescendants\":32.0,\"numHierarchicalDescendants\":32.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Words, sentences, paragraphs, and the written (non-figure) parts of publications are all textual entities\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"AR, (IAO call 2009-09-01): a document as a whole is not typically a textual entity, because it has pictures in it - rather there are parts of it that are textual entities. Examples: The title, paragraph 2 sentence 7, etc.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"MC, 2009-09-14 (following IAO call 2009-09-01): textual entities live at the FRBR (http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records) manifestation level. Everything is significant: line break, pdf and html versions of same document are different textual entities.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"text\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000300\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records)\":{\"url\":\"http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records)\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Functional_Requirements_for_Bibliographic_Records)\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000300","definition":"A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"Words, sentences, paragraphs, and the written (non-figure) parts of publications are all textual entities","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc.","http__//purl.obolibrary.org/obo/IAO_0000116":["AR, (IAO call 2009-09-01): a document as a whole is not typically a textual entity, because it has pictures in it - rather there are parts of it that are textual entities. Examples: The title, paragraph 2 sentence 7, etc.","MC, 2009-09-14 (following IAO call 2009-09-01): textual entities live at the FRBR (http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records) manifestation level. Everything is significant: line break, pdf and html versions of same document are different textual entities."],"http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":"text","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000300","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000300","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"textual entity","numDescendants":"32.0","numHierarchicalDescendants":"32.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["textual entity","Words, sentences, paragraphs, and the written (non-figure) parts of publications are all textual entities","A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc.","AR, (IAO call 2009-09-01): a document as a whole is not typically a textual entity, because it has pictures in it - rather there are parts of it that are textual entities. Examples: The title, paragraph 2 sentence 7, etc.","MC, 2009-09-14 (following IAO call 2009-09-01): textual entities live at the FRBR (http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records) manifestation level. Everything is significant: line break, pdf and html versions of same document are different textual entities.","PERSON: Lawrence Hunter","text","false"],"shortForm":"IAO_0000300","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000301\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000301\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular publication.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"citation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Verspoor, K., Cohen, KB., Hunter, L. Textual characteristics of traditional and Open Access scientific journals are similar, BMC Bioinformatics 2009, 10:183.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular publication.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"citation\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"citation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000320\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000301\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"citation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Verspoor, K., Cohen, KB., Hunter, L. Textual characteristics of traditional and Open Access scientific journals are similar, BMC Bioinformatics 2009, 10:183.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular publication.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000301\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000320\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"references section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000320\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000301","definition":"A textual entity intended to identify a particular publication.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"citation","http__//purl.obolibrary.org/obo/IAO_0000112":"Verspoor, K., Cohen, KB., Hunter, L. Textual characteristics of traditional and Open Access scientific journals are similar, BMC Bioinformatics 2009, 10:183.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity intended to identify a particular publication.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"citation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000300"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000301","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000301","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"citation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000320","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000310","searchableAnnotationValues":["citation","Verspoor, K., Cohen, KB., Hunter, L. Textual characteristics of traditional and Open Access scientific journals are similar, BMC Bioinformatics 2009, 10:183.","A textual entity intended to identify a particular publication.","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000301","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000302\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000302\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular author\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000590\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000590\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000590\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000590\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author identification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"L. Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular author\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author identification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000590\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author identification\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000321\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000302\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author identification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"L. Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular author\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000302\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000590\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"written name\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000590\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000321\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author list\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000321\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000302","definition":"A textual entity intended to identify a particular author","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000590","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000590","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000590","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000590","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"author identification","http__//purl.obolibrary.org/obo/IAO_0000112":"L. Hunter","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity intended to identify a particular author","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"author identification","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000590","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000302","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000302","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"author identification","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000321","searchableAnnotationValues":["author identification","L. Hunter","A textual entity intended to identify a particular author","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000302","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000303\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000303\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular institution\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institutional identification\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"University of Colorado Denver School of Medicine\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular institution\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institutional identification\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institutional identification\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000322\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000303\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institutional identification\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"University of Colorado Denver School of Medicine\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity intended to identify a particular institution\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000303\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000322\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institution list\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000322\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000303","definition":"A textual entity intended to identify a particular institution","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"institutional identification","http__//purl.obolibrary.org/obo/IAO_0000112":"University of Colorado Denver School of Medicine","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity intended to identify a particular institution","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"institutional identification","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000303","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000303","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"institutional identification","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000322","searchableAnnotationValues":["institutional identification","University of Colorado Denver School of Medicine","A textual entity intended to identify a particular institution","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000303","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000304\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000304\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that describes a figure\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"caption\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Figure 1: A system diagram describing the modules of the Hanalyzer. Reading methods (green) take external sources of knowledge (blue) and extract information from them, either by parsing structured data or biomedical language processing to extract information from unstructured data. Reading modules are responsible for tracking the provenance of all knowledge. Reasoning methods (yellow) enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. All knowledge sources, read or reasoned, are assigned a reliability score, and all are combined using that score into a knowledge network (orange) that represents the integration of all sorts of relationship between a pair of genes and a combined reliability score. A data network (also orange) is created from experimental results to be analyzed. The reporting modules (pink) integrate the data and knowledge networks, producing visualizations that can be queried with the associated drill-down tool.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that describes a figure\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"caption\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"caption\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"caption\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Figure 1: A system diagram describing the modules of the Hanalyzer. Reading methods (green) take external sources of knowledge (blue) and extract information from them, either by parsing structured data or biomedical language processing to extract information from unstructured data. Reading modules are responsible for tracking the provenance of all knowledge. Reasoning methods (yellow) enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. All knowledge sources, read or reasoned, are assigned a reliability score, and all are combined using that score into a knowledge network (orange) that represents the integration of all sorts of relationship between a pair of genes and a combined reliability score. A data network (also orange) is created from experimental results to be analyzed. The reporting modules (pink) integrate the data and knowledge networks, producing visualizations that can be queried with the associated drill-down tool.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that describes a figure\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000304\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000304","definition":"A textual entity that describes a figure","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"caption","http__//purl.obolibrary.org/obo/IAO_0000112":"Figure 1: A system diagram describing the modules of the Hanalyzer. Reading methods (green) take external sources of knowledge (blue) and extract information from them, either by parsing structured data or biomedical language processing to extract information from unstructured data. Reading modules are responsible for tracking the provenance of all knowledge. Reasoning methods (yellow) enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. All knowledge sources, read or reasoned, are assigned a reliability score, and all are combined using that score into a knowledge network (orange) that represents the integration of all sorts of relationship between a pair of genes and a combined reliability score. A data network (also orange) is created from experimental results to be analyzed. The reporting modules (pink) integrate the data and knowledge networks, producing visualizations that can be queried with the associated drill-down tool.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that describes a figure","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"caption","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000300"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000304","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000304","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"caption","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000308","searchableAnnotationValues":["caption","Figure 1: A system diagram describing the modules of the Hanalyzer. Reading methods (green) take external sources of knowledge (blue) and extract information from them, either by parsing structured data or biomedical language processing to extract information from unstructured data. Reading modules are responsible for tracking the provenance of all knowledge. Reasoning methods (yellow) enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. All knowledge sources, read or reasoned, are assigned a reliability score, and all are combined using that score into a knowledge network (orange) that represents the integration of all sorts of relationship between a pair of genes and a combined reliability score. A data network (also orange) is created from experimental results to be analyzed. The reporting modules (pink) integrate the data and knowledge networks, producing visualizations that can be queried with the associated drill-down tool.","A textual entity that describes a figure","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000304","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000305\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000305\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that names a document\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document title\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Textual characteristics of traditional and Open Access scientific journals are similar\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that names a document\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document title\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document title\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document title\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Textual characteristics of traditional and Open Access scientific journals are similar\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that names a document\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000305\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000305","definition":"A textual entity that names a document","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"document title","http__//purl.obolibrary.org/obo/IAO_0000112":"Textual characteristics of traditional and Open Access scientific journals are similar","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that names a document","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"document title","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000305","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000305","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"document title","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["document title","Textual characteristics of traditional and Open Access scientific journals are similar","A textual entity that names a document","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000305","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000306\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"| T F\\n--+-----\\nT | T F\\nF | F F\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000645\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"| T F\\n--+-----\\nT | T F\\nF | F F\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000306\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000645\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"tables section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000645\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000306","definition":"A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"table","http__//purl.obolibrary.org/obo/IAO_0000112":"| T F\n--+-----\nT | T F\nF | F F","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"table","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000306","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000306","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"table","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000645","searchableAnnotationValues":["table","| T F\n--+-----\nT | T F\nF | F F","A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000306","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000307\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000307\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table where the constituent texts are abbreviations and their expansions\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000306\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000306\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of abbreviations\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"IAO information artifact ontology\\nOBI ontology of biomedical investiations\\nGO gene ontology\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table where the constituent texts are abbreviations and their expansions\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of abbreviations\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of abbreviations\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"IAO information artifact ontology\\nOBI ontology of biomedical investiations\\nGO gene ontology\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table where the constituent texts are abbreviations and their expansions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000307\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000306\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000306\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000307","definition":"A table where the constituent texts are abbreviations and their expansions","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000306","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000306","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"table of abbreviations","http__//purl.obolibrary.org/obo/IAO_0000112":"IAO information artifact ontology\nOBI ontology of biomedical investiations\nGO gene ontology","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A table where the constituent texts are abbreviations and their expansions","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"table of abbreviations","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000306","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000307","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000307","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"table of abbreviations","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["table of abbreviations","IAO information artifact ontology\nOBI ontology of biomedical investiations\nGO gene ontology","A table where the constituent texts are abbreviations and their expansions","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000307","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Any picture, diagram or table\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"numDescendants\":13.0,\"numHierarchicalDescendants\":13.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000304\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000622\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Any picture, diagram or table\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000308\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000622\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figures section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000622\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000304\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"caption\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000304\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000308","definition":"An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"figure","http__//purl.obolibrary.org/obo/IAO_0000112":"Any picture, diagram or table","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"figure","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000308","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000308","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"figure","numDescendants":"13.0","numHierarchicalDescendants":"13.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/IAO_0000304","http://purl.obolibrary.org/obo/IAO_0000622"],"searchableAnnotationValues":["figure","Any picture, diagram or table","An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something.","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000308","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000309\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A figure that expresses one or more propositions\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A molecular structure ribbon cartoon showing helices, turns and sheets and their relations to each other in space.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A figure that expresses one or more propositions\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":10.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A molecular structure ribbon cartoon showing helices, turns and sheets and their relations to each other in space.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A figure that expresses one or more propositions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000309\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000309","definition":"A figure that expresses one or more propositions","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000308","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000308","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"diagram","http__//purl.obolibrary.org/obo/IAO_0000112":"A molecular structure ribbon cartoon showing helices, turns and sheets and their relations to each other in space.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A figure that expresses one or more propositions","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"diagram","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000308","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000309","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000309","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"diagram","numDescendants":"10.0","numHierarchicalDescendants":"10.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["diagram","A molecular structure ribbon cartoon showing helices, turns and sheets and their relations to each other in space.","A figure that expresses one or more propositions","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000309","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A collection of information content entities intended to be understood together as a whole\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A journal article, patent application, laboratory notebook, or a book\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A collection of information content entities intended to be understood together as a whole\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"numDescendants\":7.0,\"numHierarchicalDescendants\":51.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000301\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000315\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000572\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A journal article, patent application, laboratory notebook, or a book\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A collection of information content entities intended to be understood together as a whole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000310\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000315\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abstract\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000315\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000572\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"documenting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000572\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000301\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"citation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000301\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000310","definition":"A collection of information content entities intended to be understood together as a whole","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"document","http__//purl.obolibrary.org/obo/IAO_0000112":"A journal article, patent application, laboratory notebook, or a book","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A collection of information content entities intended to be understood together as a whole","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"document","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000310","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000310","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"document","numDescendants":"7.0","numHierarchicalDescendants":"51.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/IAO_0000301","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000315","http://purl.obolibrary.org/obo/IAO_0000572"],"searchableAnnotationValues":["document","A journal article, patent application, laboratory notebook, or a book","A collection of information content entities intended to be understood together as a whole","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000310","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000311\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000311\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that is the output of a publishing process.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Revisit the term in Octorber 2020. Improve the defintion.\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"journal article, newspaper story, book, etc.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that is the output of a publishing process.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jie Zheng\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"published document\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/232\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Revisit the term in Octorber 2020. Improve the defintion.\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000444\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"journal article, newspaper story, book, etc.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that is the output of a publishing process.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jie Zheng\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"published document\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000311\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000312\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000312\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000444\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publishing process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000444\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000311","definition":["A document that is the output of a publishing process.","Revisit the term in Octorber 2020. Improve the defintion."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000310","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000310","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"publication","http__//purl.obolibrary.org/obo/IAO_0000112":"journal article, newspaper story, book, etc.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A document that is the output of a publishing process.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Chris Stoeckert","PERSON: Jie Zheng","PERSON: Lawrence Hunter"],"http__//purl.obolibrary.org/obo/IAO_0000118":"published document","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/232","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Revisit the term in Octorber 2020. Improve the defintion.","http__//www.w3.org/2000/01/rdf-schema#label":"publication","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000310","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000311","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000311","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"publication","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["publication","journal article, newspaper story, book, etc.","A document that is the output of a publishing process.","PERSON: Chris Stoeckert","PERSON: Jie Zheng","PERSON: Lawrence Hunter","published document","false"],"shortForm":"IAO_0000311","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000312\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000312\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A publication that is about an investigation\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000311\",\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000311\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000311\",\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000311\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication about an investigation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Most scientific journal articles\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A publication that is about an investigation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scientific publication\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication about an investigation\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000311\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication about an investigation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication about an investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Most scientific journal articles\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A publication that is about an investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scientific publication\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000312\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/OBI_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000066\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000311\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000311\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000312","definition":"A publication that is about an investigation","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000311","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000311","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000311","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000311","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"publication about an investigation","http__//purl.obolibrary.org/obo/IAO_0000112":"Most scientific journal articles","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A publication that is about an investigation","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":"scientific publication","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"publication about an investigation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000311"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000312","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000312","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"publication about an investigation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/OBI_0000066","searchableAnnotationValues":["publication about an investigation","Most scientific journal articles","A publication that is about an investigation","PERSON: Lawrence Hunter","scientific publication","false"],"shortForm":"IAO_0000312","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000313\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000313\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that has been accepted by a patent authority\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patent\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"US Patent 6,449,603\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that has been accepted by a patent authority\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patent\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patent\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patent\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"US Patent 6,449,603\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that has been accepted by a patent authority\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000313\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000313","definition":"A document that has been accepted by a patent authority","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000310","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000310","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"patent","http__//purl.obolibrary.org/obo/IAO_0000112":"US Patent 6,449,603","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A document that has been accepted by a patent authority","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"patent","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000310","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000313","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000313","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"patent","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["patent","US Patent 6,449,603","A document that has been accepted by a patent authority","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000313","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is part of a document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An abstract, introduction, method or results section.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is part of a document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"numDescendants\":43.0,\"numHierarchicalDescendants\":43.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000325\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An abstract, introduction, method or results section.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is part of a document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000314\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000325\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"footnote\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000325\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000314","definition":"An information content entity that is part of a document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"document part","http__//purl.obolibrary.org/obo/IAO_0000112":"An abstract, introduction, method or results section.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity that is part of a document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"document part","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000030"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000314","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000314","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"document part","numDescendants":"43.0","numHierarchicalDescendants":"43.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000325","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000310","searchableAnnotationValues":["document part","An abstract, introduction, method or results section.","An information content entity that is part of a document.","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000314","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000315\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000315\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abstract\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The profusion of high-throughput instruments and the explosion of new results in the scientific literature, particularly in molecular biomedicine, is both a blessing and a curse to the bench researcher. Even knowledgeable and experienced scientists can benefit from computational tools that help navigate this vast and rapidly evolving terrain. In this paper, we describe a novel computational approach to this challenge, a knowledge-based system that combines reading, reasoning and reporting methods to facilitate analysis of experimental data. Reading methods extract information from external resources, either by parsing structured data or biomedical language processing to extract information from unstructured data, and track knowledge provenance. Reasoning methods enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. Reasoning is also used to combine all sources into a knowledge network that represents the integration of all sorts of relationships between a pair of genes, and to calculate a combined reliability score. Reporting methods combine the knowledge network with a congruent network constructed from experimental data and visualize the combined network in a tool that facilitates the knowledge-based analysis of that data.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precis\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abstract\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abstract\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abstract\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The profusion of high-throughput instruments and the explosion of new results in the scientific literature, particularly in molecular biomedicine, is both a blessing and a curse to the bench researcher. Even knowledgeable and experienced scientists can benefit from computational tools that help navigate this vast and rapidly evolving terrain. In this paper, we describe a novel computational approach to this challenge, a knowledge-based system that combines reading, reasoning and reporting methods to facilitate analysis of experimental data. Reading methods extract information from external resources, either by parsing structured data or biomedical language processing to extract information from unstructured data, and track knowledge provenance. Reasoning methods enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. Reasoning is also used to combine all sources into a knowledge network that represents the integration of all sorts of relationships between a pair of genes, and to calculate a combined reliability score. Reporting methods combine the knowledge network with a congruent network constructed from experimental data and visualize the combined network in a tool that facilitates the knowledge-based analysis of that data.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"precis\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000315\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000315","definition":"A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"abstract","http__//purl.obolibrary.org/obo/IAO_0000112":"The profusion of high-throughput instruments and the explosion of new results in the scientific literature, particularly in molecular biomedicine, is both a blessing and a curse to the bench researcher. Even knowledgeable and experienced scientists can benefit from computational tools that help navigate this vast and rapidly evolving terrain. In this paper, we describe a novel computational approach to this challenge, a knowledge-based system that combines reading, reasoning and reporting methods to facilitate analysis of experimental data. Reading methods extract information from external resources, either by parsing structured data or biomedical language processing to extract information from unstructured data, and track knowledge provenance. Reasoning methods enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. Reasoning is also used to combine all sources into a knowledge network that represents the integration of all sorts of relationships between a pair of genes, and to calculate a combined reliability score. Reporting methods combine the knowledge network with a congruent network constructed from experimental data and visualize the combined network in a tool that facilitates the knowledge-based analysis of that data.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":"precis","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"abstract","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000315","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000315","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"abstract","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000310","searchableAnnotationValues":["abstract","The profusion of high-throughput instruments and the explosion of new results in the scientific literature, particularly in molecular biomedicine, is both a blessing and a curse to the bench researcher. Even knowledgeable and experienced scientists can benefit from computational tools that help navigate this vast and rapidly evolving terrain. In this paper, we describe a novel computational approach to this challenge, a knowledge-based system that combines reading, reasoning and reporting methods to facilitate analysis of experimental data. Reading methods extract information from external resources, either by parsing structured data or biomedical language processing to extract information from unstructured data, and track knowledge provenance. Reasoning methods enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. Reasoning is also used to combine all sources into a knowledge network that represents the integration of all sorts of relationships between a pair of genes, and to calculate a combined reliability score. Reporting methods combine the knowledge network with a congruent network constructed from experimental data and visualize the combined network in a tool that facilitates the knowledge-based analysis of that data.","A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes.","PERSON: Lawrence Hunter","precis","false"],"shortForm":"IAO_0000315","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000316\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000316\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the objective specification (why the investigation is being done)\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"introduction to a publication about an investigation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Section labelled \\u0027introduction\\u0027 of a typical scientific journal article\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the objective specification (why the investigation is being done)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"background\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"introduction\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overview\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"introduction to a publication about an investigation\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"introduction to a publication about an investigation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000005\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"introduction to a publication about an investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Section labelled \\u0027introduction\\u0027 of a typical scientific journal article\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the objective specification (why the investigation is being done)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"background\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"introduction\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"overview\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000316\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000005\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"objective specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000005\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000316","definition":"A part of a publication about an investigation that is about the objective specification (why the investigation is being done)","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"introduction to a publication about an investigation","http__//purl.obolibrary.org/obo/IAO_0000112":"Section labelled \u0027introduction\u0027 of a typical scientific journal article","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a publication about an investigation that is about the objective specification (why the investigation is being done)","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":["background","introduction","overview"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"introduction to a publication about an investigation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000316","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000316","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"introduction to a publication about an investigation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000005","searchableAnnotationValues":["introduction to a publication about an investigation","Section labelled \u0027introduction\u0027 of a typical scientific journal article","A part of a publication about an investigation that is about the objective specification (why the investigation is being done)","PERSON: Lawrence Hunter","background","introduction","overview","false"],"shortForm":"IAO_0000316","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000317\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000317\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the study design of the investigation\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methods section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027Methods\\u0027 or \\u0027Materials and Methods\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the study design of the investigation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental methods\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental procedures\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"method\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methodology\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methods\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methods section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methods section\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methods section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027Methods\\u0027 or \\u0027Materials and Methods\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the study design of the investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental methods\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental procedures\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"method\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methodology\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methods\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000317\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0500000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study design\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0500000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000317","definition":"A part of a publication about an investigation that is about the study design of the investigation","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"methods section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027Methods\u0027 or \u0027Materials and Methods\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a publication about an investigation that is about the study design of the investigation","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":["experimental","experimental methods","experimental procedures","experimental section","method","methodology","methods"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"methods section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000317","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000317","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"methods section","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/OBI_0500000","searchableAnnotationValues":["methods section","The section labelled \u0027Methods\u0027 or \u0027Materials and Methods\u0027 in a typical scientific journal article.","A part of a publication about an investigation that is about the study design of the investigation","PERSON: Lawrence Hunter","experimental","experimental methods","experimental procedures","experimental section","method","methodology","methods","false"],"shortForm":"IAO_0000317","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000318\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000318\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about a study design execution\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"results section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027results\\u0027 in a typical scientific journal article\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about a study design execution\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"results\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"results section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0000471\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"results section\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/OBI_0000471\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0000471\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"results section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027results\\u0027 in a typical scientific journal article\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about a study design execution\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"results\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000318\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000471\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"study design execution\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000471\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000318","definition":"A part of a publication about an investigation that is about a study design execution","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"results section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027results\u0027 in a typical scientific journal article","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a publication about an investigation that is about a study design execution","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":"results","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"results section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000318","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000318","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"results section","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/OBI_0000471","searchableAnnotationValues":["results section","The section labelled \u0027results\u0027 in a typical scientific journal article","A part of a publication about an investigation that is about a study design execution","PERSON: Lawrence Hunter","results","false"],"shortForm":"IAO_0000318","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000319\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000319\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the study interpretation of the investigation\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussion section of a publication about an investigation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the study interpretation of the investigation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussion section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussions\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussion section of a publication about an investigation\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussion section of a publication about an investigation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussion section of a publication about an investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication about an investigation that is about the study interpretation of the investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussion section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"discussions\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000319\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000319","definition":"A part of a publication about an investigation that is about the study interpretation of the investigation","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"discussion section of a publication about an investigation","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a publication about an investigation that is about the study interpretation of the investigation","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":["discussion","discussion section","discussions"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"discussion section of a publication about an investigation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000319","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000319","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"discussion section of a publication about an investigation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["discussion section of a publication about an investigation","A part of a publication about an investigation that is about the study interpretation of the investigation","PERSON: Lawrence Hunter","discussion","discussion section","discussions","false"],"shortForm":"IAO_0000319","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000320\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000320\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that has citations as parts\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"references section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The list of citations found at the end of a scientific publication, grant proposal or patent application, sometimes called \\\"literature cited\\\" or \\\"bibliography\\\"\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that has citations as parts\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"literature cited\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"reference\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"reference list\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"references\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"references section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000301\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"references section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000301\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000301\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"references section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The list of citations found at the end of a scientific publication, grant proposal or patent application, sometimes called \\\"literature cited\\\" or \\\"bibliography\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that has citations as parts\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"literature cited\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"reference\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"reference list\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"references\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000320\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000301\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"citation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000301\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000320","definition":"A part of a document that has citations as parts","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"references section","http__//purl.obolibrary.org/obo/IAO_0000112":"The list of citations found at the end of a scientific publication, grant proposal or patent application, sometimes called \"literature cited\" or \"bibliography\"","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document that has citations as parts","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":["literature cited","reference","reference list","references"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"references section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000320","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000320","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"references section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000301","searchableAnnotationValues":["references section","The list of citations found at the end of a scientific publication, grant proposal or patent application, sometimes called \"literature cited\" or \"bibliography\"","A part of a document that has citations as parts","PERSON: Lawrence Hunter","literature cited","reference","reference list","references","false"],"shortForm":"IAO_0000320","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000321\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000321\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that enumerates the authors of the document\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author list\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Lawrence Hunter and Kevin Brettonel Cohen\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that enumerates the authors of the document\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author list\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000302\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author list\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000302\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000302\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author list\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Lawrence Hunter and Kevin Brettonel Cohen\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that enumerates the authors of the document\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000321\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000302\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author identification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000302\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000321","definition":"A part of a document that enumerates the authors of the document","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"author list","http__//purl.obolibrary.org/obo/IAO_0000112":"Lawrence Hunter and Kevin Brettonel Cohen","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document that enumerates the authors of the document","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"author list","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000321","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000321","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"author list","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000302","searchableAnnotationValues":["author list","Lawrence Hunter and Kevin Brettonel Cohen","A part of a document that enumerates the authors of the document","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000321","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000322\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000322\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that has parts that are institution identifications associated with the authors of the document\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institution list\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The University of Colorado Denver School of Medicine and the University of Colorado Boulder.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that has parts that are institution identifications associated with the authors of the document\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institution list\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000303\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institution list\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000303\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000303\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institution list\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The University of Colorado Denver School of Medicine and the University of Colorado Boulder.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that has parts that are institution identifications associated with the authors of the document\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000322\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000303\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"institutional identification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000303\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000322","definition":"A part of a document that has parts that are institution identifications associated with the authors of the document","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"institution list","http__//purl.obolibrary.org/obo/IAO_0000112":"The University of Colorado Denver School of Medicine and the University of Colorado Boulder.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document that has parts that are institution identifications associated with the authors of the document","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"institution list","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000322","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000322","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"institution list","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000303","searchableAnnotationValues":["institution list","The University of Colorado Denver School of Medicine and the University of Colorado Boulder.","A part of a document that has parts that are institution identifications associated with the authors of the document","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000322","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000323\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000323\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication that is about the specific contributions of each author\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author contributions section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"LH conceived of the hypothesis, designed the study and contributed to the writing of the manuscript. KBC executed the experiments, analyzed the data, and contributed to the writing of the manuscript.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication that is about the specific contributions of each author\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author contributions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors\\u0027 contribution\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors\\u0027 contributions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors\\u0027 roles\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contributions by the authors\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contributorship\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author contributions section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author contributions section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author contributions section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"LH conceived of the hypothesis, designed the study and contributed to the writing of the manuscript. KBC executed the experiments, analyzed the data, and contributed to the writing of the manuscript.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a publication that is about the specific contributions of each author\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author contributions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors\\u0027 contribution\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors\\u0027 contributions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors\\u0027 roles\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contributions by the authors\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contributorship\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000323\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000323","definition":"A part of a publication that is about the specific contributions of each author","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"author contributions section","http__//purl.obolibrary.org/obo/IAO_0000112":"LH conceived of the hypothesis, designed the study and contributed to the writing of the manuscript. KBC executed the experiments, analyzed the data, and contributed to the writing of the manuscript.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a publication that is about the specific contributions of each author","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":["author contributions","authors\u0027 contribution","authors\u0027 contributions","authors\u0027 roles","contributions by the authors","contributorship"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"author contributions section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000323","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000323","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"author contributions section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["author contributions section","LH conceived of the hypothesis, designed the study and contributed to the writing of the manuscript. KBC executed the experiments, analyzed the data, and contributed to the writing of the manuscript.","A part of a publication that is about the specific contributions of each author","PERSON: Lawrence Hunter","author contributions","authors\u0027 contribution","authors\u0027 contributions","authors\u0027 roles","contributions by the authors","contributorship","false"],"shortForm":"IAO_0000323","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000324\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000324\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Part of a publication that is about the contributions of people or institutions other than the authors.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgements section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The authors wish to thank Alan Ruttenberg for his constructive comments about an earlier draft of this manuscript\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Part of a publication that is about the contributions of people or institutions other than the authors.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgements\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgment\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgments\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgements section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgements section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgements section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The authors wish to thank Alan Ruttenberg for his constructive comments about an earlier draft of this manuscript\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Part of a publication that is about the contributions of people or institutions other than the authors.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgements\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgment\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"acknowledgments\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000324\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000324","definition":"Part of a publication that is about the contributions of people or institutions other than the authors.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"acknowledgements section","http__//purl.obolibrary.org/obo/IAO_0000112":"The authors wish to thank Alan Ruttenberg for his constructive comments about an earlier draft of this manuscript","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"Part of a publication that is about the contributions of people or institutions other than the authors.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":["acknowledgement","acknowledgements","acknowledgment","acknowledgments"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"acknowledgements section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000324","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000324","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"acknowledgements section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["acknowledgements section","The authors wish to thank Alan Ruttenberg for his constructive comments about an earlier draft of this manuscript","Part of a publication that is about the contributions of people or institutions other than the authors.","PERSON: Lawrence Hunter","acknowledgement","acknowledgements","acknowledgment","acknowledgments","false"],"shortForm":"IAO_0000324","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000325\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000325\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"footnote\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The referent in the text is usually indicated by a special typographic character such as * or a superscripted number, which is also used to indicate the footnote that refers to that text.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"endnote\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"footnotes\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"footnote\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"footnote\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"footnote\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The referent in the text is usually indicated by a special typographic character such as * or a superscripted number, which is also used to indicate the footnote that refers to that text.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"endnote\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"footnotes\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000325\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000325","definition":"A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"footnote","http__//purl.obolibrary.org/obo/IAO_0000112":"The referent in the text is usually indicated by a special typographic character such as * or a superscripted number, which is also used to indicate the footnote that refers to that text.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":["endnote","footnotes"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"footnote","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000325","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000325","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"footnote","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000314","searchableAnnotationValues":["footnote","The referent in the text is usually indicated by a special typographic character such as * or a superscripted number, which is also used to indicate the footnote that refers to that text.","A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document.","PERSON: Lawrence Hunter","endnote","footnotes","false"],"shortForm":"IAO_0000325","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000326\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000326\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that is segregated from the rest of the document due to its size\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary material to a document\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that is segregated from the rest of the document due to its size\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional file\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional files\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"appendix\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"electronic supplementary material\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"electronic supplementary materials\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplemental data\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplemental information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplemental material\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary data\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary files\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary material\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary materials\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supporting information\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary material to a document\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary material to a document\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary material to a document\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that is segregated from the rest of the document due to its size\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional file\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional files\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"appendix\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"electronic supplementary material\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"electronic supplementary materials\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplemental data\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplemental information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplemental material\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary data\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary files\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary material\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supplementary materials\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"supporting information\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000326\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000326","definition":"A part of a document that is segregated from the rest of the document due to its size","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"supplementary material to a document","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document that is segregated from the rest of the document due to its size","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//purl.obolibrary.org/obo/IAO_0000118":["additional file","additional files","additional information","appendix","electronic supplementary material","electronic supplementary materials","supplemental data","supplemental information","supplemental material","supplementary data","supplementary files","supplementary information","supplementary material","supplementary materials","supporting information"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"supplementary material to a document","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000326","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000326","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"supplementary material to a document","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["supplementary material to a document","A part of a document that is segregated from the rest of the document due to its size","PERSON: Lawrence Hunter","additional file","additional files","additional information","appendix","electronic supplementary material","electronic supplementary materials","supplemental data","supplemental information","supplemental material","supplementary data","supplementary files","supplementary information","supplementary material","supplementary materials","supporting information","false"],"shortForm":"IAO_0000326","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000327\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000327\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000306\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000306\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of contents\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of contents\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of contents\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of contents\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000327\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000306\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000306\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000327","definition":"A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000306","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000306","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"table of contents","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred).","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"table of contents","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000306","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000327","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000327","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"table of contents","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["table of contents","A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred).","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000327","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000328\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000328\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000306\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000306\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of figures\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of figures\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of figures\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table of figures\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000328\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000306\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000306\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000328","definition":"A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000306","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000306","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"table of figures","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred).","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"table of figures","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000306","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000328","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000328","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"table of figures","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["table of figures","A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred).","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000328","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000329\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000329\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A shorter version of a document title\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000305\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000305\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000305\",\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000305\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"running title\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A shorter version of a document title\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"running title\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000305\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"running title\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"running title\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A shorter version of a document title\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000329\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000305\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document title\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000305\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000329","definition":"A shorter version of a document title","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000305","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000305","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000305","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000305","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"running title","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A shorter version of a document title","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"running title","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000305","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000329","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000329","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"running title","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["running title","A shorter version of a document title","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000329","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000330\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000330\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes legal restrictions on making or distributing copies of the document\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"copyright section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes legal restrictions on making or distributing copies of the document\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"copyright section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"copyright section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"copyright section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes legal restrictions on making or distributing copies of the document\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Lawrence Hunter\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000330\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000330","definition":"A document part that describes legal restrictions on making or distributing copies of the document","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"copyright section","http__//purl.obolibrary.org/obo/IAO_0000112":"This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A document part that describes legal restrictions on making or distributing copies of the document","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Lawrence Hunter","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"copyright section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000330","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000330","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"copyright section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["copyright section","This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.","A document part that describes legal restrictions on making or distributing copies of the document","PERSON: Lawrence Hunter","false"],"shortForm":"IAO_0000330","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-08-18 Alan Ruttenberg - question to BFO list about whether the BFO sense of the lower dimensional regions is that they are always part of actual space (the three dimensional sort) http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"value\":\"AR notes: We need to discuss whether it should include site.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000027\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000018\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#cardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000407\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"value\":\"http://purl.obolibrary.org/obo/BFO_0000018\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000018\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-08-18 Alan Ruttenberg - question to BFO list about whether the BFO sense of the lower dimensional regions is that they are always part of actual space (the three dimensional sort) http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"AR notes: We need to discuss whether it should include site.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000400\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000407\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has coordinate unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000407\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000219\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000400","definition":"A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000027","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000027","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude","http__//purl.obolibrary.org/obo/IAO_0000116":"2009-08-18 Alan Ruttenberg - question to BFO list about whether the BFO sense of the lower dimensional regions is that they are always part of actual space (the three dimensional sort) http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000232":"AR notes: We need to discuss whether it should include site.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cartesian spatial coordinate datum","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000027"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000400","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000400","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cartesian spatial coordinate datum","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/BFO_0000018","searchableAnnotationValues":["A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude","2009-08-18 Alan Ruttenberg - question to BFO list about whether the BFO sense of the lower dimensional regions is that they are always part of actual space (the three dimensional sort) http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617","Alan Ruttenberg","AR notes: We need to discuss whether it should include site.","false"],"shortForm":"IAO_0000400","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000401\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000401\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000026\",\"isObsolete\":false}]},\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#cardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000404\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"value\":\"http://purl.obolibrary.org/obo/BFO_0000018\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000026\",\"isObsolete\":false}]},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000401\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000404\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has x coordinate value\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000404\"},\"type\":[\"dataProperty\",\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000219\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000026\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"one-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000026\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000401","definition":"A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000400","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000400","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"one dimensional cartesian spatial coordinate datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000400"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000401","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000401","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"one dimensional cartesian spatial coordinate datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/BFO_0000018","searchableAnnotationValues":["A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region","Alan Ruttenberg","false"],"shortForm":"IAO_0000401","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000402\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000402\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000009\",\"isObsolete\":false}]},\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#cardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000404\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#cardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000406\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"value\":\"http://purl.obolibrary.org/obo/BFO_0000018\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000009\",\"isObsolete\":false}]},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000402\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"two-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000406\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has y coordinate value\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000406\"},\"type\":[\"dataProperty\",\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000404\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has x coordinate value\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000404\"},\"type\":[\"dataProperty\",\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000219\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000402","definition":"A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000400","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000400","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"two dimensional cartesian spatial coordinate datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000400"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000402","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000402","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"two dimensional cartesian spatial coordinate datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/BFO_0000018","searchableAnnotationValues":["A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region","Alan Ruttenberg","false"],"shortForm":"IAO_0000402","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000403\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000403\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000400\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000028\",\"isObsolete\":false}]},\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#cardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000404\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#cardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000405\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#cardinality\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#nonNegativeInteger\",\"value\":\"1\"},\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000406\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three dimensional cartesian spatial coordinate datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"value\":\"http://purl.obolibrary.org/obo/BFO_0000018\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000018\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000028\",\"isObsolete\":false}]},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000403\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zero-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000406\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has y coordinate value\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000406\"},\"type\":[\"dataProperty\",\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000404\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has x coordinate value\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000404\"},\"type\":[\"dataProperty\",\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000405\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has z coordinate value\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000405\"},\"type\":[\"dataProperty\",\"property\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000219\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"three-dimensional spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000403","definition":"A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000400","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000400","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"three dimensional cartesian spatial coordinate datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000400"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000403","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000403","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"three dimensional cartesian spatial coordinate datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/BFO_0000018","searchableAnnotationValues":["A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region","Alan Ruttenberg","false"],"shortForm":"IAO_0000403","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000408\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000408\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measurement of length quality\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000032\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000032\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measurement of length quality\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"length measurement datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UO_0000001\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000221\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0000122\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"length measurement datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"value\":\"http://purl.obolibrary.org/obo/UO_0000001\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UO_0000001\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000221\",\"value\":\"http://purl.obolibrary.org/obo/PATO_0000122\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000221\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0000122\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measurement of length quality\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000408\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000032\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scalar measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000032\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"length\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000122\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000039\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"length unit\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000221\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measurement of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000221\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000408","definition":"A scalar measurement datum that is the result of measurement of length quality","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000032","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000032","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A scalar measurement datum that is the result of measurement of length quality","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"length measurement datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000032"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000408","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000408","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"length measurement datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/UO_0000001","http://purl.obolibrary.org/obo/PATO_0000122"],"searchableAnnotationValues":["A scalar measurement datum that is the result of measurement of length quality","Alan Ruttenberg","false"],"shortForm":"IAO_0000408","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000409\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000409\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A denotator type indicates how a term should be interpreted from an ontological perspective.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hasIndividuals\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotator type\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are \\\"natural kinds\\\" and the latter arbitrary collections of entities.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A denotator type indicates how a term should be interpreted from an ontological perspective.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Barry Smith, Werner Ceusters\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotator type\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#oneOf\":[\"http://purl.obolibrary.org/obo/IAO_0000410\",\"http://purl.obolibrary.org/obo/IAO_0000420\",\"http://purl.obolibrary.org/obo/IAO_0000421\"]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotator type\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotator type\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are \\\"natural kinds\\\" and the latter arbitrary collections of entities.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A denotator type indicates how a term should be interpreted from an ontological perspective.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Barry Smith, Werner Ceusters\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000409\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000410\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"universal\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000410\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000420\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined class\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000420\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000421\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"named class expression\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000421\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000409","definition":"A denotator type indicates how a term should be interpreted from an ontological perspective.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000102","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hasIndividuals":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000102","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"denotator type","http__//purl.obolibrary.org/obo/IAO_0000112":"The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are \"natural kinds\" and the latter arbitrary collections of entities.","http__//purl.obolibrary.org/obo/IAO_0000115":"A denotator type indicates how a term should be interpreted from an ontological perspective.","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Barry Smith, Werner Ceusters","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"denotator type","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000102","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000409","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000409","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"denotator type","numDescendants":"3.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["denotator type","The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are \"natural kinds\" and the latter arbitrary collections of entities.","A denotator type indicates how a term should be interpreted from an ontological perspective.","Alan Ruttenberg","Barry Smith, Werner Ceusters","false"],"shortForm":"IAO_0000409","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000414\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000414\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measurement of mass quality\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000032\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000032\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measurement of mass quality\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/09/28 Alan Ruttenberg. Fucoidan-use-case\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"mass measurement datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/UO_0000002\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0000125\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000221\",\"isObsolete\":false}]}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"mass measurement datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measurement of mass quality\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/09/28 Alan Ruttenberg. Fucoidan-use-case\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000414\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"mass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000125\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000032\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scalar measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000032\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000039\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"mass unit\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000221\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measurement of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000221\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000414","definition":"A scalar measurement datum that is the result of measurement of mass quality","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000032","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000032","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A scalar measurement datum that is the result of measurement of mass quality","http__//purl.obolibrary.org/obo/IAO_0000116":"2009/09/28 Alan Ruttenberg. Fucoidan-use-case","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"mass measurement datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000032"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000414","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000414","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"mass measurement datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A scalar measurement datum that is the result of measurement of mass quality","2009/09/28 Alan Ruttenberg. Fucoidan-use-case","Person:Alan Ruttenberg","false"],"shortForm":"IAO_0000414","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000415\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000415\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses an assertion that is intended to be tested.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"hypothesis textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \\u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\\u0027, by Lowenthal et. al.PMID:19696660\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses an assertion that is intended to be tested.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/09/28 Alan Ruttenberg. Fucoidan-use-case\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"hypothesis textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"hypothesis textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"hypothesis textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \\u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\\u0027, by Lowenthal et. al.PMID:19696660\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses an assertion that is intended to be tested.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/09/28 Alan Ruttenberg. Fucoidan-use-case\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000415\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"PMID:19696660\":{\"url\":\"http://www.ncbi.nlm.nih.gov/pubmed/19696660\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"PMID:19696660\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000415","definition":"A textual entity that expresses an assertion that is intended to be tested.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"hypothesis textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\u0027, by Lowenthal et. al.PMID:19696660","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that expresses an assertion that is intended to be tested.","http__//purl.obolibrary.org/obo/IAO_0000116":"2009/09/28 Alan Ruttenberg. Fucoidan-use-case","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hypothesis textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000415","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000415","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hypothesis textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["hypothesis textual entity","that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\u0027, by Lowenthal et. al.PMID:19696660","A textual entity that expresses an assertion that is intended to be tested.","2009/09/28 Alan Ruttenberg. Fucoidan-use-case","Person:Alan Ruttenberg","false"],"shortForm":"IAO_0000415","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000416\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000416\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measuring a temporal interval\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000032\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000032\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measuring a temporal interval\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/09/28 Alan Ruttenberg. Fucoidan-use-case\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time measurement datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000032\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/UO_0000003\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#allValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000413\",\"isObsolete\":false}]}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time measurement datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A scalar measurement datum that is the result of measuring a temporal interval\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/09/28 Alan Ruttenberg. Fucoidan-use-case\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000416\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000032\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scalar measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000032\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000039\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"time unit\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000413\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is duration of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000413\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000416","definition":"A scalar measurement datum that is the result of measuring a temporal interval","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000032","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000032","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A scalar measurement datum that is the result of measuring a temporal interval","http__//purl.obolibrary.org/obo/IAO_0000116":"2009/09/28 Alan Ruttenberg. Fucoidan-use-case","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"time measurement datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000032"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000416","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000416","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"time measurement datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A scalar measurement datum that is the result of measuring a temporal interval","2009/09/28 Alan Ruttenberg. Fucoidan-use-case","Person:Alan Ruttenberg","false"],"shortForm":"IAO_0000416","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000422\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000422\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A textual entity that is used as directive to deliver something to a person, or organization\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A textual entity that is used as directive to deliver something to a person, or organization\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"2010-05-24 Alan Ruttenberg. Use label for the string representation. See issue https://github.com/information-artifact-ontology/IAO/issues/59\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"postal address\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"postal address\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A textual entity that is used as directive to deliver something to a person, or organization\"},{\"type\":[\"literal\"],\"value\":\"2010-05-24 Alan Ruttenberg. Use label for the string representation. See issue https://github.com/information-artifact-ontology/IAO/issues/59\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000422\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000422","definition":"A textual entity that is used as directive to deliver something to a person, or organization","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that is used as directive to deliver something to a person, or organization","http__//purl.obolibrary.org/obo/IAO_0000116":"2010-05-24 Alan Ruttenberg. Use label for the string representation. See issue https://github.com/information-artifact-ontology/IAO/issues/59","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"postal address","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000422","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000422","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"postal address","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A textual entity that is used as directive to deliver something to a person, or organization","2010-05-24 Alan Ruttenberg. Use label for the string representation. See issue https://github.com/information-artifact-ontology/IAO/issues/59","false"],"shortForm":"IAO_0000422","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000429\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000429\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"email address\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg 1/3/2012 - Provisional id, see issue at https://github.com/information-artifact-ontology/IAO/issues/130\\u0026thanks\\u003d130\\u0026ts\\u003d1325636583\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Chris Stoeckart\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"email address\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"email address\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"email address\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg 1/3/2012 - Provisional id, see issue at https://github.com/information-artifact-ontology/IAO/issues/130\\u0026thanks\\u003d130\\u0026ts\\u003d1325636583\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Chris Stoeckart\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000429\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000429","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"email address","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000116":"Alan Ruttenberg 1/3/2012 - Provisional id, see issue at https://github.com/information-artifact-ontology/IAO/issues/130\u0026thanks\u003d130\u0026ts\u003d1325636583","http__//purl.obolibrary.org/obo/IAO_0000117":["Person:Alan Ruttenberg","Person:Chris Stoeckart"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"email address","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000429","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000429","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"email address","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["email address","Alan Ruttenberg 1/3/2012 - Provisional id, see issue at https://github.com/information-artifact-ontology/IAO/issues/130\u0026thanks\u003d130\u0026ts\u003d1325636583","Person:Alan Ruttenberg","Person:Chris Stoeckart","false"],"shortForm":"IAO_0000429","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000442\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000442\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000023\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000023\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author role\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author role\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author role\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author role\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000442\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000023\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000442","definition":"A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000023","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000023","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000023","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000023","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"author role","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Melanie Courtot"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"author role","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000023","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000442","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000442","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"author role","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["author role","A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name.","PERSON: Alan Ruttenberg","PERSON: Melanie Courtot","false"],"shortForm":"IAO_0000442","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000443\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000443\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"value\":\"Person:Alan Ruttenberg\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"data item extraction from journal article\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000013\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"data item extraction from journal article\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000013\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000013\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000027\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing\"},{\"type\":[\"literal\"],\"value\":\"Person:Alan Ruttenberg\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000443\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000013\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"journal article\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000013\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000443","definition":"A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"data item extraction from journal article","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/OBI_0000011"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000443","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000443","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"data item extraction from journal article","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/IAO_0000013","http://purl.obolibrary.org/obo/IAO_0000027"],"searchableAnnotationValues":["A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing","Person:Alan Ruttenberg","false"],"shortForm":"IAO_0000443","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000444\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000444\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"https://en.wikipedia.org/wiki/Publishing\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/232\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"VEuPathDB\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publishing process\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publishing process\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000013\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000444\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"https://en.wikipedia.org/wiki/Publishing\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"VEuPathDB\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000444\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000312\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000312\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000013\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"journal article\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000013\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000444","definition":"A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free.","http__//purl.obolibrary.org/obo/IAO_0000117":"Person: Jie Zheng","http__//purl.obolibrary.org/obo/IAO_0000119":"https://en.wikipedia.org/wiki/Publishing","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/232","http__//purl.obolibrary.org/obo/IAO_0000234":"VEuPathDB","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"publishing process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000011","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000444","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000444","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"publishing process","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000013","searchableAnnotationValues":["A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free.","Person: Jie Zheng","https://en.wikipedia.org/wiki/Publishing","VEuPathDB","false"],"shortForm":"IAO_0000444","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000445\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000445\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that is in preparation for submission to be published.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000310\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that is in preparation for submission to be published.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jie Zheng\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"EFO_0001795 in preparation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/232\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"VEuPathDB\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document in preparation for publication\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document in preparation for publication\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document that is in preparation for submission to be published.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jie Zheng\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"EFO_0001795 in preparation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"VEuPathDB\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000445\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000445","definition":"A document that is in preparation for submission to be published.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000310","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000310","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A document that is in preparation for submission to be published.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Jie Zheng","http__//purl.obolibrary.org/obo/IAO_0000119":"EFO_0001795 in preparation","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/232","http__//purl.obolibrary.org/obo/IAO_0000234":"VEuPathDB","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"document in preparation for publication","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000310","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000445","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000445","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"document in preparation for publication","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A document that is in preparation for submission to be published.","PERSON: Jie Zheng","EFO_0001795 in preparation","VEuPathDB","false"],"shortForm":"IAO_0000445","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000572\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000572\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a document is created or added to by including the specified input in it.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Recording the current temperature in a laboratory notebook. Writing a journal article. Updating a patient record in a database.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a document is created or added to by including the specified input in it.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"6/11/9: Edited at OBI workshop. We need to be able identify a child form of information artifact which corresponds to something enduring (not brain like). This used to be restricted to physical document or digital entity as the output, but that excludes e.g. an audio cassette tape\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Bjoern Peters\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"wikipedia http://en.wikipedia.org/wiki/Documenting\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"documenting\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"documenting\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000310\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Recording the current temperature in a laboratory notebook. Writing a journal article. Updating a patient record in a database.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a document is created or added to by including the specified input in it.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"6/11/9: Edited at OBI workshop. We need to be able identify a child form of information artifact which corresponds to something enduring (not brain like). This used to be restricted to physical document or digital entity as the output, but that excludes e.g. an audio cassette tape\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"wikipedia http://en.wikipedia.org/wiki/Documenting\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000572\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://en.wikipedia.org/wiki/Documenting\":{\"url\":\"http://en.wikipedia.org/wiki/Documenting\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Documenting\"},\"http://purl.obolibrary.org/obo/OBI_0000293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000572","definition":"A planned process in which a document is created or added to by including the specified input in it.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"Recording the current temperature in a laboratory notebook. Writing a journal article. Updating a patient record in a database.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process in which a document is created or added to by including the specified input in it.","http__//purl.obolibrary.org/obo/IAO_0000116":"6/11/9: Edited at OBI workshop. We need to be able identify a child form of information artifact which corresponds to something enduring (not brain like). This used to be restricted to physical document or digital entity as the output, but that excludes e.g. an audio cassette tape","http__//purl.obolibrary.org/obo/IAO_0000117":"Bjoern Peters","http__//purl.obolibrary.org/obo/IAO_0000119":"wikipedia http://en.wikipedia.org/wiki/Documenting","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"documenting","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/OBI_0000011"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000572","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000572","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"documenting","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000310"],"searchableAnnotationValues":["Recording the current temperature in a laboratory notebook. Writing a journal article. Updating a patient record in a database.","A planned process in which a document is created or added to by including the specified input in it.","6/11/9: Edited at OBI workshop. We need to be able identify a child form of information artifact which corresponds to something enduring (not brain like). This used to be restricted to physical document or digital entity as the output, but that excludes e.g. an audio cassette tape","Bjoern Peters","wikipedia http://en.wikipedia.org/wiki/Documenting","false"],"shortForm":"IAO_0000572","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000573\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000573\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A line graph is a type of graph created by connecting a series of data\\npoints together with a line.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000038\",\"http://purl.obolibrary.org/obo/IAO_0000309\",\"http://purl.obolibrary.org/obo/IAO_0000308\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"line graph\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A line graph is a type of graph created by connecting a series of data\\npoints together with a line.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"line chart\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wikipedia.org/wiki/Line_chart\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"line graph\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000038\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"line graph\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"line graph\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A line graph is a type of graph created by connecting a series of data\\npoints together with a line.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Stoeckert\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"line chart\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"WEB: http://en.wikipedia.org/wiki/Line_chart\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000573\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000309\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"diagram\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000309\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://en.wikipedia.org/wiki/Line_chart\":{\"url\":\"http://en.wikipedia.org/wiki/Line_chart\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Line_chart\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000038\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graph\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000038\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000573","definition":"A line graph is a type of graph created by connecting a series of data\npoints together with a line.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000038","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000038","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"line graph","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A line graph is a type of graph created by connecting a series of data\npoints together with a line.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Chris Stoeckert","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000118":"line chart","http__//purl.obolibrary.org/obo/IAO_0000119":["GROUP:OBI","WEB: http://en.wikipedia.org/wiki/Line_chart"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"line graph","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000038","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000573","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000573","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"line graph","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["line graph","A line graph is a type of graph created by connecting a series of data\npoints together with a line.","PERSON:Chris Stoeckert","PERSON:Melanie Courtot","line chart","GROUP:OBI","WEB: http://en.wikipedia.org/wiki/Line_chart","false"],"shortForm":"IAO_0000573","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000574\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000574\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A new pubmed ID being created for a journal article, and the associated pubmed record containing information to the journal article. A license plate number registered at the DMV to be belonging to a specific vehicle and owner. Placing a barcode on a product and entering information in a database that this barcode is assigned.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-05-05: It is the CRID registry that assigns CRIDs, not the users of the registry.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"value\":\"assigning a CRID\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"assigning a centrally registered identifier\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"assigning a centrally registered identifier\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A new pubmed ID being created for a journal article, and the associated pubmed record containing information to the journal article. A license plate number registered at the DMV to be belonging to a specific vehicle and owner. Placing a barcode on a product and entering information in a database that this barcode is assigned.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-05-05: It is the CRID registry that assigns CRIDs, not the users of the registry.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"assigning a CRID\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000574\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000579\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier registry\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000579\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000577\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000577\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000574","definition":"A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"A new pubmed ID being created for a journal article, and the associated pubmed record containing information to the journal article. A license plate number registered at the DMV to be belonging to a specific vehicle and owner. Placing a barcode on a product and entering information in a database that this barcode is assigned.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity","http__//purl.obolibrary.org/obo/IAO_0000116":"2014-05-05: It is the CRID registry that assigns CRIDs, not the users of the registry.","http__//purl.obolibrary.org/obo/IAO_0000117":["Person:Alan Ruttenberg","Person:Bjoern Peters","Person:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000118":"assigning a CRID","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"assigning a centrally registered identifier","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/OBI_0000011"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000574","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000574","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"assigning a centrally registered identifier","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/IAO_0000577","http://purl.obolibrary.org/obo/IAO_0000579"],"searchableAnnotationValues":["A new pubmed ID being created for a journal article, and the associated pubmed record containing information to the journal article. A license plate number registered at the DMV to be belonging to a specific vehicle and owner. Placing a barcode on a product and entering information in a database that this barcode is assigned.","A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity","2014-05-05: It is the CRID registry that assigns CRIDs, not the users of the registry.","Person:Alan Ruttenberg","Person:Bjoern Peters","Person:Melanie Courtot","assigning a CRID","false"],"shortForm":"IAO_0000574","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000575\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000575\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a CRID registry associates an information content entity with a CRID symbol\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"value\":\"Articles in Pubmed are reviewed by curators who add MESH terms to the Pubmed records in order to categorize them better and improve the ability to search for them. \"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a CRID registry associates an information content entity with a CRID symbol\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"value\":\"associating information with a CRID in the CRID registry\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"associating information with a centrally registered identifier in its registry\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"associating information with a centrally registered identifier in its registry\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Articles in Pubmed are reviewed by curators who add MESH terms to the Pubmed records in order to categorize them better and improve the ability to search for them. \"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a CRID registry associates an information content entity with a CRID symbol\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"associating information with a CRID in the CRID registry\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000575\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000579\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier registry\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000579\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000577\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000577\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000575","definition":"A planned process in which a CRID registry associates an information content entity with a CRID symbol","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"Articles in Pubmed are reviewed by curators who add MESH terms to the Pubmed records in order to categorize them better and improve the ability to search for them. ","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process in which a CRID registry associates an information content entity with a CRID symbol","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000118":"associating information with a CRID in the CRID registry","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"associating information with a centrally registered identifier in its registry","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/OBI_0000011"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000575","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000575","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"associating information with a centrally registered identifier in its registry","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000577","http://purl.obolibrary.org/obo/IAO_0000579"],"searchableAnnotationValues":["Articles in Pubmed are reviewed by curators who add MESH terms to the Pubmed records in order to categorize them better and improve the ability to search for them. ","A planned process in which a CRID registry associates an information content entity with a CRID symbol","PERSON:Alan Ruttenberg","associating information with a CRID in the CRID registry","false"],"shortForm":"IAO_0000575","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000576\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000576\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"MC, 20101124: deprecated following discussion at IAO call 20101124. Term was deemed not necessary - no use case for now.\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_establishing a CRID registry\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":false,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_establishing a CRID registry\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.\"},{\"type\":[\"literal\"],\"value\":\"MC, 20101124: deprecated following discussion at IAO call 20101124. Term was deemed not necessary - no use case for now.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000576\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000576","definition":"a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.","http__//purl.obolibrary.org/obo/IAO_0000116":"MC, 20101124: deprecated following discussion at IAO call 20101124. Term was deemed not necessary - no use case for now.","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_establishing a CRID registry","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000576","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000576","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_establishing a CRID registry","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.","MC, 20101124: deprecated following discussion at IAO call 20101124. Term was deemed not necessary - no use case for now.","false"],"shortForm":"IAO_0000576","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000577\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\\u0027s registry.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000028\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000578\",\"http://purl.obolibrary.org/obo/IAO_0020000\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The sentence \\\"The article has Pubmed ID 12345.\\\" contains a CRID that has two parts: one part is the CRID symbol, which is \\u002712345\\u0027; the other part denotes the CRID registry, which is Pubmed.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\\u0027s registry.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"value\":\"CRID symbol\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Original proposal from Bjoern, discussions at IAO calls\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier symbol\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000028\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier symbol\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000574\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000575\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000580\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false}],\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The sentence \\\"The article has Pubmed ID 12345.\\\" contains a CRID that has two parts: one part is the CRID symbol, which is \\u002712345\\u0027; the other part denotes the CRID registry, which is Pubmed.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\\u0027s registry.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"CRID symbol\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Original proposal from Bjoern, discussions at IAO calls\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000577\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000578\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000578\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000574\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"assigning a centrally registered identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000574\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000575\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"associating information with a centrally registered identifier in its registry\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000575\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000580\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"looking up a centrally registered identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000580\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000028\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000028\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000577","definition":"A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\u0027s registry.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000028","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000578","http://purl.obolibrary.org/obo/IAO_0020000"],"hierarchicalParent":["http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000578"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"The sentence \"The article has Pubmed ID 12345.\" contains a CRID that has two parts: one part is the CRID symbol, which is \u002712345\u0027; the other part denotes the CRID registry, which is Pubmed.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\u0027s registry.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Bill Hogan","PERSON: Bjoern Peters","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000118":"CRID symbol","http__//purl.obolibrary.org/obo/IAO_0000119":"Original proposal from Bjoern, discussions at IAO calls","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"centrally registered identifier symbol","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000028"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000577","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000577","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"centrally registered identifier symbol","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/IAO_0000574","http://purl.obolibrary.org/obo/IAO_0000575","http://purl.obolibrary.org/obo/IAO_0000578","http://purl.obolibrary.org/obo/IAO_0000580"],"relatedTo":"http://purl.obolibrary.org/obo/IAO_0000578","searchableAnnotationValues":["The sentence \"The article has Pubmed ID 12345.\" contains a CRID that has two parts: one part is the CRID symbol, which is \u002712345\u0027; the other part denotes the CRID registry, which is Pubmed.","A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\u0027s registry.","PERSON: Alan Ruttenberg","PERSON: Bill Hogan","PERSON: Bjoern Peters","PERSON: Melanie Courtot","CRID symbol","Original proposal from Bjoern, discussions at IAO calls","false"],"shortForm":"IAO_0000577","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000578\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The sentence \\\"The article has Pubmed ID 12345.\\\" contains a CRID that has two parts: one part is the CRID symbol, which is \\u002712345\\u0027; the other part denotes the CRID registry, which is Pubmed.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-05-05: In defining this term we take no position on what the CRID denotes. In particular do not assume it denotes a *record* in the CRID registry (since the registry might not have \\u0027records\\u0027).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan, IAO call 20101124: potentially the CRID denotes the instance it was associated with during creation.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Note, IAO call 20101124: URIs are not always CRID, as not centrally registered. We acknowledge that CRID is a subset of a larger identifier class, but this subset fulfills our current needs. OBI PURLs are CRID as they are registered with OCLC. UPCs (Universal Product Codes from AC Nielsen)are not CRID as they are not centrally registered.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"value\":\"CRID\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Original proposal from Bjoern, discussions at IAO calls\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false},\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The sentence \\\"The article has Pubmed ID 12345.\\\" contains a CRID that has two parts: one part is the CRID symbol, which is \\u002712345\\u0027; the other part denotes the CRID registry, which is Pubmed.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2014-05-05: In defining this term we take no position on what the CRID denotes. In particular do not assume it denotes a *record* in the CRID registry (since the registry might not have \\u0027records\\u0027).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan, IAO call 20101124: potentially the CRID denotes the instance it was associated with during creation.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Note, IAO call 20101124: URIs are not always CRID, as not centrally registered. We acknowledge that CRID is a subset of a larger identifier class, but this subset fulfills our current needs. OBI PURLs are CRID as they are registered with OCLC. UPCs (Universal Product Codes from AC Nielsen)are not CRID as they are not centrally registered.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"CRID\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Original proposal from Bjoern, discussions at IAO calls\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000578\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000579\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier registry\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000579\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000577\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000577\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000219\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000578","definition":"An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0020000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0020000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"The sentence \"The article has Pubmed ID 12345.\" contains a CRID that has two parts: one part is the CRID symbol, which is \u002712345\u0027; the other part denotes the CRID registry, which is Pubmed.","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs.","http__//purl.obolibrary.org/obo/IAO_0000116":["2014-05-05: In defining this term we take no position on what the CRID denotes. In particular do not assume it denotes a *record* in the CRID registry (since the registry might not have \u0027records\u0027).","Alan, IAO call 20101124: potentially the CRID denotes the instance it was associated with during creation.","Note, IAO call 20101124: URIs are not always CRID, as not centrally registered. We acknowledge that CRID is a subset of a larger identifier class, but this subset fulfills our current needs. OBI PURLs are CRID as they are registered with OCLC. UPCs (Universal Product Codes from AC Nielsen)are not CRID as they are not centrally registered."],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Bill Hogan","PERSON: Bjoern Peters","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000118":"CRID","http__//purl.obolibrary.org/obo/IAO_0000119":"Original proposal from Bjoern, discussions at IAO calls","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"centrally registered identifier","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0020000"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000578","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000578","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"centrally registered identifier","numDescendants":"1.0","numHierarchicalDescendants":"2.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000577","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000577","searchableAnnotationValues":["The sentence \"The article has Pubmed ID 12345.\" contains a CRID that has two parts: one part is the CRID symbol, which is \u002712345\u0027; the other part denotes the CRID registry, which is Pubmed.","An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs.","2014-05-05: In defining this term we take no position on what the CRID denotes. In particular do not assume it denotes a *record* in the CRID registry (since the registry might not have \u0027records\u0027).","Alan, IAO call 20101124: potentially the CRID denotes the instance it was associated with during creation.","Note, IAO call 20101124: URIs are not always CRID, as not centrally registered. We acknowledge that CRID is a subset of a larger identifier class, but this subset fulfills our current needs. OBI PURLs are CRID as they are registered with OCLC. UPCs (Universal Product Codes from AC Nielsen)are not CRID as they are not centrally registered.","PERSON: Alan Ruttenberg","PERSON: Bill Hogan","PERSON: Bjoern Peters","PERSON: Melanie Courtot","CRID","Original proposal from Bjoern, discussions at IAO calls","false"],"shortForm":"IAO_0000578","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000579\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000100\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0020020\"],\"directParent\":[\"http://purl.obolibrary.org/obo/IAO_0000100\",\"http://purl.obolibrary.org/obo/IAO_0020020\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000100\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0020020\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/IAO_0000100\",\"http://purl.obolibrary.org/obo/IAO_0020020\"],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PubMed is a CRID registry. It has a code set of PubMed identifiers associated with journal articles. \",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"value\":\"CRID registry\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Original proposal from Bjoern, discussions at IAO calls\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier registry\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000100\",\"http://purl.obolibrary.org/obo/IAO_0020020\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier registry\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000574\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000575\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000580\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PubMed is a CRID registry. It has a code set of PubMed identifiers associated with journal articles. \",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"CRID registry\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Original proposal from Bjoern, discussions at IAO calls\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000579\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"code set\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020020\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000574\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"assigning a centrally registered identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000574\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000575\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"associating information with a centrally registered identifier in its registry\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000575\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000580\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"looking up a centrally registered identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000580\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data set\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000100\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000579","definition":"A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0020020"],"directParent":["http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0020020"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0020020"],"hierarchicalParent":["http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0020020"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"PubMed is a CRID registry. It has a code set of PubMed identifiers associated with journal articles. ","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process.","http__//purl.obolibrary.org/obo/IAO_0000117":["Justin Whorton","PERSON: Alan Ruttenberg","PERSON: Bill Hogan","PERSON: Bjoern Peters","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000118":"CRID registry","http__//purl.obolibrary.org/obo/IAO_0000119":"Original proposal from Bjoern, discussions at IAO calls","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/237","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"centrally registered identifier registry","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0020020"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000579","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000579","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"centrally registered identifier registry","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/IAO_0000574","http://purl.obolibrary.org/obo/IAO_0000575","http://purl.obolibrary.org/obo/IAO_0000580"],"searchableAnnotationValues":["PubMed is a CRID registry. It has a code set of PubMed identifiers associated with journal articles. ","A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process.","Justin Whorton","PERSON: Alan Ruttenberg","PERSON: Bill Hogan","PERSON: Bjoern Peters","PERSON: Melanie Courtot","CRID registry","Original proposal from Bjoern, discussions at IAO calls","https://github.com/information-artifact-ontology/IAO/issues/237","false"],"shortForm":"IAO_0000579","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000580\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000580\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"value\":\"Going to the PubMed website and entering a PubMed ID in order to retrieve the Pubmed information associated with that ID. \"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"value\":\"looking up a CRID\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"looking up a centrally registered identifier\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"looking up a centrally registered identifier\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000577\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000579\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"Going to the PubMed website and entering a PubMed ID in order to retrieve the Pubmed information associated with that ID. \"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"looking up a CRID\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000580\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000579\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier registry\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000579\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000577\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier symbol\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000577\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000580","definition":"A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"Going to the PubMed website and entering a PubMed ID in order to retrieve the Pubmed information associated with that ID. ","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Bill Hogan","PERSON: Bjoern Peters","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000118":"looking up a CRID","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"looking up a centrally registered identifier","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/OBI_0000011"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000580","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000580","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"looking up a centrally registered identifier","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/IAO_0000577","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000579"],"searchableAnnotationValues":["Going to the PubMed website and entering a PubMed ID in order to retrieve the Pubmed information associated with that ID. ","A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol","PERSON: Alan Ruttenberg","PERSON: Bill Hogan","PERSON: Bjoern Peters","PERSON: Melanie Courtot","looking up a CRID","false"],"shortForm":"IAO_0000580","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000582\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000582\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000109\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000109\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time stamped measurement datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000109\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000581\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000416\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000583\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000109\",\"isObsolete\":false}]}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time stamped measurement datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000584\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000582\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000582\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000416\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000416\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000581\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has time stamp\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000581\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000583\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000583\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000584\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time sampled measurement data set\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000584\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000582","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000109","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000109","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"time stamped measurement datum","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000109"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000582","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000582","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"time stamped measurement datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000584","searchableAnnotationValues":"false","shortForm":"IAO_0000582","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000584\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000584\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000100\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000100\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000100\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000100\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pmid:20604925 - time-lapse live cell microscopy\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental time series\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time sampled measurement data set\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000100\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000582\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time sampled measurement data set\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000582\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000582\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pmid:20604925 - time-lapse live cell microscopy\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"experimental time series\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000584\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000582\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time stamped measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000582\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data set\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000100\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000584","definition":"A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000100","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000100","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"pmid:20604925 - time-lapse live cell microscopy","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time.","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000118":"experimental time series","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"time sampled measurement data set","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000100"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000584","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000584","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"time sampled measurement data set","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000582","searchableAnnotationValues":["pmid:20604925 - time-lapse live cell microscopy","A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time.","Alan Ruttenberg","experimental time series","false"],"shortForm":"IAO_0000584","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000590\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000590\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that denotes a particular in reality.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"written name\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\\\"Bill Clinton\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\\\"The Eiffel Tower\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\\\"United States of America\\\"\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that denotes a particular in reality.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/114\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The qualifier \\\"written\\\" is to set it apart from spoken names. Also, note the restrictions to particulars. We are not naming universals. We could however, be naming, attributive collections which are particulars, so \\\"All people located in the boundaries of the city of Little Rock, AR on June 18, 2011 at 9:50a CDT\\\" would be a name.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"written name\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"written name\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"written name\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\\\"Bill Clinton\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\\\"The Eiffel Tower\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\\\"United States of America\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that denotes a particular in reality.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Hogan\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/114\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The qualifier \\\"written\\\" is to set it apart from spoken names. Also, note the restrictions to particulars. We are not naming universals. We could however, be naming, attributive collections which are particulars, so \\\"All people located in the boundaries of the city of Little Rock, AR on June 18, 2011 at 9:50a CDT\\\" would be a name.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000590\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000590","definition":"A textual entity that denotes a particular in reality.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"written name","http__//purl.obolibrary.org/obo/IAO_0000112":["\"Bill Clinton\"","\"The Eiffel Tower\"","\"United States of America\""],"http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that denotes a particular in reality.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Hogan","http__//purl.obolibrary.org/obo/IAO_0000119":"https://github.com/information-artifact-ontology/IAO/issues/114","http__//purl.obolibrary.org/obo/IAO_0000232":"The qualifier \"written\" is to set it apart from spoken names. Also, note the restrictions to particulars. We are not naming universals. We could however, be naming, attributive collections which are particulars, so \"All people located in the boundaries of the city of Little Rock, AR on June 18, 2011 at 9:50a CDT\" would be a name.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"written name","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000590","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000590","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"written name","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["written name","\"Bill Clinton\"","\"The Eiffel Tower\"","\"United States of America\"","A textual entity that denotes a particular in reality.","PERSON: Bill Hogan","https://github.com/information-artifact-ontology/IAO/issues/114","The qualifier \"written\" is to set it apart from spoken names. Also, note the restrictions to particulars. We are not naming universals. We could however, be naming, attributive collections which are particulars, so \"All people located in the boundaries of the city of Little Rock, AR on June 18, 2011 at 9:50a CDT\" would be a name.","false"],"shortForm":"IAO_0000590","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000591\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000591\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software method\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software method\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000591\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000591","definition":"A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000010","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000010","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Melanie Courtot","PERSON: Michel Dumontier"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://github.com/information-artifact-ontology/IAO/issues/80","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"software method","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000010","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000591","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000591","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"software method","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task.","PERSON: Melanie Courtot","PERSON: Michel Dumontier","https://github.com/information-artifact-ontology/IAO/issues/80","false"],"shortForm":"IAO_0000591","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000592\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000592\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software module is software composed of a collection of software methods.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software module is software composed of a collection of software methods.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanei Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software module is software composed of a collection of software methods.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanei Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000592\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000592","definition":"A software module is software composed of a collection of software methods.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000010","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000010","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A software module is software composed of a collection of software methods.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Melanei Courtot","PERSON: Michel Dumontier"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://github.com/information-artifact-ontology/IAO/issues/80","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"software module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000010","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000592","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000592","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"software module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A software module is software composed of a collection of software methods.","PERSON: Melanei Courtot","PERSON: Michel Dumontier","https://github.com/information-artifact-ontology/IAO/issues/80","false"],"shortForm":"IAO_0000592","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000593\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000593\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software library\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software library\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000593\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000593","definition":"A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000010","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000010","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Melanie Courtot","PERSON: Michel Dumontier"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://github.com/information-artifact-ontology/IAO/issues/80","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"software library","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000010","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000593","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000593","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"software library","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application.","PERSON: Melanie Courtot","PERSON: Michel Dumontier","https://github.com/information-artifact-ontology/IAO/issues/80","false"],"shortForm":"IAO_0000593","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000594\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000594\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software application is software that can be directly executed by some processing unit.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software application is software that can be directly executed by some processing unit.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software application\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software application\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software application is software that can be directly executed by some processing unit.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000594\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000594","definition":"A software application is software that can be directly executed by some processing unit.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000010","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000010","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A software application is software that can be directly executed by some processing unit.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Melanie Courtot","PERSON: Michel Dumontier"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://github.com/information-artifact-ontology/IAO/issues/80","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"software application","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000010","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000594","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000594","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"software application","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A software application is software that can be directly executed by some processing unit.","PERSON: Melanie Courtot","PERSON: Michel Dumontier","https://github.com/information-artifact-ontology/IAO/issues/80","false"],"shortForm":"IAO_0000594","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000595\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000595\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software script is software whose instructions can be executed using a software interpreter.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000010\",\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software script is software whose instructions can be executed using a software interpreter.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software script\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000010\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software script\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A software script is software whose instructions can be executed using a software interpreter.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Michel Dumontier\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/80\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000595\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"software\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000010\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000595","definition":"A software script is software whose instructions can be executed using a software interpreter.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000010","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000010","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"A software script is software whose instructions can be executed using a software interpreter.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Melanie Courtot","PERSON: Michel Dumontier"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://github.com/information-artifact-ontology/IAO/issues/80","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"software script","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000010","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000595","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000595","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"software script","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A software script is software whose instructions can be executed using a software interpreter.","PERSON: Melanie Courtot","PERSON: Michel Dumontier","https://github.com/information-artifact-ontology/IAO/issues/80","false"],"shortForm":"IAO_0000595","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000605\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000605\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity listing abbreviations and their expansions that are used in a document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\\n\\nBAC: Bacterial artificial chromosome; CR: Calretinin; GFAP: Glial fibrillary acidic protein; MAP: Microtubule-associated protein; MRI: Magnetic resonance imaging; NSC: Neural stem cell; PDA: Patent ductus arteriosus; PMG: Polymicrogyria; PNH: Periventricular nodular heterotopia; VSD: Ventricular septal defect.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity listing abbreviations and their expansions that are used in a document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000606\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000605\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\\n\\nBAC: Bacterial artificial chromosome; CR: Calretinin; GFAP: Glial fibrillary acidic protein; MAP: Microtubule-associated protein; MRI: Magnetic resonance imaging; NSC: Neural stem cell; PDA: Patent ductus arteriosus; PMG: Polymicrogyria; PNH: Periventricular nodular heterotopia; VSD: Ventricular septal defect.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity listing abbreviations and their expansions that are used in a document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000605\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000606\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000606\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000605","definition":"A textual entity listing abbreviations and their expansions that are used in a document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"abbreviation textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\n\nBAC: Bacterial artificial chromosome; CR: Calretinin; GFAP: Glial fibrillary acidic protein; MAP: Microtubule-associated protein; MRI: Magnetic resonance imaging; NSC: Neural stem cell; PDA: Patent ductus arteriosus; PMG: Polymicrogyria; PNH: Periventricular nodular heterotopia; VSD: Ventricular septal defect.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity listing abbreviations and their expansions that are used in a document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"abbreviation textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000605","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000605","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"abbreviation textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000606","searchableAnnotationValues":["abbreviation textual entity","From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\n\nBAC: Bacterial artificial chromosome; CR: Calretinin; GFAP: Glial fibrillary acidic protein; MAP: Microtubule-associated protein; MRI: Magnetic resonance imaging; NSC: Neural stem cell; PDA: Patent ductus arteriosus; PMG: Polymicrogyria; PNH: Periventricular nodular heterotopia; VSD: Ventricular septal defect.","A textual entity listing abbreviations and their expansions that are used in a document.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000605","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000606\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000606\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document where abbreviations and their long-forms used within the document are listed.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027abbreviations\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document where abbreviations and their long-forms used within the document are listed.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation and acronyms\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation list\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations and acronyms\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations list\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations used\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definitions for abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"list of abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"list of abbreviations used\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"non-standard abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"nonstandard abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"nonstandard abbreviations and acronyms\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":[\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"https://github.com/information-artifact-ontology/IAO/issues/234\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000605\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000605\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000605\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027abbreviations\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document where abbreviations and their long-forms used within the document are listed.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation and acronyms\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation list\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations and acronyms\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations list\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviations used\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definitions for abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"list of abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"list of abbreviations used\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"non-standard abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"nonstandard abbreviations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"nonstandard abbreviations and acronyms\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000606\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000605\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abbreviation textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000605\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000606","definition":"A part of a document where abbreviations and their long-forms used within the document are listed.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"abbreviations section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027abbreviations\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document where abbreviations and their long-forms used within the document are listed.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["abbreviation and acronyms","abbreviation list","abbreviations","abbreviations and acronyms","abbreviations list","abbreviations used","definitions for abbreviations","list of abbreviations","list of abbreviations used","non-standard abbreviations","nonstandard abbreviations","nonstandard abbreviations and acronyms"],"http__//purl.obolibrary.org/obo/IAO_0000233":["https://github.com/information-artifact-ontology/IAO/issues/183","https://github.com/information-artifact-ontology/IAO/issues/234"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"abbreviations section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000606","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000606","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"abbreviations section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000605","searchableAnnotationValues":["abbreviations section","The section labelled \u0027abbreviations\u0027 in a typical scientific journal article.","A part of a document where abbreviations and their long-forms used within the document are listed.","PERSON: Bill Baumgartner","abbreviation and acronyms","abbreviation list","abbreviations","abbreviations and acronyms","abbreviations list","abbreviations used","definitions for abbreviations","list of abbreviations","list of abbreviations used","non-standard abbreviations","nonstandard abbreviations","nonstandard abbreviations and acronyms","false"],"shortForm":"IAO_0000606","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000607\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000607\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the authors that provides biographical information and may discuss how the authors\\u0027 professional experiences are relevant to the work described in the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027author information\\u0027 in a typical scientific journal article, e.g. in Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the authors that provides biographical information and may discuss how the authors\\u0027 professional experiences are relevant to the work described in the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors’ information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"biographies\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contributor information\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":[\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"https://github.com/information-artifact-ontology/IAO/issues/234\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000608\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000608\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000608\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027author information\\u0027 in a typical scientific journal article, e.g. in Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the authors that provides biographical information and may discuss how the authors\\u0027 professional experiences are relevant to the work described in the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors’ information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"biographies\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contributor information\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000607\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000608\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000608\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000607","definition":"A part of a document about the authors that provides biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"author information section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027author information\u0027 in a typical scientific journal article, e.g. in Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about the authors that provides biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["author information","authors’ information","biographies","contributor information"],"http__//purl.obolibrary.org/obo/IAO_0000233":["https://github.com/information-artifact-ontology/IAO/issues/183","https://github.com/information-artifact-ontology/IAO/issues/234"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"author information section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000607","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000607","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"author information section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000608","searchableAnnotationValues":["author information section","The section labelled \u0027author information\u0027 in a typical scientific journal article, e.g. in Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/)","A part of a document about the authors that provides biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document.","PERSON: Bill Baumgartner","author information","authors’ information","biographies","contributor information","false"],"shortForm":"IAO_0000607","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000608\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000608\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\\u0027 professional experiences are relevant to the work described in the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/):\\n\\nIT [the author] is the lead paediatrician for ADHD services in East Hertfordshire, UK, where she runs a weekly joint ADHD clinic with the Child and Adolescent psychiatrist and works within an ADHD specialist team. IT also sees children with other neurodisability issues who may have comorbid ADHD, where the presentation may be more complex and challenging to manage. IT has vast experience in managing children with complex ADHD. She has 18 years of experience in paediatrics and also has extensive experience in the use of psychopharmacologic agents in managing children with ADHD.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\\u0027 professional experiences are relevant to the work described in the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000607\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000608\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/):\\n\\nIT [the author] is the lead paediatrician for ADHD services in East Hertfordshire, UK, where she runs a weekly joint ADHD clinic with the Child and Adolescent psychiatrist and works within an ADHD specialist team. IT also sees children with other neurodisability issues who may have comorbid ADHD, where the presentation may be more complex and challenging to manage. IT has vast experience in managing children with complex ADHD. She has 18 years of experience in paediatrics and also has extensive experience in the use of psychopharmacologic agents in managing children with ADHD.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\\u0027 professional experiences are relevant to the work described in the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000608\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000607\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author information section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000607\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000608","definition":"A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"author information textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/):\n\nIT [the author] is the lead paediatrician for ADHD services in East Hertfordshire, UK, where she runs a weekly joint ADHD clinic with the Child and Adolescent psychiatrist and works within an ADHD specialist team. IT also sees children with other neurodisability issues who may have comorbid ADHD, where the presentation may be more complex and challenging to manage. IT has vast experience in managing children with complex ADHD. She has 18 years of experience in paediatrics and also has extensive experience in the use of psychopharmacologic agents in managing children with ADHD.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"author information textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000608","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000608","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"author information textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000607","searchableAnnotationValues":["author information textual entity","From Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/):\n\nIT [the author] is the lead paediatrician for ADHD services in East Hertfordshire, UK, where she runs a weekly joint ADHD clinic with the Child and Adolescent psychiatrist and works within an ADHD specialist team. IT also sees children with other neurodisability issues who may have comorbid ADHD, where the presentation may be more complex and challenging to manage. IT has vast experience in managing children with complex ADHD. She has 18 years of experience in paediatrics and also has extensive experience in the use of psychopharmacologic agents in managing children with ADHD.","A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000608","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000609\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000609\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027synopsis\\u0027 in a typical scientific journal article, e.g. in Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"summary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"synopsis\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000610\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000610\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000610\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027synopsis\\u0027 in a typical scientific journal article, e.g. in Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"summary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"synopsis\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000609\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000610\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000610\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000609","definition":"A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"author summary section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027synopsis\u0027 in a typical scientific journal article, e.g. in Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["author summary","summary","synopsis"],"http__//purl.obolibrary.org/obo/IAO_0000119":"Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"author summary section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000609","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000609","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"author summary section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000610","searchableAnnotationValues":["author summary section","The section labelled \u0027synopsis\u0027 in a typical scientific journal article, e.g. in Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/)","A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers.","PERSON: Bill Baumgartner","author summary","summary","synopsis","Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)","false"],"shortForm":"IAO_0000609","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000610\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000610\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/):\\n\\n\\nThe search for genetic risk factors for common human diseases often relies on the use of linkage and association studies to establish correlation between genomic markers and disease risk. These studies require additional functional evaluation of candidate genes, including their possible interaction with diet and environment. The number of candidate genes is typically large and the development of appropriate genetic tools in mammalian systems is slow. By contrast, large-scale genetic screens, using widely available genetic tools, are routinely conducted in the fruit fly Drosophila melanogaster. In this study, we used Drosophila to screen candidate genes identified in human genome-wide scans as associated with risk of metabolic abnormalities such as type 2 diabetes. We show that a number of human candidate genes have fly orthologs that play an important role in Drosophila tolerance to high dietary sucrose. We further explored some of the specific metabolic abnormalities that can result when these genes’ activities are reduced in flies, focusing on a gene we call dHHEX (CG7056), the fly ortholog of human HHEX.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000609\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000610\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/):\\n\\n\\nThe search for genetic risk factors for common human diseases often relies on the use of linkage and association studies to establish correlation between genomic markers and disease risk. These studies require additional functional evaluation of candidate genes, including their possible interaction with diet and environment. The number of candidate genes is typically large and the development of appropriate genetic tools in mammalian systems is slow. By contrast, large-scale genetic screens, using widely available genetic tools, are routinely conducted in the fruit fly Drosophila melanogaster. In this study, we used Drosophila to screen candidate genes identified in human genome-wide scans as associated with risk of metabolic abnormalities such as type 2 diabetes. We show that a number of human candidate genes have fly orthologs that play an important role in Drosophila tolerance to high dietary sucrose. We further explored some of the specific metabolic abnormalities that can result when these genes’ activities are reduced in flies, focusing on a gene we call dHHEX (CG7056), the fly ortholog of human HHEX.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000610\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000609\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"author summary section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000609\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000610","definition":"A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"author summary textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/):\n\n\nThe search for genetic risk factors for common human diseases often relies on the use of linkage and association studies to establish correlation between genomic markers and disease risk. These studies require additional functional evaluation of candidate genes, including their possible interaction with diet and environment. The number of candidate genes is typically large and the development of appropriate genetic tools in mammalian systems is slow. By contrast, large-scale genetic screens, using widely available genetic tools, are routinely conducted in the fruit fly Drosophila melanogaster. In this study, we used Drosophila to screen candidate genes identified in human genome-wide scans as associated with risk of metabolic abnormalities such as type 2 diabetes. We show that a number of human candidate genes have fly orthologs that play an important role in Drosophila tolerance to high dietary sucrose. We further explored some of the specific metabolic abnormalities that can result when these genes’ activities are reduced in flies, focusing on a gene we call dHHEX (CG7056), the fly ortholog of human HHEX.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000119":"Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"author summary textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000610","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000610","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"author summary textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000609","searchableAnnotationValues":["author summary textual entity","From Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/):\n\n\nThe search for genetic risk factors for common human diseases often relies on the use of linkage and association studies to establish correlation between genomic markers and disease risk. These studies require additional functional evaluation of candidate genes, including their possible interaction with diet and environment. The number of candidate genes is typically large and the development of appropriate genetic tools in mammalian systems is slow. By contrast, large-scale genetic screens, using widely available genetic tools, are routinely conducted in the fruit fly Drosophila melanogaster. In this study, we used Drosophila to screen candidate genes identified in human genome-wide scans as associated with risk of metabolic abnormalities such as type 2 diabetes. We show that a number of human candidate genes have fly orthologs that play an important role in Drosophila tolerance to high dietary sucrose. We further explored some of the specific metabolic abnormalities that can result when these genes’ activities are reduced in flies, focusing on a gene we call dHHEX (CG7056), the fly ortholog of human HHEX.","A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).","PERSON: Bill Baumgartner","Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).","false"],"shortForm":"IAO_0000610","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000611\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000611\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027availability and requirements\\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability of data\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data archiving\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data availability\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data availability statement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data sharing statement\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":[\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"https://github.com/information-artifact-ontology/IAO/issues/234\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000612\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000612\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000612\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027availability and requirements\\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability of data\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data archiving\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data availability\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data availability statement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data sharing statement\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000611\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000612\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000612\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000611","definition":"A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"availability section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027availability and requirements\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["availability","availability of data","data archiving","data availability","data availability statement","data sharing statement"],"http__//purl.obolibrary.org/obo/IAO_0000233":["https://github.com/information-artifact-ontology/IAO/issues/183","https://github.com/information-artifact-ontology/IAO/issues/234"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"availability section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000611","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000611","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"availability section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000612","searchableAnnotationValues":["availability section","The section labelled \u0027availability and requirements\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).","A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained.","PERSON: Bill Baumgartner","availability","availability of data","data archiving","data availability","data availability statement","data sharing statement","false"],"shortForm":"IAO_0000611","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000612\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000612\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\\n\\nProject home page:http://krux.googlecode.com\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000611\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000612\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\\n\\nProject home page:http://krux.googlecode.com\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000612\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000611\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"availability section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000611\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000612","definition":"A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"availability textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\n\nProject home page:http://krux.googlecode.com","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"availability textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000612","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000612","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"availability textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000611","searchableAnnotationValues":["availability textual entity","From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\n\nProject home page:http://krux.googlecode.com","A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000612","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000613\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000613\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the medical history of a specific patient as it relates to the topic of the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027case report\\u0027 in a typical scientific journal article, e.g. in Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the medical history of a specific patient as it relates to the topic of the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case presentation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000614\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000614\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000614\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027case report\\u0027 in a typical scientific journal article, e.g. in Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the medical history of a specific patient as it relates to the topic of the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case presentation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000613\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000614\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000614\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000613","definition":"A part of a document about the medical history of a specific patient as it relates to the topic of the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"case report section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027case report\u0027 in a typical scientific journal article, e.g. in Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about the medical history of a specific patient as it relates to the topic of the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["case presentation","case report"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"case report section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000613","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000613","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"case report section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000614","searchableAnnotationValues":["case report section","The section labelled \u0027case report\u0027 in a typical scientific journal article, e.g. in Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/)","A part of a document about the medical history of a specific patient as it relates to the topic of the document.","PERSON: Bill Baumgartner","case presentation","case report","false"],"shortForm":"IAO_0000613","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000614\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000614\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses a detailed account of a portion of the medical history for a specific patient.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/):\\n\\nThe patient is a 50-year-old man. His medical history was not contributory. At the age of 37 years, he complained of persistent fatigue and dyspnoea even for modest efforts and oedema of lower limbs. The patient was examined at the department of internal medicine of the local hospital, and hospitalised with a diagnosis of dilated cardiomyopathy probably consequence of a myocarditis process. Soon after he was transferred to the cardiologic department of the regional hospital, and pharmacologically treated for heart failure and pulmonary hypertension.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses a detailed account of a portion of the medical history for a specific patient.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000613\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000614\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/):\\n\\nThe patient is a 50-year-old man. His medical history was not contributory. At the age of 37 years, he complained of persistent fatigue and dyspnoea even for modest efforts and oedema of lower limbs. The patient was examined at the department of internal medicine of the local hospital, and hospitalised with a diagnosis of dilated cardiomyopathy probably consequence of a myocarditis process. Soon after he was transferred to the cardiologic department of the regional hospital, and pharmacologically treated for heart failure and pulmonary hypertension.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses a detailed account of a portion of the medical history for a specific patient.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000614\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000613\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"case report section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000613\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000614","definition":"A textual entity that expresses a detailed account of a portion of the medical history for a specific patient.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"case report textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"Excerpt from Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/):\n\nThe patient is a 50-year-old man. His medical history was not contributory. At the age of 37 years, he complained of persistent fatigue and dyspnoea even for modest efforts and oedema of lower limbs. The patient was examined at the department of internal medicine of the local hospital, and hospitalised with a diagnosis of dilated cardiomyopathy probably consequence of a myocarditis process. Soon after he was transferred to the cardiologic department of the regional hospital, and pharmacologically treated for heart failure and pulmonary hypertension.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that expresses a detailed account of a portion of the medical history for a specific patient.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"case report textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000614","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000614","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"case report textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000613","searchableAnnotationValues":["case report textual entity","Excerpt from Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/):\n\nThe patient is a 50-year-old man. His medical history was not contributory. At the age of 37 years, he complained of persistent fatigue and dyspnoea even for modest efforts and oedema of lower limbs. The patient was examined at the department of internal medicine of the local hospital, and hospitalised with a diagnosis of dilated cardiomyopathy probably consequence of a myocarditis process. Soon after he was transferred to the cardiologic department of the regional hospital, and pharmacologically treated for heart failure and pulmonary hypertension.","A textual entity that expresses a detailed account of a portion of the medical history for a specific patient.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000614","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000615\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000615\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027conclusion\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"concluding remarks\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"findings\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"summary\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000144\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000144\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000144\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027conclusion\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"concluding remarks\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"findings\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"summary\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000615\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000144\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conclusion textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000144\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000615","definition":"A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"conclusion section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027conclusion\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["concluding remarks","conclusion","conclusions","findings","summary"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"conclusion section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000615","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000615","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"conclusion section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000144","searchableAnnotationValues":["conclusion section","The section labelled \u0027conclusion\u0027 in a typical scientific journal article.","A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document.","PERSON: Bill Baumgartner","concluding remarks","conclusion","conclusions","findings","summary","false"],"shortForm":"IAO_0000615","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000616\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000616\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027conflict of interest statement\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors\\u0027 disclosures of potential conflicts of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"competing financial interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"competing interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest statement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflicts of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"declaration of competing interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"declaration of competing interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"declaration of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"declaration of interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disclosure of conflict of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disclosure of potential conflicts of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"duality of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statement of interest\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":[\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"https://github.com/information-artifact-ontology/IAO/issues/234\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000617\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000617\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000617\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027conflict of interest statement\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"authors\\u0027 disclosures of potential conflicts of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"competing financial interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"competing interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest statement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflicts of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"declaration of competing interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"declaration of competing interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"declaration of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"declaration of interests\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disclosure of conflict of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disclosure of potential conflicts of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"duality of interest\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statement of interest\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000616\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000617\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000617\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000616","definition":"A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"conflict of interest section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027conflict of interest statement\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["authors\u0027 disclosures of potential conflicts of interest","competing financial interests","competing interests","conflict of interest","conflict of interest statement","conflict of interests","conflicts of interest","declaration of competing interest","declaration of competing interests","declaration of interest","declaration of interests","disclosure of conflict of interest","disclosure of potential conflicts of interest","duality of interest","statement of interest"],"http__//purl.obolibrary.org/obo/IAO_0000233":["https://github.com/information-artifact-ontology/IAO/issues/183","https://github.com/information-artifact-ontology/IAO/issues/234"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"conflict of interest section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000616","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000616","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"conflict of interest section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000617","searchableAnnotationValues":["conflict of interest section","The section labelled \u0027conflict of interest statement\u0027 in a typical scientific journal article.","A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document.","PERSON: Bill Baumgartner","authors\u0027 disclosures of potential conflicts of interest","competing financial interests","competing interests","conflict of interest","conflict of interest statement","conflict of interests","conflicts of interest","declaration of competing interest","declaration of competing interests","declaration of interest","declaration of interests","disclosure of conflict of interest","disclosure of potential conflicts of interest","duality of interest","statement of interest","false"],"shortForm":"IAO_0000616","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000617\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000617\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest statement\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"SD [an author] is a Merck employee and Merck is the sponsor of this study. [Taken from \\u0027Effects of obstructive sleep apnoea risk on postoperative respiratory complications: protocol for a hospital-based registry study\\u0027 Shin et al. 2016 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4735131/)] \",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000616\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000617\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest statement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"SD [an author] is a Merck employee and Merck is the sponsor of this study. [Taken from \\u0027Effects of obstructive sleep apnoea risk on postoperative respiratory complications: protocol for a hospital-based registry study\\u0027 Shin et al. 2016 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4735131/)] \",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000617\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000616\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"conflict of interest section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000616\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000617","definition":"A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"conflict of interest statement","http__//purl.obolibrary.org/obo/IAO_0000112":"SD [an author] is a Merck employee and Merck is the sponsor of this study. [Taken from \u0027Effects of obstructive sleep apnoea risk on postoperative respiratory complications: protocol for a hospital-based registry study\u0027 Shin et al. 2016 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4735131/)] ","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"conflict of interest textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000617","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000617","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"conflict of interest textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000616","searchableAnnotationValues":["conflict of interest statement","SD [an author] is a Merck employee and Merck is the sponsor of this study. [Taken from \u0027Effects of obstructive sleep apnoea risk on postoperative respiratory complications: protocol for a hospital-based registry study\u0027 Shin et al. 2016 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4735131/)] ","A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000617","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000618\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000618\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the consent process that was used to enroll patients in a study.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027consent\\u0027 in a typical scientific journal article, e.g. Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the consent process that was used to enroll patients in a study.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000619\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000619\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000619\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027consent\\u0027 in a typical scientific journal article, e.g. Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the consent process that was used to enroll patients in a study.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000618\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000619\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000619\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000618","definition":"A part of a document about the consent process that was used to enroll patients in a study.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"consent section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027consent\u0027 in a typical scientific journal article, e.g. Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about the consent process that was used to enroll patients in a study.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"consent","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"consent section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000618","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000618","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"consent section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000619","searchableAnnotationValues":["consent section","The section labelled \u0027consent\u0027 in a typical scientific journal article, e.g. Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/)","A part of a document about the consent process that was used to enroll patients in a study.","PERSON: Bill Baumgartner","consent","false"],"shortForm":"IAO_0000618","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000619\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000619\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that documents the consenting process used to enroll patients in a study.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\\n\\nWritten informed consent was obtained from the patient’s parents for publication of this Case report and any accompanying images. A copy of the written consent is available for review by the Editor-in chief of this journal.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that documents the consenting process used to enroll patients in a study.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000618\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000619\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\\n\\nWritten informed consent was obtained from the patient’s parents for publication of this Case report and any accompanying images. A copy of the written consent is available for review by the Editor-in chief of this journal.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that documents the consenting process used to enroll patients in a study.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000619\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000618\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"consent section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000618\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000619","definition":"A textual entity that documents the consenting process used to enroll patients in a study.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"consent textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\n\nWritten informed consent was obtained from the patient’s parents for publication of this Case report and any accompanying images. A copy of the written consent is available for review by the Editor-in chief of this journal.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that documents the consenting process used to enroll patients in a study.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"consent textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000619","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000619","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"consent textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000618","searchableAnnotationValues":["consent textual entity","From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\n\nWritten informed consent was obtained from the patient’s parents for publication of this Case report and any accompanying images. A copy of the written consent is available for review by the Editor-in chief of this journal.","A textual entity that documents the consenting process used to enroll patients in a study.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000619","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000620\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000620\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027ethical approval\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical requirements\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethics\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethics statement\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":[\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"https://github.com/information-artifact-ontology/IAO/issues/234\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000621\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000621\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000621\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027ethical approval\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical requirements\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethics\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethics statement\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000620\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000621\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000621\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000620","definition":"A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"ethical approval section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027ethical approval\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["ethical approval","ethical requirements","ethics","ethics statement"],"http__//purl.obolibrary.org/obo/IAO_0000233":["https://github.com/information-artifact-ontology/IAO/issues/183","https://github.com/information-artifact-ontology/IAO/issues/234"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"ethical approval section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000620","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000620","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ethical approval section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000621","searchableAnnotationValues":["ethical approval section","The section labelled \u0027ethical approval\u0027 in a typical scientific journal article.","A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis.","PERSON: Bill Baumgartner","ethical approval","ethical requirements","ethics","ethics statement","false"],"shortForm":"IAO_0000620","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000621\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000621\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that documents the ethical approval of some study design.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):\\n\\nThe NHS National Research Ethics Service had previously approved the use of these anonymised data for research purposes and this analysis did not require independent review.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that documents the ethical approval of some study design.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000620\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000621\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):\\n\\nThe NHS National Research Ethics Service had previously approved the use of these anonymised data for research purposes and this analysis did not require independent review.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that documents the ethical approval of some study design.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000621\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0500000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study design\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0500000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000620\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000620\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000621","definition":"A textual entity that documents the ethical approval of some study design.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"ethical approval textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):\n\nThe NHS National Research Ethics Service had previously approved the use of these anonymised data for research purposes and this analysis did not require independent review.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that documents the ethical approval of some study design.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"ethical approval textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000300"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000621","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000621","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ethical approval textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000620","relatedTo":"http://purl.obolibrary.org/obo/OBI_0500000","searchableAnnotationValues":["ethical approval textual entity","From McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):\n\nThe NHS National Research Ethics Service had previously approved the use of these anonymised data for research purposes and this analysis did not require independent review.","A textual entity that documents the ethical approval of some study design.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000621","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000622\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000622\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that contains one or more figures.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figures section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027figures\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that contains one or more figures.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figures\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figures section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figures section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000308\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figures section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027figures\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that contains one or more figures.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figures\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000622\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000308\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"figure\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000308\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000622","definition":"A part of a document that contains one or more figures.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"figures section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027figures\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document that contains one or more figures.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"figures","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"figures section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000622","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000622","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"figures section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000308","searchableAnnotationValues":["figures section","The section labelled \u0027figures\u0027 in a typical scientific journal article.","A part of a document that contains one or more figures.","PERSON: Bill Baumgartner","figures","false"],"shortForm":"IAO_0000622","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000623\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000623\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to detail information regarding the source of funding used in support of the generation of the document content.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding source declaration section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027funding\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to detail information regarding the source of funding used in support of the generation of the document content.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"financial support\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding sources\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding statement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding/support\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"grants\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role of the funding source\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source of funding\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"sources of funding\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study funding\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":[\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"https://github.com/information-artifact-ontology/IAO/issues/234\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding source declaration section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000624\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding source declaration section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000624\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000624\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding source declaration section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027funding\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document used to detail information regarding the source of funding used in support of the generation of the document content.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"financial support\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding information\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding sources\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding statement\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding/support\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"grants\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role of the funding source\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source of funding\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"sources of funding\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study funding\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000623\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000624\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding source declaration textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000624\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000623","definition":"A part of a document used to detail information regarding the source of funding used in support of the generation of the document content.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"funding source declaration section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027funding\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document used to detail information regarding the source of funding used in support of the generation of the document content.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["financial support","funding","funding information","funding sources","funding statement","funding/support","grants","role of the funding source","source of funding","sources of funding","study funding"],"http__//purl.obolibrary.org/obo/IAO_0000233":["https://github.com/information-artifact-ontology/IAO/issues/183","https://github.com/information-artifact-ontology/IAO/issues/234"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"funding source declaration section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000623","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000623","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"funding source declaration section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000624","searchableAnnotationValues":["funding source declaration section","The section labelled \u0027funding\u0027 in a typical scientific journal article.","A part of a document used to detail information regarding the source of funding used in support of the generation of the document content.","PERSON: Bill Baumgartner","financial support","funding","funding information","funding sources","funding statement","funding/support","grants","role of the funding source","source of funding","sources of funding","study funding","false"],"shortForm":"IAO_0000623","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000624\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000624\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity documenting the source of funding that supported some study.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding souce declaration textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Stephan et al. Accid Anal Prev. 2011 May; 43(3): 1062–1067. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3062852/):\\n\\nThis study was supported by the International Collaborative Research Grants Scheme with joint grants from the Wellcome Trust UK (GR071587MA) and the Australian NHMRC (268055). The funding sources played no role in study design, data collection, analysis or interpretation, writing the report, or the decision to submit the paper for publication.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity documenting the source of funding that supported some study.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding source declaration textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding source declaration textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000623\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000624\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding souce declaration textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Stephan et al. Accid Anal Prev. 2011 May; 43(3): 1062–1067. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3062852/):\\n\\nThis study was supported by the International Collaborative Research Grants Scheme with joint grants from the Wellcome Trust UK (GR071587MA) and the Australian NHMRC (268055). The funding sources played no role in study design, data collection, analysis or interpretation, writing the report, or the decision to submit the paper for publication.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity documenting the source of funding that supported some study.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000624\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000623\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"funding source declaration section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000623\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000624","definition":"A textual entity documenting the source of funding that supported some study.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"funding souce declaration textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Stephan et al. Accid Anal Prev. 2011 May; 43(3): 1062–1067. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3062852/):\n\nThis study was supported by the International Collaborative Research Grants Scheme with joint grants from the Wellcome Trust UK (GR071587MA) and the Australian NHMRC (268055). The funding sources played no role in study design, data collection, analysis or interpretation, writing the report, or the decision to submit the paper for publication.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity documenting the source of funding that supported some study.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"funding source declaration textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000624","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000624","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"funding source declaration textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000623","searchableAnnotationValues":["funding souce declaration textual entity","From Stephan et al. Accid Anal Prev. 2011 May; 43(3): 1062–1067. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3062852/):\n\nThis study was supported by the International Collaborative Research Grants Scheme with joint grants from the Wellcome Trust UK (GR071587MA) and the Australian NHMRC (268055). The funding sources played no role in study design, data collection, analysis or interpretation, writing the report, or the decision to submit the paper for publication.","A textual entity documenting the source of funding that supported some study.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000624","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000625\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000625\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document detailing extensions of the described work that may be implemented at some future point in time.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027future directions\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document detailing extensions of the described work that may be implemented at some future point in time.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future challenges\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future considerations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future developments\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future outlook\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future perspectives\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future plans\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future prospects\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future research\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future research directions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future studies\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future work\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"outlook\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":[\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"https://github.com/information-artifact-ontology/IAO/issues/234\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000626\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000626\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000626\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027future directions\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document detailing extensions of the described work that may be implemented at some future point in time.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future challenges\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future considerations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future developments\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future outlook\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future perspectives\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future plans\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future prospects\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future research\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future research directions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future studies\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future work\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"outlook\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000625\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000626\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000626\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000625","definition":"A part of a document detailing extensions of the described work that may be implemented at some future point in time.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"future directions section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027future directions\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document detailing extensions of the described work that may be implemented at some future point in time.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["future challenges","future considerations","future developments","future directions","future outlook","future perspectives","future plans","future prospects","future research","future research directions","future studies","future work","outlook"],"http__//purl.obolibrary.org/obo/IAO_0000233":["https://github.com/information-artifact-ontology/IAO/issues/183","https://github.com/information-artifact-ontology/IAO/issues/234"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"future directions section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000625","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000625","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"future directions section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000626","searchableAnnotationValues":["future directions section","The section labelled \u0027future directions\u0027 in a typical scientific journal article.","A part of a document detailing extensions of the described work that may be implemented at some future point in time.","PERSON: Bill Baumgartner","future challenges","future considerations","future developments","future directions","future outlook","future perspectives","future plans","future prospects","future research","future research directions","future studies","future work","outlook","false"],"shortForm":"IAO_0000625","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000626\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000626\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing ideas regarding future work relevant to work described in a document that could be done.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Wang and Li. Acta Pharmacol Sin. 2016 Jan; 37(1): 25–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4722976/):\\n\\nIn the future, several questions will need to be resolved regarding the physiological assembly of KCNQ channels and their functional implications in complex neural circuits. First, we still lack sufficiently selective inhibitors and activators among the KCNQ family members.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing ideas regarding future work relevant to work described in a document that could be done.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000625\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000626\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Wang and Li. Acta Pharmacol Sin. 2016 Jan; 37(1): 25–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4722976/):\\n\\nIn the future, several questions will need to be resolved regarding the physiological assembly of KCNQ channels and their functional implications in complex neural circuits. First, we still lack sufficiently selective inhibitors and activators among the KCNQ family members.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing ideas regarding future work relevant to work described in a document that could be done.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000626\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000625\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"future directions section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000625\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000626","definition":"A textual entity expressing ideas regarding future work relevant to work described in a document that could be done.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"future directions textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"Excerpt from Wang and Li. Acta Pharmacol Sin. 2016 Jan; 37(1): 25–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4722976/):\n\nIn the future, several questions will need to be resolved regarding the physiological assembly of KCNQ channels and their functional implications in complex neural circuits. First, we still lack sufficiently selective inhibitors and activators among the KCNQ family members.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity expressing ideas regarding future work relevant to work described in a document that could be done.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"future directions textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000626","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000626","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"future directions textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000625","searchableAnnotationValues":["future directions textual entity","Excerpt from Wang and Li. Acta Pharmacol Sin. 2016 Jan; 37(1): 25–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4722976/):\n\nIn the future, several questions will need to be resolved regarding the physiological assembly of KCNQ channels and their functional implications in complex neural circuits. First, we still lack sufficiently selective inhibitors and activators among the KCNQ family members.","A textual entity expressing ideas regarding future work relevant to work described in a document that could be done.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000626","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000627\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000627\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part announcing the publication of a novel draft genome sequence.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027genome announcement\\u0027 in a typical scientific journal article, e.g. in Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part announcing the publication of a novel draft genome sequence.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000628\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000628\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000628\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027genome announcement\\u0027 in a typical scientific journal article, e.g. in Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part announcing the publication of a novel draft genome sequence.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000627\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000628\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000628\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000627","definition":"A document part announcing the publication of a novel draft genome sequence.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"genome announcement section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027genome announcement\u0027 in a typical scientific journal article, e.g. in Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A document part announcing the publication of a novel draft genome sequence.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"genome announcement","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"genome announcement section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000627","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000627","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"genome announcement section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000628","searchableAnnotationValues":["genome announcement section","The section labelled \u0027genome announcement\u0027 in a typical scientific journal article, e.g. in Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/)","A document part announcing the publication of a novel draft genome sequence.","PERSON: Bill Baumgartner","genome announcement","false"],"shortForm":"IAO_0000627","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000628\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000628\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that describes the generation and public release of a novel, draft genome sequence.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/):\\n\\nHere we report the genome sequence of Lactobacillus malefermentans KCTC 3548, which we obtained using a whole-genome shotgun strategy (4) with Roche 454 GS (FLX Titanium) pyrosequencing (257,559 reads totaling ∼89.8 Mb; ∼45-fold coverage of the genome) at the Genome Resource Center, Korea Research Institute of Bioscience and Biotechnology (KRIBB).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that describes the generation and public release of a novel, draft genome sequence.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000627\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000628\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/):\\n\\nHere we report the genome sequence of Lactobacillus malefermentans KCTC 3548, which we obtained using a whole-genome shotgun strategy (4) with Roche 454 GS (FLX Titanium) pyrosequencing (257,559 reads totaling ∼89.8 Mb; ∼45-fold coverage of the genome) at the Genome Resource Center, Korea Research Institute of Bioscience and Biotechnology (KRIBB).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that describes the generation and public release of a novel, draft genome sequence.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000628\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000627\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"genome announcement section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000627\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000628","definition":"A textual entity that describes the generation and public release of a novel, draft genome sequence.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"genome announcement textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"Excerpt from Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/):\n\nHere we report the genome sequence of Lactobacillus malefermentans KCTC 3548, which we obtained using a whole-genome shotgun strategy (4) with Roche 454 GS (FLX Titanium) pyrosequencing (257,559 reads totaling ∼89.8 Mb; ∼45-fold coverage of the genome) at the Genome Resource Center, Korea Research Institute of Bioscience and Biotechnology (KRIBB).","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that describes the generation and public release of a novel, draft genome sequence.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"genome announcement textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000628","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000628","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"genome announcement textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000627","searchableAnnotationValues":["genome announcement textual entity","Excerpt from Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/):\n\nHere we report the genome sequence of Lactobacillus malefermentans KCTC 3548, which we obtained using a whole-genome shotgun strategy (4) with Roche 454 GS (FLX Titanium) pyrosequencing (257,559 reads totaling ∼89.8 Mb; ∼45-fold coverage of the genome) at the Genome Resource Center, Korea Research Institute of Bioscience and Biotechnology (KRIBB).","A textual entity that describes the generation and public release of a novel, draft genome sequence.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000628","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000629\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000629\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity listing keywords indicating the major theme(s) of a document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keyword textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From: Fu and Lin. Identification of gene-oriented exon orthology between human and mouse. BMC Genomics. 2012; 13(Suppl 1): S10. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3303729/):\\n\\nExon orthology; alternative splicing; exon duplication; intron-exon structure.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity listing keywords indicating the major theme(s) of a document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keyword textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keyword textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000630\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000629\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keyword textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From: Fu and Lin. Identification of gene-oriented exon orthology between human and mouse. BMC Genomics. 2012; 13(Suppl 1): S10. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3303729/):\\n\\nExon orthology; alternative splicing; exon duplication; intron-exon structure.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity listing keywords indicating the major theme(s) of a document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000629\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000630\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keywords section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000630\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000629","definition":"A textual entity listing keywords indicating the major theme(s) of a document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"keyword textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From: Fu and Lin. Identification of gene-oriented exon orthology between human and mouse. BMC Genomics. 2012; 13(Suppl 1): S10. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3303729/):\n\nExon orthology; alternative splicing; exon duplication; intron-exon structure.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity listing keywords indicating the major theme(s) of a document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"keyword textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000629","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000629","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"keyword textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000630","searchableAnnotationValues":["keyword textual entity","From: Fu and Lin. Identification of gene-oriented exon orthology between human and mouse. BMC Genomics. 2012; 13(Suppl 1): S10. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3303729/):\n\nExon orthology; alternative splicing; exon duplication; intron-exon structure.","A textual entity listing keywords indicating the major theme(s) of a document.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000629","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000630\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000630\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keywords section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027keywords\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keywords\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keywords section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000629\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keywords section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000629\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000629\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keywords section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027keywords\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keywords\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000630\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000629\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"keyword textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000629\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000630","definition":"A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"keywords section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027keywords\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"keywords","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"keywords section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000630","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000630","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"keywords section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000629","searchableAnnotationValues":["keywords section","The section labelled \u0027keywords\u0027 in a typical scientific journal article.","A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed.","PERSON: Bill Baumgartner","keywords","false"],"shortForm":"IAO_0000630","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000631\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000631\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about biases or short comings related to the study design and execution.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027limitations\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about biases or short comings related to the study design and execution.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"limitations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000632\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations section\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000632\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000632\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027limitations\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about biases or short comings related to the study design and execution.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"limitations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000631\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000632\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000632\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0500000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study design\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0500000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000631","definition":"A part of a document about biases or short comings related to the study design and execution.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"study limitations section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027limitations\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about biases or short comings related to the study design and execution.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["limitations","study limitations"],"http__//purl.obolibrary.org/obo/IAO_0000119":"Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"study limitations section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000631","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000631","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"study limitations section","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/IAO_0000632","http://purl.obolibrary.org/obo/OBI_0500000"],"searchableAnnotationValues":["study limitations section","The section labelled \u0027limitations\u0027 in a typical scientific journal article.","A part of a document about biases or short comings related to the study design and execution.","PERSON: Bill Baumgartner","limitations","study limitations","Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)","false"],"shortForm":"IAO_0000631","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000632\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000632\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity addressing a shortcoming or bias of a study design or execution.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from the Limitations section of Fermann et al 2015, Acad Emerg Med. 2015 Mar; 22(3): 299–307 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4405051/). \\n\\nOwing to the nature of a post hoc study, any significant values must be interpreted with caution. In the current analysis, no multiple testing was conducted and p-values remain unadjusted. Moreover, a selection bias arising from the randomized open-label design of the original EINSTEIN PE study cannot be ruled out.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity addressing a shortcoming or bias of a study design or execution.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000631\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000632\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from the Limitations section of Fermann et al 2015, Acad Emerg Med. 2015 Mar; 22(3): 299–307 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4405051/). \\n\\nOwing to the nature of a post hoc study, any significant values must be interpreted with caution. In the current analysis, no multiple testing was conducted and p-values remain unadjusted. Moreover, a selection bias arising from the randomized open-label design of the original EINSTEIN PE study cannot be ruled out.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity addressing a shortcoming or bias of a study design or execution.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000632\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000631\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000631\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000632","definition":"A textual entity addressing a shortcoming or bias of a study design or execution.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"study limitations textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"Excerpt from the Limitations section of Fermann et al 2015, Acad Emerg Med. 2015 Mar; 22(3): 299–307 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4405051/). \n\nOwing to the nature of a post hoc study, any significant values must be interpreted with caution. In the current analysis, no multiple testing was conducted and p-values remain unadjusted. Moreover, a selection bias arising from the randomized open-label design of the original EINSTEIN PE study cannot be ruled out.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity addressing a shortcoming or bias of a study design or execution.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000119":"Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"study limitations textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000632","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000632","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"study limitations textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000631","searchableAnnotationValues":["study limitations textual entity","Excerpt from the Limitations section of Fermann et al 2015, Acad Emerg Med. 2015 Mar; 22(3): 299–307 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4405051/). \n\nOwing to the nature of a post hoc study, any significant values must be interpreted with caution. In the current analysis, no multiple testing was conducted and p-values remain unadjusted. Moreover, a selection bias arising from the randomized open-label design of the original EINSTEIN PE study cannot be ruled out.","A textual entity addressing a shortcoming or bias of a study design or execution.","PERSON: Bill Baumgartner","Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)","false"],"shortForm":"IAO_0000632","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000633\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000633\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the materials required to reproduce the content of the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"materials section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027materials\\u0027 in a typical scientific journal article, e.g. Nguyen et al. BMC Bioinformatics. 2010; 11: 279. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2889936/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the materials required to reproduce the content of the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"materials\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"materials section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"materials section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"materials section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027materials\\u0027 in a typical scientific journal article, e.g. Nguyen et al. BMC Bioinformatics. 2010; 11: 279. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2889936/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the materials required to reproduce the content of the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"materials\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000633\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000633","definition":"A part of a document about the materials required to reproduce the content of the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"materials section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027materials\u0027 in a typical scientific journal article, e.g. Nguyen et al. BMC Bioinformatics. 2010; 11: 279. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2889936/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about the materials required to reproduce the content of the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"materials","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"materials section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000633","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000633","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"materials section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["materials section","The section labelled \u0027materials\u0027 in a typical scientific journal article, e.g. Nguyen et al. BMC Bioinformatics. 2010; 11: 279. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2889936/)","A part of a document about the materials required to reproduce the content of the document.","PERSON: Bill Baumgartner","materials","false"],"shortForm":"IAO_0000633","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000634\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000634\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notes section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027notes\\u0027 in a typical scientific journal article, e.g. McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notes\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notes section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notes section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notes section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027notes\\u0027 in a typical scientific journal article, e.g. McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notes\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000634\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000634","definition":"A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"notes section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027notes\u0027 in a typical scientific journal article, e.g. McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"notes","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"notes section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000634","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000634","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"notes section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["notes section","The section labelled \u0027notes\u0027 in a typical scientific journal article, e.g. McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):","A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc.","PERSON: Bill Baumgartner","notes","false"],"shortForm":"IAO_0000634","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000635\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000635\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the patients that participated in a study.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027patients\\u0027 in a typical scientific journal article, e.g. in Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the patients that participated in a study.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000636\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000636\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000636\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027patients\\u0027 in a typical scientific journal article, e.g. in Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about the patients that participated in a study.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000635\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000636\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000636\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000635","definition":"A part of a document about the patients that participated in a study.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"patients section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027patients\u0027 in a typical scientific journal article, e.g. in Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about the patients that participated in a study.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"patients section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000635","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000635","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"patients section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000636","searchableAnnotationValues":["patients section","The section labelled \u0027patients\u0027 in a typical scientific journal article, e.g. in Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/)","A part of a document about the patients that participated in a study.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000635","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000636\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000636\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing information regarding the patients used in a study.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/):\\n\\nBetween January 1996 and February 2012, we treated 4 patients with interprosthetic femoral fractures (3 of them women) (Figure 2) using a custom-made interposition device (Waldemar Link GmbH, Hamburg, Germany) (Figure 1). Mean age was 74 (59–86) years. The fractures occurred mean 18 (13–28) years after primary THA and mean 14 (10–17) years after primary TKA. At the latest follow-up, after mean 8 (0.5–16) years, revision surgery with a total femur replacement was required in 1 case due to aseptic loosening. No other complications requiring revision surgery occurred.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing information regarding the patients used in a study.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000635\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000636\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/):\\n\\nBetween January 1996 and February 2012, we treated 4 patients with interprosthetic femoral fractures (3 of them women) (Figure 2) using a custom-made interposition device (Waldemar Link GmbH, Hamburg, Germany) (Figure 1). Mean age was 74 (59–86) years. The fractures occurred mean 18 (13–28) years after primary THA and mean 14 (10–17) years after primary TKA. At the latest follow-up, after mean 8 (0.5–16) years, revision surgery with a total femur replacement was required in 1 case due to aseptic loosening. No other complications requiring revision surgery occurred.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity expressing information regarding the patients used in a study.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000636\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000635\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"patients section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000635\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000636","definition":"A textual entity expressing information regarding the patients used in a study.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"patients textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"Excerpt from Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/):\n\nBetween January 1996 and February 2012, we treated 4 patients with interprosthetic femoral fractures (3 of them women) (Figure 2) using a custom-made interposition device (Waldemar Link GmbH, Hamburg, Germany) (Figure 1). Mean age was 74 (59–86) years. The fractures occurred mean 18 (13–28) years after primary THA and mean 14 (10–17) years after primary TKA. At the latest follow-up, after mean 8 (0.5–16) years, revision surgery with a total femur replacement was required in 1 case due to aseptic loosening. No other complications requiring revision surgery occurred.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity expressing information regarding the patients used in a study.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"patients textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000636","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000636","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"patients textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000635","searchableAnnotationValues":["patients textual entity","Excerpt from Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/):\n\nBetween January 1996 and February 2012, we treated 4 patients with interprosthetic femoral fractures (3 of them women) (Figure 2) using a custom-made interposition device (Waldemar Link GmbH, Hamburg, Germany) (Figure 1). Mean age was 74 (59–86) years. The fractures occurred mean 18 (13–28) years after primary THA and mean 14 (10–17) years after primary TKA. At the latest follow-up, after mean 8 (0.5–16) years, revision surgery with a total femur replacement was required in 1 case due to aseptic loosening. No other complications requiring revision surgery occurred.","A textual entity expressing information regarding the patients used in a study.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000636","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000637\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000637\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027pre-publication history\\u0027 in a typical scientific journal article, e.g. in Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notice of republication\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000638\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000638\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000638\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027pre-publication history\\u0027 in a typical scientific journal article, e.g. in Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"notice of republication\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000637\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000638\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000638\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000637","definition":"A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"pre-publication history section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027pre-publication history\u0027 in a typical scientific journal article, e.g. in Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["notice of republication","pre-publication history"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"pre-publication history section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000637","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000637","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"pre-publication history section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000638","searchableAnnotationValues":["pre-publication history section","The section labelled \u0027pre-publication history\u0027 in a typical scientific journal article, e.g. in Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/)","A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors.","PERSON: Bill Baumgartner","notice of republication","pre-publication history","false"],"shortForm":"IAO_0000637","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000638\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000638\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/):\\n\\nThe pre-publication history for this paper can be accessed here:\\nhttp://www.biomedcentral.com/1471-2253/13/33/prepub\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000637\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000638\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/):\\n\\nThe pre-publication history for this paper can be accessed here:\\nhttp://www.biomedcentral.com/1471-2253/13/33/prepub\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000638\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000637\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pre-publication history section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000637\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000638","definition":"A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"pre-publication history textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/):\n\nThe pre-publication history for this paper can be accessed here:\nhttp://www.biomedcentral.com/1471-2253/13/33/prepub","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"pre-publication history textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000638","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000638","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"pre-publication history textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000637","searchableAnnotationValues":["pre-publication history textual entity","From Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/):\n\nThe pre-publication history for this paper can be accessed here:\nhttp://www.biomedcentral.com/1471-2253/13/33/prepub","A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000638","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000639\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000639\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about work in other publications that is relevant to the content of the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027related work\\u0027 in a typical scientific journal article, e.g. Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about work in other publications that is relevant to the content of the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related literature\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000640\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000640\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000640\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027related work\\u0027 in a typical scientific journal article, e.g. Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about work in other publications that is relevant to the content of the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related literature\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000639\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000640\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000640\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000639","definition":"A part of a document about work in other publications that is relevant to the content of the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"related work section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027related work\u0027 in a typical scientific journal article, e.g. Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about work in other publications that is relevant to the content of the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":["related literature","related work"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"related work section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000639","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000639","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"related work section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000640","searchableAnnotationValues":["related work section","The section labelled \u0027related work\u0027 in a typical scientific journal article, e.g. Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/)","A part of a document about work in other publications that is relevant to the content of the document.","PERSON: Bill Baumgartner","related literature","related work","false"],"shortForm":"IAO_0000639","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000640\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000640\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that discusses work from other publications and expresses their relevancy to the content of a document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/):\\n\\nOur work presented here is similar in spirit to our recently developed methodology for data fusion via collective matrix factorization (Žitnik and Zupan, 2015).\\n\\n\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that discusses work from other publications and expresses their relevancy to the content of a document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000639\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000640\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Excerpt from Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/):\\n\\nOur work presented here is similar in spirit to our recently developed methodology for data fusion via collective matrix factorization (Žitnik and Zupan, 2015).\\n\\n\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that discusses work from other publications and expresses their relevancy to the content of a document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000640\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000639\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"related work section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000639\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000640","definition":"A textual entity that discusses work from other publications and expresses their relevancy to the content of a document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"related work textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"Excerpt from Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/):\n\nOur work presented here is similar in spirit to our recently developed methodology for data fusion via collective matrix factorization (Žitnik and Zupan, 2015).\n\n","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that discusses work from other publications and expresses their relevancy to the content of a document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"related work textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000640","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000640","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"related work textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000639","searchableAnnotationValues":["related work textual entity","Excerpt from Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/):\n\nOur work presented here is similar in spirit to our recently developed methodology for data fusion via collective matrix factorization (Žitnik and Zupan, 2015).\n\n","A textual entity that discusses work from other publications and expresses their relevancy to the content of a document.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000640","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000641\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000641\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027availability and requirements\\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000642\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000642\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000642\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027availability and requirements\\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000641\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000642\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000642\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000641","definition":"A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"requirements section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027availability and requirements\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"requirements","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"requirements section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000641","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000641","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"requirements section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000642","searchableAnnotationValues":["requirements section","The section labelled \u0027availability and requirements\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).","A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource.","PERSON: Bill Baumgartner","requirements","false"],"shortForm":"IAO_0000641","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000642\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000642\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the requirements necessary to use a resource, e.g. software.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\\n\\n• Operating systems: Platform independent\\n\\n• Programming language: Matlab, R, Python\\n\\n• Other requirements: None\\n\\n• License: GNU GPL v3\\n\\n• Any restrictions to use by non-academics: None\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the requirements necessary to use a resource, e.g. software.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000641\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000642\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\\n\\n• Operating systems: Platform independent\\n\\n• Programming language: Matlab, R, Python\\n\\n• Other requirements: None\\n\\n• License: GNU GPL v3\\n\\n• Any restrictions to use by non-academics: None\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity that expresses the requirements necessary to use a resource, e.g. software.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000642\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000641\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requirements section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000641\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000642","definition":"A textual entity that expresses the requirements necessary to use a resource, e.g. software.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"requirements textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\n\n• Operating systems: Platform independent\n\n• Programming language: Matlab, R, Python\n\n• Other requirements: None\n\n• License: GNU GPL v3\n\n• Any restrictions to use by non-academics: None","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity that expresses the requirements necessary to use a resource, e.g. software.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"requirements textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000642","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000642","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"requirements textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000641","searchableAnnotationValues":["requirements textual entity","From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\n\n• Operating systems: Platform independent\n\n• Programming language: Matlab, R, Python\n\n• Other requirements: None\n\n• License: GNU GPL v3\n\n• Any restrictions to use by non-academics: None","A textual entity that expresses the requirements necessary to use a resource, e.g. software.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000642","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000643\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000643\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity documenting statistical analysis tools and techniques employed.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000300\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis textual entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/):\\n\\nData were captured into EPI-DATA (version 3.1), cleaned and then exported to Stata version 10 for analysis. Continuous variables were summarised as mean (± standard deviation) and median (inter-quartile range), and presented in the tables. Categorical data were analysed using frequency and percentages, and results are presented in frequency tables and bar charts. Test of significance (p-value) was determined using the chi-square test. A p-value of less than 0.05 was considered significant.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity documenting statistical analysis tools and techniques employed.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis textual entity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000300\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis textual entity\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000644\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000643\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis textual entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/):\\n\\nData were captured into EPI-DATA (version 3.1), cleaned and then exported to Stata version 10 for analysis. Continuous variables were summarised as mean (± standard deviation) and median (inter-quartile range), and presented in the tables. Categorical data were analysed using frequency and percentages, and results are presented in frequency tables and bar charts. Test of significance (p-value) was determined using the chi-square test. A p-value of less than 0.05 was considered significant.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A textual entity documenting statistical analysis tools and techniques employed.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000643\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000644\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000644\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000300\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000300\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000643","definition":"A textual entity documenting statistical analysis tools and techniques employed.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000300","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000300","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"statistical analysis textual entity","http__//purl.obolibrary.org/obo/IAO_0000112":"From Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/):\n\nData were captured into EPI-DATA (version 3.1), cleaned and then exported to Stata version 10 for analysis. Continuous variables were summarised as mean (± standard deviation) and median (inter-quartile range), and presented in the tables. Categorical data were analysed using frequency and percentages, and results are presented in frequency tables and bar charts. Test of significance (p-value) was determined using the chi-square test. A p-value of less than 0.05 was considered significant.","http__//purl.obolibrary.org/obo/IAO_0000115":"A textual entity documenting statistical analysis tools and techniques employed.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"statistical analysis textual entity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000300","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000643","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000643","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"statistical analysis textual entity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000644","searchableAnnotationValues":["statistical analysis textual entity","From Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/):\n\nData were captured into EPI-DATA (version 3.1), cleaned and then exported to Stata version 10 for analysis. Continuous variables were summarised as mean (± standard deviation) and median (inter-quartile range), and presented in the tables. Categorical data were analysed using frequency and percentages, and results are presented in frequency tables and bar charts. Test of significance (p-value) was determined using the chi-square test. A p-value of less than 0.05 was considered significant.","A textual entity documenting statistical analysis tools and techniques employed.","PERSON: Bill Baumgartner","false"],"shortForm":"IAO_0000643","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000644\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000644\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of the document used to describe the statistical methodologies employed in the work presented in the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027statistical analysis\\u0027 in a typical scientific journal article, e.g. Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of the document used to describe the statistical methodologies employed in the work presented in the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000643\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000643\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000643\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027statistical analysis\\u0027 in a typical scientific journal article, e.g. Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of the document used to describe the statistical methodologies employed in the work presented in the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000644\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000643\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"statistical analysis textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000643\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000644","definition":"A part of the document used to describe the statistical methodologies employed in the work presented in the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"statistical analysis section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027statistical analysis\u0027 in a typical scientific journal article, e.g. Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/)","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of the document used to describe the statistical methodologies employed in the work presented in the document.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"statistical analysis","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"statistical analysis section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000644","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000644","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"statistical analysis section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000643","searchableAnnotationValues":["statistical analysis section","The section labelled \u0027statistical analysis\u0027 in a typical scientific journal article, e.g. Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/)","A part of the document used to describe the statistical methodologies employed in the work presented in the document.","PERSON: Bill Baumgartner","statistical analysis","false"],"shortForm":"IAO_0000644","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000645\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000645\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that contains one or more tables.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"tables section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027tables\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that contains one or more tables.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"tables\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/183\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"tables section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"tables section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000306\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"tables section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The section labelled \\u0027tables\\u0027 in a typical scientific journal article.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A part of a document that contains one or more tables.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Bill Baumgartner\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"tables\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000645\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000306\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"table\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000306\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000645","definition":"A part of a document that contains one or more tables.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"tables section","http__//purl.obolibrary.org/obo/IAO_0000112":"The section labelled \u0027tables\u0027 in a typical scientific journal article.","http__//purl.obolibrary.org/obo/IAO_0000115":"A part of a document that contains one or more tables.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON: Bill Baumgartner","http__//purl.obolibrary.org/obo/IAO_0000118":"tables","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/183","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"tables section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000314"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000645","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000645","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"tables section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0000306","searchableAnnotationValues":["tables section","The section labelled \u0027tables\u0027 in a typical scientific journal article.","A part of a document that contains one or more tables.","PERSON: Bill Baumgartner","tables","false"],"shortForm":"IAO_0000645","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000646\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000646\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"postal code\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"postal code\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000646\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000646","definition":"An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0020000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0020000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail.","http__//purl.obolibrary.org/obo/IAO_0000117":"Mathias Brochhausen","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"postal code","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0020000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000646","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000646","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"postal code","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail.","Mathias Brochhausen","false"],"shortForm":"IAO_0000646","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000647\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000647\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Postal delivery route\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Postal delivery route\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000647\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000647","definition":"A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000104","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000104","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region.","http__//purl.obolibrary.org/obo/IAO_0000117":"Mathias Brochhausen","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Postal delivery route","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000104","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000647","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000647","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Postal delivery route","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region.","Mathias Brochhausen","false"],"shortForm":"IAO_0000647","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000648\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000648\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000646\",\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000646\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000646\",\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000646\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ZIP code\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zone improvement plan code\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000646\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"zone improvement plan code\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ZIP code\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000648\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000646\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"postal code\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000646\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000648","definition":"A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000646","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000646","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000646","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000646","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes.","http__//purl.obolibrary.org/obo/IAO_0000117":"Mathias Brochhausen","http__//purl.obolibrary.org/obo/IAO_0000118":"ZIP code","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"zone improvement plan code","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000646","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000648","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000648","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"zone improvement plan code","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes.","Mathias Brochhausen","ZIP code","false"],"shortForm":"IAO_0000648","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000650\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000650\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database extract, transform, and load process\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"value\":\"Alan Ruttenberg 12/21/16: Maybe this definition instead: A planned process which takes as input a database and copies concretizations from the first, optionally transforms then copies the result to the second\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg 12/21/16: We don\\u0027t define database in IAO, currently, as the bare word is ambiguous. Reasonable interpretations of the word might be the material entity, an information structure, an information content entity. However this definition commits, at least, to there being some material thing which bear concretizations of information entities and that there are new concretizations created during the process. We consider the ETL process in terms of information entities rather than the concretizations. No committment is made as to whether the specified output.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"value\":\"PERSON:Alan Ruttenberg\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ETL\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"WEB:https://en.wikipedia.org/wiki/Extract,_transform,_load\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/187\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"https://github.com/information-artifact-ontology/IAO\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database extract, transform, and load process\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false}],\"http://xmlns.com/foaf/0.1/page\":\"https://en.wikipedia.org/wiki/Extract,_transform,_load\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database extract, transform, and load process\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"database extract, transform, and load process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Alan Ruttenberg 12/21/16: Maybe this definition instead: A planned process which takes as input a database and copies concretizations from the first, optionally transforms then copies the result to the second\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg 12/21/16: We don\\u0027t define database in IAO, currently, as the bare word is ambiguous. Reasonable interpretations of the word might be the material entity, an information structure, an information content entity. However this definition commits, at least, to there being some material thing which bear concretizations of information entities and that there are new concretizations created during the process. We consider the ETL process in terms of information entities rather than the concretizations. No committment is made as to whether the specified output.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON:Alan Ruttenberg\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ETL\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"WEB:https://en.wikipedia.org/wiki/Extract,_transform,_load\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000650\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://xmlns.com/foaf/0.1/page\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"page\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"page\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000293\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"https://github.com/information-artifact-ontology/IAO\":{\"url\":\"https://github.com/information-artifact-ontology/IAO\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"github:information-artifact-ontology/IAO\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000650","definition":"A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"database extract, transform, and load process","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second.","http__//purl.obolibrary.org/obo/IAO_0000116":["Alan Ruttenberg 12/21/16: Maybe this definition instead: A planned process which takes as input a database and copies concretizations from the first, optionally transforms then copies the result to the second","Alan Ruttenberg 12/21/16: We don\u0027t define database in IAO, currently, as the bare word is ambiguous. Reasonable interpretations of the word might be the material entity, an information structure, an information content entity. However this definition commits, at least, to there being some material thing which bear concretizations of information entities and that there are new concretizations created during the process. We consider the ETL process in terms of information entities rather than the concretizations. No committment is made as to whether the specified output."],"http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000118":"ETL","http__//purl.obolibrary.org/obo/IAO_0000119":"WEB:https://en.wikipedia.org/wiki/Extract,_transform,_load","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/187","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"https://github.com/information-artifact-ontology/IAO","http__//www.w3.org/2000/01/rdf-schema#label":"database extract, transform, and load process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/OBI_0000011"],"http__//xmlns.com/foaf/0.1/page":"https://en.wikipedia.org/wiki/Extract,_transform,_load","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000650","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000650","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"database extract, transform, and load process","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030"],"searchableAnnotationValues":["database extract, transform, and load process","A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second.","Alan Ruttenberg 12/21/16: Maybe this definition instead: A planned process which takes as input a database and copies concretizations from the first, optionally transforms then copies the result to the second","Alan Ruttenberg 12/21/16: We don\u0027t define database in IAO, currently, as the bare word is ambiguous. Reasonable interpretations of the word might be the material entity, an information structure, an information content entity. However this definition commits, at least, to there being some material thing which bear concretizations of information entities and that there are new concretizations created during the process. We consider the ETL process in terms of information entities rather than the concretizations. No committment is made as to whether the specified output.","PERSON:Alan Ruttenberg","ETL","WEB:https://en.wikipedia.org/wiki/Extract,_transform,_load","false"],"shortForm":"IAO_0000650","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000701\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000701\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"descriptive data section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/prisma/\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/235\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"descriptive data section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"descriptive data section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"descriptive data section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/prisma/\"},{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000701\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000701","definition":"A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"descriptive data section","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Chen Yang","PERSON: Jie Zheng"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://www.equator-network.org/reporting-guidelines/prisma/","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/235","http__//purl.obolibrary.org/obo/IAO_0000234":"ONE ontology","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"descriptive data section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000701","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000701","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"descriptive data section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["descriptive data section","A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made.","PERSON: Chen Yang","PERSON: Jie Zheng","https://www.equator-network.org/reporting-guidelines/prisma/","ONE ontology","false"],"shortForm":"IAO_0000701","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000702\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000702\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000318\",\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000318\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000318\",\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000318\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional results section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/consort/\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/prisma/\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/strobe/\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/235\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional results section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000318\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional results section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"additional results section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/consort/\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/prisma/\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/strobe/\"},{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000702\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000318\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"results section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000318\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000702","definition":"A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000318","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000318","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000318","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000318","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"additional results section","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Chen Yang","PERSON: Jie Zheng"],"http__//purl.obolibrary.org/obo/IAO_0000119":["https://www.equator-network.org/reporting-guidelines/consort/","https://www.equator-network.org/reporting-guidelines/prisma/","https://www.equator-network.org/reporting-guidelines/strobe/"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/235","http__//purl.obolibrary.org/obo/IAO_0000234":"ONE ontology","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"additional results section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000318","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000702","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000702","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"additional results section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["additional results section","A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)","PERSON: Chen Yang","PERSON: Jie Zheng","https://www.equator-network.org/reporting-guidelines/consort/","https://www.equator-network.org/reporting-guidelines/prisma/","https://www.equator-network.org/reporting-guidelines/strobe/","ONE ontology","false"],"shortForm":"IAO_0000702","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000703\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000703\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes human subject(s) that participated in a study (e.g. inclusion \\u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"research participants section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes human subject(s) that participated in a study (e.g. inclusion \\u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/consort/\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/prisma/\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/strobe-nut/\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/235\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"research participants section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"research participants section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"research participants section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes human subject(s) that participated in a study (e.g. inclusion \\u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/consort/\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/prisma/\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/strobe-nut/\"},{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000703\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000703","definition":"A document part that describes human subject(s) that participated in a study (e.g. inclusion \u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"research participants section","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A document part that describes human subject(s) that participated in a study (e.g. inclusion \u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.).","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Chen Yang","PERSON: Jie Zheng"],"http__//purl.obolibrary.org/obo/IAO_0000119":["https://www.equator-network.org/reporting-guidelines/consort/","https://www.equator-network.org/reporting-guidelines/prisma/","https://www.equator-network.org/reporting-guidelines/strobe-nut/"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/235","http__//purl.obolibrary.org/obo/IAO_0000234":"ONE ontology","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"research participants section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000703","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000703","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"research participants section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["research participants section","A document part that describes human subject(s) that participated in a study (e.g. inclusion \u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.).","PERSON: Chen Yang","PERSON: Jie Zheng","https://www.equator-network.org/reporting-guidelines/consort/","https://www.equator-network.org/reporting-guidelines/prisma/","https://www.equator-network.org/reporting-guidelines/strobe-nut/","ONE ontology","false"],"shortForm":"IAO_0000703","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000704\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000704\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A methods section that describes details of data assessment methods (data measurement).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000317\",\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000317\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000317\",\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000317\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement methods section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A methods section that describes details of data assessment methods (data measurement).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/strobe/\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/235\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement methods section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000317\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement methods section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement methods section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A methods section that describes details of data assessment methods (data measurement).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"},{\"type\":[\"literal\"],\"value\":\"https://www.equator-network.org/reporting-guidelines/strobe/\"},{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000704\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000317\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methods section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000317\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000704","definition":"A methods section that describes details of data assessment methods (data measurement).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000317","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000317","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000317","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000317","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"measurement methods section","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A methods section that describes details of data assessment methods (data measurement).","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Chen Yang","PERSON: Jie Zheng"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://www.equator-network.org/reporting-guidelines/strobe/","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/235","http__//purl.obolibrary.org/obo/IAO_0000234":"ONE ontology","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"measurement methods section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000317","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000704","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000704","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"measurement methods section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["measurement methods section","A methods section that describes details of data assessment methods (data measurement).","PERSON: Chen Yang","PERSON: Jie Zheng","https://www.equator-network.org/reporting-guidelines/strobe/","ONE ontology","false"],"shortForm":"IAO_0000704","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000705\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000705\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes the physical/social/cultural conditions around a research trial.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"research settings section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes the physical/social/cultural conditions around a research trial.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"https://www.ncbi.nlm.nih.gov/books/NBK262175/\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/235\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"research settings section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000314\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"research settings section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"research settings section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A document part that describes the physical/social/cultural conditions around a research trial.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"},{\"type\":[\"literal\"],\"value\":\"https://www.ncbi.nlm.nih.gov/books/NBK262175/\"},{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000705\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000705","definition":"A document part that describes the physical/social/cultural conditions around a research trial.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000314","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000314","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"research settings section","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A document part that describes the physical/social/cultural conditions around a research trial.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Chen Yang","PERSON: Jie Zheng"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://www.ncbi.nlm.nih.gov/books/NBK262175/","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/235","http__//purl.obolibrary.org/obo/IAO_0000234":"ONE ontology","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"research settings section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000314","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000705","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000705","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"research settings section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["research settings section","A document part that describes the physical/social/cultural conditions around a research trial.","PERSON: Chen Yang","PERSON: Jie Zheng","https://www.ncbi.nlm.nih.gov/books/NBK262175/","ONE ontology","false"],"shortForm":"IAO_0000705","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000706\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000706\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000631\",\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000631\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000631\",\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000631\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study bias section\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"DOI: 10.1097/PRS.0b013e3181de24bc\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/235\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study bias section\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000631\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study bias section\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study bias section\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Chen Yang\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"},{\"type\":[\"literal\"],\"value\":\"DOI: 10.1097/PRS.0b013e3181de24bc\"},{\"type\":[\"literal\"],\"value\":\"ONE ontology\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000706\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000631\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000631\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000706","definition":"A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000631","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000631","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000631","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000631","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"study bias section","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Chen Yang","PERSON: Jie Zheng"],"http__//purl.obolibrary.org/obo/IAO_0000119":"DOI: 10.1097/PRS.0b013e3181de24bc","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/235","http__//purl.obolibrary.org/obo/IAO_0000234":"ONE ontology","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"study bias section","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000631","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000706","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000706","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"study bias section","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["study bias section","A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others.","PERSON: Chen Yang","PERSON: Jie Zheng","DOI: 10.1097/PRS.0b013e3181de24bc","ONE ontology","false"],"shortForm":"IAO_0000706","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000707\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000707\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An abstract that is pictorial summary of the main findings described in the document.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000315\",\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000315\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000315\",\"http://purl.obolibrary.org/obo/IAO_0000314\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://purl.obolibrary.org/obo/IAO_0000310\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000315\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graphical abstract\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An abstract that is pictorial summary of the main findings described in the document.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Tim Beck\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"visual abstract\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"https://www.elsevier.com/authors/journal-authors/graphical-abstract\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/234\",\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"value\":\"Biomedical literature NLP project\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graphical abstract\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000315\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graphical abstract\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"graphical abstract\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An abstract that is pictorial summary of the main findings described in the document.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Jie Zheng\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Tim Beck\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"visual abstract\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"https://www.elsevier.com/authors/journal-authors/graphical-abstract\"},{\"type\":[\"literal\"],\"value\":\"Biomedical literature NLP project\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000707\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000314\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000314\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000315\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"abstract\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000315\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000310\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"document\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000310\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000707","definition":"An abstract that is pictorial summary of the main findings described in the document.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000315","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000315","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000315","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/IAO_0000310"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000315","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"graphical abstract","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"An abstract that is pictorial summary of the main findings described in the document.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Jie Zheng","PERSON: Tim Beck"],"http__//purl.obolibrary.org/obo/IAO_0000118":"visual abstract","http__//purl.obolibrary.org/obo/IAO_0000119":"https://www.elsevier.com/authors/journal-authors/graphical-abstract","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/234","http__//purl.obolibrary.org/obo/IAO_0000234":"Biomedical literature NLP project","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"graphical abstract","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000315","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000707","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000707","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"graphical abstract","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["graphical abstract","An abstract that is pictorial summary of the main findings described in the document.","PERSON: Jie Zheng","PERSON: Tim Beck","visual abstract","https://www.elsevier.com/authors/journal-authors/graphical-abstract","Biomedical literature NLP project","false"],"shortForm":"IAO_0000707","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000708\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000708\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000578\",\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000578\",\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"value\":\"\\\"You can connect your iD with your professional information — affiliations, grants, publications, peer review, and more. You can use your iD to share your information with other systems, ensuring you get recognition for all your contributions, saving you time and hassle, and reducing the risk of errors.\\\" [https://orcid.org/]\"},{\"type\":[\"literal\"],\"value\":\"This class was originally defined in Apollo_SV (http://purl.obolibrary.org/obo/APOLLO_SV_00000496) but due to it being more in scope of IAO, it was decided to add it to IAO and deprecate its Apollo_SV equivalent. (2022-10-25)\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"value\":\"http://orcid.org/0000-0002-1595-3213\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"value\":\"ORCID ID\"},{\"type\":[\"literal\"],\"value\":\"ORCiD\"},{\"type\":[\"literal\"],\"value\":\"Open Researcher and Contributor ID\"},{\"type\":[\"literal\"],\"value\":\"Open Researcher and Contributor Identifier\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/259\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ORCID identifier\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000578\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ORCID identifier\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.\"},{\"type\":[\"literal\"],\"value\":\"\\\"You can connect your iD with your professional information — affiliations, grants, publications, peer review, and more. You can use your iD to share your information with other systems, ensuring you get recognition for all your contributions, saving you time and hassle, and reducing the risk of errors.\\\" [https://orcid.org/]\"},{\"type\":[\"literal\"],\"value\":\"This class was originally defined in Apollo_SV (http://purl.obolibrary.org/obo/APOLLO_SV_00000496) but due to it being more in scope of IAO, it was decided to add it to IAO and deprecate its Apollo_SV equivalent. (2022-10-25)\"},{\"type\":[\"literal\"],\"value\":\"http://orcid.org/0000-0002-1595-3213\"},{\"type\":[\"literal\"],\"value\":\"ORCID ID\"},{\"type\":[\"literal\"],\"value\":\"ORCiD\"},{\"type\":[\"literal\"],\"value\":\"Open Researcher and Contributor ID\"},{\"type\":[\"literal\"],\"value\":\"Open Researcher and Contributor Identifier\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/259\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000708\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/\":{\"url\":\"https://orcid.org/\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000578\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"centrally registered identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000578\"},\"type\":[\"class\",\"entity\"]},\"https://orcid.org/)\":{\"url\":\"https://orcid.org/)\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:)\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000708","definition":"A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000578","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000578","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000578","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000578","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.","http__//purl.obolibrary.org/obo/IAO_0000116":["\"You can connect your iD with your professional information — affiliations, grants, publications, peer review, and more. You can use your iD to share your information with other systems, ensuring you get recognition for all your contributions, saving you time and hassle, and reducing the risk of errors.\" [https://orcid.org/]","This class was originally defined in Apollo_SV (http://purl.obolibrary.org/obo/APOLLO_SV_00000496) but due to it being more in scope of IAO, it was decided to add it to IAO and deprecate its Apollo_SV equivalent. (2022-10-25)"],"http__//purl.obolibrary.org/obo/IAO_0000117":"http://orcid.org/0000-0002-1595-3213","http__//purl.obolibrary.org/obo/IAO_0000118":["ORCID ID","ORCiD","Open Researcher and Contributor ID","Open Researcher and Contributor Identifier"],"http__//purl.obolibrary.org/obo/IAO_0000119":"https://orcid.org/","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/259","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"ORCID identifier","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000578","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0000708","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000708","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ORCID identifier","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.","\"You can connect your iD with your professional information — affiliations, grants, publications, peer review, and more. You can use your iD to share your information with other systems, ensuring you get recognition for all your contributions, saving you time and hassle, and reducing the risk of errors.\" [https://orcid.org/]","This class was originally defined in Apollo_SV (http://purl.obolibrary.org/obo/APOLLO_SV_00000496) but due to it being more in scope of IAO, it was decided to add it to IAO and deprecate its Apollo_SV equivalent. (2022-10-25)","http://orcid.org/0000-0002-1595-3213","ORCID ID","ORCiD","Open Researcher and Contributor ID","Open Researcher and Contributor Identifier","https://orcid.org/","https://github.com/information-artifact-ontology/IAO/issues/259","true"],"shortForm":"IAO_0000708","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Sep 29, 2016: The current definition has been amended from the previous version: \\\"A proper name is an information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\\\" to more accuratly reflect the necessary and sufficient condition on the class. (MB)\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"proper name\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},\"http://purl.org/dc/elements/1.1/creator\":{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Sep 29, 2016: The current definition has been amended from the previous version: \\\"A proper name is an information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\\\" to more accuratly reflect the necessary and sufficient condition on the class. (MB)\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0020010\",\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"numDescendants\":7.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0020020\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"proper name\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0020000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000312\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000312\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"code set\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020020\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000219\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.org/dc/elements/1.1/creator\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020010\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier creating process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020010\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0020000","definition":["An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.","Sep 29, 2016: The current definition has been amended from the previous version: \"A proper name is an information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\" to more accuratly reflect the necessary and sufficient condition on the class. (MB)"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"identifier","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.","http__//purl.obolibrary.org/obo/IAO_0000117":["Justin Whorton","Mathias Brochhausen"],"http__//purl.obolibrary.org/obo/IAO_0000118":"proper name","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/237","http__//purl.org/dc/elements/1.1/creator":"Mathias Brochhausen","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Sep 29, 2016: The current definition has been amended from the previous version: \"A proper name is an information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\" to more accuratly reflect the necessary and sufficient condition on the class. (MB)","http__//www.w3.org/2000/01/rdf-schema#label":"identifier","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0020000","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0020000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"identifier","numDescendants":"7.0","numHierarchicalDescendants":"8.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0020020","searchableAnnotationValues":["identifier","An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.","Justin Whorton","Mathias Brochhausen","proper name","https://github.com/information-artifact-ontology/IAO/issues/237","Mathias Brochhausen","false"],"shortForm":"IAO_0020000","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0020001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020001\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a fundamental unit in a written language.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Grapheme is not about anything and hence is likely to not be an information content entity. If a new subclass of GDC for information structure entities is created it should move there.\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alphabetic letters, Chinese characters, numerical digits, punctuation marks, and the individual symbols of any of the world\\u0027s writing systems\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a fundamental unit in a written language.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Grapheme\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},\"http://purl.org/dc/elements/1.1/creator\":{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Grapheme is not about anything and hence is likely to not be an information content entity. If a new subclass of GDC for information structure entities is created it should move there.\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"grapheme\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"grapheme\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alphabetic letters, Chinese characters, numerical digits, punctuation marks, and the individual symbols of any of the world\\u0027s writing systems\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a fundamental unit in a written language.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Grapheme\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0020001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://en.wikipedia.org/wiki/Grapheme\":{\"url\":\"http://en.wikipedia.org/wiki/Grapheme\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Grapheme\"},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.org/dc/elements/1.1/creator\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0020001","definition":["An information content entity that is a fundamental unit in a written language.","Grapheme is not about anything and hence is likely to not be an information content entity. If a new subclass of GDC for information structure entities is created it should move there."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000112":"alphabetic letters, Chinese characters, numerical digits, punctuation marks, and the individual symbols of any of the world\u0027s writing systems","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity that is a fundamental unit in a written language.","http__//purl.obolibrary.org/obo/IAO_0000117":"Justin Whorton","http__//purl.obolibrary.org/obo/IAO_0000119":"http://en.wikipedia.org/wiki/Grapheme","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/237","http__//purl.org/dc/elements/1.1/creator":"Mathias Brochhausen","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":"Grapheme is not about anything and hence is likely to not be an information content entity. If a new subclass of GDC for information structure entities is created it should move there.","http__//www.w3.org/2000/01/rdf-schema#label":"grapheme","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0020001","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0020001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"grapheme","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["alphabetic letters, Chinese characters, numerical digits, punctuation marks, and the individual symbols of any of the world\u0027s writing systems","An information content entity that is a fundamental unit in a written language.","Justin Whorton","http://en.wikipedia.org/wiki/Grapheme","https://github.com/information-artifact-ontology/IAO/issues/237","Mathias Brochhausen","true"],"shortForm":"IAO_0020001","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0020010\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020010\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dubbing process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"naming\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},\"http://purl.org/dc/elements/1.1/creator\":{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier creating process\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"isObsolete\":false}]},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier creating process\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"dubbing process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"naming\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Mathias Brochhausen\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0020010\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.org/dc/elements/1.1/creator\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0020010","definition":"A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity.","http__//purl.obolibrary.org/obo/IAO_0000117":["Justin Whorton","Mathias Brochhausen"],"http__//purl.obolibrary.org/obo/IAO_0000118":["dubbing process","naming"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/237","http__//purl.org/dc/elements/1.1/creator":"Mathias Brochhausen","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"identifier creating process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000011","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0020010","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0020010","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"identifier creating process","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity.","Justin Whorton","Mathias Brochhausen","dubbing process","naming","https://github.com/information-artifact-ontology/IAO/issues/237","Mathias Brochhausen","true"],"shortForm":"IAO_0020010","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0020015\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020015\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier referring to an individual entity that is ascribed personhood by the user of the identifier.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Personal names \\\"today usually comprises a given name bestowed at birth or at a young age plus a surname. It is nearly universal for a human to have a name; except in rare cases, for example feral children growing up in isolation, or infants orphaned by natural disaster for whom no written record survives.[citation needed] The Convention on the Rights of the Child specifies that a child has the right from birth to a name. Certain isolated tribes, such as the Machiguenga of the Amazon, also lack personal names.\\\" (http://en.wikipedia.org/wiki/Personal_name)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Personal names to not include names of fictional characters, e.g. Sherlock Holmes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Sep 29, 2016: The comment that including the wikipedia definition of personal name is not to be interpreted in a way that restricts this class to only contain strings of letters. A numerical or alphanumerical identifier that denotes a human is being is a personal name, too. (MB)\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier referring to an individual entity that is ascribed personhood by the user of the identifier.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Personal_name\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Personal names \\\"today usually comprises a given name bestowed at birth or at a young age plus a surname. It is nearly universal for a human to have a name; except in rare cases, for example feral children growing up in isolation, or infants orphaned by natural disaster for whom no written record survives.[citation needed] The Convention on the Rights of the Child specifies that a child has the right from birth to a name. Certain isolated tribes, such as the Machiguenga of the Amazon, also lack personal names.\\\" (http://en.wikipedia.org/wiki/Personal_name)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Personal names to not include names of fictional characters, e.g. Sherlock Holmes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Sep 29, 2016: The comment that including the wikipedia definition of personal name is not to be interpreted in a way that restricts this class to only contain strings of letters. A numerical or alphanumerical identifier that denotes a human is being is a personal name, too. (MB)\",\"lang\":\"en\"}],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"personal name\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"personal name\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier referring to an individual entity that is ascribed personhood by the user of the identifier.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Personal_name\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0020015\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://en.wikipedia.org/wiki/Personal_name)\":{\"url\":\"http://en.wikipedia.org/wiki/Personal_name)\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Personal_name)\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://en.wikipedia.org/wiki/Personal_name\":{\"url\":\"http://en.wikipedia.org/wiki/Personal_name\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Personal_name\"},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0020015","definition":["An identifier referring to an individual entity that is ascribed personhood by the user of the identifier.","Personal names \"today usually comprises a given name bestowed at birth or at a young age plus a surname. It is nearly universal for a human to have a name; except in rare cases, for example feral children growing up in isolation, or infants orphaned by natural disaster for whom no written record survives.[citation needed] The Convention on the Rights of the Child specifies that a child has the right from birth to a name. Certain isolated tribes, such as the Machiguenga of the Amazon, also lack personal names.\" (http://en.wikipedia.org/wiki/Personal_name)","Personal names to not include names of fictional characters, e.g. Sherlock Holmes.","Sep 29, 2016: The comment that including the wikipedia definition of personal name is not to be interpreted in a way that restricts this class to only contain strings of letters. A numerical or alphanumerical identifier that denotes a human is being is a personal name, too. (MB)"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0020000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0020000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An identifier referring to an individual entity that is ascribed personhood by the user of the identifier.","http__//purl.obolibrary.org/obo/IAO_0000117":["Justin Whorton","Mathias Brochhausen"],"http__//purl.obolibrary.org/obo/IAO_0000119":"http://en.wikipedia.org/wiki/Personal_name","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/237","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":["Personal names \"today usually comprises a given name bestowed at birth or at a young age plus a surname. It is nearly universal for a human to have a name; except in rare cases, for example feral children growing up in isolation, or infants orphaned by natural disaster for whom no written record survives.[citation needed] The Convention on the Rights of the Child specifies that a child has the right from birth to a name. Certain isolated tribes, such as the Machiguenga of the Amazon, also lack personal names.\" (http://en.wikipedia.org/wiki/Personal_name)","Personal names to not include names of fictional characters, e.g. Sherlock Holmes.","Sep 29, 2016: The comment that including the wikipedia definition of personal name is not to be interpreted in a way that restricts this class to only contain strings of letters. A numerical or alphanumerical identifier that denotes a human is being is a personal name, too. (MB)"],"http__//www.w3.org/2000/01/rdf-schema#label":"personal name","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0020000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0020015","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0020015","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"personal name","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["An identifier referring to an individual entity that is ascribed personhood by the user of the identifier.","Justin Whorton","Mathias Brochhausen","http://en.wikipedia.org/wiki/Personal_name","https://github.com/information-artifact-ontology/IAO/issues/237","true"],"shortForm":"IAO_0020015","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0020016\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020016\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\\u0027s parents at or near birth, in contrast to an inherited one such as a family name\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020015\",\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0020015\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020015\",\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0020015\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\\u0027s parents at or near birth, in contrast to an inherited one such as a family name\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"first name\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Given_name\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"given name\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0020015\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"given name\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\\u0027s parents at or near birth, in contrast to an inherited one such as a family name\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"first name\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Given_name\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0020016\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://en.wikipedia.org/wiki/Given_name\":{\"url\":\"http://en.wikipedia.org/wiki/Given_name\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Given_name\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"personal name\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020015\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0020016","definition":"A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\u0027s parents at or near birth, in contrast to an inherited one such as a family name","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0020015","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0020015","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0020015","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0020015","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\u0027s parents at or near birth, in contrast to an inherited one such as a family name","http__//purl.obolibrary.org/obo/IAO_0000117":["Justin Whorton","Mathias Brochhausen"],"http__//purl.obolibrary.org/obo/IAO_0000118":"first name","http__//purl.obolibrary.org/obo/IAO_0000119":"http://en.wikipedia.org/wiki/Given_name","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/237","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"given name","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0020015","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0020016","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0020016","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"given name","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\u0027s parents at or near birth, in contrast to an inherited one such as a family name","Justin Whorton","Mathias Brochhausen","first name","http://en.wikipedia.org/wiki/Given_name","https://github.com/information-artifact-ontology/IAO/issues/237","true"],"shortForm":"IAO_0020016","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0020017\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020017\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier that is typically a part of a person\\u0027s name which has been passed, according to law or custom, from one or both parents to their children.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0020000\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier that is typically a part of a person\\u0027s name which has been passed, according to law or custom, from one or both parents to their children.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"last name\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"surname\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Family_name\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"family name\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"family name\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An identifier that is typically a part of a person\\u0027s name which has been passed, according to law or custom, from one or both parents to their children.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"last name\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"surname\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"http://en.wikipedia.org/wiki/Family_name\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0020017\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://en.wikipedia.org/wiki/Family_name\":{\"url\":\"http://en.wikipedia.org/wiki/Family_name\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"wikipedia.en:Family_name\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0020017","definition":"An identifier that is typically a part of a person\u0027s name which has been passed, according to law or custom, from one or both parents to their children.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0020000","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0020000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An identifier that is typically a part of a person\u0027s name which has been passed, according to law or custom, from one or both parents to their children.","http__//purl.obolibrary.org/obo/IAO_0000117":["Justin Whorton","Mathias Brochhausen"],"http__//purl.obolibrary.org/obo/IAO_0000118":["last name","surname"],"http__//purl.obolibrary.org/obo/IAO_0000119":"http://en.wikipedia.org/wiki/Family_name","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/237","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"family name","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0020000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_0020017","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0020017","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"family name","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["An identifier that is typically a part of a person\u0027s name which has been passed, according to law or custom, from one or both parents to their children.","Justin Whorton","Mathias Brochhausen","last name","surname","http://en.wikipedia.org/wiki/Family_name","https://github.com/information-artifact-ontology/IAO/issues/237","true"],"shortForm":"IAO_0020017","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0020020\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020020\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Code sets might include non-entities/things (e.g. missing thumbs).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Does not imply absence vs. presence of any taxonomy.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Does not imply that aggregated entities denote particulars, universals, or defined classes (a.k.a. attributive collections) or even that they denote only one of these three types of entities.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Each aggregated entity is often (but not necessarily) associated with a text string—variously called a “description,” “name,” “title,” or “label”—that helps humans reach the target of denotation.\\n\\nWhen there is no such string, it is almost always because the entities take the form of human language words. For example, a “sex” or “gender” code set could contain “MALE” and “FEMALE,” or even “M” and “F” (by convention, we understand what these mean).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For National Drug Codes (NDCs) and similar code sets, there doesn’t even have to be a single, fully-concretized copy somewhere (for example, for NDCs there is no centralized database or repository where they all live as one instance of concretization of code set). The code set can be “distributively” concretized. This seems like an unusual exception, but it also likely applies to Universal Product Codes (UPCs) and their follow on Global Trade Item Numbers (GTINs).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For each given domain, there can potentially exist multiple code sets. The multiplicity of code sets is partially due to the different specific purposes of those code sets.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Many code sets are created for a specific purpose in addition to merely identifying or annotating core ideas of a specified domain.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The information content entities do not denote each other.\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"code map\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"code system\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"codeset\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"coding system\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"controlled vocabulary\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},\"http://purl.org/dc/elements/1.1/contributor\":[{\"type\":[\"literal\"],\"value\":\"Alan Ruttenberg\"},{\"type\":[\"literal\"],\"value\":\"Clint Dowland\"},{\"type\":[\"literal\"],\"value\":\"Matt Diller\"},{\"type\":[\"literal\"],\"value\":\"Sarah Bost\"},{\"type\":[\"literal\"],\"value\":\"William R. Hogan\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#comment\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Code sets might include non-entities/things (e.g. missing thumbs).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Does not imply absence vs. presence of any taxonomy.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Does not imply that aggregated entities denote particulars, universals, or defined classes (a.k.a. attributive collections) or even that they denote only one of these three types of entities.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Each aggregated entity is often (but not necessarily) associated with a text string—variously called a “description,” “name,” “title,” or “label”—that helps humans reach the target of denotation.\\n\\nWhen there is no such string, it is almost always because the entities take the form of human language words. For example, a “sex” or “gender” code set could contain “MALE” and “FEMALE,” or even “M” and “F” (by convention, we understand what these mean).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For National Drug Codes (NDCs) and similar code sets, there doesn’t even have to be a single, fully-concretized copy somewhere (for example, for NDCs there is no centralized database or repository where they all live as one instance of concretization of code set). The code set can be “distributively” concretized. This seems like an unusual exception, but it also likely applies to Universal Product Codes (UPCs) and their follow on Global Trade Item Numbers (GTINs).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For each given domain, there can potentially exist multiple code sets. The multiplicity of code sets is partially due to the different specific purposes of those code sets.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Many code sets are created for a specific purpose in addition to merely identifying or annotating core ideas of a specified domain.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The information content entities do not denote each other.\",\"lang\":\"en\"}],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"code set\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"isObsolete\":false}],\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"code set\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/IAO_0020000\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Justin Whorton\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Mathias Brochhausen\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"code map\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"code system\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"codeset\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"coding system\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"controlled vocabulary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/IAO/issues/237\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Alan Ruttenberg\"},{\"type\":[\"literal\"],\"value\":\"Clint Dowland\"},{\"type\":[\"literal\"],\"value\":\"Matt Diller\"},{\"type\":[\"literal\"],\"value\":\"Sarah Bost\"},{\"type\":[\"literal\"],\"value\":\"William R. Hogan\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0020020\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0020000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"identifier\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0020000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/elements/1.1/contributor\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"contributor\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"contributor\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0020020","definition":["An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things.","Code sets might include non-entities/things (e.g. missing thumbs).","Does not imply absence vs. presence of any taxonomy.","Does not imply that aggregated entities denote particulars, universals, or defined classes (a.k.a. attributive collections) or even that they denote only one of these three types of entities.","Each aggregated entity is often (but not necessarily) associated with a text string—variously called a “description,” “name,” “title,” or “label”—that helps humans reach the target of denotation.\n\nWhen there is no such string, it is almost always because the entities take the form of human language words. For example, a “sex” or “gender” code set could contain “MALE” and “FEMALE,” or even “M” and “F” (by convention, we understand what these mean).","For National Drug Codes (NDCs) and similar code sets, there doesn’t even have to be a single, fully-concretized copy somewhere (for example, for NDCs there is no centralized database or repository where they all live as one instance of concretization of code set). The code set can be “distributively” concretized. This seems like an unusual exception, but it also likely applies to Universal Product Codes (UPCs) and their follow on Global Trade Item Numbers (GTINs).","For each given domain, there can potentially exist multiple code sets. The multiplicity of code sets is partially due to the different specific purposes of those code sets.","Many code sets are created for a specific purpose in addition to merely identifying or annotating core ideas of a specified domain.","The information content entities do not denote each other."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things.","http__//purl.obolibrary.org/obo/IAO_0000117":["Alan Ruttenberg","Justin Whorton","Mathias Brochhausen"],"http__//purl.obolibrary.org/obo/IAO_0000118":["code map","code system","codeset","coding system","controlled vocabulary"],"http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/237","http__//purl.org/dc/elements/1.1/contributor":["Alan Ruttenberg","Clint Dowland","Matt Diller","Sarah Bost","William R. Hogan"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#comment":["Code sets might include non-entities/things (e.g. missing thumbs).","Does not imply absence vs. presence of any taxonomy.","Does not imply that aggregated entities denote particulars, universals, or defined classes (a.k.a. attributive collections) or even that they denote only one of these three types of entities.","Each aggregated entity is often (but not necessarily) associated with a text string—variously called a “description,” “name,” “title,” or “label”—that helps humans reach the target of denotation.\n\nWhen there is no such string, it is almost always because the entities take the form of human language words. For example, a “sex” or “gender” code set could contain “MALE” and “FEMALE,” or even “M” and “F” (by convention, we understand what these mean).","For National Drug Codes (NDCs) and similar code sets, there doesn’t even have to be a single, fully-concretized copy somewhere (for example, for NDCs there is no centralized database or repository where they all live as one instance of concretization of code set). The code set can be “distributively” concretized. This seems like an unusual exception, but it also likely applies to Universal Product Codes (UPCs) and their follow on Global Trade Item Numbers (GTINs).","For each given domain, there can potentially exist multiple code sets. The multiplicity of code sets is partially due to the different specific purposes of those code sets.","Many code sets are created for a specific purpose in addition to merely identifying or annotating core ideas of a specified domain.","The information content entities do not denote each other."],"http__//www.w3.org/2000/01/rdf-schema#label":"code set","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/IAO_0000030"],"id":"duo+class+http://purl.obolibrary.org/obo/IAO_0020020","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0020020","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"code set","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedTo":"http://purl.obolibrary.org/obo/IAO_0020000","searchableAnnotationValues":["An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things.","Alan Ruttenberg","Justin Whorton","Mathias Brochhausen","code map","code system","codeset","coding system","controlled vocabulary","https://github.com/information-artifact-ontology/IAO/issues/237","Alan Ruttenberg","Clint Dowland","Matt Diller","Sarah Bost","William R. Hogan","true"],"shortForm":"IAO_0020020","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"I have placed this under \\u0027data about an ontology part\\u0027, but this can be discussed. I think this is OK if \\u0027part\\u0027 is interpreted reflexively, as an ontology module is the whole ontology rather than part of it.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology file\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This class and it\\u0027s subclasses are applied to OWL ontologies. Using an rdf:type triple will result in problems with OWL-DL. I propose that dcterms:type is instead used to connect an ontology URI with a class from this hierarchy. The class hierarchy is not disjoint, so multiple assertions can be made about a single ontology.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000102\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"numDescendants\":20.0,\"numHierarchicalDescendants\":20.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"I have placed this under \\u0027data about an ontology part\\u0027, but this can be discussed. I think this is OK if \\u0027part\\u0027 is interpreted reflexively, as an ontology module is the whole ontology rather than part of it.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology file\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This class and it\\u0027s subclasses are applied to OWL ontologies. Using an rdf:type triple will result in problems with OWL-DL. I propose that dcterms:type is instead used to connect an ontology URI with a class from this hierarchy. The class hierarchy is not disjoint, so multiple assertions can be made about a single ontology.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000000","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000102","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000102","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"ontology module","http__//purl.obolibrary.org/obo/IAO_0000116":"I have placed this under \u0027data about an ontology part\u0027, but this can be discussed. I think this is OK if \u0027part\u0027 is interpreted reflexively, as an ontology module is the whole ontology rather than part of it.","http__//purl.obolibrary.org/obo/IAO_0000118":"ontology file","http__//purl.obolibrary.org/obo/IAO_0000232":"This class and it\u0027s subclasses are applied to OWL ontologies. Using an rdf:type triple will result in problems with OWL-DL. I propose that dcterms:type is instead used to connect an ontology URI with a class from this hierarchy. The class hierarchy is not disjoint, so multiple assertions can be made about a single ontology.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000102","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000000","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ontology module","numDescendants":"20.0","numHierarchicalDescendants":"20.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["ontology module","I have placed this under \u0027data about an ontology part\u0027, but this can be discussed. I think this is OK if \u0027part\u0027 is interpreted reflexively, as an ontology module is the whole ontology rather than part of it.","ontology file","This class and it\u0027s subclasses are applied to OWL ontologies. Using an rdf:type triple will result in problems with OWL-DL. I propose that dcterms:type is instead used to connect an ontology URI with a class from this hierarchy. The class hierarchy is not disjoint, so multiple assertions can be made about a single ontology.","false"],"shortForm":"IAO_8000000","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000001\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"base ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"base ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"https://github.com/INCATools/ontology-starter-kit/issues/50\",\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"base ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"base ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000001","definition":"An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000000","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"base ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"base ontology module","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"https://github.com/INCATools/ontology-starter-kit/issues/50","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000001","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"base ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["base ontology module","An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies.","false"],"shortForm":"IAO_8000001","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000002\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000002\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editors ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source ontology module\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editors ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editors ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editors ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"source ontology module\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000002","definition":"An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000000","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"editors ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users.","http__//purl.obolibrary.org/obo/IAO_0000118":"source ontology module","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"editors ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000002","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000002","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"editors ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["editors ontology module","An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users.","source ontology module","false"],"shortForm":"IAO_8000002","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000003\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended to be the primary release product and the one consumed by the majority of tools.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"main release ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended to be the primary release product and the one consumed by the majority of tools.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"TODO: Add logical axioms that state that a main release ontology module is derived from (directly or indirectly) an editors module\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"main release ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"main release ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"main release ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended to be the primary release product and the one consumed by the majority of tools.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"TODO: Add logical axioms that state that a main release ontology module is derived from (directly or indirectly) an editors module\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000003\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000003","definition":"An ontology module that is intended to be the primary release product and the one consumed by the majority of tools.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000000","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"main release ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that is intended to be the primary release product and the one consumed by the majority of tools.","http__//purl.obolibrary.org/obo/IAO_0000116":"TODO: Add logical axioms that state that a main release ontology module is derived from (directly or indirectly) an editors module","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"main release ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000003","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000003","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"main release ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["main release ontology module","An ontology module that is intended to be the primary release product and the one consumed by the majority of tools.","TODO: Add logical axioms that state that a main release ontology module is derived from (directly or indirectly) an editors module","false"],"shortForm":"IAO_8000003","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000004\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000004\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bridge ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bridge ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"https://github.com/obophenotype/uberon/wiki/inter-anatomy-ontology-bridge-ontologies\",\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bridge ontology module\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bridge ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000004\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000004","definition":"An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"bridge ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"bridge ontology module","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"https://github.com/obophenotype/uberon/wiki/inter-anatomy-ontology-bridge-ontologies","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000004","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000004","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"bridge ontology module","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["bridge ontology module","An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module.","false"],"shortForm":"IAO_8000004","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000005\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000005\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology module that is intended to be imported from another ontology.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"import ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology module that is intended to be imported from another ontology.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"TODO: add axioms that indicate this is the output of a module extraction process.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"import file\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"import ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"http://robot.obolibrary.org/extract\",\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"import ontology module\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"import ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology module that is intended to be imported from another ontology.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"TODO: add axioms that indicate this is the output of a module extraction process.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"import file\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000005\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000005","definition":"A subset ontology module that is intended to be imported from another ontology.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000006","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"import ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"A subset ontology module that is intended to be imported from another ontology.","http__//purl.obolibrary.org/obo/IAO_0000116":"TODO: add axioms that indicate this is the output of a module extraction process.","http__//purl.obolibrary.org/obo/IAO_0000118":"import file","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"import ontology module","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"http://robot.obolibrary.org/extract","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000006","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000005","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000005","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"import ontology module","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["import ontology module","A subset ontology module that is intended to be imported from another ontology.","TODO: add axioms that indicate this is the output of a module extraction process.","import file","false"],"shortForm":"IAO_8000005","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology slim\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":[\"http://robot.obolibrary.org/filter\",\"http://www.geneontology.org/page/go-slim-and-subset-guide\"],\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"numDescendants\":11.0,\"numHierarchicalDescendants\":11.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology slim\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000006\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000006","definition":"An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"subset ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms.","http__//purl.obolibrary.org/obo/IAO_0000118":["ontology slim","subset ontology"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"subset ontology module","http__//www.w3.org/2000/01/rdf-schema#seeAlso":["http://robot.obolibrary.org/filter","http://www.geneontology.org/page/go-slim-and-subset-guide"],"http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000006","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000006","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"subset ontology module","numDescendants":"11.0","numHierarchicalDescendants":"11.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["subset ontology module","An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms.","ontology slim","subset ontology","false"],"shortForm":"IAO_8000006","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000007\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000007\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation subset ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation subset ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation subset ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation subset ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000007\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000007","definition":"A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"curation subset ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"curation subset ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000006","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000007","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000007","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"curation subset ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["curation subset ontology module","A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation.","false"],"shortForm":"IAO_8000007","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000008\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000008\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended for usage in analysis or discovery applications.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"analysis ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended for usage in analysis or discovery applications.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"analysis subset ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"analysis subset ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"analysis ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is intended for usage in analysis or discovery applications.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000008\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000008","definition":"An ontology module that is intended for usage in analysis or discovery applications.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"analysis ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that is intended for usage in analysis or discovery applications.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"analysis subset ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000006","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000008","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000008","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"analysis subset ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["analysis ontology module","An ontology module that is intended for usage in analysis or discovery applications.","false"],"shortForm":"IAO_8000008","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000009\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000009\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"single layer ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ribbon subset\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"single layer subset ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"single layer subset ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"single layer ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ribbon subset\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000009\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000009","definition":"A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"single layer ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint.","http__//purl.obolibrary.org/obo/IAO_0000118":"ribbon subset","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"single layer subset ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000006","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000009","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000009","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"single layer subset ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["single layer ontology module","A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint.","ribbon subset","false"],"shortForm":"IAO_8000009","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000010\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000010\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"exclusion subset ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"antislim\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"exclusion subset ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"exclusion subset ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"exclusion subset ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"antislim\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000010\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000010","definition":"A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"exclusion subset ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes.","http__//purl.obolibrary.org/obo/IAO_0000118":"antislim","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"exclusion subset ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000006","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000010","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000010","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"exclusion subset ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["exclusion subset ontology module","A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes.","antislim","false"],"shortForm":"IAO_8000010","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000011\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000011\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000005\",\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000005\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000005\",\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000005\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"external import ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"external import\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"external import ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000005\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"external import ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"external import ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"external import\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000011\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000005\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"import ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000005\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000011","definition":"An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000005","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000005","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000005","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000005","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"external import ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach.","http__//purl.obolibrary.org/obo/IAO_0000118":"external import","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"external import ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000005","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000011","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000011","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"external import ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["external import ontology module","An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach.","external import","false"],"shortForm":"IAO_8000011","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000012\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000012\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is crafted to either include or exclude a taxonomic grouping of species.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"species subset ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is crafted to either include or exclude a taxonomic grouping of species.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"taxon subset\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"species subset ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"https://github.com/obophenotype/uberon/wiki/Taxon-constraints\",\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"species subset ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"species subset ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is crafted to either include or exclude a taxonomic grouping of species.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"taxon subset\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000012\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000012","definition":"A subset ontology that is crafted to either include or exclude a taxonomic grouping of species.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000006","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"species subset ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"A subset ontology that is crafted to either include or exclude a taxonomic grouping of species.","http__//purl.obolibrary.org/obo/IAO_0000118":"taxon subset","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"species subset ontology module","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"https://github.com/obophenotype/uberon/wiki/Taxon-constraints","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000006","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000012","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000012","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"species subset ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["species subset ontology module","A subset ontology that is crafted to either include or exclude a taxonomic grouping of species.","taxon subset","false"],"shortForm":"IAO_8000012","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000013\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000013\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"reasoned ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"reasoned ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"http://robot.obolibrary.org/reason\",\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"reasoned ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"reasoned ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000013\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000013","definition":"An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000000","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"reasoned ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"reasoned ontology module","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"http://robot.obolibrary.org/reason","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000013","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000013","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"reasoned ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["reasoned ontology module","An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available.","false"],"shortForm":"IAO_8000013","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000014\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000014\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generated ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"TODO: Add axioms (using PROV-O?) that indicate this is the output-of some reasoning process\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generated ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000000\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generated ontology module\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generated ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"TODO: Add axioms (using PROV-O?) that indicate this is the output-of some reasoning process\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000014\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000014","definition":"An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000000","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000000","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"generated ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV.","http__//purl.obolibrary.org/obo/IAO_0000116":"TODO: Add axioms (using PROV-O?) that indicate this is the output-of some reasoning process","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"generated ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000000","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000014","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000014","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"generated ontology module","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["generated ontology module","An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV.","TODO: Add axioms (using PROV-O?) that indicate this is the output-of some reasoning process","false"],"shortForm":"IAO_8000014","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000015\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000015\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is automatically generated from a template specification and fillers for slots in that template.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000014\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000014\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000014\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000014\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"template generated ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is automatically generated from a template specification and fillers for slots in that template.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"template generated ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":[\"http://robot.obolibrary.org/template\",\"https://doi.org/10.1186/s13326-017-0126-0\",\"https://github.com/dosumis/dead_simple_owl_design_patterns/\"],\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000014\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"template generated ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"template generated ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An ontology module that is automatically generated from a template specification and fillers for slots in that template.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000015\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://doi.org/10.1186/s13326-017-0126-0\":{\"url\":\"http://dx.doi.org/10.1186/s13326-017-0126-0\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"doi:10.1186/s13326-017-0126-0\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000014\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generated ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000014\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000015","definition":"An ontology module that is automatically generated from a template specification and fillers for slots in that template.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000014","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000014","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000014","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000014","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"template generated ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"An ontology module that is automatically generated from a template specification and fillers for slots in that template.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"template generated ontology module","http__//www.w3.org/2000/01/rdf-schema#seeAlso":["http://robot.obolibrary.org/template","https://doi.org/10.1186/s13326-017-0126-0","https://github.com/dosumis/dead_simple_owl_design_patterns/"],"http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000014","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000015","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000015","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"template generated ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["template generated ontology module","An ontology module that is automatically generated from a template specification and fillers for slots in that template.","false"],"shortForm":"IAO_8000015","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000016\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000016\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000004\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000004\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000004\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000004\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"taxonomic bridge ontology module\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"taxonomic bridge ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000004\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"taxonomic bridge ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"taxonomic bridge ontology module\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000016\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bridge ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000016","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000004","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000004","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000004","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000004","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"taxonomic bridge ontology module","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"taxonomic bridge ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000004","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000016","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000016","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"taxonomic bridge ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["taxonomic bridge ontology module","false"],"shortForm":"IAO_8000016","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000017\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000017\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by expressivity\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by expressivity\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000006\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by expressivity\",\"lang\":\"en\"},\"numDescendants\":3.0,\"numHierarchicalDescendants\":3.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by expressivity\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000017\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000017","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000006","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000006","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"ontology module subsetted by expressivity","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"ontology module subsetted by expressivity","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000006","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000017","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000017","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ontology module subsetted by expressivity","numDescendants":"3.0","numHierarchicalDescendants":"3.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["ontology module subsetted by expressivity","false"],"shortForm":"IAO_8000017","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000018\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000018\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\\n\\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\\n\\nAn ontology is OBO Basic if and only if it has the following characteristics:\\nDAG\\nUnidirectional\\nNo Dangling Clauses\\nFully Asserted\\nFully Labeled\\nNo equivalence axioms\\nSingly labeled edges\\nNo qualifier lists\\nNo disjointness axioms\\nNo owl-axioms header\\nNo imports\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000017\",\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000017\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000017\",\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000017\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obo basic subset ontology module\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\\n\\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\\n\\nAn ontology is OBO Basic if and only if it has the following characteristics:\\nDAG\\nUnidirectional\\nNo Dangling Clauses\\nFully Asserted\\nFully Labeled\\nNo equivalence axioms\\nSingly labeled edges\\nNo qualifier lists\\nNo disjointness axioms\\nNo owl-axioms header\\nNo imports\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obo basic subset ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":\"http://owlcollab.github.io/oboformat/doc/obo-syntax.html#6.2\",\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000017\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obo basic subset ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obo basic subset ontology module\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\\n\\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\\n\\nAn ontology is OBO Basic if and only if it has the following characteristics:\\nDAG\\nUnidirectional\\nNo Dangling Clauses\\nFully Asserted\\nFully Labeled\\nNo equivalence axioms\\nSingly labeled edges\\nNo qualifier lists\\nNo disjointness axioms\\nNo owl-axioms header\\nNo imports\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000018\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by expressivity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000018","definition":"A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\n\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\n\nAn ontology is OBO Basic if and only if it has the following characteristics:\nDAG\nUnidirectional\nNo Dangling Clauses\nFully Asserted\nFully Labeled\nNo equivalence axioms\nSingly labeled edges\nNo qualifier lists\nNo disjointness axioms\nNo owl-axioms header\nNo imports","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000017","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000017","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000017","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000017","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"obo basic subset ontology module","http__//purl.obolibrary.org/obo/IAO_0000115":"A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\n\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\n\nAn ontology is OBO Basic if and only if it has the following characteristics:\nDAG\nUnidirectional\nNo Dangling Clauses\nFully Asserted\nFully Labeled\nNo equivalence axioms\nSingly labeled edges\nNo qualifier lists\nNo disjointness axioms\nNo owl-axioms header\nNo imports","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"obo basic subset ontology module","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"http://owlcollab.github.io/oboformat/doc/obo-syntax.html#6.2","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000017","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000018","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000018","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"obo basic subset ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["obo basic subset ontology module","A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\n\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\n\nAn ontology is OBO Basic if and only if it has the following characteristics:\nDAG\nUnidirectional\nNo Dangling Clauses\nFully Asserted\nFully Labeled\nNo equivalence axioms\nSingly labeled edges\nNo qualifier lists\nNo disjointness axioms\nNo owl-axioms header\nNo imports","false"],"shortForm":"IAO_8000018","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000019\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000019\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000017\",\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000017\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000017\",\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000017\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by OWL profile\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by OWL profile\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000017\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by OWL profile\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by OWL profile\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000019\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by expressivity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000019","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000017","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000017","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000017","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000017","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"ontology module subsetted by OWL profile","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"ontology module subsetted by OWL profile","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000017","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000019","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000019","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ontology module subsetted by OWL profile","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["ontology module subsetted by OWL profile","false"],"shortForm":"IAO_8000019","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_8000020\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000020\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000019\",\"http://purl.obolibrary.org/obo/IAO_8000017\",\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_8000019\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_8000019\",\"http://purl.obolibrary.org/obo/IAO_8000017\",\"http://purl.obolibrary.org/obo/IAO_8000006\",\"http://purl.obolibrary.org/obo/IAO_8000000\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_8000019\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"EL++ ontology module\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"EL++ ontology module\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_8000019\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"EL++ ontology module\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"EL++ ontology module\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_8000020\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by OWL profile\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module subsetted by expressivity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000000\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_8000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"subset ontology module\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:8000006\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:8000020","directAncestor":["http://purl.obolibrary.org/obo/IAO_8000019","http://purl.obolibrary.org/obo/IAO_8000017","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_8000019","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_8000019","http://purl.obolibrary.org/obo/IAO_8000017","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_8000019","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"EL++ ontology module","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"EL++ ontology module","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_8000019","id":"duo+class+http://purl.obolibrary.org/obo/IAO_8000020","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_8000020","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"EL++ ontology module","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["EL++ ontology module","false"],"shortForm":"IAO_8000020","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},{\"type\":[\"literal\"],\"value\":\"ICD10:N18\"},{\"type\":[\"literal\"],\"value\":\"ICD9:799.9\"},{\"type\":[\"literal\"],\"value\":\"MESH:D004194\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"},{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:377788\"},{\"type\":[\"literal\"],\"value\":\"SCTID:64572001\"},{\"type\":[\"literal\"],\"value\":\"UMLS:C0012634\"}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":[{\"type\":[\"literal\"],\"value\":\"condition\"},{\"type\":[\"literal\"],\"value\":\"disease\"},{\"type\":[\"literal\"],\"value\":\"disease or disorder\"},{\"type\":[\"literal\"],\"value\":\"disease or disorder, non-neoplastic\"},{\"type\":[\"literal\"],\"value\":\"diseases\"},{\"type\":[\"literal\"],\"value\":\"diseases and disorders\"},{\"type\":[\"literal\"],\"value\":\"disorder\"},{\"type\":[\"literal\"],\"value\":\"disorders\"},{\"type\":[\"literal\"],\"value\":\"medical condition\"},{\"type\":[\"literal\"],\"value\":\"other disease\"}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disease or disorder\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://www.w3.org/2004/02/skos/core#exactMatch\":[\"http://identifiers.org/mesh/D004194\",\"http://identifiers.org/snomedct/64572001\",\"http://linkedlifedata.com/resource/umls/id/C0012634\",\"http://purl.obolibrary.org/obo/DOID_4\",\"http://purl.obolibrary.org/obo/NCIT_C2991\",\"http://www.orpha.net/ORDO/Orphanet_377788\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disease or disorder\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/DUO_0000010\",\"value\":\"http://purl.obolibrary.org/obo/DUO_0000007\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/DUO_0000010\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.\"},{\"type\":[\"literal\"],\"value\":\"DOID:4\"},{\"type\":[\"literal\"],\"value\":\"EFO:0000408\"},{\"type\":[\"literal\"],\"value\":\"ICD10:N18\"},{\"type\":[\"literal\"],\"value\":\"ICD9:799.9\"},{\"type\":[\"literal\"],\"value\":\"MESH:D004194\"},{\"type\":[\"literal\"],\"value\":\"NCIT:C2991\"},{\"type\":[\"literal\"],\"value\":\"OGMS:0000031\"},{\"type\":[\"literal\"],\"value\":\"Orphanet:377788\"},{\"type\":[\"literal\"],\"value\":\"SCTID:64572001\"},{\"type\":[\"literal\"],\"value\":\"UMLS:C0012634\"},{\"type\":[\"literal\"],\"value\":\"condition\"},{\"type\":[\"literal\"],\"value\":\"disease\"},{\"type\":[\"literal\"],\"value\":\"disease or disorder\"},{\"type\":[\"literal\"],\"value\":\"disease or disorder, non-neoplastic\"},{\"type\":[\"literal\"],\"value\":\"diseases\"},{\"type\":[\"literal\"],\"value\":\"diseases and disorders\"},{\"type\":[\"literal\"],\"value\":\"disorder\"},{\"type\":[\"literal\"],\"value\":\"disorders\"},{\"type\":[\"literal\"],\"value\":\"medical condition\"},{\"type\":[\"literal\"],\"value\":\"other disease\"},{\"type\":[\"literal\"],\"value\":\"MONDO:0000001\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MONDO_0000001\"},\"synonym\":[{\"type\":[\"literal\"],\"value\":\"condition\"},{\"type\":[\"literal\"],\"value\":\"disease\"},{\"type\":[\"literal\"],\"value\":\"disease or disorder\"},{\"type\":[\"literal\"],\"value\":\"disease or disorder, non-neoplastic\"},{\"type\":[\"literal\"],\"value\":\"diseases\"},{\"type\":[\"literal\"],\"value\":\"diseases and disorders\"},{\"type\":[\"literal\"],\"value\":\"disorder\"},{\"type\":[\"literal\"],\"value\":\"disorders\"},{\"type\":[\"literal\"],\"value\":\"medical condition\"},{\"type\":[\"literal\"],\"value\":\"other disease\"}],\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2004/02/skos/core#exactMatch\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"exactMatch\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DOID_4\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_4\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"doid:4\"},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"SCTID:64572001\":{\"url\":\"http://snomed.info/id/64572001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"SCTID:64572001\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"DOID:4\":{\"url\":\"http://purl.obolibrary.org/obo/DOID_4\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"DOID:4\"},\"http://purl.obolibrary.org/obo/NCIT_C2991\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C2991\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ncit:C2991\"},\"http://purl.obolibrary.org/obo/DUO_0000007\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disease specific research\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000010\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"is restricted to\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000010\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"EFO:0000408\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0000408\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0000408\"},\"Orphanet:377788\":{\"url\":\"http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\\u003dEN\\u0026Expert\\u003d377788\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"Orphanet:377788\"},\"NCIT:C2991\":{\"url\":\"http://purl.obolibrary.org/obo/NCIT_C2991\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"NCIT:C2991\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has exact synonym\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"OGMS:0000031\":{\"url\":\"http://purl.obolibrary.org/obo/OGMS_0000031\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OGMS:0000031\"},\"UMLS:C0012634\":{\"url\":\"https://uts.nlm.nih.gov/uts/umls/concept/C0012634\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UMLS:C0012634\"},\"MONDO:0000001\":{\"url\":\"http://purl.obolibrary.org/obo/MONDO_0000001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MONDO:0000001\"},\"http://www.orpha.net/ORDO/Orphanet_377788\":{\"url\":\"http://www.orpha.net/ORDO/Orphanet_377788\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"orphanet.ordo:377788\"},\"ICD10:N18\":{\"url\":\"https://icd.who.int/browse10/2019/en#/N18\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"ICD10:N18\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"MESH:D004194\":{\"url\":\"http://id.nlm.nih.gov/mesh/D004194\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"MESH:D004194\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"MONDO:0000001","definition":"A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000016","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000016","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["DOID:4","EFO:0000408","ICD10:N18","ICD9:799.9","MESH:D004194","NCIT:C2991","OGMS:0000031","Orphanet:377788","SCTID:64572001","UMLS:C0012634"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":["condition","disease","disease or disorder","disease or disorder, non-neoplastic","diseases","diseases and disorders","disorder","disorders","medical condition","other disease"],"http__//www.geneontology.org/formats/oboInOwl#id":"MONDO:0000001","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"disease or disorder","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000016","http__//www.w3.org/2004/02/skos/core#exactMatch":["http://identifiers.org/mesh/D004194","http://identifiers.org/snomedct/64572001","http://linkedlifedata.com/resource/umls/id/C0012634","http://purl.obolibrary.org/obo/DOID_4","http://purl.obolibrary.org/obo/NCIT_C2991","http://www.orpha.net/ORDO/Orphanet_377788"],"id":"duo+class+http://purl.obolibrary.org/obo/MONDO_0000001","imported":"false","iri":"http://purl.obolibrary.org/obo/MONDO_0000001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disease or disorder","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/DUO_0000007","searchableAnnotationValues":["A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.","DOID:4","EFO:0000408","ICD10:N18","ICD9:799.9","MESH:D004194","NCIT:C2991","OGMS:0000031","Orphanet:377788","SCTID:64572001","UMLS:C0012634","condition","disease","disease or disorder","disease or disorder, non-neoplastic","diseases","diseases and disorders","disorder","disorders","medical condition","other disease","MONDO:0000001","false"],"shortForm":"MONDO_0000001","synonym":["condition","disease","disease or disorder","disease or disorder, non-neoplastic","diseases","diseases and disorders","disorder","disorders","medical condition","other disease"],"synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A process that realizes a plan which is the concretization of a plan specification.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A process that realizes a plan which is the concretization of a plan specification.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/obi.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"numDescendants\":25.0,\"numHierarchicalDescendants\":25.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A process that realizes a plan which is the concretization of a plan specification.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0000011\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"OBI:0000011\":{\"url\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OBI:0000011\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0000011","definition":"A process that realizes a plan which is the concretization of a plan specification.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000015","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000015","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"planned process","http__//purl.obolibrary.org/obo/IAO_0000115":"A process that realizes a plan which is the concretization of a plan specification.","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/obi.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"planned process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000015","id":"duo+class+http://purl.obolibrary.org/obo/OBI_0000011","imported":"false","iri":"http://purl.obolibrary.org/obo/OBI_0000011","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"planned process","numDescendants":"25.0","numHierarchicalDescendants":"25.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["planned process","A process that realizes a plan which is the concretization of a plan specification.","false"],"shortForm":"OBI_0000011","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000066\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/obi.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":10.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000312\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s).\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0000066\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"OBI:0000066\":{\"url\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OBI:0000066\"},\"http://purl.obolibrary.org/obo/IAO_0000312\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication about an investigation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000312\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0000066","definition":"a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"investigation","http__//purl.obolibrary.org/obo/IAO_0000115":"a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s).","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/obi.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"investigation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000011","id":"duo+class+http://purl.obolibrary.org/obo/OBI_0000066","imported":"false","iri":"http://purl.obolibrary.org/obo/OBI_0000066","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"true","label":"investigation","numDescendants":"10.0","numHierarchicalDescendants":"10.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000312","searchableAnnotationValues":["investigation","a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s).","false"],"shortForm":"OBI_0000066","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0000471\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000471\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"a planned process that carries out a study design\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"study design execution\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"a planned process that carries out a study design\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/obi.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"study design execution\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"study design execution\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000318\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0000471\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"study design execution\"},{\"type\":[\"literal\"],\"value\":\"a planned process that carries out a study design\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0000471\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000318\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"results section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000318\"},\"type\":[\"class\",\"entity\"]},\"OBI:0000471\":{\"url\":\"http://purl.obolibrary.org/obo/OBI_0000471\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OBI:0000471\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0000471","definition":"a planned process that carries out a study design","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"study design execution","http__//purl.obolibrary.org/obo/IAO_0000115":"a planned process that carries out a study design","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/obi.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"study design execution","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000011","id":"duo+class+http://purl.obolibrary.org/obo/OBI_0000471","imported":"false","iri":"http://purl.obolibrary.org/obo/OBI_0000471","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"study design execution","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000318","searchableAnnotationValues":["study design execution","a planned process that carries out a study design","false"],"shortForm":"OBI_0000471","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0200000\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0200000\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that produces output data from input data.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data transformation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that produces output data from input data.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/obi.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data transformation\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data transformation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data transformation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that produces output data from input data.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0200000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"OBI:0200000\":{\"url\":\"http://purl.obolibrary.org/obo/OBI_0200000\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OBI:0200000\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0200000","definition":"A planned process that produces output data from input data.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"data transformation","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process that produces output data from input data.","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/obi.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"data transformation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000011","id":"duo+class+http://purl.obolibrary.org/obo/OBI_0200000","imported":"false","iri":"http://purl.obolibrary.org/obo/OBI_0200000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"data transformation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["data transformation","A planned process that produces output data from input data.","false"],"shortForm":"OBI_0200000","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0500000\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study design\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/obi.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study design\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study design\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000317\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000621\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000631\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study design\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0500000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000631\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000631\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000317\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methods section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000317\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"OBI:0500000\":{\"url\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OBI:0500000\"},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000621\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000621\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0500000","definition":"A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000104","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000104","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"study design","http__//purl.obolibrary.org/obo/IAO_0000115":"A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/obi.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"study design","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000104","id":"duo+class+http://purl.obolibrary.org/obo/OBI_0500000","imported":"false","iri":"http://purl.obolibrary.org/obo/OBI_0500000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"study design","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/IAO_0000317","http://purl.obolibrary.org/obo/IAO_0000621","http://purl.obolibrary.org/obo/IAO_0000631"],"searchableAnnotationValues":["study design","A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.","false"],"shortForm":"OBI_0500000","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000051\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A quality of a single physical entity inhering in the bearer by virtue of the bearer\\u0027s size or shape or structure.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"morphology\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A quality of a single physical entity inhering in the bearer by virtue of the bearer\\u0027s size or shape or structure.\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/pato.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"morphology\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"morphology\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"morphology\"},{\"type\":[\"literal\"],\"value\":\"A quality of a single physical entity inhering in the bearer by virtue of the bearer\\u0027s size or shape or structure.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0000051\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"PATO:0000051\":{\"url\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"PATO:0000051\"},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"PATO:0000051","definition":"A quality of a single physical entity inhering in the bearer by virtue of the bearer\u0027s size or shape or structure.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001241","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001241","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"morphology","http__//purl.obolibrary.org/obo/IAO_0000115":"A quality of a single physical entity inhering in the bearer by virtue of the bearer\u0027s size or shape or structure.","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/pato.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"morphology","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001241","id":"duo+class+http://purl.obolibrary.org/obo/PATO_0000051","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0000051","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"morphology","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["morphology","A quality of a single physical entity inhering in the bearer by virtue of the bearer\u0027s size or shape or structure.","false"],"shortForm":"PATO_0000051","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0000122\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000122\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A 1-D extent quality which is equal to the distance between two points.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000051\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000051\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"length\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A 1-D extent quality which is equal to the distance between two points.\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/pato.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"length\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"length\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000221\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000408\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000221\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0000122\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"length\"},{\"type\":[\"literal\"],\"value\":\"A 1-D extent quality which is equal to the distance between two points.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0000122\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphology\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000051\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000408\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"length measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000408\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"PATO:0000122\":{\"url\":\"http://purl.obolibrary.org/obo/PATO_0000122\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"PATO:0000122\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000221\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measurement of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000221\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"PATO:0000122","definition":"A 1-D extent quality which is equal to the distance between two points.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/PATO_0000051","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0000051","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"length","http__//purl.obolibrary.org/obo/IAO_0000115":"A 1-D extent quality which is equal to the distance between two points.","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/pato.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"length","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0000051","id":"duo+class+http://purl.obolibrary.org/obo/PATO_0000122","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0000122","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"length","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000408","searchableAnnotationValues":["length","A 1-D extent quality which is equal to the distance between two points.","false"],"shortForm":"PATO_0000122","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0000125\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000125\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A physical quality that inheres in a bearer by virtue of the proportion of the bearer\\u0027s amount of matter.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001018\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001018\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"mass\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A physical quality that inheres in a bearer by virtue of the proportion of the bearer\\u0027s amount of matter.\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/pato.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"mass\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"mass\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"mass\"},{\"type\":[\"literal\"],\"value\":\"A physical quality that inheres in a bearer by virtue of the proportion of the bearer\\u0027s amount of matter.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0000125\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"PATO:0000125\":{\"url\":\"http://purl.obolibrary.org/obo/PATO_0000125\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"PATO:0000125\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"PATO:0000125","definition":"A physical quality that inheres in a bearer by virtue of the proportion of the bearer\u0027s amount of matter.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001018","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001018","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001018","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001018","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"mass","http__//purl.obolibrary.org/obo/IAO_0000115":"A physical quality that inheres in a bearer by virtue of the proportion of the bearer\u0027s amount of matter.","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/pato.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"mass","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001018","id":"duo+class+http://purl.obolibrary.org/obo/PATO_0000125","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0000125","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"mass","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["mass","A physical quality that inheres in a bearer by virtue of the proportion of the bearer\u0027s amount of matter.","false"],"shortForm":"PATO_0000125","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001018\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"physical quality\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/pato.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"physical quality\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"physical quality\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"physical quality\"},{\"type\":[\"literal\"],\"value\":\"A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0001018\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"PATO:0001018\":{\"url\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"PATO:0001018\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"PATO:0001018","definition":"A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001241","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001241","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"physical quality","http__//purl.obolibrary.org/obo/IAO_0000115":"A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/pato.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"physical quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001241","id":"duo+class+http://purl.obolibrary.org/obo/PATO_0001018","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0001018","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"physical quality","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["physical quality","A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.","false"],"shortForm":"PATO_0001018","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A quality which inheres in a continuant.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A quality which inheres in a continuant.\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/pato.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"physical object quality\"},{\"type\":[\"literal\"],\"value\":\"A quality which inheres in a continuant.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0001241\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"PATO:0001241\":{\"url\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"PATO:0001241\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"PATO:0001241","definition":"A quality which inheres in a continuant.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000019","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000019","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"physical object quality","http__//purl.obolibrary.org/obo/IAO_0000115":"A quality which inheres in a continuant.","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/pato.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"physical object quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000019","id":"duo+class+http://purl.obolibrary.org/obo/PATO_0001241","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0001241","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"physical object quality","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["physical object quality","A quality which inheres in a continuant.","false"],"shortForm":"PATO_0001241","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UO_0000001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UO:0000001\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000003\",\"http://purl.obolibrary.org/obo/IAO_0000009\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000003\",\"http://purl.obolibrary.org/obo/IAO_0000009\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"length unit\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/uo.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"length unit\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"length unit\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000408\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UO_0000001\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"length unit\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UO_0000001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"UO:0000001\":{\"url\":\"http://purl.obolibrary.org/obo/UO_0000001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UO:0000001\"},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000039\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000408\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"length measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000408\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"datum label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"UO:0000001","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000003","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"length unit","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/uo.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"length unit","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000003","id":"duo+class+http://purl.obolibrary.org/obo/UO_0000001","imported":"false","iri":"http://purl.obolibrary.org/obo/UO_0000001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"length unit","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000408","searchableAnnotationValues":["length unit","false"],"shortForm":"UO_0000001","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UO_0000002\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UO:0000002\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000003\",\"http://purl.obolibrary.org/obo/IAO_0000009\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000003\",\"http://purl.obolibrary.org/obo/IAO_0000009\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"mass unit\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/uo.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"mass unit\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"mass unit\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"mass unit\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UO_0000002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"UO:0000002\":{\"url\":\"http://purl.obolibrary.org/obo/UO_0000002\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UO:0000002\"},\"http://purl.obolibrary.org/obo/IAO_0000009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"datum label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"UO:0000002","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000003","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"mass unit","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/uo.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"mass unit","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000003","id":"duo+class+http://purl.obolibrary.org/obo/UO_0000002","imported":"false","iri":"http://purl.obolibrary.org/obo/UO_0000002","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"mass unit","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["mass unit","false"],"shortForm":"UO_0000002","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UO_0000003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UO:0000003\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000003\",\"http://purl.obolibrary.org/obo/IAO_0000009\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000003\",\"http://purl.obolibrary.org/obo/IAO_0000009\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"time unit\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/uo.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"time unit\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"time unit\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"time unit\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UO_0000003\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"UO:0000003\":{\"url\":\"http://purl.obolibrary.org/obo/UO_0000003\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"UO:0000003\"},\"http://purl.obolibrary.org/obo/IAO_0000009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"datum label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"UO:0000003","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000003","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"time unit","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/uo.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"time unit","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000003","id":"duo+class+http://purl.obolibrary.org/obo/UO_0000003","imported":"false","iri":"http://purl.obolibrary.org/obo/UO_0000003","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"time unit","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["time unit","false"],"shortForm":"UO_0000003","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A process that realizes a plan which is the concretization of a plan specification.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A process that realizes a plan which is the concretization of a plan specification.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/obi.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"numDescendants\":25.0,\"numHierarchicalDescendants\":25.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A process that realizes a plan which is the concretization of a plan specification.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0000011\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0000011","definition":"A process that realizes a plan which is the concretization of a plan specification.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000015","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000015","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"planned process","http__//purl.obolibrary.org/obo/IAO_0000115":"A process that realizes a plan which is the concretization of a plan specification.","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/obi.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"planned process","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000015","id":"duo+class+http://purl.obolibrary.org/obo/OBI_0000011","imported":"false","iri":"http://purl.obolibrary.org/obo/OBI_0000011","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"planned process","numDescendants":"25.0","numHierarchicalDescendants":"25.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["planned process","A process that realizes a plan which is the concretization of a plan specification.","false"],"shortForm":"OBI_0000011","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000066\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s).\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s).\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/obi.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},\"numDescendants\":10.0,\"numHierarchicalDescendants\":10.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000312\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0000066\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s).\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0000066\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000312\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"publication about an investigation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000312\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0000066","definition":"a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s).","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"investigation","http__//purl.obolibrary.org/obo/IAO_0000115":"a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s).","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/obi.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"investigation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000011","id":"duo+class+http://purl.obolibrary.org/obo/OBI_0000066","imported":"false","iri":"http://purl.obolibrary.org/obo/OBI_0000066","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"true","label":"investigation","numDescendants":"10.0","numHierarchicalDescendants":"10.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000312","searchableAnnotationValues":["investigation","a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s).","false"],"shortForm":"OBI_0000066","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0000471\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000471\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"a planned process that carries out a study design\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"study design execution\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"a planned process that carries out a study design\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/obi.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"study design execution\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"study design execution\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000318\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0000471\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"study design execution\"},{\"type\":[\"literal\"],\"value\":\"a planned process that carries out a study design\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0000471\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000318\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"results section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000318\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0000471","definition":"a planned process that carries out a study design","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"study design execution","http__//purl.obolibrary.org/obo/IAO_0000115":"a planned process that carries out a study design","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/obi.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"study design execution","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000011","id":"duo+class+http://purl.obolibrary.org/obo/OBI_0000471","imported":"false","iri":"http://purl.obolibrary.org/obo/OBI_0000471","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"study design execution","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000318","searchableAnnotationValues":["study design execution","a planned process that carries out a study design","false"],"shortForm":"OBI_0000471","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0200000\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0200000\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that produces output data from input data.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data transformation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that produces output data from input data.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/obi.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data transformation\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data transformation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data transformation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A planned process that produces output data from input data.\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0200000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0200000","definition":"A planned process that produces output data from input data.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/OBI_0000011","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/OBI_0000011","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"data transformation","http__//purl.obolibrary.org/obo/IAO_0000115":"A planned process that produces output data from input data.","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/obi.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"data transformation","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/OBI_0000011","id":"duo+class+http://purl.obolibrary.org/obo/OBI_0200000","imported":"false","iri":"http://purl.obolibrary.org/obo/OBI_0200000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"data transformation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["data transformation","A planned process that produces output data from input data.","false"],"shortForm":"OBI_0200000","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0500000\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000104\",\"http://purl.obolibrary.org/obo/IAO_0000033\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study design\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/obi.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study design\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000104\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study design\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000317\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000621\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000631\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/OBI_0500000\",\"isObsolete\":false}],\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study design\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0500000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000631\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"study limitations section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000631\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000033\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"directive information entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000033\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000317\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"methods section\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000317\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000104\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"plan specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000104\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000621\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ethical approval textual entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000621\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0500000","definition":"A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000104","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000104","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"study design","http__//purl.obolibrary.org/obo/IAO_0000115":"A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/obi.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"study design","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000104","id":"duo+class+http://purl.obolibrary.org/obo/OBI_0500000","imported":"false","iri":"http://purl.obolibrary.org/obo/OBI_0500000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"study design","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":["http://purl.obolibrary.org/obo/IAO_0000317","http://purl.obolibrary.org/obo/IAO_0000621","http://purl.obolibrary.org/obo/IAO_0000631"],"searchableAnnotationValues":["study design","A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.","false"],"shortForm":"OBI_0500000","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000051\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A quality of a single physical entity inhering in the bearer by virtue of the bearer\\u0027s size or shape or structure.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"morphology\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A quality of a single physical entity inhering in the bearer by virtue of the bearer\\u0027s size or shape or structure.\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/pato.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"morphology\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"morphology\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"morphology\"},{\"type\":[\"literal\"],\"value\":\"A quality of a single physical entity inhering in the bearer by virtue of the bearer\\u0027s size or shape or structure.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0000051\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"PATO:0000051","definition":"A quality of a single physical entity inhering in the bearer by virtue of the bearer\u0027s size or shape or structure.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001241","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001241","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"morphology","http__//purl.obolibrary.org/obo/IAO_0000115":"A quality of a single physical entity inhering in the bearer by virtue of the bearer\u0027s size or shape or structure.","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/pato.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"morphology","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001241","id":"duo+class+http://purl.obolibrary.org/obo/PATO_0000051","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0000051","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"morphology","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["morphology","A quality of a single physical entity inhering in the bearer by virtue of the bearer\u0027s size or shape or structure.","false"],"shortForm":"PATO_0000051","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0000122\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000122\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A 1-D extent quality which is equal to the distance between two points.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000051\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0000051\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"length\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A 1-D extent quality which is equal to the distance between two points.\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/pato.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"length\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0000051\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"length\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000221\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000408\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000221\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/PATO_0000122\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"length\"},{\"type\":[\"literal\"],\"value\":\"A 1-D extent quality which is equal to the distance between two points.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0000122\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"morphology\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000051\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000408\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"length measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000408\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000221\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measurement of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000221\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"PATO:0000122","definition":"A 1-D extent quality which is equal to the distance between two points.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/PATO_0000051","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0000051","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"length","http__//purl.obolibrary.org/obo/IAO_0000115":"A 1-D extent quality which is equal to the distance between two points.","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/pato.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"length","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0000051","id":"duo+class+http://purl.obolibrary.org/obo/PATO_0000122","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0000122","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"length","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000408","searchableAnnotationValues":["length","A 1-D extent quality which is equal to the distance between two points.","false"],"shortForm":"PATO_0000122","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0000125\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0000125\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A physical quality that inheres in a bearer by virtue of the proportion of the bearer\\u0027s amount of matter.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001018\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001018\",\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"mass\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A physical quality that inheres in a bearer by virtue of the proportion of the bearer\\u0027s amount of matter.\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/pato.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"mass\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"mass\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"mass\"},{\"type\":[\"literal\"],\"value\":\"A physical quality that inheres in a bearer by virtue of the proportion of the bearer\\u0027s amount of matter.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0000125\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001018\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001018\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"PATO:0000125","definition":"A physical quality that inheres in a bearer by virtue of the proportion of the bearer\u0027s amount of matter.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001018","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001018","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001018","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001018","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"mass","http__//purl.obolibrary.org/obo/IAO_0000115":"A physical quality that inheres in a bearer by virtue of the proportion of the bearer\u0027s amount of matter.","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/pato.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"mass","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001018","id":"duo+class+http://purl.obolibrary.org/obo/PATO_0000125","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0000125","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"mass","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["mass","A physical quality that inheres in a bearer by virtue of the proportion of the bearer\u0027s amount of matter.","false"],"shortForm":"PATO_0000125","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0001018\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001018\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/PATO_0001241\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"physical quality\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/pato.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"physical quality\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"physical quality\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"physical quality\"},{\"type\":[\"literal\"],\"value\":\"A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0001018\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/PATO_0001241\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"PATO:0001018","definition":"A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/PATO_0001241","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/PATO_0001241","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"physical quality","http__//purl.obolibrary.org/obo/IAO_0000115":"A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/pato.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"physical quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/PATO_0001241","id":"duo+class+http://purl.obolibrary.org/obo/PATO_0001018","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0001018","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"physical quality","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["physical quality","A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.","false"],"shortForm":"PATO_0001018","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/PATO_0001241\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"PATO:0001241\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A quality which inheres in a continuant.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A quality which inheres in a continuant.\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/pato.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"physical object quality\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"physical object quality\"},{\"type\":[\"literal\"],\"value\":\"A quality which inheres in a continuant.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"PATO_0001241\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"PATO:0001241","definition":"A quality which inheres in a continuant.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/BFO_0000019","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/BFO_0000019","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"physical object quality","http__//purl.obolibrary.org/obo/IAO_0000115":"A quality which inheres in a continuant.","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/pato.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"physical object quality","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/BFO_0000019","id":"duo+class+http://purl.obolibrary.org/obo/PATO_0001241","imported":"false","iri":"http://purl.obolibrary.org/obo/PATO_0001241","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"physical object quality","numDescendants":"4.0","numHierarchicalDescendants":"4.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["physical object quality","A quality which inheres in a continuant.","false"],"shortForm":"PATO_0001241","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UO_0000001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UO:0000001\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000003\",\"http://purl.obolibrary.org/obo/IAO_0000009\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000003\",\"http://purl.obolibrary.org/obo/IAO_0000009\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"length unit\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/uo.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"length unit\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"length unit\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"value\":\"http://purl.obolibrary.org/obo/IAO_0000408\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UO_0000001\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"length unit\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UO_0000001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000039\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000039\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000408\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"length measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000408\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"datum label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"UO:0000001","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000003","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"length unit","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/uo.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"length unit","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000003","id":"duo+class+http://purl.obolibrary.org/obo/UO_0000001","imported":"false","iri":"http://purl.obolibrary.org/obo/UO_0000001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"length unit","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/IAO_0000408","searchableAnnotationValues":["length unit","false"],"shortForm":"UO_0000001","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UO_0000002\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UO:0000002\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000003\",\"http://purl.obolibrary.org/obo/IAO_0000009\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000003\",\"http://purl.obolibrary.org/obo/IAO_0000009\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"mass unit\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/uo.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"mass unit\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"mass unit\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"mass unit\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UO_0000002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"datum label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"UO:0000002","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000003","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"mass unit","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/uo.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"mass unit","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000003","id":"duo+class+http://purl.obolibrary.org/obo/UO_0000002","imported":"false","iri":"http://purl.obolibrary.org/obo/UO_0000002","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"mass unit","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["mass unit","false"],"shortForm":"UO_0000002","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UO_0000003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UO:0000003\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000003\",\"http://purl.obolibrary.org/obo/IAO_0000009\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000003\",\"http://purl.obolibrary.org/obo/IAO_0000009\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"value\":\"time unit\"},\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/uo.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"time unit\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"time unit\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"time unit\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UO_0000003\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"datum label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"UO:0000003","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000003","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000003","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000111":"time unit","http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/uo.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"time unit","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000003","id":"duo+class+http://purl.obolibrary.org/obo/UO_0000003","imported":"false","iri":"http://purl.obolibrary.org/obo/UO_0000003","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"time unit","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["time unit","false"],"shortForm":"UO_0000003","type":["class","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/topic_0003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"topic:0003\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A category denoting a rather broad domain or field of interest, study, application, work, data, or technology. Topics have no clearly defined borders between each other.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A category denoting a rather broad domain or field of interest, study, application, work, data, or technology. Topics have no clearly defined borders between each other.\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"topic:0003\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"Topic\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"Topic\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/DUO_0000010\",\"value\":\"http://purl.obolibrary.org/obo/DUO_0000012\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/DUO_0000010\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/topic_0003\",\"isObsolete\":false},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"A category denoting a rather broad domain or field of interest, study, application, work, data, or technology. Topics have no clearly defined borders between each other.\"},{\"type\":[\"literal\"],\"value\":\"topic:0003\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"topic_0003\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000010\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"is restricted to\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000010\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000012\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"research specific restrictions\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000012\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"topic:0003","definition":"A category denoting a rather broad domain or field of interest, study, application, work, data, or technology. Topics have no clearly defined borders between each other.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000030","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"hierarchicalParent":"http://purl.obolibrary.org/obo/IAO_0000030","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"A category denoting a rather broad domain or field of interest, study, application, work, data, or technology. Topics have no clearly defined borders between each other.","http__//www.geneontology.org/formats/oboInOwl#id":"topic:0003","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"Topic","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/IAO_0000030","id":"duo+class+http://purl.obolibrary.org/obo/topic_0003","imported":"false","iri":"http://purl.obolibrary.org/obo/topic_0003","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"Topic","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","relatedFrom":"http://purl.obolibrary.org/obo/DUO_0000012","searchableAnnotationValues":["A category denoting a rather broad domain or field of interest, study, application, work, data, or technology. Topics have no clearly defined borders between each other.","topic:0003","false"],"shortForm":"topic_0003","type":["class","entity"]} {"_json":"{\"iri\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://www.w3.org/2002/07/owl#Thing\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"numDescendants\":20.0,\"numHierarchicalDescendants\":20.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"ObsoleteClass\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{}}","appearsIn":["duo"],"curie":"ObsoleteClass","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://www.w3.org/2002/07/owl#Thing","id":"duo+class+http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","imported":"false","iri":"http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ObsoleteClass","numDescendants":"20.0","numHierarchicalDescendants":"20.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"false","shortForm":"ObsoleteClass","type":["class","entity"]} diff --git a/testcases_expected_output/duo/duo_classes.csv b/testcases_expected_output/duo/duo_classes.csv index 389a9150c..5d9d9e091 100644 --- a/testcases_expected_output/duo/duo_classes.csv +++ b/testcases_expected_output/duo/duo_classes.csv @@ -5,48 +5,48 @@ "duo+class+http://purl.obolibrary.org/obo/APOLLO_SV_00000522","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/APOLLO_SV_00000522"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""APOLLO:SV_00000522""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that comprises at least one source code module and provenance data about who contributed the set of files making up the module(s), and optionally comprises also multiple versions of files with detailed change history about who committed files and when, a license for the software, readme files, documentation, executables, etc."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Refers to the stuff that lives on GitHub, not to GitHub or the git software on which it is based"",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software source code version control repository"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that comprises at least one source code module and provenance data about who contributed the set of files making up the module(s), and optionally comprises also multiple versions of files with detailed change history about who committed files and when, a license for the software, readme files, documentation, executables, etc."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""William R. Hogan"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Refers to the stuff that lives on GitHub, not to GitHub or the git software on which it is based"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code repository"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000310"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000096"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/IAO_0000027"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000096"",""isObsolete"":false}]},""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code repository"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000096"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000096"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000027"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/IAO_0000027"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000096"",""isObsolete"":false}]}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software source code version control repository"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that comprises at least one source code module and provenance data about who contributed the set of files making up the module(s), and optionally comprises also multiple versions of files with detailed change history about who committed files and when, a license for the software, readme files, documentation, executables, etc."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""William R. Hogan"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""APOLLO_SV_00000522""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000096""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000096|http://purl.obolibrary.org/obo/IAO_0000027","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/IAO_0000310||","true","","","William R. Hogan","","A document that comprises at least one source code module and provenance data about who contributed the set of files making up the module(s), and optionally comprises also multiple versions of files with detailed change history about who committed files and when, a license for the software, readme files, documentation, executables, etc.","","","","","","","software source code version control repository","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","Refers to the stuff that lives on GitHub, not to GitHub or the git software on which it is based","A document that comprises at least one source code module and provenance data about who contributed the set of files making up the module(s), and optionally comprises also multiple versions of files with detailed change history about who committed files and when, a license for the software, readme files, documentation, executables, etc.|Refers to the stuff that lives on GitHub, not to GitHub or the git software on which it is based","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000310","","http://purl.obolibrary.org/obo/APOLLO_SV_00000522","http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","source code repository","","","DUO","","APOLLO:SV_00000522","APOLLO_SV_00000522","","source code repository","duo","" "duo+class+http://purl.obolibrary.org/obo/APOLLO_SV_00000524","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/APOLLO_SV_00000524"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""APOLLO:SV_00000524""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that converts human-written or curated software into a machine-executable or interpretable set of instructions."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""It\u0027s compiling \""software\"" (scare quotes) and not \""source code\"" because you can compile Java bytecode to machine code, and Java bytecode is not technically \""source code\"". Compiling source code would be a subclass of this class (as would compiling Java bytecode, etc.)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Source code can be automatically generated to some extent, but we\u0027re assuming humans still curate it minimally. Also, in the case of Java and its JVM, it\u0027s machine interpretable instructions, not directly executable. Ditto for other languages with intermediate form like Java byte code."",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/APOLLO_SV_00000008"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/APOLLO_SV_00000008"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/APOLLO_SV_00000008"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/APOLLO_SV_00000008"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process of compiling software"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that converts human-written or curated software into a machine-executable or interpretable set of instructions."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""William R. Hogan"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""It\u0027s compiling \""software\"" (scare quotes) and not \""source code\"" because you can compile Java bytecode to machine code, and Java bytecode is not technically \""source code\"". Compiling source code would be a subclass of this class (as would compiling Java bytecode, etc.)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Source code can be automatically generated to some extent, but we\u0027re assuming humans still curate it minimally. Also, in the case of Java and its JVM, it\u0027s machine interpretable instructions, not directly executable. Ditto for other languages with intermediate form like Java byte code."",""lang"":""en""}],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""compiling software"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/APOLLO_SV_00000008"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#unionOf"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000096""]},""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000010"",""isObsolete"":false}]}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""compiling software"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process of compiling software"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that converts human-written or curated software into a machine-executable or interpretable set of instructions."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""William R. Hogan"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""APOLLO_SV_00000524""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/APOLLO_SV_00000008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software development"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""APOLLO:SV_00000008""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000096""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/APOLLO_SV_00000008|","true","","","William R. Hogan","","A planned process that converts human-written or curated software into a machine-executable or interpretable set of instructions.","","","","","","","process of compiling software","","","","0.0","","","http://purl.obolibrary.org/obo/APOLLO_SV_00000008","http://purl.obolibrary.org/obo/APOLLO_SV_00000008|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","It's compiling ""software"" (scare quotes) and not ""source code"" because you can compile Java bytecode to machine code, and Java bytecode is not technically ""source code"". Compiling source code would be a subclass of this class (as would compiling Java bytecode, etc.).|Source code can be automatically generated to some extent, but we're assuming humans still curate it minimally. Also, in the case of Java and its JVM, it's machine interpretable instructions, not directly executable. Ditto for other languages with intermediate form like Java byte code.","A planned process that converts human-written or curated software into a machine-executable or interpretable set of instructions.|It's compiling ""software"" (scare quotes) and not ""source code"" because you can compile Java bytecode to machine code, and Java bytecode is not technically ""source code"". Compiling source code would be a subclass of this class (as would compiling Java bytecode, etc.).|Source code can be automatically generated to some extent, but we're assuming humans still curate it minimally. Also, in the case of Java and its JVM, it's machine interpretable instructions, not directly executable. Ditto for other languages with intermediate form like Java byte code.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/APOLLO_SV_00000008","","http://purl.obolibrary.org/obo/APOLLO_SV_00000524","http://purl.obolibrary.org/obo/APOLLO_SV_00000008|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","compiling software","","","DUO","","APOLLO:SV_00000524","APOLLO_SV_00000524","","compiling software","duo","" "duo+class+http://purl.obolibrary.org/obo/APOLLO_SV_00000796","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/APOLLO_SV_00000796"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""APOLLO:SV_00000796""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that has a data set as its specified output."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""creating a data set"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that has a data set as its specified output."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""William R. Hogan"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data set creation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dataset creation"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dataset creating"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000011"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/OBI_0000011"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000100"",""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dataset creating"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""creating a data set"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that has a data set as its specified output."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""William R. Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data set creation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dataset creation"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""APOLLO_SV_00000796""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data set"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000100""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011","true","","","William R. Hogan","","A planned process that has a data set as its specified output.","","","","","","","creating a data set","","","","0.0","data set creation|dataset creation","","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A planned process that has a data set as its specified output.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/APOLLO_SV_00000796","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","dataset creating","","","DUO","","APOLLO:SV_00000796","APOLLO_SV_00000796","","dataset creating","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""entity""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Entity""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Julius Caesar"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Verdi’s Requiem"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the Second World War"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""your body mass index"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Entity doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. For example Werner Ceusters \u0027portions of reality\u0027 include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, \u0027How to track absolutely everything\u0027 at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000004"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf""}]}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/001-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""numDescendants"":301.0,""numHierarchicalDescendants"":283.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000030"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000001"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""entity""},{""type"":[""literal""],""value"":""Entity""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Julius Caesar"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Verdi’s Requiem"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the Second World War"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""your body mass index"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Entity doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. For example Werner Ceusters \u0027portions of reality\u0027 include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, \u0027How to track absolutely everything\u0027 at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000004"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/001-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000001""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000001"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000001"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000001""},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","283.0","class|entity","","","","","http://www.w3.org/2002/07/owl#Thing","false","","BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81|Entity doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. For example Werner Ceusters 'portions of reality' include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, 'How to track absolutely everything' at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf","","","","entity","","Julius Caesar|Verdi’s Requiem|the Second World War|your body mass index","","","","","","http://purl.obolibrary.org/obo/bfo.owl","http://purl.obolibrary.org/obo/IAO_0000030","301.0","","","","","","An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001])","","","http://www.w3.org/2002/07/owl#Class","true","false","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","","","http://purl.obolibrary.org/obo/BFO_0000001","","","","false","entity","","","DUO","Entity","BFO:0000001","BFO_0000001","","entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000002","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000002"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000001"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000001"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/BFO_0000001"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000001"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""continuant""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Continuant""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Continuant doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster\u0027s other portions of reality, questions are raised as to whether universals are continuants"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000007""}]}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/008-002""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/126-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/009-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/011-002""}]}],""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/009-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/126-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/008-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/011-002""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000001"",""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/BFO_0000003"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000003"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""numDescendants"":265.0,""numHierarchicalDescendants"":247.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""continuant""},{""type"":[""literal""],""value"":""Continuant""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Continuant doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster\u0027s other portions of reality, questions are raised as to whether universals are continuants"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000007""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/008-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/126-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/009-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/011-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/009-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/126-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/008-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/011-002""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000002""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""BFO:0000002"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000002"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000002""},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","247.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000001","true","","BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240|Continuant doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster's other portions of reality, questions are raised as to whether universals are continuants","","","An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","continuant","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","265.0","","","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000003|","A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002])","if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001])|if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002])|if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] |(forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] |(forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] |(forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] ","","","","false","","An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000001","","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","","","false","continuant","","","DUO","Continuant","BFO:0000002","BFO_0000002","","continuant","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000003","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that has temporal parts and that happens, unfolds or develops through time."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000001"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000001"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/BFO_0000001"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000001"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""occurrent""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Occurrent""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that has temporal parts and that happens, unfolds or develops through time."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrent doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000006"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by \u0027spn[e]\u0027 and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write \u0027spr[e]\u0027 and `spl[e]\u0027 respectively for the spread and spell of e, omitting mention of the frame.""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000012""}]}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/077-002""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/108-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/079-001""}]}],""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/108-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/079-001""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000001"",""http://www.w3.org/2002/07/owl#disjointWith"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000002"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""numDescendants"":34.0,""numHierarchicalDescendants"":34.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""occurrent""},{""type"":[""literal""],""value"":""Occurrent""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that has temporal parts and that happens, unfolds or develops through time."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrent doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000006"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by \u0027spn[e]\u0027 and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write \u0027spr[e]\u0027 and `spl[e]\u0027 respectively for the spread and spell of e, omitting mention of the frame.""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000012""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/077-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/108-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/079-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/108-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/079-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000003""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000003"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000003"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000003""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","34.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000001","true","","BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region|BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.|Occurrent doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process.|Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by 'spn[e]' and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write 'spr[e]' and `spl[e]' respectively for the spread and spell of e, omitting mention of the frame.","","","An entity that has temporal parts and that happens, unfolds or develops through time.","occurrent","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","34.0","","","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000001","","An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002])","Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001])|b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] |(forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] ","","","","false","","An entity that has temporal parts and that happens, unfolds or develops through time.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000001","","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001","","","false","occurrent","","","DUO","Occurrent","BFO:0000003","BFO_0000003","","occurrent","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000004","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000004"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an independent continuant \u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/017-002""}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""ic""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""IndependentContinuant""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a chair"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a heart"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a leg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a molecule"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an atom"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an orchestra."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an organism"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the bottom right portion of a human torso"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of your mouth"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an independent continuant \u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/017-002""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/134-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/018-002""}]}],""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/134-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/018-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/017-002""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000031""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""numDescendants"":18.0,""numHierarchicalDescendants"":18.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""ic""},{""type"":[""literal""],""value"":""IndependentContinuant""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a chair"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a heart"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a leg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a molecule"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an atom"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an orchestra."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an organism"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the bottom right portion of a human torso"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of your mouth"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an independent continuant \u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/017-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/134-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/018-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/134-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/018-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/017-002""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000004""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000004"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000004"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000004""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","18.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000002","true","","","","","b is an independent continuant = Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])","ic","","a chair|a heart|a leg|a molecule|a spatial region|an atom|an orchestra.|an organism|the bottom right portion of a human torso|the interior of your mouth","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","18.0","","","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000031","","For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001])|For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] |(forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] |(iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] ","","","","false","","b is an independent continuant = Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","independent continuant","","","DUO","IndependentContinuant","BFO:0000004","BFO_0000004","","independent continuant","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000006","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000006"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000006""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000141"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000141"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""s-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""SpatialRegion""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Spatial regions do not participate in processes."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Spatial region doesn\u0027t have a closure axiom because the subclasses don\u0027t exhaust all possibilites. An example would be the union of a spatial point and a spatial line that doesn\u0027t overlap the point, or two spatial lines that intersect at a single point. In both cases the resultant spatial region is neither 0-dimensional, 1-dimensional, 2-dimensional, or 3-dimensional."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000002"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""}}]}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A spatial region is a continuant entity that is a continuant_part_of spaceR as defined relative to some frame R. (axiom label in BFO2 Reference: [035-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/035-001""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All continuant parts of spatial regions are spatial regions. (axiom label in BFO2 Reference: [036-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/036-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y t) (if (and (SpatialRegion x) (continuantPartOfAt y x t)) (SpatialRegion y))) // axiom label in BFO2 CLIF: [036-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/036-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (SpatialRegion x) (Continuant x))) // axiom label in BFO2 CLIF: [035-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/035-001""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatial region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000141"",""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/BFO_0000029"",""http://purl.obolibrary.org/obo/BFO_0000140""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatial region"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""s-region""},{""type"":[""literal""],""value"":""SpatialRegion""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Spatial regions do not participate in processes."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Spatial region doesn\u0027t have a closure axiom because the subclasses don\u0027t exhaust all possibilites. An example would be the union of a spatial point and a spatial line that doesn\u0027t overlap the point, or two spatial lines that intersect at a single point. In both cases the resultant spatial region is neither 0-dimensional, 1-dimensional, 2-dimensional, or 3-dimensional."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000002"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A spatial region is a continuant entity that is a continuant_part_of spaceR as defined relative to some frame R. (axiom label in BFO2 Reference: [035-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/035-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All continuant parts of spatial regions are spatial regions. (axiom label in BFO2 Reference: [036-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/036-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y t) (if (and (SpatialRegion x) (continuantPartOfAt y x t)) (SpatialRegion y))) // axiom label in BFO2 CLIF: [036-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/036-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (SpatialRegion x) (Continuant x))) // axiom label in BFO2 CLIF: [035-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/035-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000006""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""BFO:0000006"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000006"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000006""},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000029"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""site"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000029""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000140"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant fiat boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000140""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000141","true","","BFO 2 Reference: Spatial regions do not participate in processes.|Spatial region doesn't have a closure axiom because the subclasses don't exhaust all possibilites. An example would be the union of a spatial point and a spatial line that doesn't overlap the point, or two spatial lines that intersect at a single point. In both cases the resultant spatial region is neither 0-dimensional, 1-dimensional, 2-dimensional, or 3-dimensional.","","","","s-region","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","4.0","","","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000029|http://purl.obolibrary.org/obo/BFO_0000140","A spatial region is a continuant entity that is a continuant_part_of spaceR as defined relative to some frame R. (axiom label in BFO2 Reference: [035-001])","All continuant parts of spatial regions are spatial regions. (axiom label in BFO2 Reference: [036-001])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x y t) (if (and (SpatialRegion x) (continuantPartOfAt y x t)) (SpatialRegion y))) // axiom label in BFO2 CLIF: [036-001] |(forall (x) (if (SpatialRegion x) (Continuant x))) // axiom label in BFO2 CLIF: [035-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000141","","http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","spatial region","","","DUO","SpatialRegion","BFO:0000006","BFO_0000006","","spatial region","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000008","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000008"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000008""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""t-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""TemporalRegion""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Temporal region doesn\u0027t have a closure axiom because the subclasses don\u0027t exhaust all possibilites. An example would be the mereological sum of a temporal instant and a temporal interval that doesn\u0027t overlap the instant. In this case the resultant temporal region is neither 0-dimensional nor 1-dimensional"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000003"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""}}]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A temporal region is an occurrent entity that is part of time as defined relative to some reference frame. (axiom label in BFO2 Reference: [100-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/100-001""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All parts of temporal regions are temporal regions. (axiom label in BFO2 Reference: [101-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/101-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every temporal region t is such that t occupies_temporal_region t. (axiom label in BFO2 Reference: [119-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/119-002""}]}],""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/119-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/101-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/100-001""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/BFO_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000035""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal region"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""t-region""},{""type"":[""literal""],""value"":""TemporalRegion""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Temporal region doesn\u0027t have a closure axiom because the subclasses don\u0027t exhaust all possibilites. An example would be the mereological sum of a temporal instant and a temporal interval that doesn\u0027t overlap the instant. In this case the resultant temporal region is neither 0-dimensional nor 1-dimensional"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000003"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A temporal region is an occurrent entity that is part of time as defined relative to some reference frame. (axiom label in BFO2 Reference: [100-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/100-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All parts of temporal regions are temporal regions. (axiom label in BFO2 Reference: [101-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/101-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every temporal region t is such that t occupies_temporal_region t. (axiom label in BFO2 Reference: [119-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/119-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/119-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/101-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/100-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000008""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatiotemporal region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000011""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000008"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000008"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000008""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000035"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000035""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000003","true","","Temporal region doesn't have a closure axiom because the subclasses don't exhaust all possibilites. An example would be the mereological sum of a temporal instant and a temporal interval that doesn't overlap the instant. In this case the resultant temporal region is neither 0-dimensional nor 1-dimensional","","","","t-region","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","2.0","","","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000035","A temporal region is an occurrent entity that is part of time as defined relative to some reference frame. (axiom label in BFO2 Reference: [100-001])","All parts of temporal regions are temporal regions. (axiom label in BFO2 Reference: [101-001])|Every temporal region t is such that t occupies_temporal_region t. (axiom label in BFO2 Reference: [119-002])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002] |(forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001] |(forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/BFO_0000008","http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","temporal region","","","DUO","TemporalRegion","BFO:0000008","BFO_0000008","","temporal region","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000009","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000009"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000009""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000006"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000006"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""2d-s-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""TwoDimensionalSpatialRegion""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an infinitely thin plane in space."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the surface of a sphere-shaped part of space"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A two-dimensional spatial region is a spatial region that is of two dimensions. (axiom label in BFO2 Reference: [039-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/039-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (TwoDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [039-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/039-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two-dimensional spatial region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000006"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000028"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two-dimensional spatial region"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""2d-s-region""},{""type"":[""literal""],""value"":""TwoDimensionalSpatialRegion""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an infinitely thin plane in space."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the surface of a sphere-shaped part of space"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A two-dimensional spatial region is a spatial region that is of two dimensions. (axiom label in BFO2 Reference: [039-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/039-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (TwoDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [039-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/039-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000009""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000006""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000009"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000009"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000009""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000028""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000006","true","","","","","","2d-s-region","","an infinitely thin plane in space.|the surface of a sphere-shaped part of space","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000006|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000028","A two-dimensional spatial region is a spatial region that is of two dimensions. (axiom label in BFO2 Reference: [039-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (TwoDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [039-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000006","","http://purl.obolibrary.org/obo/BFO_0000009","http://purl.obolibrary.org/obo/BFO_0000006|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","two-dimensional spatial region","","","DUO","TwoDimensionalSpatialRegion","BFO:0000009","BFO_0000009","","two-dimensional spatial region","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000011","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000011"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000011""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""st-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""SpatiotemporalRegion""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the spatiotemporal region occupied by a human life"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the spatiotemporal region occupied by a process of cellular meiosis."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the spatiotemporal region occupied by the development of a cancer tumor"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A spatiotemporal region is an occurrent entity that is part of spacetime. (axiom label in BFO2 Reference: [095-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/095-001""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All parts of spatiotemporal regions are spatiotemporal regions. (axiom label in BFO2 Reference: [096-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/096-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Each spatiotemporal region at any time t projects_onto some spatial region at t. (axiom label in BFO2 Reference: [099-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/099-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Each spatiotemporal region projects_onto some temporal region. (axiom label in BFO2 Reference: [098-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/098-001""}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every spatiotemporal region occupies_spatiotemporal_region itself."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every spatiotemporal region s is such that s occupies_spatiotemporal_region s. (axiom label in BFO2 Reference: [107-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/107-002""}]}],""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (r) (if (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion r r))) // axiom label in BFO2 CLIF: [107-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/107-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (SpatioTemporalRegion x) (exists (y) (and (SpatialRegion y) (spatiallyProjectsOntoAt x y t))))) // axiom label in BFO2 CLIF: [099-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/099-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (and (SpatioTemporalRegion x) (occurrentPartOf y x)) (SpatioTemporalRegion y))) // axiom label in BFO2 CLIF: [096-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/096-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (SpatioTemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [095-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/095-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (SpatioTemporalRegion x) (exists (y) (and (TemporalRegion y) (temporallyProjectsOnto x y))))) // axiom label in BFO2 CLIF: [098-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/098-001""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatiotemporal region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatiotemporal region"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""st-region""},{""type"":[""literal""],""value"":""SpatiotemporalRegion""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the spatiotemporal region occupied by a human life"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the spatiotemporal region occupied by a process of cellular meiosis."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the spatiotemporal region occupied by the development of a cancer tumor"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A spatiotemporal region is an occurrent entity that is part of spacetime. (axiom label in BFO2 Reference: [095-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/095-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All parts of spatiotemporal regions are spatiotemporal regions. (axiom label in BFO2 Reference: [096-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/096-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Each spatiotemporal region at any time t projects_onto some spatial region at t. (axiom label in BFO2 Reference: [099-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/099-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Each spatiotemporal region projects_onto some temporal region. (axiom label in BFO2 Reference: [098-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/098-001""}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every spatiotemporal region occupies_spatiotemporal_region itself."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every spatiotemporal region s is such that s occupies_spatiotemporal_region s. (axiom label in BFO2 Reference: [107-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/107-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (r) (if (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion r r))) // axiom label in BFO2 CLIF: [107-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/107-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (SpatioTemporalRegion x) (exists (y) (and (SpatialRegion y) (spatiallyProjectsOntoAt x y t))))) // axiom label in BFO2 CLIF: [099-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/099-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (and (SpatioTemporalRegion x) (occurrentPartOf y x)) (SpatioTemporalRegion y))) // axiom label in BFO2 CLIF: [096-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/096-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (SpatioTemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [095-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/095-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (SpatioTemporalRegion x) (exists (y) (and (TemporalRegion y) (temporallyProjectsOnto x y))))) // axiom label in BFO2 CLIF: [098-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/098-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000011""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000011"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000011"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000011""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000003","true","","","","","","st-region","","the spatiotemporal region occupied by a human life|the spatiotemporal region occupied by a process of cellular meiosis.|the spatiotemporal region occupied by the development of a cancer tumor","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","A spatiotemporal region is an occurrent entity that is part of spacetime. (axiom label in BFO2 Reference: [095-001])","All parts of spatiotemporal regions are spatiotemporal regions. (axiom label in BFO2 Reference: [096-001])|Each spatiotemporal region at any time t projects_onto some spatial region at t. (axiom label in BFO2 Reference: [099-001])|Each spatiotemporal region projects_onto some temporal region. (axiom label in BFO2 Reference: [098-001])|Every spatiotemporal region occupies_spatiotemporal_region itself.|Every spatiotemporal region s is such that s occupies_spatiotemporal_region s. (axiom label in BFO2 Reference: [107-002])","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (r) (if (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion r r))) // axiom label in BFO2 CLIF: [107-002] |(forall (x t) (if (SpatioTemporalRegion x) (exists (y) (and (SpatialRegion y) (spatiallyProjectsOntoAt x y t))))) // axiom label in BFO2 CLIF: [099-001] |(forall (x y) (if (and (SpatioTemporalRegion x) (occurrentPartOf y x)) (SpatioTemporalRegion y))) // axiom label in BFO2 CLIF: [096-001] |(forall (x) (if (SpatioTemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [095-001] |(forall (x) (if (SpatioTemporalRegion x) (exists (y) (and (TemporalRegion y) (temporallyProjectsOnto x y))))) // axiom label in BFO2 CLIF: [098-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/BFO_0000011","http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","spatiotemporal region","","","DUO","SpatiotemporalRegion","BFO:0000011","BFO_0000011","","spatiotemporal region","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000015","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000015"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""p is a process \u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/083-003""}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""process""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Process""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a process of cell-division, \\ a beating of the heart"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a process of meiosis"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a process of sleeping"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the course of a disease"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the flight of a bird"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the life of an organism"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""your process of aging."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""p is a process \u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/083-003""}]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/083-003""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""numDescendants"":28.0,""numHierarchicalDescendants"":28.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""process""},{""type"":[""literal""],""value"":""Process""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a process of cell-division, \\ a beating of the heart"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a process of meiosis"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a process of sleeping"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the course of a disease"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the flight of a bird"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the life of an organism"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""your process of aging."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""p is a process \u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/083-003""}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/083-003""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000015""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000015"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000015"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000015""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","28.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000003","true","","BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)","","","p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])","process","","a process of cell-division, \ a beating of the heart|a process of meiosis|a process of sleeping|the course of a disease|the flight of a bird|the life of an organism|your process of aging.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","28.0","","","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","(iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] ","","","","false","","p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","process","","","DUO","Process","BFO:0000015","BFO_0000015","","process","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000016","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000016"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000017"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000017"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""disposition""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Disposition""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an atom of element X has the disposition to decay to an atom of element Y"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""certain people have a predisposition to colon cancer"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""children are innately disposed to categorize objects in certain ways."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the cell wall is disposed to filter chemicals in endocytosis and exocytosis"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a disposition means: b is a realizable entity \u0026 b’s bearer is some material entity \u0026 b is such that if it ceases to exist, then its bearer is physically changed, \u0026 b’s realization occurs when and because this bearer is in some special physical circumstances, \u0026 this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/062-002""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""If b is a realizable entity then for all t at which b exists, b s-depends_on some material entity at t. (axiom label in BFO2 Reference: [063-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/063-002""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/063-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/062-002""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000017"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000023"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""disposition""},{""type"":[""literal""],""value"":""Disposition""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an atom of element X has the disposition to decay to an atom of element Y"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""certain people have a predisposition to colon cancer"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""children are innately disposed to categorize objects in certain ways."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the cell wall is disposed to filter chemicals in endocytosis and exocytosis"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a disposition means: b is a realizable entity \u0026 b’s bearer is some material entity \u0026 b is such that if it ceases to exist, then its bearer is physically changed, \u0026 b’s realization occurs when and because this bearer is in some special physical circumstances, \u0026 this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/062-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""If b is a realizable entity then for all t at which b exists, b s-depends_on some material entity at t. (axiom label in BFO2 Reference: [063-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/063-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/063-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/062-002""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000016""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000016"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000016"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000016""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000023""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000017","true","","BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.","","","","disposition","","an atom of element X has the disposition to decay to an atom of element Y|certain people have a predisposition to colon cancer|children are innately disposed to categorize objects in certain ways.|the cell wall is disposed to filter chemicals in endocytosis and exocytosis","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","2.0","","","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000023","b is a disposition means: b is a realizable entity & b’s bearer is some material entity & b is such that if it ceases to exist, then its bearer is physically changed, & b’s realization occurs when and because this bearer is in some special physical circumstances, & this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002])","If b is a realizable entity then for all t at which b exists, b s-depends_on some material entity at t. (axiom label in BFO2 Reference: [063-002])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002] |(forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000017","","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","disposition","","","DUO","Disposition","BFO:0000016","BFO_0000016","","disposition","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000017","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000017"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""realizable""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""RealizableEntity""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the disposition of this piece of metal to conduct electricity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the disposition of your blood to coagulate"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of your reproductive organs"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of being a doctor"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of this boundary to delineate where Utah and Colorado meet"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/058-002""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/060-002""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/060-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/058-002""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000020"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000019"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000033"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000017"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""realizable""},{""type"":[""literal""],""value"":""RealizableEntity""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the disposition of this piece of metal to conduct electricity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the disposition of your blood to coagulate"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of your reproductive organs"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of being a doctor"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of this boundary to delineate where Utah and Colorado meet"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/058-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/060-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/060-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/058-002""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000017""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""BFO:0000017"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000017"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000017""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000020","true","","","","","A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","realizable","","the disposition of this piece of metal to conduct electricity.|the disposition of your blood to coagulate|the function of your reproductive organs|the role of being a doctor|the role of this boundary to delineate where Utah and Colorado meet","","","","","","http://purl.obolibrary.org/obo/bfo.owl","http://purl.obolibrary.org/obo/IAO_0000033","5.0","","","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000019","To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002])","All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] |(forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] ","","","","false","","A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000020","","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","realizable entity","","","DUO","RealizableEntity","BFO:0000017","BFO_0000017","","realizable entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000018","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000018"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000018""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000006"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000006"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""0d-s-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ZeroDimensionalSpatialRegion""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A zero-dimensional spatial region is a point in space. (axiom label in BFO2 Reference: [037-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/037-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ZeroDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [037-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/037-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional spatial region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000006"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000028"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional spatial region"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/IAO_0000219"",""value"":""http://purl.obolibrary.org/obo/IAO_0000400"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000219"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000018"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/IAO_0000219"",""value"":""http://purl.obolibrary.org/obo/IAO_0000401"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000026"",""isObsolete"":false}]},{""property"":""http://purl.obolibrary.org/obo/IAO_0000219"",""value"":""http://purl.obolibrary.org/obo/IAO_0000402"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000009"",""isObsolete"":false}]},{""property"":""http://purl.obolibrary.org/obo/IAO_0000219"",""value"":""http://purl.obolibrary.org/obo/IAO_0000403"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000028"",""isObsolete"":false}]}],""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""0d-s-region""},{""type"":[""literal""],""value"":""ZeroDimensionalSpatialRegion""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A zero-dimensional spatial region is a point in space. (axiom label in BFO2 Reference: [037-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/037-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ZeroDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [037-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/037-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000018""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""BFO:0000018"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000018"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000018""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000006""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000402"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two dimensional cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000402""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000403"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three dimensional cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000403""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000401"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one dimensional cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000401""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000219"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000026""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000028""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000006","true","","","","","","0d-s-region","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","http://purl.obolibrary.org/obo/IAO_0000400|http://purl.obolibrary.org/obo/IAO_0000401|http://purl.obolibrary.org/obo/IAO_0000402|http://purl.obolibrary.org/obo/IAO_0000403","0.0","","","http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000006|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000028","A zero-dimensional spatial region is a point in space. (axiom label in BFO2 Reference: [037-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (ZeroDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [037-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000006","","http://purl.obolibrary.org/obo/BFO_0000018","http://purl.obolibrary.org/obo/BFO_0000006|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","zero-dimensional spatial region","","","DUO","ZeroDimensionalSpatialRegion","BFO:0000018","BFO_0000018","","zero-dimensional spatial region","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000019","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000019"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""quality""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Quality""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the ambient temperature of this portion of air"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the color of a tomato"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the length of the circumference of your waist"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the mass of this piece of gold."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the shape of your nose"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the shape of your nostril"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/055-001""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""If an entity is a quality at any time that it exists, then it is a quality at every time that it exists. (axiom label in BFO2 Reference: [105-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/105-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/055-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/105-001""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000020"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""numDescendants"":7.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""quality""},{""type"":[""literal""],""value"":""Quality""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the ambient temperature of this portion of air"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the color of a tomato"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the length of the circumference of your waist"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the mass of this piece of gold."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the shape of your nose"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the shape of your nostril"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/055-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""If an entity is a quality at any time that it exists, then it is a quality at every time that it exists. (axiom label in BFO2 Reference: [105-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/105-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/055-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/105-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000019""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""BFO:0000019"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000019"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000019""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000020","true","","","","","","quality","","the ambient temperature of this portion of air|the color of a tomato|the length of the circumference of your waist|the mass of this piece of gold.|the shape of your nose|the shape of your nostril","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","7.0","","","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001])","If an entity is a quality at any time that it exists, then it is a quality at every time that it exists. (axiom label in BFO2 Reference: [105-001])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001] |(forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000020","","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","quality","","","DUO","Quality","BFO:0000019","BFO_0000019","","quality","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000020","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000020"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a specifically dependent continuant \u003d Def. b is a continuant \u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/050-003""}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""sdc""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""SpecificallyDependentContinuant""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""of one-sided specifically dependent continuants: the mass of this tomato"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the disposition of this fish to decay"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of this heart: to pump blood"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the mutual dependence of proton donors and acceptors in chemical reactions [79"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the pink color of a medium rare piece of grilled filet mignon at its center"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of being a doctor"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the shape of this hole."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the smell of this portion of mozzarella"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a specifically dependent continuant \u003d Def. b is a continuant \u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/050-003""}]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Specifically dependent continuant doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. We\u0027re not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000005"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""}}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/050-003""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000031"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""numDescendants"":14.0,""numHierarchicalDescendants"":14.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""sdc""},{""type"":[""literal""],""value"":""SpecificallyDependentContinuant""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""of one-sided specifically dependent continuants: the mass of this tomato"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the disposition of this fish to decay"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of this heart: to pump blood"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the mutual dependence of proton donors and acceptors in chemical reactions [79"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the pink color of a medium rare piece of grilled filet mignon at its center"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of being a doctor"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the shape of this hole."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the smell of this portion of mozzarella"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a specifically dependent continuant \u003d Def. b is a continuant \u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/050-003""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Specifically dependent continuant doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. We\u0027re not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000005"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/050-003""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000020""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""BFO:0000020"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000020"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000020""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","14.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000002","true","","Specifically dependent continuant doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. We're not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc.","","","b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])","sdc","","Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key|of one-sided specifically dependent continuants: the mass of this tomato|of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates.|the disposition of this fish to decay|the function of this heart: to pump blood|the mutual dependence of proton donors and acceptors in chemical reactions [79|the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction|the pink color of a medium rare piece of grilled filet mignon at its center|the role of being a doctor|the shape of this hole.|the smell of this portion of mozzarella","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","14.0","","","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000031","","","","http://www.w3.org/2002/07/owl#Class","true","true","","(iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] ","","","","false","","b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","specifically dependent continuant","","","DUO","SpecificallyDependentContinuant","BFO:0000020","BFO_0000020","","specifically dependent continuant","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000023","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000023"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000023""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000017"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000017"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""role""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Role""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the priest role"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of a boundary to demarcate two neighboring administrative territories"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of a building in serving as a military target"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of a stone in marking a property boundary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of subject in a clinical trial"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the student role"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \u003dDef. there is some c, c instance_of professor role \u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a role means: b is a realizable entity \u0026 b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be\u0026 b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/061-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/061-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000017"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""role""},{""type"":[""literal""],""value"":""Role""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the priest role"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of a boundary to demarcate two neighboring administrative territories"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of a building in serving as a military target"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of a stone in marking a property boundary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of subject in a clinical trial"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the student role"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \u003dDef. there is some c, c instance_of professor role \u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a role means: b is a realizable entity \u0026 b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be\u0026 b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/061-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/061-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000023""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000023"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000023"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000023""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000017","true","","BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t =Def. there is some c, c instance_of professor role & c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.","","","A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","role","","John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.|the priest role|the role of a boundary to demarcate two neighboring administrative territories|the role of a building in serving as a military target|the role of a stone in marking a property boundary|the role of subject in a clinical trial|the student role","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","1.0","","","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","b is a role means: b is a realizable entity & b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be& b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001])","","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] ","","","","false","","A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000017","","http://purl.obolibrary.org/obo/BFO_0000023","http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","role","","","DUO","Role","BFO:0000023","BFO_0000023","","role","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000024","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000024"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000024""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000040"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000040"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""fiat-object-part""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""FiatObjectPart""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""or with divisions drawn by cognitive subjects for practical reasons, such as the division of a cake (before slicing) into (what will become) slices (and thus member parts of an object aggregate). However, this does not mean that fiat object parts are dependent for their existence on divisions or delineations effected by cognitive subjects. If, for example, it is correct to conceive geological layers of the Earth as fiat object parts of the Earth, then even though these layers were first delineated in recent times, still existed long before such delineation and what holds of these layers (for example that the oldest layers are also the lowest layers) did not begin to hold because of our acts of delineation.Treatment of material entity in BFOExamples viewed by some as problematic cases for the trichotomy of fiat object part, object, and object aggregate include: a mussel on (and attached to) a rock, a slime mold, a pizza, a cloud, a galaxy, a railway train with engine and multiple carriages, a clonal stand of quaking aspen, a bacterial community (biofilm), a broken femur. Note that, as Aristotle already clearly recognized, such problematic cases – which lie at or near the penumbra of instances defined by the categories in question – need not invalidate these categories. The existence of grey objects does not prove that there are not objects which are black and objects which are white; the existence of mules does not prove that there are not objects which are donkeys and objects which are horses. It does, however, show that the examples in question need to be addressed carefully in order to show how they can be fitted into the proposed scheme, for example by recognizing additional subdivisions [29"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the FMA:regional parts of an intact human body."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the Western hemisphere of the Earth"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the division of the brain into regions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the division of the planet into hemispheres"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the dorsal and ventral surfaces of the body"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the upper and lower lobes of the left lung"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Most examples of fiat object parts are associated with theoretically drawn divisions"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a fiat object part \u003d Def. b is a material entity which is such that for all times t, if b exists at t then there is some object c such that b proper continuant_part of c at t and c is demarcated from the remainder of c by a two-dimensional continuant fiat boundary. (axiom label in BFO2 Reference: [027-004])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/027-004""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (FiatObjectPart x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y) (and (Object y) (properContinuantPartOfAt x y t)))))))) // axiom label in BFO2 CLIF: [027-004] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/027-004""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""fiat object part"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000040"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""fiat object part"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""fiat-object-part""},{""type"":[""literal""],""value"":""FiatObjectPart""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""or with divisions drawn by cognitive subjects for practical reasons, such as the division of a cake (before slicing) into (what will become) slices (and thus member parts of an object aggregate). However, this does not mean that fiat object parts are dependent for their existence on divisions or delineations effected by cognitive subjects. If, for example, it is correct to conceive geological layers of the Earth as fiat object parts of the Earth, then even though these layers were first delineated in recent times, still existed long before such delineation and what holds of these layers (for example that the oldest layers are also the lowest layers) did not begin to hold because of our acts of delineation.Treatment of material entity in BFOExamples viewed by some as problematic cases for the trichotomy of fiat object part, object, and object aggregate include: a mussel on (and attached to) a rock, a slime mold, a pizza, a cloud, a galaxy, a railway train with engine and multiple carriages, a clonal stand of quaking aspen, a bacterial community (biofilm), a broken femur. Note that, as Aristotle already clearly recognized, such problematic cases – which lie at or near the penumbra of instances defined by the categories in question – need not invalidate these categories. The existence of grey objects does not prove that there are not objects which are black and objects which are white; the existence of mules does not prove that there are not objects which are donkeys and objects which are horses. It does, however, show that the examples in question need to be addressed carefully in order to show how they can be fitted into the proposed scheme, for example by recognizing additional subdivisions [29"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the FMA:regional parts of an intact human body."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the Western hemisphere of the Earth"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the division of the brain into regions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the division of the planet into hemispheres"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the dorsal and ventral surfaces of the body"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the upper and lower lobes of the left lung"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Most examples of fiat object parts are associated with theoretically drawn divisions"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a fiat object part \u003d Def. b is a material entity which is such that for all times t, if b exists at t then there is some object c such that b proper continuant_part of c at t and c is demarcated from the remainder of c by a two-dimensional continuant fiat boundary. (axiom label in BFO2 Reference: [027-004])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/027-004""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (FiatObjectPart x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y) (and (Object y) (properContinuantPartOfAt x y t)))))))) // axiom label in BFO2 CLIF: [027-004] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/027-004""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000024""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000024"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000024"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000024""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000040","true","","BFO 2 Reference: Most examples of fiat object parts are associated with theoretically drawn divisions","","","","fiat-object-part","","or with divisions drawn by cognitive subjects for practical reasons, such as the division of a cake (before slicing) into (what will become) slices (and thus member parts of an object aggregate). However, this does not mean that fiat object parts are dependent for their existence on divisions or delineations effected by cognitive subjects. If, for example, it is correct to conceive geological layers of the Earth as fiat object parts of the Earth, then even though these layers were first delineated in recent times, still existed long before such delineation and what holds of these layers (for example that the oldest layers are also the lowest layers) did not begin to hold because of our acts of delineation.Treatment of material entity in BFOExamples viewed by some as problematic cases for the trichotomy of fiat object part, object, and object aggregate include: a mussel on (and attached to) a rock, a slime mold, a pizza, a cloud, a galaxy, a railway train with engine and multiple carriages, a clonal stand of quaking aspen, a bacterial community (biofilm), a broken femur. Note that, as Aristotle already clearly recognized, such problematic cases – which lie at or near the penumbra of instances defined by the categories in question – need not invalidate these categories. The existence of grey objects does not prove that there are not objects which are black and objects which are white; the existence of mules does not prove that there are not objects which are donkeys and objects which are horses. It does, however, show that the examples in question need to be addressed carefully in order to show how they can be fitted into the proposed scheme, for example by recognizing additional subdivisions [29|the FMA:regional parts of an intact human body.|the Western hemisphere of the Earth|the division of the brain into regions|the division of the planet into hemispheres|the dorsal and ventral surfaces of the body|the upper and lower lobes of the left lung","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","b is a fiat object part = Def. b is a material entity which is such that for all times t, if b exists at t then there is some object c such that b proper continuant_part of c at t and c is demarcated from the remainder of c by a two-dimensional continuant fiat boundary. (axiom label in BFO2 Reference: [027-004])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (FiatObjectPart x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y) (and (Object y) (properContinuantPartOfAt x y t)))))))) // axiom label in BFO2 CLIF: [027-004] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000040","","http://purl.obolibrary.org/obo/BFO_0000024","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","fiat object part","","","DUO","FiatObjectPart","BFO:0000024","BFO_0000024","","fiat object part","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000026","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000026"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000026""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000006"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000006"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""1d-s-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""OneDimensionalSpatialRegion""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an edge of a cube-shaped portion of space."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A one-dimensional spatial region is a line or aggregate of lines stretching from one point in space to another. (axiom label in BFO2 Reference: [038-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/038-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (OneDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [038-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/038-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one-dimensional spatial region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000006"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000028"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one-dimensional spatial region"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""1d-s-region""},{""type"":[""literal""],""value"":""OneDimensionalSpatialRegion""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an edge of a cube-shaped portion of space."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A one-dimensional spatial region is a line or aggregate of lines stretching from one point in space to another. (axiom label in BFO2 Reference: [038-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/038-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (OneDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [038-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/038-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000026""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000006""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000028""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000026"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000026"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000026""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000006","true","","","","","","1d-s-region","","an edge of a cube-shaped portion of space.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000006|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000028","A one-dimensional spatial region is a line or aggregate of lines stretching from one point in space to another. (axiom label in BFO2 Reference: [038-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (OneDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [038-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000006","","http://purl.obolibrary.org/obo/BFO_0000026","http://purl.obolibrary.org/obo/BFO_0000006|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","one-dimensional spatial region","","","DUO","OneDimensionalSpatialRegion","BFO:0000026","BFO_0000026","","one-dimensional spatial region","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000027","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000027"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000027""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000040"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000040"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""object-aggregate""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ObjectAggregate""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a collection of cells in a blood biobank."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a swarm of bees is an aggregate of members who are linked together through natural bonds"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a symphony orchestra"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an organization is an aggregate whose member parts have roles of specific types (for example in a jazz band, a chess club, a football team)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined by fiat: the aggregate of members of an organization"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined through physical attachment: the aggregate of atoms in a lump of granite"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined through physical containment: the aggregate of molecules of carbon dioxide in a sealed container"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined via attributive delimitations such as: the patients in this hospital"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the aggregate of bearings in a constant velocity axle joint"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the aggregate of blood cells in your body"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the nitrogen atoms in the atmosphere"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the restaurants in Palo Alto"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""your collection of Meissen ceramic plates."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000301""},{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000011""}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: object aggregates may gain and lose parts while remaining numerically identical (one and the same individual) over time. This holds both for aggregates whose membership is determined naturally (the aggregate of cells in your body) and aggregates determined by fiat (a baseball team, a congressional committee)."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ISBN:978-3-938793-98-5pp124-158#Thomas Bittner and Barry Smith, \u0027A Theory of Granular Partitions\u0027, in K. Munn and B. Smith (eds.), Applied Ontology: An Introduction, Frankfurt/Lancaster: ontos, 2008, 125-158.""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000300""}]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an object aggregate means: b is a material entity consisting exactly of a plurality of objects as member_parts at all times at which b exists. (axiom label in BFO2 Reference: [025-004])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/025-004""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (\u003d y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/025-004""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""object aggregate"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000040"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""object aggregate"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""object-aggregate""},{""type"":[""literal""],""value"":""ObjectAggregate""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a collection of cells in a blood biobank."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a swarm of bees is an aggregate of members who are linked together through natural bonds"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a symphony orchestra"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an organization is an aggregate whose member parts have roles of specific types (for example in a jazz band, a chess club, a football team)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined by fiat: the aggregate of members of an organization"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined through physical attachment: the aggregate of atoms in a lump of granite"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined through physical containment: the aggregate of molecules of carbon dioxide in a sealed container"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined via attributive delimitations such as: the patients in this hospital"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the aggregate of bearings in a constant velocity axle joint"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the aggregate of blood cells in your body"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the nitrogen atoms in the atmosphere"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the restaurants in Palo Alto"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""your collection of Meissen ceramic plates."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000301""},{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000011""}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: object aggregates may gain and lose parts while remaining numerically identical (one and the same individual) over time. This holds both for aggregates whose membership is determined naturally (the aggregate of cells in your body) and aggregates determined by fiat (a baseball team, a congressional committee)."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ISBN:978-3-938793-98-5pp124-158#Thomas Bittner and Barry Smith, \u0027A Theory of Granular Partitions\u0027, in K. Munn and B. Smith (eds.), Applied Ontology: An Introduction, Frankfurt/Lancaster: ontos, 2008, 125-158.""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000300""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an object aggregate means: b is a material entity consisting exactly of a plurality of objects as member_parts at all times at which b exists. (axiom label in BFO2 Reference: [025-004])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/025-004""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (\u003d y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/025-004""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000027""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""ISBN:978"":{""url"":""https://www.worldcat.org/search?q\u003dbn%3A978"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ISBN:978""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000027"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000027"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000027""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000040","true","","An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects |BFO 2 Reference: object aggregates may gain and lose parts while remaining numerically identical (one and the same individual) over time. This holds both for aggregates whose membership is determined naturally (the aggregate of cells in your body) and aggregates determined by fiat (a baseball team, a congressional committee).","","","","object-aggregate","","a collection of cells in a blood biobank.|a swarm of bees is an aggregate of members who are linked together through natural bonds|a symphony orchestra|an organization is an aggregate whose member parts have roles of specific types (for example in a jazz band, a chess club, a football team)|defined by fiat: the aggregate of members of an organization|defined through physical attachment: the aggregate of atoms in a lump of granite|defined through physical containment: the aggregate of molecules of carbon dioxide in a sealed container|defined via attributive delimitations such as: the patients in this hospital|the aggregate of bearings in a constant velocity axle joint|the aggregate of blood cells in your body|the nitrogen atoms in the atmosphere|the restaurants in Palo Alto|your collection of Meissen ceramic plates.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","ISBN:978-3-938793-98-5pp124-158#Thomas Bittner and Barry Smith, 'A Theory of Granular Partitions', in K. Munn and B. Smith (eds.), Applied Ontology: An Introduction, Frankfurt/Lancaster: ontos, 2008, 125-158.","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","b is an object aggregate means: b is a material entity consisting exactly of a plurality of objects as member_parts at all times at which b exists. (axiom label in BFO2 Reference: [025-004])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (= y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000040","","http://purl.obolibrary.org/obo/BFO_0000027","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","object aggregate","","","DUO","ObjectAggregate","BFO:0000027","BFO_0000027","","object aggregate","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000028","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000028"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000028""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000006"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000006"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""3d-s-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ThreeDimensionalSpatialRegion""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a cube-shaped region of space"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a sphere-shaped region of space,"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A three-dimensional spatial region is a spatial region that is of three dimensions. (axiom label in BFO2 Reference: [040-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/040-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ThreeDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [040-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/040-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three-dimensional spatial region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000006"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three-dimensional spatial region"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""3d-s-region""},{""type"":[""literal""],""value"":""ThreeDimensionalSpatialRegion""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a cube-shaped region of space"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a sphere-shaped region of space,"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A three-dimensional spatial region is a spatial region that is of three dimensions. (axiom label in BFO2 Reference: [040-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/040-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ThreeDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [040-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/040-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000028""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000006""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000028"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000028"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000028""},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000006","true","","","","","","3d-s-region","","a cube-shaped region of space|a sphere-shaped region of space,","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000006|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","A three-dimensional spatial region is a spatial region that is of three dimensions. (axiom label in BFO2 Reference: [040-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (ThreeDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [040-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000006","","http://purl.obolibrary.org/obo/BFO_0000028","http://purl.obolibrary.org/obo/BFO_0000006|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","three-dimensional spatial region","","","DUO","ThreeDimensionalSpatialRegion","BFO:0000028","BFO_0000028","","three-dimensional spatial region","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000029","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000029"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000029""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000141"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000141"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""site""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Site""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Manhattan Canyon)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a hole in the interior of a portion of cheese"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a rabbit hole"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an air traffic control region defined in the airspace above an airport"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the Grand Canyon"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the Piazza San Marco"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the cockpit of an aircraft"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the hold of a ship"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of a kangaroo pouch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of the trunk of your car"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of your bedroom"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of your office"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of your refrigerator"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the lumen of your gut"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""your left nostril (a fiat part – the opening – of your left nasal cavity)"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a site means: b is a three-dimensional immaterial entity that is (partially or wholly) bounded by a material entity or it is a three-dimensional immaterial part thereof. (axiom label in BFO2 Reference: [034-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/034-002""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/034-002""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""site"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000141"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""site"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""site""},{""type"":[""literal""],""value"":""Site""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Manhattan Canyon)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a hole in the interior of a portion of cheese"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a rabbit hole"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an air traffic control region defined in the airspace above an airport"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the Grand Canyon"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the Piazza San Marco"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the cockpit of an aircraft"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the hold of a ship"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of a kangaroo pouch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of the trunk of your car"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of your bedroom"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of your office"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of your refrigerator"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the lumen of your gut"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""your left nostril (a fiat part – the opening – of your left nasal cavity)"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a site means: b is a three-dimensional immaterial entity that is (partially or wholly) bounded by a material entity or it is a three-dimensional immaterial part thereof. (axiom label in BFO2 Reference: [034-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/034-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/034-002""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000029""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000029"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000029"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000029""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000141","true","","","","","","site","","Manhattan Canyon)|a hole in the interior of a portion of cheese|a rabbit hole|an air traffic control region defined in the airspace above an airport|the Grand Canyon|the Piazza San Marco|the cockpit of an aircraft|the hold of a ship|the interior of a kangaroo pouch|the interior of the trunk of your car|the interior of your bedroom|the interior of your office|the interior of your refrigerator|the lumen of your gut|your left nostril (a fiat part – the opening – of your left nasal cavity)","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","1.0","","","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","b is a site means: b is a three-dimensional immaterial entity that is (partially or wholly) bounded by a material entity or it is a three-dimensional immaterial part thereof. (axiom label in BFO2 Reference: [034-002])","","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000141","","http://purl.obolibrary.org/obo/BFO_0000029","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","site","","","DUO","Site","BFO:0000029","BFO_0000029","","site","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000030","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000030"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000030""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000040"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000040"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""object""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Object""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""atom"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cell"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cells and organisms"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""engineered artifacts"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""grain of sand"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""molecule"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organelle"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organism"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planet"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""solid portions of matter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""star"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: BFO rests on the presupposition that at multiple micro-, meso- and macroscopic scales reality exhibits certain stable, spatially separated or separable material units, combined or combinable into aggregates of various sorts (for example organisms into what are called ‘populations’). Such units play a central role in almost all domains of natural science from particle physics to cosmology. Many scientific laws govern the units in question, employing general terms (such as ‘molecule’ or ‘planet’) referring to the types and subtypes of units, and also to the types and subtypes of the processes through which such units develop and interact. The division of reality into such natural units is at the heart of biological science, as also is the fact that these units may form higher-level units (as cells form multicellular organisms) and that they may also form aggregates of units, for example as cells form portions of tissue and organs form families, herds, breeds, species, and so on. At the same time, the division of certain portions of reality into engineered units (manufactured artifacts) is the basis of modern industrial technology, which rests on the distributed mass production of engineered parts through division of labor and on their assembly into larger, compound units such as cars and laptops. The division of portions of reality into units is one starting point for the phenomenon of counting."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Each object is such that there are entities of which we can assert unproblematically that they lie in its interior, and other entities of which we can assert unproblematically that they lie in its exterior. This may not be so for entities lying at or near the boundary between the interior and exterior. This means that two objects – for example the two cells depicted in Figure 3 – may be such that there are material entities crossing their boundaries which belong determinately to neither cell. Something similar obtains in certain cases of conjoined twins (see below)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: To say that b is causally unified means: b is a material entity which is such that its material parts are tied together in such a way that, in environments typical for entities of the type in question,if c, a continuant part of b that is in the interior of b at t, is larger than a certain threshold size (which will be determined differently from case to case, depending on factors such as porosity of external cover) and is moved in space to be at t at a location on the exterior of the spatial region that had been occupied by b at t, then either b’s other parts will be moved in coordinated fashion or b will be damaged (be affected, for example, by breakage or tearing) in the interval between t and t.causal changes in one part of b can have consequences for other parts of b without the mediation of any entity that lies on the exterior of b. Material entities with no proper material parts would satisfy these conditions trivially. Candidate examples of types of causal unity for material entities of more complex sorts are as follows (this is not intended to be an exhaustive list):CU1: Causal unity via physical coveringHere the parts in the interior of the unified entity are combined together causally through a common membrane or other physical covering\\. The latter points outwards toward and may serve a protective function in relation to what lies on the exterior of the entity [13, 47"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: an object is a maximal causally unified material entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: ‘objects’ are sometimes referred to as ‘grains’ [74"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an object means: b is a material entity which manifests causal unity of one or other of the types CUn listed above \u0026 is of a type (a material universal) instances of which are maximal relative to this criterion of causal unity. (axiom label in BFO2 Reference: [024-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/024-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""object"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000040"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""object"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""object""},{""type"":[""literal""],""value"":""Object""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""atom"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cell"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cells and organisms"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""engineered artifacts"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""grain of sand"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""molecule"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organelle"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organism"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planet"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""solid portions of matter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""star"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: BFO rests on the presupposition that at multiple micro-, meso- and macroscopic scales reality exhibits certain stable, spatially separated or separable material units, combined or combinable into aggregates of various sorts (for example organisms into what are called ‘populations’). Such units play a central role in almost all domains of natural science from particle physics to cosmology. Many scientific laws govern the units in question, employing general terms (such as ‘molecule’ or ‘planet’) referring to the types and subtypes of units, and also to the types and subtypes of the processes through which such units develop and interact. The division of reality into such natural units is at the heart of biological science, as also is the fact that these units may form higher-level units (as cells form multicellular organisms) and that they may also form aggregates of units, for example as cells form portions of tissue and organs form families, herds, breeds, species, and so on. At the same time, the division of certain portions of reality into engineered units (manufactured artifacts) is the basis of modern industrial technology, which rests on the distributed mass production of engineered parts through division of labor and on their assembly into larger, compound units such as cars and laptops. The division of portions of reality into units is one starting point for the phenomenon of counting."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Each object is such that there are entities of which we can assert unproblematically that they lie in its interior, and other entities of which we can assert unproblematically that they lie in its exterior. This may not be so for entities lying at or near the boundary between the interior and exterior. This means that two objects – for example the two cells depicted in Figure 3 – may be such that there are material entities crossing their boundaries which belong determinately to neither cell. Something similar obtains in certain cases of conjoined twins (see below)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: To say that b is causally unified means: b is a material entity which is such that its material parts are tied together in such a way that, in environments typical for entities of the type in question,if c, a continuant part of b that is in the interior of b at t, is larger than a certain threshold size (which will be determined differently from case to case, depending on factors such as porosity of external cover) and is moved in space to be at t at a location on the exterior of the spatial region that had been occupied by b at t, then either b’s other parts will be moved in coordinated fashion or b will be damaged (be affected, for example, by breakage or tearing) in the interval between t and t.causal changes in one part of b can have consequences for other parts of b without the mediation of any entity that lies on the exterior of b. Material entities with no proper material parts would satisfy these conditions trivially. Candidate examples of types of causal unity for material entities of more complex sorts are as follows (this is not intended to be an exhaustive list):CU1: Causal unity via physical coveringHere the parts in the interior of the unified entity are combined together causally through a common membrane or other physical covering\\. The latter points outwards toward and may serve a protective function in relation to what lies on the exterior of the entity [13, 47"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: an object is a maximal causally unified material entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: ‘objects’ are sometimes referred to as ‘grains’ [74"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an object means: b is a material entity which manifests causal unity of one or other of the types CUn listed above \u0026 is of a type (a material universal) instances of which are maximal relative to this criterion of causal unity. (axiom label in BFO2 Reference: [024-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/024-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000030""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""BFO:0000030"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000030"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000030""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000040","true","","BFO 2 Reference: BFO rests on the presupposition that at multiple micro-, meso- and macroscopic scales reality exhibits certain stable, spatially separated or separable material units, combined or combinable into aggregates of various sorts (for example organisms into what are called ‘populations’). Such units play a central role in almost all domains of natural science from particle physics to cosmology. Many scientific laws govern the units in question, employing general terms (such as ‘molecule’ or ‘planet’) referring to the types and subtypes of units, and also to the types and subtypes of the processes through which such units develop and interact. The division of reality into such natural units is at the heart of biological science, as also is the fact that these units may form higher-level units (as cells form multicellular organisms) and that they may also form aggregates of units, for example as cells form portions of tissue and organs form families, herds, breeds, species, and so on. At the same time, the division of certain portions of reality into engineered units (manufactured artifacts) is the basis of modern industrial technology, which rests on the distributed mass production of engineered parts through division of labor and on their assembly into larger, compound units such as cars and laptops. The division of portions of reality into units is one starting point for the phenomenon of counting.|BFO 2 Reference: Each object is such that there are entities of which we can assert unproblematically that they lie in its interior, and other entities of which we can assert unproblematically that they lie in its exterior. This may not be so for entities lying at or near the boundary between the interior and exterior. This means that two objects – for example the two cells depicted in Figure 3 – may be such that there are material entities crossing their boundaries which belong determinately to neither cell. Something similar obtains in certain cases of conjoined twins (see below).|BFO 2 Reference: To say that b is causally unified means: b is a material entity which is such that its material parts are tied together in such a way that, in environments typical for entities of the type in question,if c, a continuant part of b that is in the interior of b at t, is larger than a certain threshold size (which will be determined differently from case to case, depending on factors such as porosity of external cover) and is moved in space to be at t at a location on the exterior of the spatial region that had been occupied by b at t, then either b’s other parts will be moved in coordinated fashion or b will be damaged (be affected, for example, by breakage or tearing) in the interval between t and t.causal changes in one part of b can have consequences for other parts of b without the mediation of any entity that lies on the exterior of b. Material entities with no proper material parts would satisfy these conditions trivially. Candidate examples of types of causal unity for material entities of more complex sorts are as follows (this is not intended to be an exhaustive list):CU1: Causal unity via physical coveringHere the parts in the interior of the unified entity are combined together causally through a common membrane or other physical covering\. The latter points outwards toward and may serve a protective function in relation to what lies on the exterior of the entity [13, 47|BFO 2 Reference: an object is a maximal causally unified material entity|BFO 2 Reference: ‘objects’ are sometimes referred to as ‘grains’ [74","","","","object","","atom|cell|cells and organisms|engineered artifacts|grain of sand|molecule|organelle|organism|planet|solid portions of matter|star","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","b is an object means: b is a material entity which manifests causal unity of one or other of the types CUn listed above & is of a type (a material universal) instances of which are maximal relative to this criterion of causal unity. (axiom label in BFO2 Reference: [024-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000040","","http://purl.obolibrary.org/obo/BFO_0000030","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","object","","","DUO","Object","BFO:0000030","BFO_0000030","","object","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000031","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000031"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a generically dependent continuant \u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/074-001""}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""gdc""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""GenericallyDependentContinuant""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the pdf file on your laptop, the pdf file that is a copy thereof on my laptop"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a generically dependent continuant \u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/074-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/074-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000002"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""numDescendants"":230.0,""numHierarchicalDescendants"":212.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""gdc""},{""type"":[""literal""],""value"":""GenericallyDependentContinuant""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the pdf file on your laptop, the pdf file that is a copy thereof on my laptop"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a generically dependent continuant \u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/074-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/074-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000031""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000031"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000031"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000031""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","212.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000002","true","","","","","b is a generically dependent continuant = Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])","gdc","","The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity.|the pdf file on your laptop, the pdf file that is a copy thereof on my laptop|the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","230.0","","","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","(iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] ","","","","false","","b is a generically dependent continuant = Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","generically dependent continuant","","","DUO","GenericallyDependentContinuant","BFO:0000031","BFO_0000031","","generically dependent continuant","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000034","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000034"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000034""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""function""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Function""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of a hammer to drive in nails"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of a heart pacemaker to regulate the beating of a heart through electricity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of amylase in saliva to break down starch into sugar"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/064-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/064-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000016"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""function""},{""type"":[""literal""],""value"":""Function""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of a hammer to drive in nails"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of a heart pacemaker to regulate the beating of a heart through electricity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of amylase in saliva to break down starch into sugar"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/064-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/064-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000034""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:function"":{""url"":""http://purl.obolibrary.org/obo/BFO_function"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:function""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000034"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000034"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000034""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000016","true","","BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.","","","","function","","the function of a hammer to drive in nails|the function of a heart pacemaker to regulate the beating of a heart through electricity|the function of amylase in saliva to break down starch into sugar","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000016","","http://purl.obolibrary.org/obo/BFO_0000034","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","function","","","DUO","Function","BFO:0000034","BFO_0000034","","function","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000035","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000035"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000035""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""p is a process boundary \u003dDef. p is a temporal part of a process \u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/084-001""}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""p-boundary""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ProcessBoundary""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the boundary between the 2nd and 3rd year of your life."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""p is a process boundary \u003dDef. p is a temporal part of a process \u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/084-001""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every process boundary occupies_temporal_region a zero-dimensional temporal region. (axiom label in BFO2 Reference: [085-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/085-002""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ProcessBoundary x) (exists (y) (and (ZeroDimensionalTemporalRegion y) (occupiesTemporalRegion x y))))) // axiom label in BFO2 CLIF: [085-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/085-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (ProcessBoundary a) (exists (p) (and (Process p) (temporalPartOf a p) (not (exists (b) (properTemporalPartOf b a)))))) // axiom label in BFO2 CLIF: [084-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/084-001""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process boundary"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process boundary"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p-boundary""},{""type"":[""literal""],""value"":""ProcessBoundary""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the boundary between the 2nd and 3rd year of your life."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""p is a process boundary \u003dDef. p is a temporal part of a process \u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/084-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every process boundary occupies_temporal_region a zero-dimensional temporal region. (axiom label in BFO2 Reference: [085-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/085-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ProcessBoundary x) (exists (y) (and (ZeroDimensionalTemporalRegion y) (occupiesTemporalRegion x y))))) // axiom label in BFO2 CLIF: [085-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/085-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (ProcessBoundary a) (exists (p) (and (Process p) (temporalPartOf a p) (not (exists (b) (properTemporalPartOf b a)))))) // axiom label in BFO2 CLIF: [084-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/084-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000035""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000035"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000035"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000035""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000003","true","","","","","p is a process boundary =Def. p is a temporal part of a process & p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])","p-boundary","","the boundary between the 2nd and 3rd year of your life.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","Every process boundary occupies_temporal_region a zero-dimensional temporal region. (axiom label in BFO2 Reference: [085-002])","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (ProcessBoundary x) (exists (y) (and (ZeroDimensionalTemporalRegion y) (occupiesTemporalRegion x y))))) // axiom label in BFO2 CLIF: [085-002] |(iff (ProcessBoundary a) (exists (p) (and (Process p) (temporalPartOf a p) (not (exists (b) (properTemporalPartOf b a)))))) // axiom label in BFO2 CLIF: [084-001] ","","","","false","","p is a process boundary =Def. p is a temporal part of a process & p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/BFO_0000035","http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","process boundary","","","DUO","ProcessBoundary","BFO:0000035","BFO_0000035","","process boundary","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000038","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000038"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000038""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000008"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000008"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000008"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000008"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""1d-t-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""OneDimensionalTemporalRegion""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the temporal region during which a process occurs."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: A temporal interval is a special kind of one-dimensional temporal region, namely one that is self-connected (is without gaps or breaks)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A one-dimensional temporal region is a temporal region that is extended. (axiom label in BFO2 Reference: [103-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/103-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/103-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one-dimensional temporal region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000008"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000148"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one-dimensional temporal region"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""1d-t-region""},{""type"":[""literal""],""value"":""OneDimensionalTemporalRegion""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the temporal region during which a process occurs."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: A temporal interval is a special kind of one-dimensional temporal region, namely one that is self-connected (is without gaps or breaks)."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A one-dimensional temporal region is a temporal region that is extended. (axiom label in BFO2 Reference: [103-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/103-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/103-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000038""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000008""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000038"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000038"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000038""},""http://purl.obolibrary.org/obo/BFO_0000148"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional temporal region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000148""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000008","true","","BFO 2 Reference: A temporal interval is a special kind of one-dimensional temporal region, namely one that is self-connected (is without gaps or breaks).","","","","1d-t-region","","the temporal region during which a process occurs.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000008","http://purl.obolibrary.org/obo/BFO_0000008|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000148","A one-dimensional temporal region is a temporal region that is extended. (axiom label in BFO2 Reference: [103-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000008","","http://purl.obolibrary.org/obo/BFO_0000038","http://purl.obolibrary.org/obo/BFO_0000008|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","one-dimensional temporal region","","","DUO","OneDimensionalTemporalRegion","BFO:0000038","BFO_0000038","","one-dimensional temporal region","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000040","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000040"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""material""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""MaterialEntity""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a flame"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a forest fire"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a human being"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a hurricane"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a photon"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a puff of smoke"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a sea wave"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a tornado"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an aggregate of human beings."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an energy wave"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an epidemic"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the undetached arm of a human being"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/019-002""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/020-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/021-002""}]}],""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/019-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/021-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/020-002""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000141"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""material""},{""type"":[""literal""],""value"":""MaterialEntity""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a flame"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a forest fire"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a human being"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a hurricane"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a photon"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a puff of smoke"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a sea wave"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a tornado"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an aggregate of human beings."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an energy wave"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an epidemic"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the undetached arm of a human being"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/019-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/020-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/021-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/019-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/021-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/020-002""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000040""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""BFO:0000040"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000040"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000040""},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000004","true","","BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60|BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.|BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here.","","","An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","material","","a flame|a forest fire|a human being|a hurricane|a photon|a puff of smoke|a sea wave|a tornado|an aggregate of human beings.|an energy wave|an epidemic|the undetached arm of a human being","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","5.0","","","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000141","A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002])","Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002])|every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] |(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] |(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] ","","","","false","","An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000004","","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","material entity","","","DUO","MaterialEntity","BFO:0000040","BFO_0000040","","material entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000140","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000140"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000140""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a continuant fiat boundary \u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/029-001""}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000141"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000141"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""cf-boundary""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ContinuantFiatBoundary""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a continuant fiat boundary \u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/029-001""}]},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: In BFO 1.1 the assumption was made that the external surface of a material entity such as a cell could be treated as if it were a boundary in the mathematical sense. The new document propounds the view that when we talk about external surfaces of material objects in this way then we are talking about something fiat. To be dealt with in a future version: fiat boundaries at different levels of granularity.More generally, the focus in discussion of boundaries in BFO 2.0 is now on fiat boundaries, which means: boundaries for which there is no assumption that they coincide with physical discontinuities. The ontology of boundaries becomes more closely allied with the ontology of regions."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: a continuant fiat boundary is a boundary of some material entity (for example: the plane separating the Northern and Southern hemispheres; the North Pole), or it is a boundary of some immaterial entity (for example of some portion of airspace). Three basic kinds of continuant fiat boundary can be distinguished (together with various combination kinds [29"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Continuant fiat boundary doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. An example would be the mereological sum of two-dimensional continuant fiat boundary and a one dimensional continuant fiat boundary that doesn\u0027t overlap it. The situation is analogous to temporal and spatial regions."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000008""}]}],""http://purl.obolibrary.org/obo/IAO_0000601"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every continuant fiat boundary is located at some spatial region at every time at which it exists"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (ContinuantFiatBoundary a) (and (ImmaterialEntity a) (exists (b) (and (or (ZeroDimensionalSpatialRegion b) (OneDimensionalSpatialRegion b) (TwoDimensionalSpatialRegion b)) (forall (t) (locatedInAt a b t)))) (not (exists (c t) (and (SpatialRegion c) (continuantPartOfAt c a t)))))) // axiom label in BFO2 CLIF: [029-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/029-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant fiat boundary"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000141"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant fiat boundary"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""cf-boundary""},{""type"":[""literal""],""value"":""ContinuantFiatBoundary""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a continuant fiat boundary \u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/029-001""}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: In BFO 1.1 the assumption was made that the external surface of a material entity such as a cell could be treated as if it were a boundary in the mathematical sense. The new document propounds the view that when we talk about external surfaces of material objects in this way then we are talking about something fiat. To be dealt with in a future version: fiat boundaries at different levels of granularity.More generally, the focus in discussion of boundaries in BFO 2.0 is now on fiat boundaries, which means: boundaries for which there is no assumption that they coincide with physical discontinuities. The ontology of boundaries becomes more closely allied with the ontology of regions."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: a continuant fiat boundary is a boundary of some material entity (for example: the plane separating the Northern and Southern hemispheres; the North Pole), or it is a boundary of some immaterial entity (for example of some portion of airspace). Three basic kinds of continuant fiat boundary can be distinguished (together with various combination kinds [29"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Continuant fiat boundary doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. An example would be the mereological sum of two-dimensional continuant fiat boundary and a one dimensional continuant fiat boundary that doesn\u0027t overlap it. The situation is analogous to temporal and spatial regions."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000008""}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every continuant fiat boundary is located at some spatial region at every time at which it exists"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (ContinuantFiatBoundary a) (and (ImmaterialEntity a) (exists (b) (and (or (ZeroDimensionalSpatialRegion b) (OneDimensionalSpatialRegion b) (TwoDimensionalSpatialRegion b)) (forall (t) (locatedInAt a b t)))) (not (exists (c t) (and (SpatialRegion c) (continuantPartOfAt c a t)))))) // axiom label in BFO2 CLIF: [029-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/029-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000140""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""BFO:0000140"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000140"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000140""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000141","true","","BFO 2 Reference: In BFO 1.1 the assumption was made that the external surface of a material entity such as a cell could be treated as if it were a boundary in the mathematical sense. The new document propounds the view that when we talk about external surfaces of material objects in this way then we are talking about something fiat. To be dealt with in a future version: fiat boundaries at different levels of granularity.More generally, the focus in discussion of boundaries in BFO 2.0 is now on fiat boundaries, which means: boundaries for which there is no assumption that they coincide with physical discontinuities. The ontology of boundaries becomes more closely allied with the ontology of regions.|BFO 2 Reference: a continuant fiat boundary is a boundary of some material entity (for example: the plane separating the Northern and Southern hemispheres; the North Pole), or it is a boundary of some immaterial entity (for example of some portion of airspace). Three basic kinds of continuant fiat boundary can be distinguished (together with various combination kinds [29|Continuant fiat boundary doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. An example would be the mereological sum of two-dimensional continuant fiat boundary and a one dimensional continuant fiat boundary that doesn't overlap it. The situation is analogous to temporal and spatial regions.","","","b is a continuant fiat boundary = Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])","cf-boundary","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","3.0","","","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","Every continuant fiat boundary is located at some spatial region at every time at which it exists","","http://www.w3.org/2002/07/owl#Class","true","true","","(iff (ContinuantFiatBoundary a) (and (ImmaterialEntity a) (exists (b) (and (or (ZeroDimensionalSpatialRegion b) (OneDimensionalSpatialRegion b) (TwoDimensionalSpatialRegion b)) (forall (t) (locatedInAt a b t)))) (not (exists (c t) (and (SpatialRegion c) (continuantPartOfAt c a t)))))) // axiom label in BFO2 CLIF: [029-001] ","","","","false","","b is a continuant fiat boundary = Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000141","","http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","continuant fiat boundary","","","DUO","ContinuantFiatBoundary","BFO:0000140","BFO_0000140","","continuant fiat boundary","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000141","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000141"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""immaterial""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ImmaterialEntity""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000004"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""numDescendants"":11.0,""numHierarchicalDescendants"":11.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""immaterial""},{""type"":[""literal""],""value"":""ImmaterialEntity""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000141""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""BFO:0000141"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000141"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000141""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","11.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000004","true","","BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10","","","","immaterial","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","11.0","","","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000004","","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","immaterial entity","","","DUO","ImmaterialEntity","BFO:0000141","BFO_0000141","","immaterial entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000142","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000142"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000142""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000140"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000140"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000140"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000140"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""1d-cf-boundary""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""OneDimensionalContinuantFiatBoundary""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The Equator"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""all geopolitical boundaries"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""all lines of latitude and longitude"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the median sulcus of your tongue"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a one-dimensional continuant fiat boundary is a continuous fiat line whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [032-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/032-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (OneDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (OneDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [032-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/032-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one-dimensional continuant fiat boundary"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000140"",""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/BFO_0000146"",""http://purl.obolibrary.org/obo/BFO_0000147""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one-dimensional continuant fiat boundary"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""1d-cf-boundary""},{""type"":[""literal""],""value"":""OneDimensionalContinuantFiatBoundary""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The Equator"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""all geopolitical boundaries"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""all lines of latitude and longitude"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the median sulcus of your tongue"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a one-dimensional continuant fiat boundary is a continuous fiat line whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [032-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/032-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (OneDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (OneDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [032-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/032-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000142""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000147"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional continuant fiat boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000147""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two-dimensional continuant fiat boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000146""},""type"":[""class"",""entity""]},""BFO:0000142"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000142"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000142""},""http://purl.obolibrary.org/obo/BFO_0000140"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant fiat boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000140""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000140","true","","","","","","1d-cf-boundary","","The Equator|all geopolitical boundaries|all lines of latitude and longitude|the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin.|the median sulcus of your tongue","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000140|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000146|http://purl.obolibrary.org/obo/BFO_0000147","a one-dimensional continuant fiat boundary is a continuous fiat line whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [032-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(iff (OneDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (OneDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [032-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000140","","http://purl.obolibrary.org/obo/BFO_0000142","http://purl.obolibrary.org/obo/BFO_0000140|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","one-dimensional continuant fiat boundary","","","DUO","OneDimensionalContinuantFiatBoundary","BFO:0000142","BFO_0000142","","one-dimensional continuant fiat boundary","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000144","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000144"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000144""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a process_profile \u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/093-002""}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000015"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000015"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""process-profile""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ProcessProfile""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a process_profile \u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/093-002""}]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b process_profile_of c holds when b proper_occurrent_part_of c\u0026 there is some proper_occurrent_part d of c which has no parts in common with b \u0026 is mutually dependent on b\u0026 is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/094-005""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (processProfileOf x y) (and (properContinuantPartOf x y) (exists (z t) (and (properOccurrentPartOf z y) (TemporalRegion t) (occupiesSpatioTemporalRegion x t) (occupiesSpatioTemporalRegion y t) (occupiesSpatioTemporalRegion z t) (not (exists (w) (and (occurrentPartOf w x) (occurrentPartOf w z))))))))) // axiom label in BFO2 CLIF: [094-005] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/094-005""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (ProcessProfile a) (exists (b) (and (Process b) (processProfileOf a b)))) // axiom label in BFO2 CLIF: [093-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/093-002""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process profile"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000182"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process profile"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""process-profile""},{""type"":[""literal""],""value"":""ProcessProfile""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a process_profile \u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/093-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b process_profile_of c holds when b proper_occurrent_part_of c\u0026 there is some proper_occurrent_part d of c which has no parts in common with b \u0026 is mutually dependent on b\u0026 is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/094-005""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (processProfileOf x y) (and (properContinuantPartOf x y) (exists (z t) (and (properOccurrentPartOf z y) (TemporalRegion t) (occupiesSpatioTemporalRegion x t) (occupiesSpatioTemporalRegion y t) (occupiesSpatioTemporalRegion z t) (not (exists (w) (and (occurrentPartOf w x) (occurrentPartOf w z))))))))) // axiom label in BFO2 CLIF: [094-005] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/094-005""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (ProcessProfile a) (exists (b) (and (Process b) (processProfileOf a b)))) // axiom label in BFO2 CLIF: [093-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/093-002""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000144""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000182"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""history"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000182""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000144"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000144"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000144""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000015","true","","","","","b is a process_profile =Def. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])","process-profile","","On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels|One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance.|The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000182","b process_profile_of c holds when b proper_occurrent_part_of c& there is some proper_occurrent_part d of c which has no parts in common with b & is mutually dependent on b& is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x y) (if (processProfileOf x y) (and (properContinuantPartOf x y) (exists (z t) (and (properOccurrentPartOf z y) (TemporalRegion t) (occupiesSpatioTemporalRegion x t) (occupiesSpatioTemporalRegion y t) (occupiesSpatioTemporalRegion z t) (not (exists (w) (and (occurrentPartOf w x) (occurrentPartOf w z))))))))) // axiom label in BFO2 CLIF: [094-005] |(iff (ProcessProfile a) (exists (b) (and (Process b) (processProfileOf a b)))) // axiom label in BFO2 CLIF: [093-002] ","","","","false","","b is a process_profile =Def. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000015","","http://purl.obolibrary.org/obo/BFO_0000144","http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","process profile","","","DUO","ProcessProfile","BFO:0000144","BFO_0000144","","process profile","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000145","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000145"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000145""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a relational quality \u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/057-001""}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000019"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000019"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""r-quality""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""RelationalQuality""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a marriage bond, an instance of requited love, an obligation between one person and another."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a relational quality \u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/057-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (RelationalQuality a) (exists (b c t) (and (IndependentContinuant b) (IndependentContinuant c) (qualityOfAt a b t) (qualityOfAt a c t)))) // axiom label in BFO2 CLIF: [057-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/057-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relational quality"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000019"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relational quality"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""r-quality""},{""type"":[""literal""],""value"":""RelationalQuality""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a marriage bond, an instance of requited love, an obligation between one person and another."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a relational quality \u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/057-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (RelationalQuality a) (exists (b c t) (and (IndependentContinuant b) (IndependentContinuant c) (qualityOfAt a b t) (qualityOfAt a c t)))) // axiom label in BFO2 CLIF: [057-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/057-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000145""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]},""BFO:0000145"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000145"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000145""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000019","true","","","","","b is a relational quality = Def. for some independent continuants c, d and for some time t: b quality_of c at t & b quality_of d at t. (axiom label in BFO2 Reference: [057-001])","r-quality","","John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.|a marriage bond, an instance of requited love, an obligation between one person and another.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","(iff (RelationalQuality a) (exists (b c t) (and (IndependentContinuant b) (IndependentContinuant c) (qualityOfAt a b t) (qualityOfAt a c t)))) // axiom label in BFO2 CLIF: [057-001] ","","","","false","","b is a relational quality = Def. for some independent continuants c, d and for some time t: b quality_of c at t & b quality_of d at t. (axiom label in BFO2 Reference: [057-001])","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000019","","http://purl.obolibrary.org/obo/BFO_0000145","http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","relational quality","","","DUO","RelationalQuality","BFO:0000145","BFO_0000145","","relational quality","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000146","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000146"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000146""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000140"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000140"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000140"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000140"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""2d-cf-boundary""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""TwoDimensionalContinuantFiatBoundary""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a two-dimensional continuant fiat boundary (surface) is a self-connected fiat surface whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [033-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/033-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (TwoDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (TwoDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [033-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/033-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two-dimensional continuant fiat boundary"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000140"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two-dimensional continuant fiat boundary"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""2d-cf-boundary""},{""type"":[""literal""],""value"":""TwoDimensionalContinuantFiatBoundary""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a two-dimensional continuant fiat boundary (surface) is a self-connected fiat surface whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [033-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/033-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (TwoDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (TwoDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [033-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/033-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000146""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000146"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000146"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000146""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000140"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant fiat boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000140""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000140","true","","","","","","2d-cf-boundary","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000140|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","a two-dimensional continuant fiat boundary (surface) is a self-connected fiat surface whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [033-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(iff (TwoDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (TwoDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [033-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000140","","http://purl.obolibrary.org/obo/BFO_0000146","http://purl.obolibrary.org/obo/BFO_0000140|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","two-dimensional continuant fiat boundary","","","DUO","TwoDimensionalContinuantFiatBoundary","BFO:0000146","BFO_0000146","","two-dimensional continuant fiat boundary","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000147","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000147"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000147""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000140"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000140"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000140"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000140"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""0d-cf-boundary""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ZeroDimensionalContinuantFiatBoundary""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the geographic North Pole"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the point of origin of some spatial coordinate system."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero dimension continuant fiat boundaries are not spatial points. Considering the example \u0027the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet\u0027 : There are many frames in which that point is zooming through many points in space. Whereas, no matter what the frame, the quadripoint is always in the same relation to the boundaries of Colorado, Utah, New Mexico, and Arizona."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000001"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""requested by Melanie Courtot""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""https://groups.google.com/d/msg/bfo-owl-devel/s9Uug5QmAws/ZDRnpiIi_TUJ""}]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a zero-dimensional continuant fiat boundary is a fiat point whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [031-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/031-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (ZeroDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (ZeroDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [031-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/031-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional continuant fiat boundary"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000140"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional continuant fiat boundary"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""0d-cf-boundary""},{""type"":[""literal""],""value"":""ZeroDimensionalContinuantFiatBoundary""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the geographic North Pole"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the point of origin of some spatial coordinate system."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero dimension continuant fiat boundaries are not spatial points. Considering the example \u0027the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet\u0027 : There are many frames in which that point is zooming through many points in space. Whereas, no matter what the frame, the quadripoint is always in the same relation to the boundaries of Colorado, Utah, New Mexico, and Arizona."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000001"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""requested by Melanie Courtot""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""https://groups.google.com/d/msg/bfo-owl-devel/s9Uug5QmAws/ZDRnpiIi_TUJ""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a zero-dimensional continuant fiat boundary is a fiat point whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [031-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/031-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (ZeroDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (ZeroDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [031-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/031-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000147""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000147"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000147"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000147""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000140"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant fiat boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000140""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000140","true","","zero dimension continuant fiat boundaries are not spatial points. Considering the example 'the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet' : There are many frames in which that point is zooming through many points in space. Whereas, no matter what the frame, the quadripoint is always in the same relation to the boundaries of Colorado, Utah, New Mexico, and Arizona.","","","","0d-cf-boundary","","the geographic North Pole|the point of origin of some spatial coordinate system.|the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000140|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","a zero-dimensional continuant fiat boundary is a fiat point whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [031-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(iff (ZeroDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (ZeroDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [031-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000140","","http://purl.obolibrary.org/obo/BFO_0000147","http://purl.obolibrary.org/obo/BFO_0000140|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","zero-dimensional continuant fiat boundary","","","DUO","ZeroDimensionalContinuantFiatBoundary","BFO:0000147","BFO_0000147","","zero-dimensional continuant fiat boundary","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000148","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000148"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000148""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000008"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000008"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000008"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000008"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""0d-t-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ZeroDimensionalTemporalRegion""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a temporal region that is occupied by a process boundary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""right now"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the moment at which a child is born"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the moment at which a finger is detached in an industrial accident"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the moment of death."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal instant."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A zero-dimensional temporal region is a temporal region that is without extent. (axiom label in BFO2 Reference: [102-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/102-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ZeroDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [102-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/102-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional temporal region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000008"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional temporal region"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""0d-t-region""},{""type"":[""literal""],""value"":""ZeroDimensionalTemporalRegion""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a temporal region that is occupied by a process boundary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""right now"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the moment at which a child is born"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the moment at which a finger is detached in an industrial accident"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the moment of death."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal instant."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A zero-dimensional temporal region is a temporal region that is without extent. (axiom label in BFO2 Reference: [102-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/102-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ZeroDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [102-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/102-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000148""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000008""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000148"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000148"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000148""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000008","true","","","","","","0d-t-region","","a temporal region that is occupied by a process boundary|right now|the moment at which a child is born|the moment at which a finger is detached in an industrial accident|the moment of death.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","temporal instant.","","http://purl.obolibrary.org/obo/BFO_0000008","http://purl.obolibrary.org/obo/BFO_0000008|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","A zero-dimensional temporal region is a temporal region that is without extent. (axiom label in BFO2 Reference: [102-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (ZeroDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [102-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000008","","http://purl.obolibrary.org/obo/BFO_0000148","http://purl.obolibrary.org/obo/BFO_0000008|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","zero-dimensional temporal region","","","DUO","ZeroDimensionalTemporalRegion","BFO:0000148","BFO_0000148","","zero-dimensional temporal region","duo","" -"duo+class+http://purl.obolibrary.org/obo/BFO_0000182","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000182"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000182""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000015"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000015"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""history""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""History""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by a material entity or site, including processes on the surface of the entity or within the cavities to which it serves as host. (axiom label in BFO2 Reference: [138-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/138-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""history"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000015"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""history"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""history""},{""type"":[""literal""],""value"":""History""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by a material entity or site, including processes on the surface of the entity or within the cavities to which it serves as host. (axiom label in BFO2 Reference: [138-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/138-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000182""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""BFO:0000182"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000182"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000182""},""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000015","true","","","","","","history","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by a material entity or site, including processes on the surface of the entity or within the cavities to which it serves as host. (axiom label in BFO2 Reference: [138-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000015","","http://purl.obolibrary.org/obo/BFO_0000182","http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","history","","","DUO","History","BFO:0000182","BFO_0000182","","history","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""entity""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Entity""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Julius Caesar"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Verdi’s Requiem"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the Second World War"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""your body mass index"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Entity doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. For example Werner Ceusters \u0027portions of reality\u0027 include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, \u0027How to track absolutely everything\u0027 at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000004"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf""}]}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/001-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""numDescendants"":301.0,""numHierarchicalDescendants"":283.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000030"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000001"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""entity""},{""type"":[""literal""],""value"":""Entity""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Julius Caesar"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Verdi’s Requiem"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the Second World War"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""your body mass index"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Entity doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. For example Werner Ceusters \u0027portions of reality\u0027 include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, \u0027How to track absolutely everything\u0027 at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000004"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/001-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000001""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","283.0","class|entity","","","","","http://www.w3.org/2002/07/owl#Thing","false","","BFO 2 Reference: In all areas of empirical inquiry we encounter general terms of two sorts. First are general terms which refer to universals or types:animaltuberculosissurgical procedurediseaseSecond, are general terms used to refer to groups of entities which instantiate a given universal but do not correspond to the extension of any subuniversal of that universal because there is nothing intrinsic to the entities in question by virtue of which they – and only they – are counted as belonging to the given group. Examples are: animal purchased by the Emperortuberculosis diagnosed on a Wednesdaysurgical procedure performed on a patient from Stockholmperson identified as candidate for clinical trial #2056-555person who is signatory of Form 656-PPVpainting by Leonardo da VinciSuch terms, which represent what are called ‘specializations’ in [81|Entity doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. For example Werner Ceusters 'portions of reality' include 4 sorts, entities (as BFO construes them), universals, configurations, and relations. It is an open question as to whether entities as construed in BFO will at some point also include these other portions of reality. See, for example, 'How to track absolutely everything' at http://www.referent-tracking.com/_RTU/papers/CeustersICbookRevised.pdf","","","","entity","","Julius Caesar|Verdi’s Requiem|the Second World War|your body mass index","","","","","","http://purl.obolibrary.org/obo/bfo.owl","http://purl.obolibrary.org/obo/IAO_0000030","301.0","","","","","","An entity is anything that exists or has existed or will exist. (axiom label in BFO2 Reference: [001-001])","","","http://www.w3.org/2002/07/owl#Class","true","false","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","","","http://purl.obolibrary.org/obo/BFO_0000001","","","","false","entity","","","DUO","Entity","BFO:0000001","BFO_0000001","","entity","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000002","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000002"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000001"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000001"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/BFO_0000001"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000001"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""continuant""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Continuant""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Continuant doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster\u0027s other portions of reality, questions are raised as to whether universals are continuants"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000007""}]}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/008-002""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/126-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/009-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/011-002""}]}],""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/009-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/126-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/008-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/011-002""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000001"",""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/BFO_0000003"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000003"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""numDescendants"":265.0,""numHierarchicalDescendants"":247.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""continuant""},{""type"":[""literal""],""value"":""Continuant""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Continuant doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster\u0027s other portions of reality, questions are raised as to whether universals are continuants"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000007""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/008-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/126-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/009-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/011-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/009-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/126-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/008-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/011-002""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000002""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","247.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000001","true","","BFO 2 Reference: Continuant entities are entities which can be sliced to yield parts only along the spatial dimension, yielding for example the parts of your table which we call its legs, its top, its nails. ‘My desk stretches from the window to the door. It has spatial parts, and can be sliced (in space) in two. With respect to time, however, a thing is a continuant.’ [60, p. 240|Continuant doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. For example, in an expansion involving bringing in some of Ceuster's other portions of reality, questions are raised as to whether universals are continuants","","","An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","continuant","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","265.0","","","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000003|","A continuant is an entity that persists, endures, or continues to exist through time while maintaining its identity. (axiom label in BFO2 Reference: [008-002])","if b is a continuant and if, for some t, c has_continuant_part b at t, then c is a continuant. (axiom label in BFO2 Reference: [126-001])|if b is a continuant and if, for some t, cis continuant_part of b at t, then c is a continuant. (axiom label in BFO2 Reference: [009-002])|if b is a material entity, then there is some temporal interval (referred to below as a one-dimensional temporal region) during which b exists. (axiom label in BFO2 Reference: [011-002])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x y) (if (and (Continuant x) (exists (t) (continuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [009-002] |(forall (x y) (if (and (Continuant x) (exists (t) (hasContinuantPartOfAt y x t))) (Continuant y))) // axiom label in BFO2 CLIF: [126-001] |(forall (x) (if (Continuant x) (Entity x))) // axiom label in BFO2 CLIF: [008-002] |(forall (x) (if (Material Entity x) (exists (t) (and (TemporalRegion t) (existsAt x t))))) // axiom label in BFO2 CLIF: [011-002] ","","","","false","","An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000001","","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001","","","false","continuant","","","DUO","Continuant","BFO:0000002","BFO_0000002","","continuant","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000003","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that has temporal parts and that happens, unfolds or develops through time."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000001"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000001"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/BFO_0000001"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000001"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""occurrent""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Occurrent""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that has temporal parts and that happens, unfolds or develops through time."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrent doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000006"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by \u0027spn[e]\u0027 and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write \u0027spr[e]\u0027 and `spl[e]\u0027 respectively for the spread and spell of e, omitting mention of the frame.""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000012""}]}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/077-002""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/108-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/079-001""}]}],""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/108-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/079-001""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000001"",""http://www.w3.org/2002/07/owl#disjointWith"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000002"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""numDescendants"":34.0,""numHierarchicalDescendants"":34.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""occurrent""},{""type"":[""literal""],""value"":""Occurrent""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An entity that has temporal parts and that happens, unfolds or develops through time."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrent doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000006"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by \u0027spn[e]\u0027 and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write \u0027spr[e]\u0027 and `spl[e]\u0027 respectively for the spread and spell of e, omitting mention of the frame.""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000012""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/077-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/108-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/079-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/108-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/079-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000003""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","34.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000001","true","","BFO 2 Reference: every occurrent that is not a temporal or spatiotemporal region is s-dependent on some independent continuant that is not a spatial region|BFO 2 Reference: s-dependence obtains between every process and its participants in the sense that, as a matter of necessity, this process could not have existed unless these or those participants existed also. A process may have a succession of participants at different phases of its unfolding. Thus there may be different players on the field at different times during the course of a football game; but the process which is the entire game s-depends_on all of these players nonetheless. Some temporal parts of this process will s-depend_on on only some of the players.|Occurrent doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. An example would be the sum of a process and the process boundary of another process.|Simons uses different terminology for relations of occurrents to regions: Denote the spatio-temporal location of a given occurrent e by 'spn[e]' and call this region its span. We may say an occurrent is at its span, in any larger region, and covers any smaller region. Now suppose we have fixed a frame of reference so that we can speak not merely of spatio-temporal but also of spatial regions (places) and temporal regions (times). The spread of an occurrent, (relative to a frame of reference) is the space it exactly occupies, and its spell is likewise the time it exactly occupies. We write 'spr[e]' and `spl[e]' respectively for the spread and spell of e, omitting mention of the frame.","","","An entity that has temporal parts and that happens, unfolds or develops through time.","occurrent","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","34.0","","","http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000001","","An occurrent is an entity that unfolds itself in time or it is the instantaneous boundary of such an entity (for example a beginning or an ending) or it is a temporal or spatiotemporal region which such an entity occupies_temporal_region or occupies_spatiotemporal_region. (axiom label in BFO2 Reference: [077-002])","Every occurrent occupies_spatiotemporal_region some spatiotemporal region. (axiom label in BFO2 Reference: [108-001])|b is an occurrent entity iff b is an entity that has temporal parts. (axiom label in BFO2 Reference: [079-001])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x) (if (Occurrent x) (exists (r) (and (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion x r))))) // axiom label in BFO2 CLIF: [108-001] |(forall (x) (iff (Occurrent x) (and (Entity x) (exists (y) (temporalPartOf y x))))) // axiom label in BFO2 CLIF: [079-001] ","","","","false","","An entity that has temporal parts and that happens, unfolds or develops through time.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000001","","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000001","","","false","occurrent","","","DUO","Occurrent","BFO:0000003","BFO_0000003","","occurrent","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000004","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000004"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an independent continuant \u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/017-002""}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""ic""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""IndependentContinuant""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a chair"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a heart"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a leg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a molecule"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an atom"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an orchestra."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an organism"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the bottom right portion of a human torso"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of your mouth"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an independent continuant \u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/017-002""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/134-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/018-002""}]}],""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/134-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/018-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/017-002""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000031""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""numDescendants"":18.0,""numHierarchicalDescendants"":18.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""ic""},{""type"":[""literal""],""value"":""IndependentContinuant""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a chair"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a heart"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a leg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a molecule"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an atom"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an orchestra."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an organism"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the bottom right portion of a human torso"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of your mouth"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an independent continuant \u003d Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/017-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/134-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/018-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/134-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/018-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/017-002""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000004""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","18.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000002","true","","","","","b is an independent continuant = Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])","ic","","a chair|a heart|a leg|a molecule|a spatial region|an atom|an orchestra.|an organism|the bottom right portion of a human torso|the interior of your mouth","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","18.0","","","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000031","","For any independent continuant b and any time t there is some spatial region r such that b is located_in r at t. (axiom label in BFO2 Reference: [134-001])|For every independent continuant b and time t during the region of time spanned by its life, there are entities which s-depends_on b during t. (axiom label in BFO2 Reference: [018-002])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x t) (if (IndependentContinuant x) (exists (r) (and (SpatialRegion r) (locatedInAt x r t))))) // axiom label in BFO2 CLIF: [134-001] |(forall (x t) (if (and (IndependentContinuant x) (existsAt x t)) (exists (y) (and (Entity y) (specificallyDependsOnAt y x t))))) // axiom label in BFO2 CLIF: [018-002] |(iff (IndependentContinuant a) (and (Continuant a) (not (exists (b t) (specificallyDependsOnAt a b t))))) // axiom label in BFO2 CLIF: [017-002] ","","","","false","","b is an independent continuant = Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","independent continuant","","","DUO","IndependentContinuant","BFO:0000004","BFO_0000004","","independent continuant","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000006","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000006"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000006""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000141"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000141"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""s-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""SpatialRegion""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Spatial regions do not participate in processes."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Spatial region doesn\u0027t have a closure axiom because the subclasses don\u0027t exhaust all possibilites. An example would be the union of a spatial point and a spatial line that doesn\u0027t overlap the point, or two spatial lines that intersect at a single point. In both cases the resultant spatial region is neither 0-dimensional, 1-dimensional, 2-dimensional, or 3-dimensional."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000002"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""}}]}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A spatial region is a continuant entity that is a continuant_part_of spaceR as defined relative to some frame R. (axiom label in BFO2 Reference: [035-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/035-001""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All continuant parts of spatial regions are spatial regions. (axiom label in BFO2 Reference: [036-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/036-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y t) (if (and (SpatialRegion x) (continuantPartOfAt y x t)) (SpatialRegion y))) // axiom label in BFO2 CLIF: [036-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/036-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (SpatialRegion x) (Continuant x))) // axiom label in BFO2 CLIF: [035-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/035-001""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatial region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000141"",""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/BFO_0000029"",""http://purl.obolibrary.org/obo/BFO_0000140""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatial region"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""s-region""},{""type"":[""literal""],""value"":""SpatialRegion""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Spatial regions do not participate in processes."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Spatial region doesn\u0027t have a closure axiom because the subclasses don\u0027t exhaust all possibilites. An example would be the union of a spatial point and a spatial line that doesn\u0027t overlap the point, or two spatial lines that intersect at a single point. In both cases the resultant spatial region is neither 0-dimensional, 1-dimensional, 2-dimensional, or 3-dimensional."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000002"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A spatial region is a continuant entity that is a continuant_part_of spaceR as defined relative to some frame R. (axiom label in BFO2 Reference: [035-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/035-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All continuant parts of spatial regions are spatial regions. (axiom label in BFO2 Reference: [036-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/036-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y t) (if (and (SpatialRegion x) (continuantPartOfAt y x t)) (SpatialRegion y))) // axiom label in BFO2 CLIF: [036-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/036-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (SpatialRegion x) (Continuant x))) // axiom label in BFO2 CLIF: [035-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/035-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000006""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000029"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""site"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000029""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000140"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant fiat boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000140""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000141","true","","BFO 2 Reference: Spatial regions do not participate in processes.|Spatial region doesn't have a closure axiom because the subclasses don't exhaust all possibilites. An example would be the union of a spatial point and a spatial line that doesn't overlap the point, or two spatial lines that intersect at a single point. In both cases the resultant spatial region is neither 0-dimensional, 1-dimensional, 2-dimensional, or 3-dimensional.","","","","s-region","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","4.0","","","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000029|http://purl.obolibrary.org/obo/BFO_0000140","A spatial region is a continuant entity that is a continuant_part_of spaceR as defined relative to some frame R. (axiom label in BFO2 Reference: [035-001])","All continuant parts of spatial regions are spatial regions. (axiom label in BFO2 Reference: [036-001])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x y t) (if (and (SpatialRegion x) (continuantPartOfAt y x t)) (SpatialRegion y))) // axiom label in BFO2 CLIF: [036-001] |(forall (x) (if (SpatialRegion x) (Continuant x))) // axiom label in BFO2 CLIF: [035-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000141","","http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","spatial region","","","DUO","SpatialRegion","BFO:0000006","BFO_0000006","","spatial region","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000008","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000008"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000008""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""t-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""TemporalRegion""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Temporal region doesn\u0027t have a closure axiom because the subclasses don\u0027t exhaust all possibilites. An example would be the mereological sum of a temporal instant and a temporal interval that doesn\u0027t overlap the instant. In this case the resultant temporal region is neither 0-dimensional nor 1-dimensional"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000003"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""}}]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A temporal region is an occurrent entity that is part of time as defined relative to some reference frame. (axiom label in BFO2 Reference: [100-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/100-001""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All parts of temporal regions are temporal regions. (axiom label in BFO2 Reference: [101-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/101-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every temporal region t is such that t occupies_temporal_region t. (axiom label in BFO2 Reference: [119-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/119-002""}]}],""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/119-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/101-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/100-001""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/BFO_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000035""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal region"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""t-region""},{""type"":[""literal""],""value"":""TemporalRegion""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Temporal region doesn\u0027t have a closure axiom because the subclasses don\u0027t exhaust all possibilites. An example would be the mereological sum of a temporal instant and a temporal interval that doesn\u0027t overlap the instant. In this case the resultant temporal region is neither 0-dimensional nor 1-dimensional"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000003"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A temporal region is an occurrent entity that is part of time as defined relative to some reference frame. (axiom label in BFO2 Reference: [100-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/100-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All parts of temporal regions are temporal regions. (axiom label in BFO2 Reference: [101-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/101-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every temporal region t is such that t occupies_temporal_region t. (axiom label in BFO2 Reference: [119-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/119-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/119-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/101-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/100-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000008""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatiotemporal region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000011""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000035"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000035""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000003","true","","Temporal region doesn't have a closure axiom because the subclasses don't exhaust all possibilites. An example would be the mereological sum of a temporal instant and a temporal interval that doesn't overlap the instant. In this case the resultant temporal region is neither 0-dimensional nor 1-dimensional","","","","t-region","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","2.0","","","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000035","A temporal region is an occurrent entity that is part of time as defined relative to some reference frame. (axiom label in BFO2 Reference: [100-001])","All parts of temporal regions are temporal regions. (axiom label in BFO2 Reference: [101-001])|Every temporal region t is such that t occupies_temporal_region t. (axiom label in BFO2 Reference: [119-002])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (r) (if (TemporalRegion r) (occupiesTemporalRegion r r))) // axiom label in BFO2 CLIF: [119-002] |(forall (x y) (if (and (TemporalRegion x) (occurrentPartOf y x)) (TemporalRegion y))) // axiom label in BFO2 CLIF: [101-001] |(forall (x) (if (TemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [100-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/BFO_0000008","http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","temporal region","","","DUO","TemporalRegion","BFO:0000008","BFO_0000008","","temporal region","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000009","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000009"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000009""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000006"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000006"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""2d-s-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""TwoDimensionalSpatialRegion""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an infinitely thin plane in space."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the surface of a sphere-shaped part of space"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A two-dimensional spatial region is a spatial region that is of two dimensions. (axiom label in BFO2 Reference: [039-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/039-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (TwoDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [039-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/039-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two-dimensional spatial region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000006"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000028"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two-dimensional spatial region"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""2d-s-region""},{""type"":[""literal""],""value"":""TwoDimensionalSpatialRegion""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an infinitely thin plane in space."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the surface of a sphere-shaped part of space"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A two-dimensional spatial region is a spatial region that is of two dimensions. (axiom label in BFO2 Reference: [039-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/039-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (TwoDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [039-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/039-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000009""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000006""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000028""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000006","true","","","","","","2d-s-region","","an infinitely thin plane in space.|the surface of a sphere-shaped part of space","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000006|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000028","A two-dimensional spatial region is a spatial region that is of two dimensions. (axiom label in BFO2 Reference: [039-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (TwoDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [039-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000006","","http://purl.obolibrary.org/obo/BFO_0000009","http://purl.obolibrary.org/obo/BFO_0000006|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","two-dimensional spatial region","","","DUO","TwoDimensionalSpatialRegion","BFO:0000009","BFO_0000009","","two-dimensional spatial region","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000011","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000011"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000011""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""st-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""SpatiotemporalRegion""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the spatiotemporal region occupied by a human life"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the spatiotemporal region occupied by a process of cellular meiosis."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the spatiotemporal region occupied by the development of a cancer tumor"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A spatiotemporal region is an occurrent entity that is part of spacetime. (axiom label in BFO2 Reference: [095-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/095-001""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All parts of spatiotemporal regions are spatiotemporal regions. (axiom label in BFO2 Reference: [096-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/096-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Each spatiotemporal region at any time t projects_onto some spatial region at t. (axiom label in BFO2 Reference: [099-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/099-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Each spatiotemporal region projects_onto some temporal region. (axiom label in BFO2 Reference: [098-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/098-001""}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every spatiotemporal region occupies_spatiotemporal_region itself."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every spatiotemporal region s is such that s occupies_spatiotemporal_region s. (axiom label in BFO2 Reference: [107-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/107-002""}]}],""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (r) (if (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion r r))) // axiom label in BFO2 CLIF: [107-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/107-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (SpatioTemporalRegion x) (exists (y) (and (SpatialRegion y) (spatiallyProjectsOntoAt x y t))))) // axiom label in BFO2 CLIF: [099-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/099-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (and (SpatioTemporalRegion x) (occurrentPartOf y x)) (SpatioTemporalRegion y))) // axiom label in BFO2 CLIF: [096-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/096-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (SpatioTemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [095-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/095-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (SpatioTemporalRegion x) (exists (y) (and (TemporalRegion y) (temporallyProjectsOnto x y))))) // axiom label in BFO2 CLIF: [098-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/098-001""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatiotemporal region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatiotemporal region"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""st-region""},{""type"":[""literal""],""value"":""SpatiotemporalRegion""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the spatiotemporal region occupied by a human life"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the spatiotemporal region occupied by a process of cellular meiosis."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the spatiotemporal region occupied by the development of a cancer tumor"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A spatiotemporal region is an occurrent entity that is part of spacetime. (axiom label in BFO2 Reference: [095-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/095-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All parts of spatiotemporal regions are spatiotemporal regions. (axiom label in BFO2 Reference: [096-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/096-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Each spatiotemporal region at any time t projects_onto some spatial region at t. (axiom label in BFO2 Reference: [099-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/099-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Each spatiotemporal region projects_onto some temporal region. (axiom label in BFO2 Reference: [098-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/098-001""}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every spatiotemporal region occupies_spatiotemporal_region itself."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every spatiotemporal region s is such that s occupies_spatiotemporal_region s. (axiom label in BFO2 Reference: [107-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/107-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (r) (if (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion r r))) // axiom label in BFO2 CLIF: [107-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/107-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (SpatioTemporalRegion x) (exists (y) (and (SpatialRegion y) (spatiallyProjectsOntoAt x y t))))) // axiom label in BFO2 CLIF: [099-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/099-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (and (SpatioTemporalRegion x) (occurrentPartOf y x)) (SpatioTemporalRegion y))) // axiom label in BFO2 CLIF: [096-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/096-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (SpatioTemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [095-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/095-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (SpatioTemporalRegion x) (exists (y) (and (TemporalRegion y) (temporallyProjectsOnto x y))))) // axiom label in BFO2 CLIF: [098-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/098-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000011""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000003","true","","","","","","st-region","","the spatiotemporal region occupied by a human life|the spatiotemporal region occupied by a process of cellular meiosis.|the spatiotemporal region occupied by the development of a cancer tumor","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","A spatiotemporal region is an occurrent entity that is part of spacetime. (axiom label in BFO2 Reference: [095-001])","All parts of spatiotemporal regions are spatiotemporal regions. (axiom label in BFO2 Reference: [096-001])|Each spatiotemporal region at any time t projects_onto some spatial region at t. (axiom label in BFO2 Reference: [099-001])|Each spatiotemporal region projects_onto some temporal region. (axiom label in BFO2 Reference: [098-001])|Every spatiotemporal region occupies_spatiotemporal_region itself.|Every spatiotemporal region s is such that s occupies_spatiotemporal_region s. (axiom label in BFO2 Reference: [107-002])","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (r) (if (SpatioTemporalRegion r) (occupiesSpatioTemporalRegion r r))) // axiom label in BFO2 CLIF: [107-002] |(forall (x t) (if (SpatioTemporalRegion x) (exists (y) (and (SpatialRegion y) (spatiallyProjectsOntoAt x y t))))) // axiom label in BFO2 CLIF: [099-001] |(forall (x y) (if (and (SpatioTemporalRegion x) (occurrentPartOf y x)) (SpatioTemporalRegion y))) // axiom label in BFO2 CLIF: [096-001] |(forall (x) (if (SpatioTemporalRegion x) (Occurrent x))) // axiom label in BFO2 CLIF: [095-001] |(forall (x) (if (SpatioTemporalRegion x) (exists (y) (and (TemporalRegion y) (temporallyProjectsOnto x y))))) // axiom label in BFO2 CLIF: [098-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/BFO_0000011","http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","spatiotemporal region","","","DUO","SpatiotemporalRegion","BFO:0000011","BFO_0000011","","spatiotemporal region","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000015","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000015"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""p is a process \u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/083-003""}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""process""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Process""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a process of cell-division, \\ a beating of the heart"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a process of meiosis"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a process of sleeping"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the course of a disease"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the flight of a bird"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the life of an organism"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""your process of aging."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""p is a process \u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/083-003""}]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/083-003""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""numDescendants"":28.0,""numHierarchicalDescendants"":28.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""process""},{""type"":[""literal""],""value"":""Process""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a process of cell-division, \\ a beating of the heart"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a process of meiosis"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a process of sleeping"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the course of a disease"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the flight of a bird"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the life of an organism"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""your process of aging."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""p is a process \u003d Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/083-003""}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/083-003""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000015""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","28.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000003","true","","BFO 2 Reference: The realm of occurrents is less pervasively marked by the presence of natural units than is the case in the realm of independent continuants. Thus there is here no counterpart of ‘object’. In BFO 1.0 ‘process’ served as such a counterpart. In BFO 2.0 ‘process’ is, rather, the occurrent counterpart of ‘material entity’. Those natural – as contrasted with engineered, which here means: deliberately executed – units which do exist in the realm of occurrents are typically either parasitic on the existence of natural units on the continuant side, or they are fiat in nature. Thus we can count lives; we can count football games; we can count chemical reactions performed in experiments or in chemical manufacturing. We cannot count the processes taking place, for instance, in an episode of insect mating behavior.Even where natural units are identifiable, for example cycles in a cyclical process such as the beating of a heart or an organism’s sleep/wake cycle, the processes in question form a sequence with no discontinuities (temporal gaps) of the sort that we find for instance where billiard balls or zebrafish or planets are separated by clear spatial gaps. Lives of organisms are process units, but they too unfold in a continuous series from other, prior processes such as fertilization, and they unfold in turn in continuous series of post-life processes such as post-mortem decay. Clear examples of boundaries of processes are almost always of the fiat sort (midnight, a time of death as declared in an operating theater or on a death certificate, the initiation of a state of war)","","","p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])","process","","a process of cell-division, \ a beating of the heart|a process of meiosis|a process of sleeping|the course of a disease|the flight of a bird|the life of an organism|your process of aging.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","28.0","","","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","(iff (Process a) (and (Occurrent a) (exists (b) (properTemporalPartOf b a)) (exists (c t) (and (MaterialEntity c) (specificallyDependsOnAt a c t))))) // axiom label in BFO2 CLIF: [083-003] ","","","","false","","p is a process = Def. p is an occurrent that has temporal proper parts and for some time t, p s-depends_on some material entity at t. (axiom label in BFO2 Reference: [083-003])","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","process","","","DUO","Process","BFO:0000015","BFO_0000015","","process","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000016","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000016"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000017"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000017"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""disposition""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Disposition""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an atom of element X has the disposition to decay to an atom of element Y"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""certain people have a predisposition to colon cancer"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""children are innately disposed to categorize objects in certain ways."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the cell wall is disposed to filter chemicals in endocytosis and exocytosis"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a disposition means: b is a realizable entity \u0026 b’s bearer is some material entity \u0026 b is such that if it ceases to exist, then its bearer is physically changed, \u0026 b’s realization occurs when and because this bearer is in some special physical circumstances, \u0026 this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/062-002""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""If b is a realizable entity then for all t at which b exists, b s-depends_on some material entity at t. (axiom label in BFO2 Reference: [063-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/063-002""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/063-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/062-002""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000017"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000023"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""disposition""},{""type"":[""literal""],""value"":""Disposition""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an atom of element X has the disposition to decay to an atom of element Y"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""certain people have a predisposition to colon cancer"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""children are innately disposed to categorize objects in certain ways."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the cell wall is disposed to filter chemicals in endocytosis and exocytosis"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a disposition means: b is a realizable entity \u0026 b’s bearer is some material entity \u0026 b is such that if it ceases to exist, then its bearer is physically changed, \u0026 b’s realization occurs when and because this bearer is in some special physical circumstances, \u0026 this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/062-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""If b is a realizable entity then for all t at which b exists, b s-depends_on some material entity at t. (axiom label in BFO2 Reference: [063-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/063-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/063-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/062-002""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000016""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000023""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000017","true","","BFO 2 Reference: Dispositions exist along a strength continuum. Weaker forms of disposition are realized in only a fraction of triggering cases. These forms occur in a significant number of cases of a similar type.","","","","disposition","","an atom of element X has the disposition to decay to an atom of element Y|certain people have a predisposition to colon cancer|children are innately disposed to categorize objects in certain ways.|the cell wall is disposed to filter chemicals in endocytosis and exocytosis","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","2.0","","","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000023","b is a disposition means: b is a realizable entity & b’s bearer is some material entity & b is such that if it ceases to exist, then its bearer is physically changed, & b’s realization occurs when and because this bearer is in some special physical circumstances, & this realization occurs in virtue of the bearer’s physical make-up. (axiom label in BFO2 Reference: [062-002])","If b is a realizable entity then for all t at which b exists, b s-depends_on some material entity at t. (axiom label in BFO2 Reference: [063-002])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x t) (if (and (RealizableEntity x) (existsAt x t)) (exists (y) (and (MaterialEntity y) (specificallyDepends x y t))))) // axiom label in BFO2 CLIF: [063-002] |(forall (x) (if (Disposition x) (and (RealizableEntity x) (exists (y) (and (MaterialEntity y) (bearerOfAt x y t)))))) // axiom label in BFO2 CLIF: [062-002] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000017","","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","disposition","","","DUO","Disposition","BFO:0000016","BFO_0000016","","disposition","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000017","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000017"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""realizable""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""RealizableEntity""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the disposition of this piece of metal to conduct electricity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the disposition of your blood to coagulate"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of your reproductive organs"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of being a doctor"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of this boundary to delineate where Utah and Colorado meet"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/058-002""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/060-002""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/060-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/058-002""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000020"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000019"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000033"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000017"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""realizable""},{""type"":[""literal""],""value"":""RealizableEntity""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the disposition of this piece of metal to conduct electricity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the disposition of your blood to coagulate"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of your reproductive organs"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of being a doctor"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of this boundary to delineate where Utah and Colorado meet"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/058-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/060-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/060-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/058-002""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000017""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000020","true","","","","","A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","realizable","","the disposition of this piece of metal to conduct electricity.|the disposition of your blood to coagulate|the function of your reproductive organs|the role of being a doctor|the role of this boundary to delineate where Utah and Colorado meet","","","","","","http://purl.obolibrary.org/obo/bfo.owl","http://purl.obolibrary.org/obo/IAO_0000033","5.0","","","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000019","To say that b is a realizable entity is to say that b is a specifically dependent continuant that inheres in some independent continuant which is not a spatial region and is of a type instances of which are realized in processes of a correlated type. (axiom label in BFO2 Reference: [058-002])","All realizable dependent continuants have independent continuants that are not spatial regions as their bearers. (axiom label in BFO2 Reference: [060-002])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x t) (if (RealizableEntity x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (bearerOfAt y x t))))) // axiom label in BFO2 CLIF: [060-002] |(forall (x) (if (RealizableEntity x) (and (SpecificallyDependentContinuant x) (exists (y) (and (IndependentContinuant y) (not (SpatialRegion y)) (inheresIn x y)))))) // axiom label in BFO2 CLIF: [058-002] ","","","","false","","A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000020","","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","realizable entity","","","DUO","RealizableEntity","BFO:0000017","BFO_0000017","","realizable entity","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000018","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000018"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000018""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000006"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000006"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""0d-s-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ZeroDimensionalSpatialRegion""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A zero-dimensional spatial region is a point in space. (axiom label in BFO2 Reference: [037-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/037-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ZeroDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [037-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/037-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional spatial region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000006"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000028"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional spatial region"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/IAO_0000219"",""value"":""http://purl.obolibrary.org/obo/IAO_0000400"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000219"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000018"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/IAO_0000219"",""value"":""http://purl.obolibrary.org/obo/IAO_0000401"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000026"",""isObsolete"":false}]},{""property"":""http://purl.obolibrary.org/obo/IAO_0000219"",""value"":""http://purl.obolibrary.org/obo/IAO_0000402"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000009"",""isObsolete"":false}]},{""property"":""http://purl.obolibrary.org/obo/IAO_0000219"",""value"":""http://purl.obolibrary.org/obo/IAO_0000403"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000028"",""isObsolete"":false}]}],""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""0d-s-region""},{""type"":[""literal""],""value"":""ZeroDimensionalSpatialRegion""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A zero-dimensional spatial region is a point in space. (axiom label in BFO2 Reference: [037-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/037-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ZeroDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [037-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/037-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000018""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000006""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000402"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two dimensional cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000402""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000403"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three dimensional cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000403""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000401"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one dimensional cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000401""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000219"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000026""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000028""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000006","true","","","","","","0d-s-region","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","http://purl.obolibrary.org/obo/IAO_0000400|http://purl.obolibrary.org/obo/IAO_0000401|http://purl.obolibrary.org/obo/IAO_0000402|http://purl.obolibrary.org/obo/IAO_0000403","0.0","","","http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000006|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000028","A zero-dimensional spatial region is a point in space. (axiom label in BFO2 Reference: [037-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (ZeroDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [037-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000006","","http://purl.obolibrary.org/obo/BFO_0000018","http://purl.obolibrary.org/obo/BFO_0000006|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","zero-dimensional spatial region","","","DUO","ZeroDimensionalSpatialRegion","BFO:0000018","BFO_0000018","","zero-dimensional spatial region","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000019","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000019"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000020"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""quality""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Quality""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the ambient temperature of this portion of air"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the color of a tomato"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the length of the circumference of your waist"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the mass of this piece of gold."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the shape of your nose"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the shape of your nostril"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/055-001""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""If an entity is a quality at any time that it exists, then it is a quality at every time that it exists. (axiom label in BFO2 Reference: [105-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/105-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/055-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/105-001""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000020"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""numDescendants"":7.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""quality""},{""type"":[""literal""],""value"":""Quality""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the ambient temperature of this portion of air"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the color of a tomato"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the length of the circumference of your waist"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the mass of this piece of gold."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the shape of your nose"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the shape of your nostril"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/055-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""If an entity is a quality at any time that it exists, then it is a quality at every time that it exists. (axiom label in BFO2 Reference: [105-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/105-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/055-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/105-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000019""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000020","true","","","","","","quality","","the ambient temperature of this portion of air|the color of a tomato|the length of the circumference of your waist|the mass of this piece of gold.|the shape of your nose|the shape of your nostril","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","7.0","","","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","a quality is a specifically dependent continuant that, in contrast to roles and dispositions, does not require any further process in order to be realized. (axiom label in BFO2 Reference: [055-001])","If an entity is a quality at any time that it exists, then it is a quality at every time that it exists. (axiom label in BFO2 Reference: [105-001])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x) (if (Quality x) (SpecificallyDependentContinuant x))) // axiom label in BFO2 CLIF: [055-001] |(forall (x) (if (exists (t) (and (existsAt x t) (Quality x))) (forall (t_1) (if (existsAt x t_1) (Quality x))))) // axiom label in BFO2 CLIF: [105-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000020","","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","quality","","","DUO","Quality","BFO:0000019","BFO_0000019","","quality","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000020","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000020"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a specifically dependent continuant \u003d Def. b is a continuant \u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/050-003""}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""sdc""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""SpecificallyDependentContinuant""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""of one-sided specifically dependent continuants: the mass of this tomato"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the disposition of this fish to decay"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of this heart: to pump blood"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the mutual dependence of proton donors and acceptors in chemical reactions [79"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the pink color of a medium rare piece of grilled filet mignon at its center"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of being a doctor"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the shape of this hole."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the smell of this portion of mozzarella"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a specifically dependent continuant \u003d Def. b is a continuant \u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/050-003""}]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Specifically dependent continuant doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. We\u0027re not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000005"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""}}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/050-003""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000031"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""numDescendants"":14.0,""numHierarchicalDescendants"":14.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""sdc""},{""type"":[""literal""],""value"":""SpecificallyDependentContinuant""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""of one-sided specifically dependent continuants: the mass of this tomato"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the disposition of this fish to decay"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of this heart: to pump blood"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the mutual dependence of proton donors and acceptors in chemical reactions [79"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the pink color of a medium rare piece of grilled filet mignon at its center"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of being a doctor"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the shape of this hole."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the smell of this portion of mozzarella"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a specifically dependent continuant \u003d Def. b is a continuant \u0026 there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/050-003""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Specifically dependent continuant doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. We\u0027re not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000005"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""per discussion with Barry Smith""}}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/050-003""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000020""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","14.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000002","true","","Specifically dependent continuant doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. We're not sure what else will develop here, but for example there are questions such as what are promises, obligation, etc.","","","b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])","sdc","","Reciprocal specifically dependent continuants: the function of this key to open this lock and the mutually dependent disposition of this lock: to be opened by this key|of one-sided specifically dependent continuants: the mass of this tomato|of relational dependent continuants (multiple bearers): John’s love for Mary, the ownership relation between John and this statue, the relation of authority between John and his subordinates.|the disposition of this fish to decay|the function of this heart: to pump blood|the mutual dependence of proton donors and acceptors in chemical reactions [79|the mutual dependence of the role predator and the role prey as played by two organisms in a given interaction|the pink color of a medium rare piece of grilled filet mignon at its center|the role of being a doctor|the shape of this hole.|the smell of this portion of mozzarella","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","14.0","","","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000031","","","","http://www.w3.org/2002/07/owl#Class","true","true","","(iff (SpecificallyDependentContinuant a) (and (Continuant a) (forall (t) (if (existsAt a t) (exists (b) (and (IndependentContinuant b) (not (SpatialRegion b)) (specificallyDependsOnAt a b t))))))) // axiom label in BFO2 CLIF: [050-003] ","","","","false","","b is a specifically dependent continuant = Def. b is a continuant & there is some independent continuant c which is not a spatial region and which is such that b s-depends_on c at every time t during the course of b’s existence. (axiom label in BFO2 Reference: [050-003])","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","specifically dependent continuant","","","DUO","SpecificallyDependentContinuant","BFO:0000020","BFO_0000020","","specifically dependent continuant","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000023","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000023"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000023""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000017"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000017"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""role""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Role""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the priest role"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of a boundary to demarcate two neighboring administrative territories"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of a building in serving as a military target"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of a stone in marking a property boundary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of subject in a clinical trial"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the student role"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \u003dDef. there is some c, c instance_of professor role \u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a role means: b is a realizable entity \u0026 b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be\u0026 b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/061-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/061-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000017"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""role""},{""type"":[""literal""],""value"":""Role""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the priest role"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of a boundary to demarcate two neighboring administrative territories"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of a building in serving as a military target"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of a stone in marking a property boundary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the role of subject in a clinical trial"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the student role"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t \u003dDef. there is some c, c instance_of professor role \u0026 c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a role means: b is a realizable entity \u0026 b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be\u0026 b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/061-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/061-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000023""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000017","true","","BFO 2 Reference: One major family of examples of non-rigid universals involves roles, and ontologies developed for corresponding administrative purposes may consist entirely of representatives of entities of this sort. Thus ‘professor’, defined as follows,b instance_of professor at t =Def. there is some c, c instance_of professor role & c inheres_in b at t.denotes a non-rigid universal and so also do ‘nurse’, ‘student’, ‘colonel’, ‘taxpayer’, and so forth. (These terms are all, in the jargon of philosophy, phase sortals.) By using role terms in definitions, we can create a BFO conformant treatment of such entities drawing on the fact that, while an instance of professor may be simultaneously an instance of trade union member, no instance of the type professor role is also (at any time) an instance of the type trade union member role (any more than any instance of the type color is at any time an instance of the type length).If an ontology of employment positions should be defined in terms of roles following the above pattern, this enables the ontology to do justice to the fact that individuals instantiate the corresponding universals – professor, sergeant, nurse – only during certain phases in their lives.","","","A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","role","","John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.|the priest role|the role of a boundary to demarcate two neighboring administrative territories|the role of a building in serving as a military target|the role of a stone in marking a property boundary|the role of subject in a clinical trial|the student role","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","1.0","","","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","b is a role means: b is a realizable entity & b exists because there is some single bearer that is in some special physical, social, or institutional set of circumstances in which this bearer does not have to be& b is not such that, if it ceases to exist, then the physical make-up of the bearer is thereby changed. (axiom label in BFO2 Reference: [061-001])","","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x) (if (Role x) (RealizableEntity x))) // axiom label in BFO2 CLIF: [061-001] ","","","","false","","A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000017","","http://purl.obolibrary.org/obo/BFO_0000023","http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","role","","","DUO","Role","BFO:0000023","BFO_0000023","","role","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000024","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000024"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000024""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000040"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000040"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""fiat-object-part""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""FiatObjectPart""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""or with divisions drawn by cognitive subjects for practical reasons, such as the division of a cake (before slicing) into (what will become) slices (and thus member parts of an object aggregate). However, this does not mean that fiat object parts are dependent for their existence on divisions or delineations effected by cognitive subjects. If, for example, it is correct to conceive geological layers of the Earth as fiat object parts of the Earth, then even though these layers were first delineated in recent times, still existed long before such delineation and what holds of these layers (for example that the oldest layers are also the lowest layers) did not begin to hold because of our acts of delineation.Treatment of material entity in BFOExamples viewed by some as problematic cases for the trichotomy of fiat object part, object, and object aggregate include: a mussel on (and attached to) a rock, a slime mold, a pizza, a cloud, a galaxy, a railway train with engine and multiple carriages, a clonal stand of quaking aspen, a bacterial community (biofilm), a broken femur. Note that, as Aristotle already clearly recognized, such problematic cases – which lie at or near the penumbra of instances defined by the categories in question – need not invalidate these categories. The existence of grey objects does not prove that there are not objects which are black and objects which are white; the existence of mules does not prove that there are not objects which are donkeys and objects which are horses. It does, however, show that the examples in question need to be addressed carefully in order to show how they can be fitted into the proposed scheme, for example by recognizing additional subdivisions [29"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the FMA:regional parts of an intact human body."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the Western hemisphere of the Earth"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the division of the brain into regions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the division of the planet into hemispheres"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the dorsal and ventral surfaces of the body"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the upper and lower lobes of the left lung"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Most examples of fiat object parts are associated with theoretically drawn divisions"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a fiat object part \u003d Def. b is a material entity which is such that for all times t, if b exists at t then there is some object c such that b proper continuant_part of c at t and c is demarcated from the remainder of c by a two-dimensional continuant fiat boundary. (axiom label in BFO2 Reference: [027-004])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/027-004""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (FiatObjectPart x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y) (and (Object y) (properContinuantPartOfAt x y t)))))))) // axiom label in BFO2 CLIF: [027-004] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/027-004""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""fiat object part"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000040"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""fiat object part"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""fiat-object-part""},{""type"":[""literal""],""value"":""FiatObjectPart""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""or with divisions drawn by cognitive subjects for practical reasons, such as the division of a cake (before slicing) into (what will become) slices (and thus member parts of an object aggregate). However, this does not mean that fiat object parts are dependent for their existence on divisions or delineations effected by cognitive subjects. If, for example, it is correct to conceive geological layers of the Earth as fiat object parts of the Earth, then even though these layers were first delineated in recent times, still existed long before such delineation and what holds of these layers (for example that the oldest layers are also the lowest layers) did not begin to hold because of our acts of delineation.Treatment of material entity in BFOExamples viewed by some as problematic cases for the trichotomy of fiat object part, object, and object aggregate include: a mussel on (and attached to) a rock, a slime mold, a pizza, a cloud, a galaxy, a railway train with engine and multiple carriages, a clonal stand of quaking aspen, a bacterial community (biofilm), a broken femur. Note that, as Aristotle already clearly recognized, such problematic cases – which lie at or near the penumbra of instances defined by the categories in question – need not invalidate these categories. The existence of grey objects does not prove that there are not objects which are black and objects which are white; the existence of mules does not prove that there are not objects which are donkeys and objects which are horses. It does, however, show that the examples in question need to be addressed carefully in order to show how they can be fitted into the proposed scheme, for example by recognizing additional subdivisions [29"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the FMA:regional parts of an intact human body."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the Western hemisphere of the Earth"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the division of the brain into regions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the division of the planet into hemispheres"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the dorsal and ventral surfaces of the body"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the upper and lower lobes of the left lung"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Most examples of fiat object parts are associated with theoretically drawn divisions"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a fiat object part \u003d Def. b is a material entity which is such that for all times t, if b exists at t then there is some object c such that b proper continuant_part of c at t and c is demarcated from the remainder of c by a two-dimensional continuant fiat boundary. (axiom label in BFO2 Reference: [027-004])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/027-004""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (FiatObjectPart x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y) (and (Object y) (properContinuantPartOfAt x y t)))))))) // axiom label in BFO2 CLIF: [027-004] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/027-004""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000024""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000040","true","","BFO 2 Reference: Most examples of fiat object parts are associated with theoretically drawn divisions","","","","fiat-object-part","","or with divisions drawn by cognitive subjects for practical reasons, such as the division of a cake (before slicing) into (what will become) slices (and thus member parts of an object aggregate). However, this does not mean that fiat object parts are dependent for their existence on divisions or delineations effected by cognitive subjects. If, for example, it is correct to conceive geological layers of the Earth as fiat object parts of the Earth, then even though these layers were first delineated in recent times, still existed long before such delineation and what holds of these layers (for example that the oldest layers are also the lowest layers) did not begin to hold because of our acts of delineation.Treatment of material entity in BFOExamples viewed by some as problematic cases for the trichotomy of fiat object part, object, and object aggregate include: a mussel on (and attached to) a rock, a slime mold, a pizza, a cloud, a galaxy, a railway train with engine and multiple carriages, a clonal stand of quaking aspen, a bacterial community (biofilm), a broken femur. Note that, as Aristotle already clearly recognized, such problematic cases – which lie at or near the penumbra of instances defined by the categories in question – need not invalidate these categories. The existence of grey objects does not prove that there are not objects which are black and objects which are white; the existence of mules does not prove that there are not objects which are donkeys and objects which are horses. It does, however, show that the examples in question need to be addressed carefully in order to show how they can be fitted into the proposed scheme, for example by recognizing additional subdivisions [29|the FMA:regional parts of an intact human body.|the Western hemisphere of the Earth|the division of the brain into regions|the division of the planet into hemispheres|the dorsal and ventral surfaces of the body|the upper and lower lobes of the left lung","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","b is a fiat object part = Def. b is a material entity which is such that for all times t, if b exists at t then there is some object c such that b proper continuant_part of c at t and c is demarcated from the remainder of c by a two-dimensional continuant fiat boundary. (axiom label in BFO2 Reference: [027-004])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (FiatObjectPart x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y) (and (Object y) (properContinuantPartOfAt x y t)))))))) // axiom label in BFO2 CLIF: [027-004] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000040","","http://purl.obolibrary.org/obo/BFO_0000024","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","fiat object part","","","DUO","FiatObjectPart","BFO:0000024","BFO_0000024","","fiat object part","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000026","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000026"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000026""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000006"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000006"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""1d-s-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""OneDimensionalSpatialRegion""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an edge of a cube-shaped portion of space."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A one-dimensional spatial region is a line or aggregate of lines stretching from one point in space to another. (axiom label in BFO2 Reference: [038-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/038-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (OneDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [038-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/038-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one-dimensional spatial region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000006"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000028"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one-dimensional spatial region"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""1d-s-region""},{""type"":[""literal""],""value"":""OneDimensionalSpatialRegion""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an edge of a cube-shaped portion of space."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A one-dimensional spatial region is a line or aggregate of lines stretching from one point in space to another. (axiom label in BFO2 Reference: [038-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/038-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (OneDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [038-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/038-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000026""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000006""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000028""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000006","true","","","","","","1d-s-region","","an edge of a cube-shaped portion of space.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000006|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000028","A one-dimensional spatial region is a line or aggregate of lines stretching from one point in space to another. (axiom label in BFO2 Reference: [038-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (OneDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [038-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000006","","http://purl.obolibrary.org/obo/BFO_0000026","http://purl.obolibrary.org/obo/BFO_0000006|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","one-dimensional spatial region","","","DUO","OneDimensionalSpatialRegion","BFO:0000026","BFO_0000026","","one-dimensional spatial region","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000027","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000027"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000027""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000040"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000040"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""object-aggregate""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ObjectAggregate""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a collection of cells in a blood biobank."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a swarm of bees is an aggregate of members who are linked together through natural bonds"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a symphony orchestra"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an organization is an aggregate whose member parts have roles of specific types (for example in a jazz band, a chess club, a football team)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined by fiat: the aggregate of members of an organization"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined through physical attachment: the aggregate of atoms in a lump of granite"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined through physical containment: the aggregate of molecules of carbon dioxide in a sealed container"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined via attributive delimitations such as: the patients in this hospital"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the aggregate of bearings in a constant velocity axle joint"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the aggregate of blood cells in your body"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the nitrogen atoms in the atmosphere"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the restaurants in Palo Alto"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""your collection of Meissen ceramic plates."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000011""},{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000301""}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: object aggregates may gain and lose parts while remaining numerically identical (one and the same individual) over time. This holds both for aggregates whose membership is determined naturally (the aggregate of cells in your body) and aggregates determined by fiat (a baseball team, a congressional committee)."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ISBN:978-3-938793-98-5pp124-158#Thomas Bittner and Barry Smith, \u0027A Theory of Granular Partitions\u0027, in K. Munn and B. Smith (eds.), Applied Ontology: An Introduction, Frankfurt/Lancaster: ontos, 2008, 125-158.""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000300""}]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an object aggregate means: b is a material entity consisting exactly of a plurality of objects as member_parts at all times at which b exists. (axiom label in BFO2 Reference: [025-004])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/025-004""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (\u003d y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/025-004""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""object aggregate"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000040"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""object aggregate"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""object-aggregate""},{""type"":[""literal""],""value"":""ObjectAggregate""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a collection of cells in a blood biobank."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a swarm of bees is an aggregate of members who are linked together through natural bonds"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a symphony orchestra"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an organization is an aggregate whose member parts have roles of specific types (for example in a jazz band, a chess club, a football team)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined by fiat: the aggregate of members of an organization"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined through physical attachment: the aggregate of atoms in a lump of granite"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined through physical containment: the aggregate of molecules of carbon dioxide in a sealed container"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined via attributive delimitations such as: the patients in this hospital"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the aggregate of bearings in a constant velocity axle joint"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the aggregate of blood cells in your body"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the nitrogen atoms in the atmosphere"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the restaurants in Palo Alto"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""your collection of Meissen ceramic plates."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000011""},{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000301""}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: object aggregates may gain and lose parts while remaining numerically identical (one and the same individual) over time. This holds both for aggregates whose membership is determined naturally (the aggregate of cells in your body) and aggregates determined by fiat (a baseball team, a congressional committee)."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""ISBN:978-3-938793-98-5pp124-158#Thomas Bittner and Barry Smith, \u0027A Theory of Granular Partitions\u0027, in K. Munn and B. Smith (eds.), Applied Ontology: An Introduction, Frankfurt/Lancaster: ontos, 2008, 125-158.""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000300""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an object aggregate means: b is a material entity consisting exactly of a plurality of objects as member_parts at all times at which b exists. (axiom label in BFO2 Reference: [025-004])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/025-004""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (\u003d y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/025-004""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000027""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""ISBN:978"":{""url"":""https://www.worldcat.org/search?q\u003dbn%3A978"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ISBN:978""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000040","true","","An entity a is an object aggregate if and only if there is a mutually exhaustive and pairwise disjoint partition of a into objects |BFO 2 Reference: object aggregates may gain and lose parts while remaining numerically identical (one and the same individual) over time. This holds both for aggregates whose membership is determined naturally (the aggregate of cells in your body) and aggregates determined by fiat (a baseball team, a congressional committee).","","","","object-aggregate","","a collection of cells in a blood biobank.|a swarm of bees is an aggregate of members who are linked together through natural bonds|a symphony orchestra|an organization is an aggregate whose member parts have roles of specific types (for example in a jazz band, a chess club, a football team)|defined by fiat: the aggregate of members of an organization|defined through physical attachment: the aggregate of atoms in a lump of granite|defined through physical containment: the aggregate of molecules of carbon dioxide in a sealed container|defined via attributive delimitations such as: the patients in this hospital|the aggregate of bearings in a constant velocity axle joint|the aggregate of blood cells in your body|the nitrogen atoms in the atmosphere|the restaurants in Palo Alto|your collection of Meissen ceramic plates.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","ISBN:978-3-938793-98-5pp124-158#Thomas Bittner and Barry Smith, 'A Theory of Granular Partitions', in K. Munn and B. Smith (eds.), Applied Ontology: An Introduction, Frankfurt/Lancaster: ontos, 2008, 125-158.","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","b is an object aggregate means: b is a material entity consisting exactly of a plurality of objects as member_parts at all times at which b exists. (axiom label in BFO2 Reference: [025-004])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (ObjectAggregate x) (and (MaterialEntity x) (forall (t) (if (existsAt x t) (exists (y z) (and (Object y) (Object z) (memberPartOfAt y x t) (memberPartOfAt z x t) (not (= y z)))))) (not (exists (w t_1) (and (memberPartOfAt w x t_1) (not (Object w)))))))) // axiom label in BFO2 CLIF: [025-004] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000040","","http://purl.obolibrary.org/obo/BFO_0000027","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","object aggregate","","","DUO","ObjectAggregate","BFO:0000027","BFO_0000027","","object aggregate","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000028","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000028"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000028""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000006"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000006"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""3d-s-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ThreeDimensionalSpatialRegion""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a cube-shaped region of space"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a sphere-shaped region of space,"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A three-dimensional spatial region is a spatial region that is of three dimensions. (axiom label in BFO2 Reference: [040-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/040-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ThreeDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [040-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/040-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three-dimensional spatial region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000006"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three-dimensional spatial region"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""3d-s-region""},{""type"":[""literal""],""value"":""ThreeDimensionalSpatialRegion""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a cube-shaped region of space"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a sphere-shaped region of space,"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A three-dimensional spatial region is a spatial region that is of three dimensions. (axiom label in BFO2 Reference: [040-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/040-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ThreeDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [040-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/040-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000028""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000006""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000006","true","","","","","","3d-s-region","","a cube-shaped region of space|a sphere-shaped region of space,","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000006","http://purl.obolibrary.org/obo/BFO_0000006|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","A three-dimensional spatial region is a spatial region that is of three dimensions. (axiom label in BFO2 Reference: [040-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (ThreeDimensionalSpatialRegion x) (SpatialRegion x))) // axiom label in BFO2 CLIF: [040-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000006","","http://purl.obolibrary.org/obo/BFO_0000028","http://purl.obolibrary.org/obo/BFO_0000006|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","three-dimensional spatial region","","","DUO","ThreeDimensionalSpatialRegion","BFO:0000028","BFO_0000028","","three-dimensional spatial region","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000029","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000029"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000029""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000141"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000141"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""site""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Site""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Manhattan Canyon)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a hole in the interior of a portion of cheese"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a rabbit hole"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an air traffic control region defined in the airspace above an airport"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the Grand Canyon"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the Piazza San Marco"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the cockpit of an aircraft"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the hold of a ship"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of a kangaroo pouch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of the trunk of your car"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of your bedroom"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of your office"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of your refrigerator"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the lumen of your gut"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""your left nostril (a fiat part – the opening – of your left nasal cavity)"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a site means: b is a three-dimensional immaterial entity that is (partially or wholly) bounded by a material entity or it is a three-dimensional immaterial part thereof. (axiom label in BFO2 Reference: [034-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/034-002""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/034-002""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""site"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000141"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""site"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""site""},{""type"":[""literal""],""value"":""Site""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Manhattan Canyon)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a hole in the interior of a portion of cheese"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a rabbit hole"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an air traffic control region defined in the airspace above an airport"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the Grand Canyon"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the Piazza San Marco"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the cockpit of an aircraft"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the hold of a ship"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of a kangaroo pouch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of the trunk of your car"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of your bedroom"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of your office"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the interior of your refrigerator"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the lumen of your gut"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""your left nostril (a fiat part – the opening – of your left nasal cavity)"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a site means: b is a three-dimensional immaterial entity that is (partially or wholly) bounded by a material entity or it is a three-dimensional immaterial part thereof. (axiom label in BFO2 Reference: [034-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/034-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/034-002""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000029""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000141","true","","","","","","site","","Manhattan Canyon)|a hole in the interior of a portion of cheese|a rabbit hole|an air traffic control region defined in the airspace above an airport|the Grand Canyon|the Piazza San Marco|the cockpit of an aircraft|the hold of a ship|the interior of a kangaroo pouch|the interior of the trunk of your car|the interior of your bedroom|the interior of your office|the interior of your refrigerator|the lumen of your gut|your left nostril (a fiat part – the opening – of your left nasal cavity)","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","1.0","","","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","b is a site means: b is a three-dimensional immaterial entity that is (partially or wholly) bounded by a material entity or it is a three-dimensional immaterial part thereof. (axiom label in BFO2 Reference: [034-002])","","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x) (if (Site x) (ImmaterialEntity x))) // axiom label in BFO2 CLIF: [034-002] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000141","","http://purl.obolibrary.org/obo/BFO_0000029","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","site","","","DUO","Site","BFO:0000029","BFO_0000029","","site","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000030","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000030"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000030""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000040"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000040"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""object""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Object""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""atom"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cell"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cells and organisms"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""engineered artifacts"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""grain of sand"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""molecule"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organelle"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organism"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planet"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""solid portions of matter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""star"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: BFO rests on the presupposition that at multiple micro-, meso- and macroscopic scales reality exhibits certain stable, spatially separated or separable material units, combined or combinable into aggregates of various sorts (for example organisms into what are called ‘populations’). Such units play a central role in almost all domains of natural science from particle physics to cosmology. Many scientific laws govern the units in question, employing general terms (such as ‘molecule’ or ‘planet’) referring to the types and subtypes of units, and also to the types and subtypes of the processes through which such units develop and interact. The division of reality into such natural units is at the heart of biological science, as also is the fact that these units may form higher-level units (as cells form multicellular organisms) and that they may also form aggregates of units, for example as cells form portions of tissue and organs form families, herds, breeds, species, and so on. At the same time, the division of certain portions of reality into engineered units (manufactured artifacts) is the basis of modern industrial technology, which rests on the distributed mass production of engineered parts through division of labor and on their assembly into larger, compound units such as cars and laptops. The division of portions of reality into units is one starting point for the phenomenon of counting."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Each object is such that there are entities of which we can assert unproblematically that they lie in its interior, and other entities of which we can assert unproblematically that they lie in its exterior. This may not be so for entities lying at or near the boundary between the interior and exterior. This means that two objects – for example the two cells depicted in Figure 3 – may be such that there are material entities crossing their boundaries which belong determinately to neither cell. Something similar obtains in certain cases of conjoined twins (see below)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: To say that b is causally unified means: b is a material entity which is such that its material parts are tied together in such a way that, in environments typical for entities of the type in question,if c, a continuant part of b that is in the interior of b at t, is larger than a certain threshold size (which will be determined differently from case to case, depending on factors such as porosity of external cover) and is moved in space to be at t at a location on the exterior of the spatial region that had been occupied by b at t, then either b’s other parts will be moved in coordinated fashion or b will be damaged (be affected, for example, by breakage or tearing) in the interval between t and t.causal changes in one part of b can have consequences for other parts of b without the mediation of any entity that lies on the exterior of b. Material entities with no proper material parts would satisfy these conditions trivially. Candidate examples of types of causal unity for material entities of more complex sorts are as follows (this is not intended to be an exhaustive list):CU1: Causal unity via physical coveringHere the parts in the interior of the unified entity are combined together causally through a common membrane or other physical covering\\. The latter points outwards toward and may serve a protective function in relation to what lies on the exterior of the entity [13, 47"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: an object is a maximal causally unified material entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: ‘objects’ are sometimes referred to as ‘grains’ [74"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an object means: b is a material entity which manifests causal unity of one or other of the types CUn listed above \u0026 is of a type (a material universal) instances of which are maximal relative to this criterion of causal unity. (axiom label in BFO2 Reference: [024-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/024-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""object"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000040"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""object"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""object""},{""type"":[""literal""],""value"":""Object""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""atom"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cell"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cells and organisms"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""engineered artifacts"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""grain of sand"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""molecule"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organelle"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organism"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planet"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""solid portions of matter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""star"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: BFO rests on the presupposition that at multiple micro-, meso- and macroscopic scales reality exhibits certain stable, spatially separated or separable material units, combined or combinable into aggregates of various sorts (for example organisms into what are called ‘populations’). Such units play a central role in almost all domains of natural science from particle physics to cosmology. Many scientific laws govern the units in question, employing general terms (such as ‘molecule’ or ‘planet’) referring to the types and subtypes of units, and also to the types and subtypes of the processes through which such units develop and interact. The division of reality into such natural units is at the heart of biological science, as also is the fact that these units may form higher-level units (as cells form multicellular organisms) and that they may also form aggregates of units, for example as cells form portions of tissue and organs form families, herds, breeds, species, and so on. At the same time, the division of certain portions of reality into engineered units (manufactured artifacts) is the basis of modern industrial technology, which rests on the distributed mass production of engineered parts through division of labor and on their assembly into larger, compound units such as cars and laptops. The division of portions of reality into units is one starting point for the phenomenon of counting."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Each object is such that there are entities of which we can assert unproblematically that they lie in its interior, and other entities of which we can assert unproblematically that they lie in its exterior. This may not be so for entities lying at or near the boundary between the interior and exterior. This means that two objects – for example the two cells depicted in Figure 3 – may be such that there are material entities crossing their boundaries which belong determinately to neither cell. Something similar obtains in certain cases of conjoined twins (see below)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: To say that b is causally unified means: b is a material entity which is such that its material parts are tied together in such a way that, in environments typical for entities of the type in question,if c, a continuant part of b that is in the interior of b at t, is larger than a certain threshold size (which will be determined differently from case to case, depending on factors such as porosity of external cover) and is moved in space to be at t at a location on the exterior of the spatial region that had been occupied by b at t, then either b’s other parts will be moved in coordinated fashion or b will be damaged (be affected, for example, by breakage or tearing) in the interval between t and t.causal changes in one part of b can have consequences for other parts of b without the mediation of any entity that lies on the exterior of b. Material entities with no proper material parts would satisfy these conditions trivially. Candidate examples of types of causal unity for material entities of more complex sorts are as follows (this is not intended to be an exhaustive list):CU1: Causal unity via physical coveringHere the parts in the interior of the unified entity are combined together causally through a common membrane or other physical covering\\. The latter points outwards toward and may serve a protective function in relation to what lies on the exterior of the entity [13, 47"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: an object is a maximal causally unified material entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: ‘objects’ are sometimes referred to as ‘grains’ [74"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is an object means: b is a material entity which manifests causal unity of one or other of the types CUn listed above \u0026 is of a type (a material universal) instances of which are maximal relative to this criterion of causal unity. (axiom label in BFO2 Reference: [024-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/024-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000030""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000040","true","","BFO 2 Reference: BFO rests on the presupposition that at multiple micro-, meso- and macroscopic scales reality exhibits certain stable, spatially separated or separable material units, combined or combinable into aggregates of various sorts (for example organisms into what are called ‘populations’). Such units play a central role in almost all domains of natural science from particle physics to cosmology. Many scientific laws govern the units in question, employing general terms (such as ‘molecule’ or ‘planet’) referring to the types and subtypes of units, and also to the types and subtypes of the processes through which such units develop and interact. The division of reality into such natural units is at the heart of biological science, as also is the fact that these units may form higher-level units (as cells form multicellular organisms) and that they may also form aggregates of units, for example as cells form portions of tissue and organs form families, herds, breeds, species, and so on. At the same time, the division of certain portions of reality into engineered units (manufactured artifacts) is the basis of modern industrial technology, which rests on the distributed mass production of engineered parts through division of labor and on their assembly into larger, compound units such as cars and laptops. The division of portions of reality into units is one starting point for the phenomenon of counting.|BFO 2 Reference: Each object is such that there are entities of which we can assert unproblematically that they lie in its interior, and other entities of which we can assert unproblematically that they lie in its exterior. This may not be so for entities lying at or near the boundary between the interior and exterior. This means that two objects – for example the two cells depicted in Figure 3 – may be such that there are material entities crossing their boundaries which belong determinately to neither cell. Something similar obtains in certain cases of conjoined twins (see below).|BFO 2 Reference: To say that b is causally unified means: b is a material entity which is such that its material parts are tied together in such a way that, in environments typical for entities of the type in question,if c, a continuant part of b that is in the interior of b at t, is larger than a certain threshold size (which will be determined differently from case to case, depending on factors such as porosity of external cover) and is moved in space to be at t at a location on the exterior of the spatial region that had been occupied by b at t, then either b’s other parts will be moved in coordinated fashion or b will be damaged (be affected, for example, by breakage or tearing) in the interval between t and t.causal changes in one part of b can have consequences for other parts of b without the mediation of any entity that lies on the exterior of b. Material entities with no proper material parts would satisfy these conditions trivially. Candidate examples of types of causal unity for material entities of more complex sorts are as follows (this is not intended to be an exhaustive list):CU1: Causal unity via physical coveringHere the parts in the interior of the unified entity are combined together causally through a common membrane or other physical covering\. The latter points outwards toward and may serve a protective function in relation to what lies on the exterior of the entity [13, 47|BFO 2 Reference: an object is a maximal causally unified material entity|BFO 2 Reference: ‘objects’ are sometimes referred to as ‘grains’ [74","","","","object","","atom|cell|cells and organisms|engineered artifacts|grain of sand|molecule|organelle|organism|planet|solid portions of matter|star","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","b is an object means: b is a material entity which manifests causal unity of one or other of the types CUn listed above & is of a type (a material universal) instances of which are maximal relative to this criterion of causal unity. (axiom label in BFO2 Reference: [024-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000040","","http://purl.obolibrary.org/obo/BFO_0000030","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","object","","","DUO","Object","BFO:0000030","BFO_0000030","","object","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000031","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000031"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a generically dependent continuant \u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/074-001""}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000002"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""gdc""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""GenericallyDependentContinuant""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the pdf file on your laptop, the pdf file that is a copy thereof on my laptop"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a generically dependent continuant \u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/074-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/074-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000002"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""numDescendants"":230.0,""numHierarchicalDescendants"":212.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""gdc""},{""type"":[""literal""],""value"":""GenericallyDependentContinuant""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the pdf file on your laptop, the pdf file that is a copy thereof on my laptop"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a generically dependent continuant \u003d Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/074-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/074-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000031""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","212.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000002","true","","","","","b is a generically dependent continuant = Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])","gdc","","The entries in your database are patterns instantiated as quality instances in your hard drive. The database itself is an aggregate of such patterns. When you create the database you create a particular instance of the generically dependent continuant type database. Each entry in the database is an instance of the generically dependent continuant type IAO: information content entity.|the pdf file on your laptop, the pdf file that is a copy thereof on my laptop|the sequence of this protein molecule; the sequence that is a copy thereof in that protein molecule.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","230.0","","","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","(iff (GenericallyDependentContinuant a) (and (Continuant a) (exists (b t) (genericallyDependsOnAt a b t)))) // axiom label in BFO2 CLIF: [074-001] ","","","","false","","b is a generically dependent continuant = Def. b is a continuant that g-depends_on one or more other entities. (axiom label in BFO2 Reference: [074-001])","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000002","","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","generically dependent continuant","","","DUO","GenericallyDependentContinuant","BFO:0000031","BFO_0000031","","generically dependent continuant","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000034","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000034"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000034""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""function""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""Function""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of a hammer to drive in nails"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of a heart pacemaker to regulate the beating of a heart through electricity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of amylase in saliva to break down starch into sugar"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/064-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/064-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000016"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""function""},{""type"":[""literal""],""value"":""Function""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of a hammer to drive in nails"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of a heart pacemaker to regulate the beating of a heart through electricity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the function of amylase in saliva to break down starch into sugar"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/064-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/064-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000034""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:function"":{""url"":""http://purl.obolibrary.org/obo/BFO_function"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:function""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000016","true","","BFO 2 Reference: In the past, we have distinguished two varieties of function, artifactual function and biological function. These are not asserted subtypes of BFO:function however, since the same function – for example: to pump, to transport – can exist both in artifacts and in biological entities. The asserted subtypes of function that would be needed in order to yield a separate monoheirarchy are not artifactual function, biological function, etc., but rather transporting function, pumping function, etc.","","","","function","","the function of a hammer to drive in nails|the function of a heart pacemaker to regulate the beating of a heart through electricity|the function of amylase in saliva to break down starch into sugar","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","A function is a disposition that exists in virtue of the bearer’s physical make-up and this physical make-up is something the bearer possesses because it came into being, either through evolution (in the case of natural biological entities) or through intentional design (in the case of artifacts), in order to realize processes of a certain sort. (axiom label in BFO2 Reference: [064-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (Function x) (Disposition x))) // axiom label in BFO2 CLIF: [064-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000016","","http://purl.obolibrary.org/obo/BFO_0000034","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","function","","","DUO","Function","BFO:0000034","BFO_0000034","","function","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000035","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000035"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000035""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""p is a process boundary \u003dDef. p is a temporal part of a process \u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/084-001""}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""p-boundary""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ProcessBoundary""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the boundary between the 2nd and 3rd year of your life."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""p is a process boundary \u003dDef. p is a temporal part of a process \u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/084-001""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every process boundary occupies_temporal_region a zero-dimensional temporal region. (axiom label in BFO2 Reference: [085-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/085-002""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ProcessBoundary x) (exists (y) (and (ZeroDimensionalTemporalRegion y) (occupiesTemporalRegion x y))))) // axiom label in BFO2 CLIF: [085-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/085-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (ProcessBoundary a) (exists (p) (and (Process p) (temporalPartOf a p) (not (exists (b) (properTemporalPartOf b a)))))) // axiom label in BFO2 CLIF: [084-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/084-001""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process boundary"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process boundary"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""p-boundary""},{""type"":[""literal""],""value"":""ProcessBoundary""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the boundary between the 2nd and 3rd year of your life."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""p is a process boundary \u003dDef. p is a temporal part of a process \u0026 p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/084-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every process boundary occupies_temporal_region a zero-dimensional temporal region. (axiom label in BFO2 Reference: [085-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/085-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ProcessBoundary x) (exists (y) (and (ZeroDimensionalTemporalRegion y) (occupiesTemporalRegion x y))))) // axiom label in BFO2 CLIF: [085-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/085-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (ProcessBoundary a) (exists (p) (and (Process p) (temporalPartOf a p) (not (exists (b) (properTemporalPartOf b a)))))) // axiom label in BFO2 CLIF: [084-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/084-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000035""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000003","true","","","","","p is a process boundary =Def. p is a temporal part of a process & p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])","p-boundary","","the boundary between the 2nd and 3rd year of your life.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","Every process boundary occupies_temporal_region a zero-dimensional temporal region. (axiom label in BFO2 Reference: [085-002])","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (ProcessBoundary x) (exists (y) (and (ZeroDimensionalTemporalRegion y) (occupiesTemporalRegion x y))))) // axiom label in BFO2 CLIF: [085-002] |(iff (ProcessBoundary a) (exists (p) (and (Process p) (temporalPartOf a p) (not (exists (b) (properTemporalPartOf b a)))))) // axiom label in BFO2 CLIF: [084-001] ","","","","false","","p is a process boundary =Def. p is a temporal part of a process & p has no proper temporal parts. (axiom label in BFO2 Reference: [084-001])","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000003","","http://purl.obolibrary.org/obo/BFO_0000035","http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","process boundary","","","DUO","ProcessBoundary","BFO:0000035","BFO_0000035","","process boundary","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000038","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000038"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000038""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000008"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000008"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000008"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000008"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""1d-t-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""OneDimensionalTemporalRegion""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the temporal region during which a process occurs."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: A temporal interval is a special kind of one-dimensional temporal region, namely one that is self-connected (is without gaps or breaks)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A one-dimensional temporal region is a temporal region that is extended. (axiom label in BFO2 Reference: [103-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/103-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/103-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one-dimensional temporal region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000008"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000148"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one-dimensional temporal region"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""1d-t-region""},{""type"":[""literal""],""value"":""OneDimensionalTemporalRegion""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the temporal region during which a process occurs."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: A temporal interval is a special kind of one-dimensional temporal region, namely one that is self-connected (is without gaps or breaks)."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A one-dimensional temporal region is a temporal region that is extended. (axiom label in BFO2 Reference: [103-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/103-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/103-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000038""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000008""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000148"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional temporal region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000148""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000008","true","","BFO 2 Reference: A temporal interval is a special kind of one-dimensional temporal region, namely one that is self-connected (is without gaps or breaks).","","","","1d-t-region","","the temporal region during which a process occurs.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000008","http://purl.obolibrary.org/obo/BFO_0000008|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000148","A one-dimensional temporal region is a temporal region that is extended. (axiom label in BFO2 Reference: [103-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (OneDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [103-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000008","","http://purl.obolibrary.org/obo/BFO_0000038","http://purl.obolibrary.org/obo/BFO_0000008|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","one-dimensional temporal region","","","DUO","OneDimensionalTemporalRegion","BFO:0000038","BFO_0000038","","one-dimensional temporal region","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000040","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000040"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""material""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""MaterialEntity""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a flame"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a forest fire"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a human being"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a hurricane"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a photon"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a puff of smoke"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a sea wave"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a tornado"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an aggregate of human beings."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an energy wave"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an epidemic"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the undetached arm of a human being"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/019-002""}]},""http://purl.obolibrary.org/obo/IAO_0000601"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/020-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/021-002""}]}],""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/019-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/021-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/020-002""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000141"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""material""},{""type"":[""literal""],""value"":""MaterialEntity""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a flame"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a forest fire"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a human being"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a hurricane"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a photon"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a puff of smoke"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a sea wave"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a tornado"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an aggregate of human beings."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an energy wave"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""an epidemic"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the undetached arm of a human being"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/019-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/020-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/021-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/019-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/021-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/020-002""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000040""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000004","true","","BFO 2 Reference: Material entities (continuants) can preserve their identity even while gaining and losing material parts. Continuants are contrasted with occurrents, which unfold themselves in successive temporal parts or phases [60|BFO 2 Reference: Object, Fiat Object Part and Object Aggregate are not intended to be exhaustive of Material Entity. Users are invited to propose new subcategories of Material Entity.|BFO 2 Reference: ‘Matter’ is intended to encompass both mass and energy (we will address the ontological treatment of portions of energy in a later version of BFO). A portion of matter is anything that includes elementary particles among its proper or improper parts: quarks and leptons, including electrons, as the smallest particles thus far discovered; baryons (including protons and neutrons) at a higher level of granularity; atoms and molecules at still higher levels, forming the cells, organs, organisms and other material entities studied by biologists, the portions of rock studied by geologists, the fossils studied by paleontologists, and so on.Material entities are three-dimensional entities (entities extended in three spatial dimensions), as contrasted with the processes in which they participate, which are four-dimensional entities (entities extended also along the dimension of time).According to the FMA, material entities may have immaterial entities as parts – including the entities identified below as sites; for example the interior (or ‘lumen’) of your small intestine is a part of your body. BFO 2.0 embodies a decision to follow the FMA here.","","","An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","material","","a flame|a forest fire|a human being|a hurricane|a photon|a puff of smoke|a sea wave|a tornado|an aggregate of human beings.|an energy wave|an epidemic|the undetached arm of a human being","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","5.0","","","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000141","A material entity is an independent continuant that has some portion of matter as proper or improper continuant part. (axiom label in BFO2 Reference: [019-002])","Every entity which has a material entity as continuant part is a material entity. (axiom label in BFO2 Reference: [020-002])|every entity of which a material entity is continuant part is also a material entity. (axiom label in BFO2 Reference: [021-002])","","http://www.w3.org/2002/07/owl#Class","true","true","","(forall (x) (if (MaterialEntity x) (IndependentContinuant x))) // axiom label in BFO2 CLIF: [019-002] |(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt x y t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [021-002] |(forall (x) (if (and (Entity x) (exists (y t) (and (MaterialEntity y) (continuantPartOfAt y x t)))) (MaterialEntity x))) // axiom label in BFO2 CLIF: [020-002] ","","","","false","","An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000004","","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","material entity","","","DUO","MaterialEntity","BFO:0000040","BFO_0000040","","material entity","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000140","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000140"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000140""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a continuant fiat boundary \u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/029-001""}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000141"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000141"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""cf-boundary""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ContinuantFiatBoundary""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a continuant fiat boundary \u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/029-001""}]},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: In BFO 1.1 the assumption was made that the external surface of a material entity such as a cell could be treated as if it were a boundary in the mathematical sense. The new document propounds the view that when we talk about external surfaces of material objects in this way then we are talking about something fiat. To be dealt with in a future version: fiat boundaries at different levels of granularity.More generally, the focus in discussion of boundaries in BFO 2.0 is now on fiat boundaries, which means: boundaries for which there is no assumption that they coincide with physical discontinuities. The ontology of boundaries becomes more closely allied with the ontology of regions."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: a continuant fiat boundary is a boundary of some material entity (for example: the plane separating the Northern and Southern hemispheres; the North Pole), or it is a boundary of some immaterial entity (for example of some portion of airspace). Three basic kinds of continuant fiat boundary can be distinguished (together with various combination kinds [29"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Continuant fiat boundary doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. An example would be the mereological sum of two-dimensional continuant fiat boundary and a one dimensional continuant fiat boundary that doesn\u0027t overlap it. The situation is analogous to temporal and spatial regions."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000008""}]}],""http://purl.obolibrary.org/obo/IAO_0000601"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every continuant fiat boundary is located at some spatial region at every time at which it exists"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (ContinuantFiatBoundary a) (and (ImmaterialEntity a) (exists (b) (and (or (ZeroDimensionalSpatialRegion b) (OneDimensionalSpatialRegion b) (TwoDimensionalSpatialRegion b)) (forall (t) (locatedInAt a b t)))) (not (exists (c t) (and (SpatialRegion c) (continuantPartOfAt c a t)))))) // axiom label in BFO2 CLIF: [029-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/029-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant fiat boundary"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000141"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant fiat boundary"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""cf-boundary""},{""type"":[""literal""],""value"":""ContinuantFiatBoundary""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a continuant fiat boundary \u003d Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/029-001""}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: In BFO 1.1 the assumption was made that the external surface of a material entity such as a cell could be treated as if it were a boundary in the mathematical sense. The new document propounds the view that when we talk about external surfaces of material objects in this way then we are talking about something fiat. To be dealt with in a future version: fiat boundaries at different levels of granularity.More generally, the focus in discussion of boundaries in BFO 2.0 is now on fiat boundaries, which means: boundaries for which there is no assumption that they coincide with physical discontinuities. The ontology of boundaries becomes more closely allied with the ontology of regions."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: a continuant fiat boundary is a boundary of some material entity (for example: the plane separating the Northern and Southern hemispheres; the North Pole), or it is a boundary of some immaterial entity (for example of some portion of airspace). Three basic kinds of continuant fiat boundary can be distinguished (together with various combination kinds [29"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Continuant fiat boundary doesn\u0027t have a closure axiom because the subclasses don\u0027t necessarily exhaust all possibilites. An example would be the mereological sum of two-dimensional continuant fiat boundary and a one dimensional continuant fiat boundary that doesn\u0027t overlap it. The situation is analogous to temporal and spatial regions."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000008""}]},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Every continuant fiat boundary is located at some spatial region at every time at which it exists"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (ContinuantFiatBoundary a) (and (ImmaterialEntity a) (exists (b) (and (or (ZeroDimensionalSpatialRegion b) (OneDimensionalSpatialRegion b) (TwoDimensionalSpatialRegion b)) (forall (t) (locatedInAt a b t)))) (not (exists (c t) (and (SpatialRegion c) (continuantPartOfAt c a t)))))) // axiom label in BFO2 CLIF: [029-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/029-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000140""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000601"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000141","true","","BFO 2 Reference: In BFO 1.1 the assumption was made that the external surface of a material entity such as a cell could be treated as if it were a boundary in the mathematical sense. The new document propounds the view that when we talk about external surfaces of material objects in this way then we are talking about something fiat. To be dealt with in a future version: fiat boundaries at different levels of granularity.More generally, the focus in discussion of boundaries in BFO 2.0 is now on fiat boundaries, which means: boundaries for which there is no assumption that they coincide with physical discontinuities. The ontology of boundaries becomes more closely allied with the ontology of regions.|BFO 2 Reference: a continuant fiat boundary is a boundary of some material entity (for example: the plane separating the Northern and Southern hemispheres; the North Pole), or it is a boundary of some immaterial entity (for example of some portion of airspace). Three basic kinds of continuant fiat boundary can be distinguished (together with various combination kinds [29|Continuant fiat boundary doesn't have a closure axiom because the subclasses don't necessarily exhaust all possibilites. An example would be the mereological sum of two-dimensional continuant fiat boundary and a one dimensional continuant fiat boundary that doesn't overlap it. The situation is analogous to temporal and spatial regions.","","","b is a continuant fiat boundary = Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])","cf-boundary","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","3.0","","","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","Every continuant fiat boundary is located at some spatial region at every time at which it exists","","http://www.w3.org/2002/07/owl#Class","true","true","","(iff (ContinuantFiatBoundary a) (and (ImmaterialEntity a) (exists (b) (and (or (ZeroDimensionalSpatialRegion b) (OneDimensionalSpatialRegion b) (TwoDimensionalSpatialRegion b)) (forall (t) (locatedInAt a b t)))) (not (exists (c t) (and (SpatialRegion c) (continuantPartOfAt c a t)))))) // axiom label in BFO2 CLIF: [029-001] ","","","","false","","b is a continuant fiat boundary = Def. b is an immaterial entity that is of zero, one or two dimensions and does not include a spatial region as part. (axiom label in BFO2 Reference: [029-001])","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000141","","http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","continuant fiat boundary","","","DUO","ContinuantFiatBoundary","BFO:0000140","BFO_0000140","","continuant fiat boundary","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000141","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000141"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000004"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""immaterial""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ImmaterialEntity""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000004"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""numDescendants"":11.0,""numHierarchicalDescendants"":11.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""immaterial""},{""type"":[""literal""],""value"":""ImmaterialEntity""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000141""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","11.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000004","true","","BFO 2 Reference: Immaterial entities are divided into two subgroups:boundaries and sites, which bound, or are demarcated in relation, to material entities, and which can thus change location, shape and size and as their material hosts move or change shape or size (for example: your nasal passage; the hold of a ship; the boundary of Wales (which moves with the rotation of the Earth) [38, 7, 10","","","","immaterial","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","11.0","","","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000004","","http://purl.obolibrary.org/obo/BFO_0000141","http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","immaterial entity","","","DUO","ImmaterialEntity","BFO:0000141","BFO_0000141","","immaterial entity","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000142","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000142"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000142""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000140"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000140"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000140"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000140"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""1d-cf-boundary""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""OneDimensionalContinuantFiatBoundary""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The Equator"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""all geopolitical boundaries"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""all lines of latitude and longitude"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the median sulcus of your tongue"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a one-dimensional continuant fiat boundary is a continuous fiat line whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [032-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/032-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (OneDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (OneDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [032-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/032-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one-dimensional continuant fiat boundary"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000140"",""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/BFO_0000146"",""http://purl.obolibrary.org/obo/BFO_0000147""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one-dimensional continuant fiat boundary"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""1d-cf-boundary""},{""type"":[""literal""],""value"":""OneDimensionalContinuantFiatBoundary""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The Equator"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""all geopolitical boundaries"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""all lines of latitude and longitude"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the median sulcus of your tongue"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a one-dimensional continuant fiat boundary is a continuous fiat line whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [032-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/032-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (OneDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (OneDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [032-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/032-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000142""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000147"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional continuant fiat boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000147""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000146"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two-dimensional continuant fiat boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000146""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000140"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant fiat boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000140""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000140","true","","","","","","1d-cf-boundary","","The Equator|all geopolitical boundaries|all lines of latitude and longitude|the line separating the outer surface of the mucosa of the lower lip from the outer surface of the skin of the chin.|the median sulcus of your tongue","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000140|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000146|http://purl.obolibrary.org/obo/BFO_0000147","a one-dimensional continuant fiat boundary is a continuous fiat line whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [032-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(iff (OneDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (OneDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [032-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000140","","http://purl.obolibrary.org/obo/BFO_0000142","http://purl.obolibrary.org/obo/BFO_0000140|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","one-dimensional continuant fiat boundary","","","DUO","OneDimensionalContinuantFiatBoundary","BFO:0000142","BFO_0000142","","one-dimensional continuant fiat boundary","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000144","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000144"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000144""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a process_profile \u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/093-002""}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000015"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000015"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""process-profile""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ProcessProfile""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a process_profile \u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/093-002""}]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b process_profile_of c holds when b proper_occurrent_part_of c\u0026 there is some proper_occurrent_part d of c which has no parts in common with b \u0026 is mutually dependent on b\u0026 is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/094-005""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":[{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (processProfileOf x y) (and (properContinuantPartOf x y) (exists (z t) (and (properOccurrentPartOf z y) (TemporalRegion t) (occupiesSpatioTemporalRegion x t) (occupiesSpatioTemporalRegion y t) (occupiesSpatioTemporalRegion z t) (not (exists (w) (and (occurrentPartOf w x) (occurrentPartOf w z))))))))) // axiom label in BFO2 CLIF: [094-005] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/094-005""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (ProcessProfile a) (exists (b) (and (Process b) (processProfileOf a b)))) // axiom label in BFO2 CLIF: [093-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/093-002""}]}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process profile"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/BFO_0000182"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process profile"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""process-profile""},{""type"":[""literal""],""value"":""ProcessProfile""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a process_profile \u003dDef. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/093-002""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b process_profile_of c holds when b proper_occurrent_part_of c\u0026 there is some proper_occurrent_part d of c which has no parts in common with b \u0026 is mutually dependent on b\u0026 is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/094-005""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x y) (if (processProfileOf x y) (and (properContinuantPartOf x y) (exists (z t) (and (properOccurrentPartOf z y) (TemporalRegion t) (occupiesSpatioTemporalRegion x t) (occupiesSpatioTemporalRegion y t) (occupiesSpatioTemporalRegion z t) (not (exists (w) (and (occurrentPartOf w x) (occurrentPartOf w z))))))))) // axiom label in BFO2 CLIF: [094-005] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/094-005""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (ProcessProfile a) (exists (b) (and (Process b) (processProfileOf a b)))) // axiom label in BFO2 CLIF: [093-002] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/093-002""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000144""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000182"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""history"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000182""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000015","true","","","","","b is a process_profile =Def. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])","process-profile","","On a somewhat higher level of complexity are what we shall call rate process profiles, which are the targets of selective abstraction focused not on determinate quality magnitudes plotted over time, but rather on certain ratios between these magnitudes and elapsed times. A speed process profile, for example, is represented by a graph plotting against time the ratio of distance covered per unit of time. Since rates may change, and since such changes, too, may have rates of change, we have to deal here with a hierarchy of process profile universals at successive levels|One important sub-family of rate process profiles is illustrated by the beat or frequency profiles of cyclical processes, illustrated by the 60 beats per minute beating process of John’s heart, or the 120 beats per minute drumming process involved in one of John’s performances in a rock band, and so on. Each such process includes what we shall call a beat process profile instance as part, a subtype of rate process profile in which the salient ratio is not distance covered but rather number of beat cycles per unit of time. Each beat process profile instance instantiates the determinable universal beat process profile. But it also instantiates multiple more specialized universals at lower levels of generality, selected from rate process profilebeat process profileregular beat process profile3 bpm beat process profile4 bpm beat process profileirregular beat process profileincreasing beat process profileand so on.In the case of a regular beat process profile, a rate can be assigned in the simplest possible fashion by dividing the number of cycles by the length of the temporal region occupied by the beating process profile as a whole. Irregular process profiles of this sort, for example as identified in the clinic, or in the readings on an aircraft instrument panel, are often of diagnostic significance.|The simplest type of process profiles are what we shall call ‘quality process profiles’, which are the process profiles which serve as the foci of the sort of selective abstraction that is involved when measurements are made of changes in single qualities, as illustrated, for example, by process profiles of mass, temperature, aortic pressure, and so on.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","http://purl.obolibrary.org/obo/BFO_0000182","b process_profile_of c holds when b proper_occurrent_part_of c& there is some proper_occurrent_part d of c which has no parts in common with b & is mutually dependent on b& is such that b, c and d occupy the same temporal region (axiom label in BFO2 Reference: [094-005])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x y) (if (processProfileOf x y) (and (properContinuantPartOf x y) (exists (z t) (and (properOccurrentPartOf z y) (TemporalRegion t) (occupiesSpatioTemporalRegion x t) (occupiesSpatioTemporalRegion y t) (occupiesSpatioTemporalRegion z t) (not (exists (w) (and (occurrentPartOf w x) (occurrentPartOf w z))))))))) // axiom label in BFO2 CLIF: [094-005] |(iff (ProcessProfile a) (exists (b) (and (Process b) (processProfileOf a b)))) // axiom label in BFO2 CLIF: [093-002] ","","","","false","","b is a process_profile =Def. there is some process c such that b process_profile_of c (axiom label in BFO2 Reference: [093-002])","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000015","","http://purl.obolibrary.org/obo/BFO_0000144","http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","process profile","","","DUO","ProcessProfile","BFO:0000144","BFO_0000144","","process profile","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000145","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000145"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000145""},""definition"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a relational quality \u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/057-001""}]},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000019"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000019"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""r-quality""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""RelationalQuality""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a marriage bond, an instance of requited love, an obligation between one person and another."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a relational quality \u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/057-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (RelationalQuality a) (exists (b c t) (and (IndependentContinuant b) (IndependentContinuant c) (qualityOfAt a b t) (qualityOfAt a c t)))) // axiom label in BFO2 CLIF: [057-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/057-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relational quality"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000019"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relational quality"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""r-quality""},{""type"":[""literal""],""value"":""RelationalQuality""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a marriage bond, an instance of requited love, an obligation between one person and another."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b is a relational quality \u003d Def. for some independent continuants c, d and for some time t: b quality_of c at t \u0026 b quality_of d at t. (axiom label in BFO2 Reference: [057-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/057-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (RelationalQuality a) (exists (b c t) (and (IndependentContinuant b) (IndependentContinuant c) (qualityOfAt a b t) (qualityOfAt a c t)))) // axiom label in BFO2 CLIF: [057-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/057-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000145""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000019","true","","","","","b is a relational quality = Def. for some independent continuants c, d and for some time t: b quality_of c at t & b quality_of d at t. (axiom label in BFO2 Reference: [057-001])","r-quality","","John’s role of husband to Mary is dependent on Mary’s role of wife to John, and both are dependent on the object aggregate comprising John and Mary as member parts joined together through the relational quality of being married.|a marriage bond, an instance of requited love, an obligation between one person and another.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","(iff (RelationalQuality a) (exists (b c t) (and (IndependentContinuant b) (IndependentContinuant c) (qualityOfAt a b t) (qualityOfAt a c t)))) // axiom label in BFO2 CLIF: [057-001] ","","","","false","","b is a relational quality = Def. for some independent continuants c, d and for some time t: b quality_of c at t & b quality_of d at t. (axiom label in BFO2 Reference: [057-001])","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000019","","http://purl.obolibrary.org/obo/BFO_0000145","http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","relational quality","","","DUO","RelationalQuality","BFO:0000145","BFO_0000145","","relational quality","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000146","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000146"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000146""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000140"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000140"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000140"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000140"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""2d-cf-boundary""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""TwoDimensionalContinuantFiatBoundary""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a two-dimensional continuant fiat boundary (surface) is a self-connected fiat surface whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [033-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/033-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (TwoDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (TwoDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [033-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/033-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two-dimensional continuant fiat boundary"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000140"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two-dimensional continuant fiat boundary"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""2d-cf-boundary""},{""type"":[""literal""],""value"":""TwoDimensionalContinuantFiatBoundary""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a two-dimensional continuant fiat boundary (surface) is a self-connected fiat surface whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [033-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/033-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (TwoDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (TwoDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [033-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/033-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000146""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000140"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant fiat boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000140""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000140","true","","","","","","2d-cf-boundary","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000140|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","a two-dimensional continuant fiat boundary (surface) is a self-connected fiat surface whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [033-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(iff (TwoDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (TwoDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [033-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000140","","http://purl.obolibrary.org/obo/BFO_0000146","http://purl.obolibrary.org/obo/BFO_0000140|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","two-dimensional continuant fiat boundary","","","DUO","TwoDimensionalContinuantFiatBoundary","BFO:0000146","BFO_0000146","","two-dimensional continuant fiat boundary","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000147","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000147"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000147""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000140"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000140"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000140"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000140"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""0d-cf-boundary""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ZeroDimensionalContinuantFiatBoundary""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the geographic North Pole"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the point of origin of some spatial coordinate system."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero dimension continuant fiat boundaries are not spatial points. Considering the example \u0027the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet\u0027 : There are many frames in which that point is zooming through many points in space. Whereas, no matter what the frame, the quadripoint is always in the same relation to the boundaries of Colorado, Utah, New Mexico, and Arizona."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000001"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""requested by Melanie Courtot""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""https://groups.google.com/d/msg/bfo-owl-devel/s9Uug5QmAws/ZDRnpiIi_TUJ""}]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a zero-dimensional continuant fiat boundary is a fiat point whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [031-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/031-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (ZeroDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (ZeroDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [031-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/031-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional continuant fiat boundary"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000140"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional continuant fiat boundary"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""0d-cf-boundary""},{""type"":[""literal""],""value"":""ZeroDimensionalContinuantFiatBoundary""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the geographic North Pole"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the point of origin of some spatial coordinate system."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet"",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero dimension continuant fiat boundaries are not spatial points. Considering the example \u0027the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet\u0027 : There are many frames in which that point is zooming through many points in space. Whereas, no matter what the frame, the quadripoint is always in the same relation to the boundaries of Colorado, Utah, New Mexico, and Arizona."",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/0000001"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""requested by Melanie Courtot""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""https://groups.google.com/d/msg/bfo-owl-devel/s9Uug5QmAws/ZDRnpiIi_TUJ""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a zero-dimensional continuant fiat boundary is a fiat point whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [031-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/031-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(iff (ZeroDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (ZeroDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [031-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/031-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000147""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000140"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant fiat boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000140""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000140","true","","zero dimension continuant fiat boundaries are not spatial points. Considering the example 'the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet' : There are many frames in which that point is zooming through many points in space. Whereas, no matter what the frame, the quadripoint is always in the same relation to the boundaries of Colorado, Utah, New Mexico, and Arizona.","","","","0d-cf-boundary","","the geographic North Pole|the point of origin of some spatial coordinate system.|the quadripoint where the boundaries of Colorado, Utah, New Mexico, and Arizona meet","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000140","http://purl.obolibrary.org/obo/BFO_0000140|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","a zero-dimensional continuant fiat boundary is a fiat point whose location is defined in relation to some material entity. (axiom label in BFO2 Reference: [031-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(iff (ZeroDimensionalContinuantFiatBoundary a) (and (ContinuantFiatBoundary a) (exists (b) (and (ZeroDimensionalSpatialRegion b) (forall (t) (locatedInAt a b t)))))) // axiom label in BFO2 CLIF: [031-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000140","","http://purl.obolibrary.org/obo/BFO_0000147","http://purl.obolibrary.org/obo/BFO_0000140|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","zero-dimensional continuant fiat boundary","","","DUO","ZeroDimensionalContinuantFiatBoundary","BFO:0000147","BFO_0000147","","zero-dimensional continuant fiat boundary","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000148","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000148"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000148""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000008"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000008"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000008"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000008"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""0d-t-region""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""ZeroDimensionalTemporalRegion""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a temporal region that is occupied by a process boundary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""right now"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the moment at which a child is born"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the moment at which a finger is detached in an industrial accident"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the moment of death."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal instant."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A zero-dimensional temporal region is a temporal region that is without extent. (axiom label in BFO2 Reference: [102-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/102-001""}]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ZeroDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [102-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/102-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional temporal region"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000008"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional temporal region"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""0d-t-region""},{""type"":[""literal""],""value"":""ZeroDimensionalTemporalRegion""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a temporal region that is occupied by a process boundary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""right now"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the moment at which a child is born"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the moment at which a finger is detached in an industrial accident"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the moment of death."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal instant."",""lang"":""en""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A zero-dimensional temporal region is a temporal region that is without extent. (axiom label in BFO2 Reference: [102-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/102-001""}]},{""type"":[""reification""],""value"":{""type"":[""literal""],""value"":""(forall (x) (if (ZeroDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [102-001] ""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/102-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000148""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000008"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000008""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000602"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000008","true","","","","","","0d-t-region","","a temporal region that is occupied by a process boundary|right now|the moment at which a child is born|the moment at which a finger is detached in an industrial accident|the moment of death.","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","temporal instant.","","http://purl.obolibrary.org/obo/BFO_0000008","http://purl.obolibrary.org/obo/BFO_0000008|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","A zero-dimensional temporal region is a temporal region that is without extent. (axiom label in BFO2 Reference: [102-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","(forall (x) (if (ZeroDimensionalTemporalRegion x) (TemporalRegion x))) // axiom label in BFO2 CLIF: [102-001] ","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000008","","http://purl.obolibrary.org/obo/BFO_0000148","http://purl.obolibrary.org/obo/BFO_0000008|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","zero-dimensional temporal region","","","DUO","ZeroDimensionalTemporalRegion","BFO:0000148","BFO_0000148","","zero-dimensional temporal region","duo","" +"duo+class+http://purl.obolibrary.org/obo/BFO_0000182","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000182"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000182""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000015"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000015"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/BFO_0000179"":{""type"":[""literal""],""value"":""history""},""http://purl.obolibrary.org/obo/BFO_0000180"":{""type"":[""literal""],""value"":""History""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by a material entity or site, including processes on the surface of the entity or within the cavities to which it serves as host. (axiom label in BFO2 Reference: [138-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/138-001""}]},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""history"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000015"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""history"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""history""},{""type"":[""literal""],""value"":""History""},{""type"":[""reification""],""value"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by a material entity or site, including processes on the surface of the entity or within the cavities to which it serves as host. (axiom label in BFO2 Reference: [138-001])"",""lang"":""en""},""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0010000"":""http://purl.obolibrary.org/obo/bfo/axiom/138-001""}]},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000182""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000179"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0010000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000180"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/BFO_0000015","true","","","","","","history","","","","","","","","http://purl.obolibrary.org/obo/bfo.owl","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","A history is a process that is the sum of the totality of processes taking place in the spatiotemporal region occupied by a material entity or site, including processes on the surface of the entity or within the cavities to which it serves as host. (axiom label in BFO2 Reference: [138-001])","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000015","","http://purl.obolibrary.org/obo/BFO_0000182","http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","history","","","DUO","History","BFO:0000182","BFO_0000182","","history","duo","" "duo+class+http://purl.obolibrary.org/obo/DUO_0000001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000001""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data item that is used to indicate consent permissions for datasets and/or materials, and relates to the purposes for which datasets and/or material might be removed, stored or used."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data item that is used to indicate consent permissions for datasets and/or materials, and relates to the purposes for which datasets and/or material might be removed, stored or used."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""value"":""consent code""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000001""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data use permission"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000027"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data use permission"",""lang"":""en""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data item that is used to indicate consent permissions for datasets and/or materials, and relates to the purposes for which datasets and/or material might be removed, stored or used."",""lang"":""en""},{""type"":[""literal""],""value"":""consent code""},{""type"":[""literal""],""value"":""DUO:0000001""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_0000001""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""DUO:0000001"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000001"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data use permission"",""lang"":""en""},""curie"":""DUO:0000001"",""type"":[""class"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","true","","true","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","","","DUO:0000001","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000027","true","","","","","A data item that is used to indicate consent permissions for datasets and/or materials, and relates to the purposes for which datasets and/or material might be removed, stored or used.","","","","","","","","","","","5.0","consent code","","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A data item that is used to indicate consent permissions for datasets and/or materials, and relates to the purposes for which datasets and/or material might be removed, stored or used.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000027","","http://purl.obolibrary.org/obo/DUO_0000001","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","data use permission","","","DUO","","DUO:0000001","DUO_0000001","duo","data use permission","duo","" "duo+class+http://purl.obolibrary.org/obo/DUO_0000002","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000002"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000002""},""definition"":{""type"":[""literal""],""value"":""A categorical data item indicating the primary category the consent code belongs to according to Dyke et al. 2016.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A categorical data item indicating the primary category the consent code belongs to according to Dyke et al. 2016.""},""http://purl.obolibrary.org/obo/IAO_0000231"":{""type"":[""literal""],""value"":""This term was depreacted as it is not used to tag datasets but instead as patterns for DUO codes capture. This is an archive specific requirement, e.g. \""one code from a primary category and one or more from a second category\u0027\nThis is better done by Schemablocks and constraining the pattern of usage of DUO terms at each archive level.""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000002""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete consent code primary category""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete consent code primary category""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A categorical data item indicating the primary category the consent code belongs to according to Dyke et al. 2016.""},{""type"":[""literal""],""value"":""This term was depreacted as it is not used to tag datasets but instead as patterns for DUO codes capture. This is an archive specific requirement, e.g. \""one code from a primary category and one or more from a second category\u0027\nThis is better done by Schemablocks and constraining the pattern of usage of DUO terms at each archive level.""},{""type"":[""literal""],""value"":""DUO:0000002""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_0000002""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""DUO:0000002"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000002"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""obsolete consent code primary category""},""curie"":""DUO:0000002"",""type"":[""class"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000002"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","DUO:0000002","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","","","","A categorical data item indicating the primary category the consent code belongs to according to Dyke et al. 2016.","","","","","","This term was depreacted as it is not used to tag datasets but instead as patterns for DUO codes capture. This is an archive specific requirement, e.g. ""one code from a primary category and one or more from a second category' This is better done by Schemablocks and constraining the pattern of usage of DUO terms at each archive level.","","","","","0.0","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A categorical data item indicating the primary category the consent code belongs to according to Dyke et al. 2016.","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/DUO_0000002","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete consent code primary category","","","DUO","","DUO:0000002","DUO_0000002","duo","obsolete consent code primary category","duo","" "duo+class+http://purl.obolibrary.org/obo/DUO_0000003","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000003""},""definition"":{""type"":[""literal""],""value"":""A categorical data item indicating the secondary category the consent code belongs to according to Dyke et al. 2016.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A categorical data item indicating the secondary category the consent code belongs to according to Dyke et al. 2016.""},""http://purl.obolibrary.org/obo/IAO_0000231"":{""type"":[""literal""],""value"":""This term was depreacted as it is not used to tag datasets but instead as patterns for DUO codes capture. This is an archive specific requirement, e.g. \""one code from a primary category and one or more from a second category\u0027\nThis is better done by Schemablocks and constraining the pattern of usage of DUO terms at each archive level.""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000003""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete consent code secondary category""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete consent code secondary category""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A categorical data item indicating the secondary category the consent code belongs to according to Dyke et al. 2016.""},{""type"":[""literal""],""value"":""This term was depreacted as it is not used to tag datasets but instead as patterns for DUO codes capture. This is an archive specific requirement, e.g. \""one code from a primary category and one or more from a second category\u0027\nThis is better done by Schemablocks and constraining the pattern of usage of DUO terms at each archive level.""},{""type"":[""literal""],""value"":""DUO:0000003""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_0000003""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""DUO:0000003"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000003"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""obsolete consent code secondary category""},""curie"":""DUO:0000003"",""type"":[""class"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000003"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","DUO:0000003","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","","","","A categorical data item indicating the secondary category the consent code belongs to according to Dyke et al. 2016.","","","","","","This term was depreacted as it is not used to tag datasets but instead as patterns for DUO codes capture. This is an archive specific requirement, e.g. ""one code from a primary category and one or more from a second category' This is better done by Schemablocks and constraining the pattern of usage of DUO terms at each archive level.","","","","","0.0","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A categorical data item indicating the secondary category the consent code belongs to according to Dyke et al. 2016.","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/DUO_0000003","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete consent code secondary category","","","DUO","","DUO:0000003","DUO_0000003","duo","obsolete consent code secondary category","duo","" "duo+class+http://purl.obolibrary.org/obo/DUO_0000004","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000004"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000004""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use permission indicates there is no restriction on use."",""lang"":""en""},{""type"":[""literal""],""value"":""20180907, Meeting Moran Melanie: This is to be thought about more carefully - what is the intent when using \u0027no restriction\u0027 as usually users still need to be researchers.""},{""type"":[""literal""],""value"":""Note: the NRES alternative term may be confusing as in the UK it also stands for National Research Ethics Service""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/DUO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/DUO_0000001"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/DUO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/DUO_0000001"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use permission indicates there is no restriction on use."",""lang"":""en""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000004""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""NRES""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":[{""type"":[""literal""],""value"":""20180907, Meeting Moran Melanie: This is to be thought about more carefully - what is the intent when using \u0027no restriction\u0027 as usually users still need to be researchers.""},{""type"":[""literal""],""value"":""Note: the NRES alternative term may be confusing as in the UK it also stands for National Research Ethics Service""}],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""no restriction"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/DUO_0000001"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""no restriction"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use permission indicates there is no restriction on use."",""lang"":""en""},{""type"":[""literal""],""value"":""DUO:0000004""},{""type"":[""literal""],""value"":""NRES""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_0000004""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""DUO:0000004"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000004"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""no restriction"",""lang"":""en""},""curie"":""DUO:0000004"",""type"":[""class"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000004"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000001"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data use permission"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","DUO:0000004","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/DUO_0000001","true","","","","","This data use permission indicates there is no restriction on use.","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/DUO_0000001","http://purl.obolibrary.org/obo/DUO_0000001|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","NRES","false","20180907, Meeting Moran Melanie: This is to be thought about more carefully - what is the intent when using 'no restriction' as usually users still need to be researchers.|Note: the NRES alternative term may be confusing as in the UK it also stands for National Research Ethics Service","This data use permission indicates there is no restriction on use.|20180907, Meeting Moran Melanie: This is to be thought about more carefully - what is the intent when using 'no restriction' as usually users still need to be researchers.|Note: the NRES alternative term may be confusing as in the UK it also stands for National Research Ethics Service","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/DUO_0000001","","http://purl.obolibrary.org/obo/DUO_0000004","http://purl.obolibrary.org/obo/DUO_0000001|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","no restriction","","","DUO","","DUO:0000004","DUO_0000004","duo","no restriction","duo","" -"duo+class+http://purl.obolibrary.org/obo/DUO_00000044","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_00000044"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:00000044""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/DUO_0000017"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/DUO_0000017"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/DUO_0000017"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/DUO_0000017"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited."",""lang"":""en""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000044""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""NPOA""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""population origins or ancestry research prohibited"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/DUO_0000017"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""population origins or ancestry research prohibited"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited."",""lang"":""en""},{""type"":[""literal""],""value"":""DUO:0000044""},{""type"":[""literal""],""value"":""NPOA""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_00000044""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""DUO:0000044"":{""url"":""http://purl.obolibrary.org/obo/DUO_0000044"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DUO:0000044""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""DUO:00000044"":{""iri"":""http://purl.obolibrary.org/obo/DUO_00000044"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""population origins or ancestry research prohibited"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:00000044""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000017"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data use modifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","DUO:0000044","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/DUO_0000017","true","","","","","This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited.","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/DUO_0000017","http://purl.obolibrary.org/obo/DUO_0000017|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","NPOA","false","","This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/DUO_0000017","","http://purl.obolibrary.org/obo/DUO_00000044","http://purl.obolibrary.org/obo/DUO_0000017|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","population origins or ancestry research prohibited","","","DUO","","DUO:00000044","DUO_00000044","duo","population origins or ancestry research prohibited","duo","" +"duo+class+http://purl.obolibrary.org/obo/DUO_00000044","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_00000044"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:00000044""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/DUO_0000017"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/DUO_0000017"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/DUO_0000017"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/DUO_0000017"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited."",""lang"":""en""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000044""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""NPOA""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""population origins or ancestry research prohibited"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/DUO_0000017"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""population origins or ancestry research prohibited"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited."",""lang"":""en""},{""type"":[""literal""],""value"":""DUO:0000044""},{""type"":[""literal""],""value"":""NPOA""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_00000044""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""DUO:0000044"":{""url"":""http://purl.obolibrary.org/obo/DUO_0000044"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DUO:0000044""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000017"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data use modifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","DUO:0000044","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/DUO_0000017","true","","","","","This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited.","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/DUO_0000017","http://purl.obolibrary.org/obo/DUO_0000017|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","NPOA","false","","This data use modifier indicates use for purposes of population, origin, or ancestry research is prohibited.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/DUO_0000017","","http://purl.obolibrary.org/obo/DUO_00000044","http://purl.obolibrary.org/obo/DUO_0000017|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","population origins or ancestry research prohibited","","","DUO","","DUO:00000044","DUO_00000044","duo","population origins or ancestry research prohibited","duo","" "duo+class+http://purl.obolibrary.org/obo/DUO_0000005","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000005"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000005""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use limitation indicates that use is allowed for health/medical/biomedical purposes and other biological research, including the study of population origins or ancestry."",""lang"":""en""},{""type"":[""literal""],""value"":""This term includes clinical care, which was not defined in the original consent codes paper. This term does not have a usage in our current use cases and we recommend using DUO:0000042, General Research Use, instead""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This term was made obsolete as per https://github.com/EBISPOT/DUO/issues/45"",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use limitation indicates that use is allowed for health/medical/biomedical purposes and other biological research, including the study of population origins or ancestry."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0100001"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""General Research Use, DUO_0000042\nClinical Care USe, DUO_0000043"",""lang"":""en""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000005""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""GRU-CC""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":[{""type"":[""literal""],""value"":""This term includes clinical care, which was not defined in the original consent codes paper. This term does not have a usage in our current use cases and we recommend using DUO:0000042, General Research Use, instead""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This term was made obsolete as per https://github.com/EBISPOT/DUO/issues/45"",""lang"":""en""}],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete general research use and clinical care"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete general research use and clinical care"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use limitation indicates that use is allowed for health/medical/biomedical purposes and other biological research, including the study of population origins or ancestry."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""General Research Use, DUO_0000042\nClinical Care USe, DUO_0000043"",""lang"":""en""},{""type"":[""literal""],""value"":""DUO:0000005""},{""type"":[""literal""],""value"":""GRU-CC""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_0000005""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""DUO:0000042"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000042"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""general research use"",""lang"":""en""},""curie"":""DUO:0000042"",""type"":[""class"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000042"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""DUO:0000005"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000005"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete general research use and clinical care"",""lang"":""en""},""curie"":""DUO:0000005"",""type"":[""class"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000005"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0100001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term replaced by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0100001""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","DUO:0000005","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","","","","This data use limitation indicates that use is allowed for health/medical/biomedical purposes and other biological research, including the study of population origins or ancestry.","","","","","","","","","","","0.0","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","GRU-CC","false","This term includes clinical care, which was not defined in the original consent codes paper. This term does not have a usage in our current use cases and we recommend using DUO:0000042, General Research Use, instead|This term was made obsolete as per https://github.com/EBISPOT/DUO/issues/45","This data use limitation indicates that use is allowed for health/medical/biomedical purposes and other biological research, including the study of population origins or ancestry.|This term includes clinical care, which was not defined in the original consent codes paper. This term does not have a usage in our current use cases and we recommend using DUO:0000042, General Research Use, instead|This term was made obsolete as per https://github.com/EBISPOT/DUO/issues/45","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/DUO_0000005","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","General Research Use, DUO_0000042 Clinical Care USe, DUO_0000043","","true","obsolete general research use and clinical care","","","DUO","","DUO:0000005","DUO_0000005","duo","obsolete general research use and clinical care","duo","" "duo+class+http://purl.obolibrary.org/obo/DUO_0000006","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000006"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000006""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use permission indicates that use is allowed for health/medical/biomedical purposes; does not include the study of population origins or ancestry."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/DUO_0000042"",""http://purl.obolibrary.org/obo/DUO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/DUO_0000042"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/DUO_0000042"",""http://purl.obolibrary.org/obo/DUO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/DUO_0000042"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use permission indicates that use is allowed for health/medical/biomedical purposes; does not include the study of population origins or ancestry."",""lang"":""en""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000006""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""HMB""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""health or medical or biomedical research"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/DUO_0000042"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""health or medical or biomedical research"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use permission indicates that use is allowed for health/medical/biomedical purposes; does not include the study of population origins or ancestry."",""lang"":""en""},{""type"":[""literal""],""value"":""DUO:0000006""},{""type"":[""literal""],""value"":""HMB""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_0000006""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""DUO:0000006"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000006"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""health or medical or biomedical research"",""lang"":""en""},""curie"":""DUO:0000006"",""type"":[""class"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000006"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000042"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""general research use"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000042""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000001"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data use permission"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","true","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","DUO:0000006","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/DUO_0000042","true","","","","","This data use permission indicates that use is allowed for health/medical/biomedical purposes; does not include the study of population origins or ancestry.","","","","","","","","","","","1.0","","","http://purl.obolibrary.org/obo/DUO_0000042","http://purl.obolibrary.org/obo/DUO_0000042|http://purl.obolibrary.org/obo/DUO_0000001|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","HMB","false","","This data use permission indicates that use is allowed for health/medical/biomedical purposes; does not include the study of population origins or ancestry.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/DUO_0000042","","http://purl.obolibrary.org/obo/DUO_0000006","http://purl.obolibrary.org/obo/DUO_0000042|http://purl.obolibrary.org/obo/DUO_0000001|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","health or medical or biomedical research","","","DUO","","DUO:0000006","DUO_0000006","duo","health or medical or biomedical research","duo","" @@ -79,7 +79,7 @@ Other resources, such as the Disease Ontology, HPO, SNOMED-CT or others, can als "duo+class+http://purl.obolibrary.org/obo/DUO_0000031","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000031"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000031""},""definition"":{""type"":[""literal""],""value"":""An investigation concerning development of methods, algorithms, software or analytical tools.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000066"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000066"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000066"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000066"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/DUO_0000041"":{""type"":[""literal""],""value"":""method development""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""An investigation concerning development of methods, algorithms, software or analytical tools.""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""value"":""This definition is a placeholder as a result of meetings at ICBO2018.""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000031""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""method development""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000066"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""method development""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""method development""},{""type"":[""literal""],""value"":""An investigation concerning development of methods, algorithms, software or analytical tools.""},{""type"":[""literal""],""value"":""This definition is a placeholder as a result of meetings at ICBO2018.""},{""type"":[""literal""],""value"":""DUO:0000031""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_0000031""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000066""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000041"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DUO_preferred_label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000041""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""DUO:0000031"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000031"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""method development""},""curie"":""DUO:0000031"",""type"":[""class"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000031"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","DUO:0000031","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000066","true","method development","","","","An investigation concerning development of methods, algorithms, software or analytical tools.","","","","","","","","This definition is a placeholder as a result of meetings at ICBO2018.","","","0.0","","","http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000066|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An investigation concerning development of methods, algorithms, software or analytical tools.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000066","","http://purl.obolibrary.org/obo/DUO_0000031","http://purl.obolibrary.org/obo/OBI_0000066|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","method development","","","DUO","","DUO:0000031","DUO_0000031","duo","method development","duo","" "duo+class+http://purl.obolibrary.org/obo/DUO_0000032","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000032"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000032""},""definition"":[{""type"":[""literal""],""value"":""An investigation concerning a specific population group.""},{""type"":[""literal""],""value"":""Should be paired with the an ontology term representing this population (e.g., xxx).""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000066"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000066"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000066"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000066"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/DUO_0000041"":{""type"":[""literal""],""value"":""population research""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""An investigation concerning a specific population group.""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""value"":""This definition is a placeholder as a result of meetings at ICBO2018.""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000032""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Should be paired with the an ontology term representing this population (e.g., xxx).""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""population research""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000066"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""population research""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""population research""},{""type"":[""literal""],""value"":""An investigation concerning a specific population group.""},{""type"":[""literal""],""value"":""This definition is a placeholder as a result of meetings at ICBO2018.""},{""type"":[""literal""],""value"":""DUO:0000032""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_0000032""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000066""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000041"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DUO_preferred_label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000041""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""DUO:0000032"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000032"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""population research""},""curie"":""DUO:0000032"",""type"":[""class"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000032"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","DUO:0000032","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/OBI_0000066","true","population research","","","","An investigation concerning a specific population group.","","","","","","","","This definition is a placeholder as a result of meetings at ICBO2018.","","","0.0","","","http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000066|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","Should be paired with the an ontology term representing this population (e.g., xxx).","An investigation concerning a specific population group.|Should be paired with the an ontology term representing this population (e.g., xxx).","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000066","","http://purl.obolibrary.org/obo/DUO_0000032","http://purl.obolibrary.org/obo/OBI_0000066|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","population research","","","DUO","","DUO:0000032","DUO_0000032","duo","population research","duo","" "duo+class+http://purl.obolibrary.org/obo/DUO_0000033","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000033"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000033""},""definition"":{""type"":[""literal""],""value"":""An investigation concerning ancestry or population origins.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000066"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000066"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000066"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000066"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/DUO_0000041"":{""type"":[""literal""],""value"":""ancestry research""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""An investigation concerning ancestry or population origins.""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""value"":""This definition is a placeholder as a result of meetings at ICBO2018.""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000033""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""ancestry research""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000066"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""ancestry research""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""ancestry research""},{""type"":[""literal""],""value"":""An investigation concerning ancestry or population origins.""},{""type"":[""literal""],""value"":""This definition is a placeholder as a result of meetings at ICBO2018.""},{""type"":[""literal""],""value"":""DUO:0000033""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_0000033""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000066""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000041"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DUO_preferred_label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000041""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""DUO:0000033"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000033"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ancestry research""},""curie"":""DUO:0000033"",""type"":[""class"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000033"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","DUO:0000033","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000066","true","ancestry research","","","","An investigation concerning ancestry or population origins.","","","","","","","","This definition is a placeholder as a result of meetings at ICBO2018.","","","0.0","","","http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000066|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An investigation concerning ancestry or population origins.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000066","","http://purl.obolibrary.org/obo/DUO_0000033","http://purl.obolibrary.org/obo/OBI_0000066|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","ancestry research","","","DUO","","DUO:0000033","DUO_0000033","duo","ancestry research","duo","" -"duo+class+http://purl.obolibrary.org/obo/DUO_0000034","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000034"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000034""},""definition"":[{""type"":[""literal""],""value"":""An investigation concerning specific age categories.""},{""type"":[""literal""],""value"":""Should be paired with the an ontology term representing this population (e.g., xxx).""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000066"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000066"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000066"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000066"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/DUO_0000041"":{""type"":[""literal""],""value"":""age category research""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""An investigation concerning specific age categories.""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""value"":""This definition is a placeholder as a result of meetings at ICBO2018.""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000034""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Should be paired with the an ontology term representing this population (e.g., xxx).""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""age category research""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000066"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""age category research""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""age category research""},{""type"":[""literal""],""value"":""An investigation concerning specific age categories.""},{""type"":[""literal""],""value"":""This definition is a placeholder as a result of meetings at ICBO2018.""},{""type"":[""literal""],""value"":""DUO:0000034""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_0000034""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000066""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000041"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DUO_preferred_label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000041""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""DUO:0000034"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000034"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""age category research""},""curie"":""DUO:0000034"",""type"":[""class"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000034"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","DUO:0000034","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/OBI_0000066","true","age category research","","","","An investigation concerning specific age categories.","","","","","","","","This definition is a placeholder as a result of meetings at ICBO2018.","","","0.0","","","http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000066|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","Should be paired with the an ontology term representing this population (e.g., xxx).","An investigation concerning specific age categories.|Should be paired with the an ontology term representing this population (e.g., xxx).","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000066","","http://purl.obolibrary.org/obo/DUO_0000034","http://purl.obolibrary.org/obo/OBI_0000066|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","age category research","","","DUO","","DUO:0000034","DUO_0000034","duo","age category research","duo","" +"duo+class+http://purl.obolibrary.org/obo/DUO_0000034","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000034"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000034""},""definition"":[{""type"":[""literal""],""value"":""An investigation concerning specific age categories.""},{""type"":[""literal""],""value"":""Should be paired with the an ontology term representing this population (e.g., xxx).""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000066"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000066"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000066"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000066"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/DUO_0000041"":{""type"":[""literal""],""value"":""age category research""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""An investigation concerning specific age categories.""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""value"":""This definition is a placeholder as a result of meetings at ICBO2018.""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000034""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Should be paired with the an ontology term representing this population (e.g., xxx).""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""age category research""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000066"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""age category research""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""age category research""},{""type"":[""literal""],""value"":""An investigation concerning specific age categories.""},{""type"":[""literal""],""value"":""This definition is a placeholder as a result of meetings at ICBO2018.""},{""type"":[""literal""],""value"":""DUO:0000034""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_0000034""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000066""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000041"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DUO_preferred_label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000041""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""DUO:0000034"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000034"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""age category research""},""curie"":""DUO:0000034"",""type"":[""class"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000034"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","DUO:0000034","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/OBI_0000066","true","age category research","","","","An investigation concerning specific age categories.","","","","","","","","This definition is a placeholder as a result of meetings at ICBO2018.","","","0.0","","","http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000066|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","Should be paired with the an ontology term representing this population (e.g., xxx).","An investigation concerning specific age categories.|Should be paired with the an ontology term representing this population (e.g., xxx).","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000066","","http://purl.obolibrary.org/obo/DUO_0000034","http://purl.obolibrary.org/obo/OBI_0000066|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","age category research","","","DUO","","DUO:0000034","DUO_0000034","duo","age category research","duo","" "duo+class+http://purl.obolibrary.org/obo/DUO_0000035","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000035"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000035""},""definition"":[{""type"":[""literal""],""value"":""An investigation concerning specific gender categories.""},{""type"":[""literal""],""value"":""Should be paired with the an ontology term representing this population (e.g., xxx).""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000066"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000066"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000066"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000066"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/DUO_0000041"":{""type"":[""literal""],""value"":""gender category research""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""An investigation concerning specific gender categories.""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""value"":""This definition is a placeholder as a result of meetings at ICBO2018.""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000035""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Should be paired with the an ontology term representing this population (e.g., xxx).""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gender category research""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000066"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gender category research""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""gender category research""},{""type"":[""literal""],""value"":""An investigation concerning specific gender categories.""},{""type"":[""literal""],""value"":""This definition is a placeholder as a result of meetings at ICBO2018.""},{""type"":[""literal""],""value"":""DUO:0000035""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_0000035""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000066""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000041"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DUO_preferred_label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000041""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""DUO:0000035"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000035"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gender category research""},""curie"":""DUO:0000035"",""type"":[""class"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000035"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","DUO:0000035","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/OBI_0000066","true","gender category research","","","","An investigation concerning specific gender categories.","","","","","","","","This definition is a placeholder as a result of meetings at ICBO2018.","","","0.0","","","http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000066|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","Should be paired with the an ontology term representing this population (e.g., xxx).","An investigation concerning specific gender categories.|Should be paired with the an ontology term representing this population (e.g., xxx).","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000066","","http://purl.obolibrary.org/obo/DUO_0000035","http://purl.obolibrary.org/obo/OBI_0000066|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","gender category research","","","DUO","","DUO:0000035","DUO_0000035","duo","gender category research","duo","" "duo+class+http://purl.obolibrary.org/obo/DUO_0000036","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000036"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000036""},""definition"":{""type"":[""literal""],""value"":""An investigation concerning use of data as reference or control material.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000066"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000066"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000066"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000066"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/DUO_0000041"":{""type"":[""literal""],""value"":""research control""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""An investigation concerning use of data as reference or control material.""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""value"":""This definition is a placeholder as a result of meetings at ICBO2018.""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000036""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""research control""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000066"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""research control""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""research control""},{""type"":[""literal""],""value"":""An investigation concerning use of data as reference or control material.""},{""type"":[""literal""],""value"":""This definition is a placeholder as a result of meetings at ICBO2018.""},{""type"":[""literal""],""value"":""DUO:0000036""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_0000036""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000066""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000041"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DUO_preferred_label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000041""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""DUO:0000036"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000036"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""research control""},""curie"":""DUO:0000036"",""type"":[""class"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000036"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","DUO:0000036","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000066","true","research control","","","","An investigation concerning use of data as reference or control material.","","","","","","","","This definition is a placeholder as a result of meetings at ICBO2018.","","","0.0","","","http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000066|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An investigation concerning use of data as reference or control material.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000066","","http://purl.obolibrary.org/obo/DUO_0000036","http://purl.obolibrary.org/obo/OBI_0000066|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","research control","","","DUO","","DUO:0000036","DUO_0000036","duo","research control","duo","" "duo+class+http://purl.obolibrary.org/obo/DUO_0000037","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000037"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000037""},""definition"":{""type"":[""literal""],""value"":""An investigation concerning health, medical, or biomedical research.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000066"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000066"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000066"",""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000066"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/DUO_0000041"":{""type"":[""literal""],""value"":""biomedical research""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""An investigation concerning health, medical, or biomedical research.""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""value"":""This definition is a placeholder as a result of meetings at ICBO2018.""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000037""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""biomedical research""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000066"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""biomedical research""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""biomedical research""},{""type"":[""literal""],""value"":""An investigation concerning health, medical, or biomedical research.""},{""type"":[""literal""],""value"":""This definition is a placeholder as a result of meetings at ICBO2018.""},{""type"":[""literal""],""value"":""DUO:0000037""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_0000037""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000066""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000041"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DUO_preferred_label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000041""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""DUO:0000037"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000037"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""biomedical research""},""curie"":""DUO:0000037"",""type"":[""class"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000037"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","DUO:0000037","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000066","true","biomedical research","","","","An investigation concerning health, medical, or biomedical research.","","","","","","","","This definition is a placeholder as a result of meetings at ICBO2018.","","","3.0","","","http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000066|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An investigation concerning health, medical, or biomedical research.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000066","","http://purl.obolibrary.org/obo/DUO_0000037","http://purl.obolibrary.org/obo/OBI_0000066|http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","biomedical research","","","DUO","","DUO:0000037","DUO_0000037","duo","biomedical research","duo","" @@ -91,81 +91,81 @@ Other resources, such as the Disease Ontology, HPO, SNOMED-CT or others, can als "duo+class+http://purl.obolibrary.org/obo/DUO_0000045","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000045"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000045""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use modifier indicates that use of the data is limited to not-for-profit organizations."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/DUO_0000018"",""http://purl.obolibrary.org/obo/DUO_0000017"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/DUO_0000018"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/DUO_0000018"",""http://purl.obolibrary.org/obo/DUO_0000017"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/DUO_0000018"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use modifier indicates that use of the data is limited to not-for-profit organizations."",""lang"":""en""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000045""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""NPU""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""not for profit organisation use only"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/DUO_0000018"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""not for profit organisation use only"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use modifier indicates that use of the data is limited to not-for-profit organizations."",""lang"":""en""},{""type"":[""literal""],""value"":""DUO:0000045""},{""type"":[""literal""],""value"":""NPU""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_0000045""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""DUO:0000045"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000045"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""not for profit organisation use only"",""lang"":""en""},""curie"":""DUO:0000045"",""type"":[""class"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000045"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000018"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""not for profit, non commercial use only"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000017"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data use modifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","DUO:0000045","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/DUO_0000018","true","","","","","This data use modifier indicates that use of the data is limited to not-for-profit organizations.","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/DUO_0000018","http://purl.obolibrary.org/obo/DUO_0000018|http://purl.obolibrary.org/obo/DUO_0000017|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","NPU","false","","This data use modifier indicates that use of the data is limited to not-for-profit organizations.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/DUO_0000018","","http://purl.obolibrary.org/obo/DUO_0000045","http://purl.obolibrary.org/obo/DUO_0000018|http://purl.obolibrary.org/obo/DUO_0000017|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","not for profit organisation use only","","","DUO","","DUO:0000045","DUO_0000045","duo","not for profit organisation use only","duo","" "duo+class+http://purl.obolibrary.org/obo/DUO_0000046","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000046"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000046""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use modifier indicates that use of the data is limited to not-for-profit use."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This indicates that data can be used by commercial organisations for research purposes, but not commercial purposes."",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/DUO_0000018"",""http://purl.obolibrary.org/obo/DUO_0000017"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/DUO_0000018"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/DUO_0000018"",""http://purl.obolibrary.org/obo/DUO_0000017"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/DUO_0000018"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use modifier indicates that use of the data is limited to not-for-profit use."",""lang"":""en""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000046""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""NCU""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This indicates that data can be used by commercial organisations for research purposes, but not commercial purposes."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""non-commercial use only"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/DUO_0000018"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""non-commercial use only"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This data use modifier indicates that use of the data is limited to not-for-profit use."",""lang"":""en""},{""type"":[""literal""],""value"":""DUO:0000046""},{""type"":[""literal""],""value"":""NCU""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_0000046""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""DUO:0000046"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000046"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""non-commercial use only"",""lang"":""en""},""curie"":""DUO:0000046"",""type"":[""class"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000046"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000018"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""not for profit, non commercial use only"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000017"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data use modifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000017""},""type"":[""class"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","DUO:0000046","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/DUO_0000018","true","","","","","This data use modifier indicates that use of the data is limited to not-for-profit use.","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/DUO_0000018","http://purl.obolibrary.org/obo/DUO_0000018|http://purl.obolibrary.org/obo/DUO_0000017|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","NCU","false","This indicates that data can be used by commercial organisations for research purposes, but not commercial purposes.","This data use modifier indicates that use of the data is limited to not-for-profit use.|This indicates that data can be used by commercial organisations for research purposes, but not commercial purposes.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/DUO_0000018","","http://purl.obolibrary.org/obo/DUO_0000046","http://purl.obolibrary.org/obo/DUO_0000018|http://purl.obolibrary.org/obo/DUO_0000017|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","non-commercial use only","","","DUO","","DUO:0000046","DUO_0000046","duo","non-commercial use only","duo","" "duo+class+http://purl.obolibrary.org/obo/GAZ_00000448","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GAZ_00000448"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GAZ:00000448""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000029"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000029"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000029"",""http://purl.obolibrary.org/obo/BFO_0000141"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000029"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""GAZ:00000448""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""geographic location""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000029"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""geographic location""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/DUO_0000010"",""value"":""http://purl.obolibrary.org/obo/DUO_0000022"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/DUO_0000010"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GAZ_00000448"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""GAZ:00000448""},false],""shortForm"":{""type"":[""literal""],""value"":""GAZ_00000448""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""GAZ:00000448"":{""url"":""http://purl.obolibrary.org/obo/GAZ_00000448"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""GAZ:00000448""},""http://purl.obolibrary.org/obo/DUO_0000010"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""is restricted to""},""curie"":{""type"":[""literal""],""value"":""DUO:0000010""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000022"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""geographical restriction"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000022""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000029"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""site"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000029""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","GAZ:00000448","","http://purl.obolibrary.org/obo/BFO_0000029","true","","","","","","","","","","","","","","","http://purl.obolibrary.org/obo/DUO_0000022","0.0","","","http://purl.obolibrary.org/obo/BFO_0000029","http://purl.obolibrary.org/obo/BFO_0000029|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000029","","http://purl.obolibrary.org/obo/GAZ_00000448","http://purl.obolibrary.org/obo/BFO_0000029|http://purl.obolibrary.org/obo/BFO_0000141|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","geographic location","","","DUO","","GAZ:00000448","GAZ_00000448","","geographic location","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000001""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that specifies what should happen if the trigger condition is fulfilled."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conditional specification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that specifies what should happen if the trigger condition is fulfilled."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PlanAndPlannedProcess Branch"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI branch derived"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000349"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conditional specification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000033"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conditional specification"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conditional specification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that specifies what should happen if the trigger condition is fulfilled."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PlanAndPlannedProcess Branch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI branch derived"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000349"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000001""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000001"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000001""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000033","true","","","PlanAndPlannedProcess Branch","http://purl.obolibrary.org/obo/IAO_0000120","A directive information entity that specifies what should happen if the trigger condition is fulfilled.","","","","","","","conditional specification","","","","2.0","","OBI branch derived|OBI_0000349","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A directive information entity that specifies what should happen if the trigger condition is fulfilled.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000033","","http://purl.obolibrary.org/obo/IAO_0000001","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","conditional specification","","","DUO","","IAO:0000001","IAO_0000001","","conditional specification","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000003","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000003""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000009"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000009"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000009"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000009"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement unit label"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of measurement unit labels are liters, inches, weight per volume."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: provenance: a term measurement unit was\nproposed for OBI (OBI_0000176) , edited by Chris Stoeckert and\nCristian Cocos, and subsequently moved to IAO where the objective for\nwhich the original term was defined was satisfied with the definition\nof this, different, term."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: review of this term done during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement unit label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000009"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement unit label"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement unit label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of measurement unit labels are liters, inches, weight per volume."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: provenance: a term measurement unit was\nproposed for OBI (OBI_0000176) , edited by Chris Stoeckert and\nCristian Cocos, and subsequently moved to IAO where the objective for\nwhich the original term was defined was satisfied with the definition\nof this, different, term."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: review of this term done during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000003""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""IAO:0000003"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000003"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000003""},""http://purl.obolibrary.org/obo/IAO_0000009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""datum label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000009","true","","2009-03-16: provenance: a term measurement unit was +"duo+class+http://purl.obolibrary.org/obo/IAO_0000001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000001""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that specifies what should happen if the trigger condition is fulfilled."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conditional specification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that specifies what should happen if the trigger condition is fulfilled."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PlanAndPlannedProcess Branch"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI branch derived"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000349"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conditional specification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000033"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conditional specification"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conditional specification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that specifies what should happen if the trigger condition is fulfilled."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PlanAndPlannedProcess Branch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI branch derived"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000349"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000001""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000033","true","","","PlanAndPlannedProcess Branch","http://purl.obolibrary.org/obo/IAO_0000120","A directive information entity that specifies what should happen if the trigger condition is fulfilled.","","","","","","","conditional specification","","","","2.0","","OBI branch derived|OBI_0000349","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A directive information entity that specifies what should happen if the trigger condition is fulfilled.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000033","","http://purl.obolibrary.org/obo/IAO_0000001","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","conditional specification","","","DUO","","IAO:0000001","IAO_0000001","","conditional specification","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000003","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000003""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000009"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000009"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000009"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000009"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement unit label"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of measurement unit labels are liters, inches, weight per volume."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: provenance: a term measurement unit was\nproposed for OBI (OBI_0000176) , edited by Chris Stoeckert and\nCristian Cocos, and subsequently moved to IAO where the objective for\nwhich the original term was defined was satisfied with the definition\nof this, different, term."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: review of this term done during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement unit label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000009"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement unit label"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement unit label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of measurement unit labels are liters, inches, weight per volume."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: provenance: a term measurement unit was\nproposed for OBI (OBI_0000176) , edited by Chris Stoeckert and\nCristian Cocos, and subsequently moved to IAO where the objective for\nwhich the original term was defined was satisfied with the definition\nof this, different, term."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: review of this term done during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000003""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""datum label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000009","true","","2009-03-16: provenance: a term measurement unit was proposed for OBI (OBI_0000176) , edited by Chris Stoeckert and Cristian Cocos, and subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definition of this, different, term.|2009-03-16: review of this term done during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.","PERSON: Alan Ruttenberg|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000125","A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure.","","","Examples of measurement unit labels are liters, inches, weight per volume.","","","","measurement unit label","","","","3.0","","","http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000009|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000009","","http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000009|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","measurement unit label","","","DUO","","IAO:0000003","IAO_0000003","","measurement unit label","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000005","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000005"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000005""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""objective specification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: original definition when imported from OBI read: \""objective is an non realizable information entity which can serve as that proper part of a plan towards which the realization of the plan is directed.\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-03-31: In the example of usage (\""In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction\"") there is a protocol which is the ChIP assay protocol. In addition to being concretized on paper, the protocol can be concretized as a realizable entity, such as a plan that inheres in a person. The objective specification is the part that says that some protein and DNA interactions are identified. This is a specification of a process endpoint: the boundary in the process before which they are not identified and after which they are. During the realization of the plan, the goal is to get to the point of having the interactions, and participants in the realization of the plan try to do that."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Answers the question, why did you do this experiment?"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Barry Smith"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jennifer Fostel"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""goal specification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI Plan and Planned Process/Roles Branch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000217"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""objective specification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000033"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""objective specification"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000005"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000316"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000005"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""objective specification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: original definition when imported from OBI read: \""objective is an non realizable information entity which can serve as that proper part of a plan towards which the realization of the plan is directed.\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-03-31: In the example of usage (\""In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction\"") there is a protocol which is the ChIP assay protocol. In addition to being concretized on paper, the protocol can be concretized as a realizable entity, such as a plan that inheres in a person. The objective specification is the part that says that some protein and DNA interactions are identified. This is a specification of a process endpoint: the boundary in the process before which they are not identified and after which they are. During the realization of the plan, the goal is to get to the point of having the interactions, and participants in the realization of the plan try to do that."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Answers the question, why did you do this experiment?"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Barry Smith"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jennifer Fostel"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""goal specification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI Plan and Planned Process/Roles Branch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000217"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000005""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000316"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""introduction to a publication about an investigation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000316""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000005"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000005"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000005""},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000033","true","","2009-03-16: original definition when imported from OBI read: ""objective is an non realizable information entity which can serve as that proper part of a plan towards which the realization of the plan is directed.""|2014-03-31: In the example of usage (""In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction"") there is a protocol which is the ChIP assay protocol. In addition to being concretized on paper, the protocol can be concretized as a realizable entity, such as a plan that inheres in a person. The objective specification is the part that says that some protein and DNA interactions are identified. This is a specification of a process endpoint: the boundary in the process before which they are not identified and after which they are. During the realization of the plan, the goal is to get to the point of having the interactions, and participants in the realization of the plan try to do that.|Answers the question, why did you do this experiment?","PERSON: Alan Ruttenberg|PERSON: Barry Smith|PERSON: Bjoern Peters|PERSON: Jennifer Fostel","http://purl.obolibrary.org/obo/IAO_0000122","A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.","","","In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction.","","","","objective specification","","","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000316","0.0","goal specification","OBI Plan and Planned Process/Roles Branch|OBI_0000217","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000033","","http://purl.obolibrary.org/obo/IAO_0000005","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","objective specification","","","DUO","","IAO:0000005","IAO_0000005","","objective specification","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000006","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000006"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000006""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A narrative object is an information content entity that is a set of propositions."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""narrative object"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of narrative objects are reports, journal articles, and patents submission."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A narrative object is an information content entity that is a set of propositions."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity\u0027 and \u0027figure\u0027. Alan restored as there are OBI dependencies and this merits further discussion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""agree - DENRIE. Issue(alan) do we only mean text? What about a story told by mime. Does music count? (no) what about an oral report. Regarding definition, saying it is a set of propositions means we loose the idea that wording matters. Maybe adjust saying a narrative object has some relationshop to a set of propositions"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000013"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""narrative object"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""narrative object"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""narrative object"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of narrative objects are reports, journal articles, and patents submission."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A narrative object is an information content entity that is a set of propositions."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity\u0027 and \u0027figure\u0027. Alan restored as there are OBI dependencies and this merits further discussion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""agree - DENRIE. Issue(alan) do we only mean text? What about a story told by mime. Does music count? (no) what about an oral report. Regarding definition, saying it is a set of propositions means we loose the idea that wording matters. Maybe adjust saying a narrative object has some relationshop to a set of propositions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000013"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000006""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""IAO:0000006"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000006"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000006""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030","true","","2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by 'textual entity' and 'figure'. Alan restored as there are OBI dependencies and this merits further discussion|agree - DENRIE. Issue(alan) do we only mean text? What about a story told by mime. Does music count? (no) what about an oral report. Regarding definition, saying it is a set of propositions means we loose the idea that wording matters. Maybe adjust saying a narrative object has some relationshop to a set of propositions","person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000123","A narrative object is an information content entity that is a set of propositions.","","","Examples of narrative objects are reports, journal articles, and patents submission.","","","","narrative object","","","","0.0","","OBI_0000013|group:OBI","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A narrative object is an information content entity that is a set of propositions.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0000006","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","narrative object","","","DUO","","IAO:0000006","IAO_0000006","","narrative object","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000007","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000007"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000007""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that describes an action the bearer will take."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Pour the contents of flask 1 into flask 2"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that describes an action the bearer will take."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI Plan and Planned Process branch"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""action specification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000033"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""action specification"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000007"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Pour the contents of flask 1 into flask 2"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that describes an action the bearer will take."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI Plan and Planned Process branch"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000007""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000007"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000007"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000007""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000033","true","","","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000122","A directive information entity that describes an action the bearer will take.","","","Pour the contents of flask 1 into flask 2","","","","","","","http://purl.obolibrary.org/obo/IAO_0000104","0.0","","OBI Plan and Planned Process branch","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A directive information entity that describes an action the bearer will take.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000033","","http://purl.obolibrary.org/obo/IAO_0000007","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","action specification","","","DUO","","IAO:0000007","IAO_0000007","","action specification","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000008","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000008"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000008""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_artifact""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_artifact""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000008""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000008"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000008"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000008""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","","","","","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","","","","","0.0","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000008","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_artifact","","","DUO","","IAO:0000008","IAO_0000008","","obsolete_artifact","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000009","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000009"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000009""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""datum label"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""http://www.golovchenko.org/cgi-bin/wnsearch?q\u003dlabel#4n"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""value"":""9/22/11 BP: changed the rdfs:label for this class from \u0027label\u0027 to \u0027datum label\u0027 to convey that this class is not intended to cover all kinds of labels (stickers, radiolabels, etc.), and not even all kind of textual labels, but rather the kind of labels occuring in a datum. \n""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""datum label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""datum label"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""datum label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""http://www.golovchenko.org/cgi-bin/wnsearch?q\u003dlabel#4n"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},{""type"":[""literal""],""value"":""9/22/11 BP: changed the rdfs:label for this class from \u0027label\u0027 to \u0027datum label\u0027 to convey that this class is not intended to cover all kinds of labels (stickers, radiolabels, etc.), and not even all kind of textual labels, but rather the kind of labels occuring in a datum. \n""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000009""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000009"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000009"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000009""},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030","true","","http://www.golovchenko.org/cgi-bin/wnsearch?q=label#4n","GROUP: IAO","http://purl.obolibrary.org/obo/IAO_0000123","A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label","","","","","","","datum label","9/22/11 BP: changed the rdfs:label for this class from 'label' to 'datum label' to convey that this class is not intended to cover all kinds of labels (stickers, radiolabels, etc.), and not even all kind of textual labels, but rather the kind of labels occuring in a datum. +"duo+class+http://purl.obolibrary.org/obo/IAO_0000005","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000005"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000005""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""objective specification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: original definition when imported from OBI read: \""objective is an non realizable information entity which can serve as that proper part of a plan towards which the realization of the plan is directed.\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-03-31: In the example of usage (\""In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction\"") there is a protocol which is the ChIP assay protocol. In addition to being concretized on paper, the protocol can be concretized as a realizable entity, such as a plan that inheres in a person. The objective specification is the part that says that some protein and DNA interactions are identified. This is a specification of a process endpoint: the boundary in the process before which they are not identified and after which they are. During the realization of the plan, the goal is to get to the point of having the interactions, and participants in the realization of the plan try to do that."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Answers the question, why did you do this experiment?"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Barry Smith"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jennifer Fostel"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""goal specification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI Plan and Planned Process/Roles Branch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000217"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""objective specification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000033"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""objective specification"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000005"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000316"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000005"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""objective specification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: original definition when imported from OBI read: \""objective is an non realizable information entity which can serve as that proper part of a plan towards which the realization of the plan is directed.\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-03-31: In the example of usage (\""In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction\"") there is a protocol which is the ChIP assay protocol. In addition to being concretized on paper, the protocol can be concretized as a realizable entity, such as a plan that inheres in a person. The objective specification is the part that says that some protein and DNA interactions are identified. This is a specification of a process endpoint: the boundary in the process before which they are not identified and after which they are. During the realization of the plan, the goal is to get to the point of having the interactions, and participants in the realization of the plan try to do that."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Answers the question, why did you do this experiment?"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Barry Smith"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jennifer Fostel"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""goal specification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI Plan and Planned Process/Roles Branch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000217"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000005""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000316"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""introduction to a publication about an investigation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000316""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000033","true","","2009-03-16: original definition when imported from OBI read: ""objective is an non realizable information entity which can serve as that proper part of a plan towards which the realization of the plan is directed.""|2014-03-31: In the example of usage (""In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction"") there is a protocol which is the ChIP assay protocol. In addition to being concretized on paper, the protocol can be concretized as a realizable entity, such as a plan that inheres in a person. The objective specification is the part that says that some protein and DNA interactions are identified. This is a specification of a process endpoint: the boundary in the process before which they are not identified and after which they are. During the realization of the plan, the goal is to get to the point of having the interactions, and participants in the realization of the plan try to do that.|Answers the question, why did you do this experiment?","PERSON: Alan Ruttenberg|PERSON: Barry Smith|PERSON: Bjoern Peters|PERSON: Jennifer Fostel","http://purl.obolibrary.org/obo/IAO_0000122","A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.","","","In the protocol of a ChIP assay the objective specification says to identify protein and DNA interaction.","","","","objective specification","","","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000316","0.0","goal specification","OBI Plan and Planned Process/Roles Branch|OBI_0000217","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000033","","http://purl.obolibrary.org/obo/IAO_0000005","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","objective specification","","","DUO","","IAO:0000005","IAO_0000005","","objective specification","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000006","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000006"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000006""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A narrative object is an information content entity that is a set of propositions."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""narrative object"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of narrative objects are reports, journal articles, and patents submission."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A narrative object is an information content entity that is a set of propositions."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity\u0027 and \u0027figure\u0027. Alan restored as there are OBI dependencies and this merits further discussion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""agree - DENRIE. Issue(alan) do we only mean text? What about a story told by mime. Does music count? (no) what about an oral report. Regarding definition, saying it is a set of propositions means we loose the idea that wording matters. Maybe adjust saying a narrative object has some relationshop to a set of propositions"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000013"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""narrative object"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""narrative object"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""narrative object"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of narrative objects are reports, journal articles, and patents submission."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A narrative object is an information content entity that is a set of propositions."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity\u0027 and \u0027figure\u0027. Alan restored as there are OBI dependencies and this merits further discussion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""agree - DENRIE. Issue(alan) do we only mean text? What about a story told by mime. Does music count? (no) what about an oral report. Regarding definition, saying it is a set of propositions means we loose the idea that wording matters. Maybe adjust saying a narrative object has some relationshop to a set of propositions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000013"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000006""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030","true","","2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by 'textual entity' and 'figure'. Alan restored as there are OBI dependencies and this merits further discussion|agree - DENRIE. Issue(alan) do we only mean text? What about a story told by mime. Does music count? (no) what about an oral report. Regarding definition, saying it is a set of propositions means we loose the idea that wording matters. Maybe adjust saying a narrative object has some relationshop to a set of propositions","person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000123","A narrative object is an information content entity that is a set of propositions.","","","Examples of narrative objects are reports, journal articles, and patents submission.","","","","narrative object","","","","0.0","","OBI_0000013|group:OBI","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A narrative object is an information content entity that is a set of propositions.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0000006","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","narrative object","","","DUO","","IAO:0000006","IAO_0000006","","narrative object","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000007","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000007"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000007""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that describes an action the bearer will take."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Pour the contents of flask 1 into flask 2"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that describes an action the bearer will take."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI Plan and Planned Process branch"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""action specification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000033"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""action specification"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000104"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000007"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Pour the contents of flask 1 into flask 2"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity that describes an action the bearer will take."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI Plan and Planned Process branch"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000007""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000033","true","","","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000122","A directive information entity that describes an action the bearer will take.","","","Pour the contents of flask 1 into flask 2","","","","","","","http://purl.obolibrary.org/obo/IAO_0000104","0.0","","OBI Plan and Planned Process branch","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A directive information entity that describes an action the bearer will take.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000033","","http://purl.obolibrary.org/obo/IAO_0000007","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","action specification","","","DUO","","IAO:0000007","IAO_0000007","","action specification","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000008","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000008"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000008""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_artifact""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_artifact""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000008""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","","","","","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","","","","","0.0","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000008","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_artifact","","","DUO","","IAO:0000008","IAO_0000008","","obsolete_artifact","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000009","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000009"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000009""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""datum label"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""http://www.golovchenko.org/cgi-bin/wnsearch?q\u003dlabel#4n"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""value"":""9/22/11 BP: changed the rdfs:label for this class from \u0027label\u0027 to \u0027datum label\u0027 to convey that this class is not intended to cover all kinds of labels (stickers, radiolabels, etc.), and not even all kind of textual labels, but rather the kind of labels occuring in a datum. \n""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""datum label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""datum label"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""datum label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""http://www.golovchenko.org/cgi-bin/wnsearch?q\u003dlabel#4n"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},{""type"":[""literal""],""value"":""9/22/11 BP: changed the rdfs:label for this class from \u0027label\u0027 to \u0027datum label\u0027 to convey that this class is not intended to cover all kinds of labels (stickers, radiolabels, etc.), and not even all kind of textual labels, but rather the kind of labels occuring in a datum. \n""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000009""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030","true","","http://www.golovchenko.org/cgi-bin/wnsearch?q=label#4n","GROUP: IAO","http://purl.obolibrary.org/obo/IAO_0000123","A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label","","","","","","","datum label","9/22/11 BP: changed the rdfs:label for this class from 'label' to 'datum label' to convey that this class is not intended to cover all kinds of labels (stickers, radiolabels, etc.), and not even all kind of textual labels, but rather the kind of labels occuring in a datum. ","","","4.0","","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0000009","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","datum label","","","DUO","","IAO:0000009","IAO_0000009","","datum label","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000010","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000010"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000010""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Software is a plan specification composed of a series of instructions that can be \ninterpreted by or directly executed by a processing unit."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Software is a plan specification composed of a series of instructions that can be \ninterpreted by or directly executed by a processing unit."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""see sourceforge tracker discussion at http://sourceforge.net/tracker/index.php?func\u003ddetail\u0026aid\u003d1958818\u0026group_id\u003d177891\u0026atid\u003d886178"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: OBI"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000104"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Software is a plan specification composed of a series of instructions that can be \ninterpreted by or directly executed by a processing unit."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""see sourceforge tracker discussion at http://sourceforge.net/tracker/index.php?func\u003ddetail\u0026aid\u003d1958818\u0026group_id\u003d177891\u0026atid\u003d886178"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000010""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000010"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000010"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000010""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000104","true","","see sourceforge tracker discussion at http://sourceforge.net/tracker/index.php?func=detail&aid=1958818&group_id=177891&atid=886178","PERSON: Alan Ruttenberg|PERSON: Bjoern Peters|PERSON: Chris Stoeckert|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000120","Software is a plan specification composed of a series of instructions that can be +"duo+class+http://purl.obolibrary.org/obo/IAO_0000010","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000010"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000010""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Software is a plan specification composed of a series of instructions that can be \ninterpreted by or directly executed by a processing unit."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Software is a plan specification composed of a series of instructions that can be \ninterpreted by or directly executed by a processing unit."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""see sourceforge tracker discussion at http://sourceforge.net/tracker/index.php?func\u003ddetail\u0026aid\u003d1958818\u0026group_id\u003d177891\u0026atid\u003d886178"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: OBI"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000104"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},""numDescendants"":5.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Software is a plan specification composed of a series of instructions that can be \ninterpreted by or directly executed by a processing unit."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""see sourceforge tracker discussion at http://sourceforge.net/tracker/index.php?func\u003ddetail\u0026aid\u003d1958818\u0026group_id\u003d177891\u0026atid\u003d886178"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000010""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000104","true","","see sourceforge tracker discussion at http://sourceforge.net/tracker/index.php?func=detail&aid=1958818&group_id=177891&atid=886178","PERSON: Alan Ruttenberg|PERSON: Bjoern Peters|PERSON: Chris Stoeckert|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000120","Software is a plan specification composed of a series of instructions that can be interpreted by or directly executed by a processing unit.","","","","","","","software","","","","5.0","","GROUP: OBI","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","Software is a plan specification composed of a series of instructions that can be interpreted by or directly executed by a processing unit.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000104","","http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","software","","","DUO","","IAO:0000010","IAO_0000010","","software","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000012","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000012"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000012""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_digital entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\n\nSuperclass was \u0027digitial quality\u0027"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""OBI_0000261""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_digital entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_digital entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_digital entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\n\nSuperclass was \u0027digitial quality\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000261""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000012""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000012"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000012"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000012""},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4 +"duo+class+http://purl.obolibrary.org/obo/IAO_0000012","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000012"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000012""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_digital entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\n\nSuperclass was \u0027digitial quality\u0027"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""OBI_0000261""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_digital entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_digital entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_digital entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\n\nSuperclass was \u0027digitial quality\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000261""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000012""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4 Superclass was 'digitial quality'","person:Chris Stoeckert","","A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical.","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","obsolete_digital entity","","","","0.0","","OBI_0000261|group:OBI","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A digital entity is an information entity which is a collection of bits that can be interpreted by a computer. Two digital entities are the same if they are bitwise identical.","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000012","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete2_digital entity","","","DUO","","IAO:0000012","IAO_0000012","","obsolete2_digital entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000013","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000013"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000013""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report that is published in a journal."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000088"",""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000311""],""directParent"":[""http://purl.obolibrary.org/obo/IAO_0000088"",""http://purl.obolibrary.org/obo/IAO_0000311""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000088"",""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000311""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/IAO_0000088"",""http://purl.obolibrary.org/obo/IAO_0000311""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""journal article"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples are articles published in the journals, Nature and Science. The content can often be cited by reference to a paper based encoding, e.g. Authors, Title of article, Journal name, date or year of publication, volume and page number."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report that is published in a journal."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000159"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""journal article"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000088"",""http://purl.obolibrary.org/obo/IAO_0000311"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000312"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000444"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000444"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000312"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""journal article"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000443"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000013"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/OBI_0000312"",""value"":""http://purl.obolibrary.org/obo/IAO_0000444"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000312"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000444"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""journal article"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples are articles published in the journals, Nature and Science. The content can often be cited by reference to a paper based encoding, e.g. Authors, Title of article, Journal name, date or year of publication, volume and page number."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report that is published in a journal."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000159"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000013""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000311"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000311""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000312"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000312""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000444"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publishing process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000444""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""data item extraction from journal article""},""curie"":{""type"":[""literal""],""value"":""IAO:0000443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000088"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000088""},""type"":[""class"",""entity""]},""IAO:0000013"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000013"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000013""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000444","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000088|http://purl.obolibrary.org/obo/IAO_0000311||","true","","","PERSON: Alan Ruttenberg|PERSON: Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000120","A report that is published in a journal.","","","Examples are articles published in the journals, Nature and Science. The content can often be cited by reference to a paper based encoding, e.g. Authors, Title of article, Journal name, date or year of publication, volume and page number.","","","","journal article","","","http://purl.obolibrary.org/obo/IAO_0000443","0.0","","OBI_0000159|group:OBI","http://purl.obolibrary.org/obo/IAO_0000088|http://purl.obolibrary.org/obo/IAO_0000311","http://purl.obolibrary.org/obo/IAO_0000088|http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000311","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A report that is published in a journal.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000088|http://purl.obolibrary.org/obo/IAO_0000311","","http://purl.obolibrary.org/obo/IAO_0000013","http://purl.obolibrary.org/obo/IAO_0000088|http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000311","","","false","journal article","","","DUO","","IAO:0000013","IAO_0000013","","journal article","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000015","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000015"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000015""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A quality of an information bearer that imparts the information content"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000019"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000019"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information carrier"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""In the case of a printed paperback novel the physicality of the ink and of the paper form part of the information bearer. The qualities of appearing black and having a certain pattern for the ink and appearing white for the paper form part of the information carrier in this case."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A quality of an information bearer that imparts the information content"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""12/15/09: There is a concern that some ways that carry information may be processes rather than qualities, such as in a \u0027delayed wave carrier\u0027."",""lang"":""en""},{""type"":[""literal""],""value"":""2014-03-10: We are not certain that all information carriers are qualities. There was a discussion of dropping it.""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Smith, Ceusters, Ruttenberg, 2000 years of philosophy"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information carrier"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000019"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000019"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000059"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information carrier"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information carrier"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""In the case of a printed paperback novel the physicality of the ink and of the paper form part of the information bearer. The qualities of appearing black and having a certain pattern for the ink and appearing white for the paper form part of the information carrier in this case."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A quality of an information bearer that imparts the information content"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""12/15/09: There is a concern that some ways that carry information may be processes rather than qualities, such as in a \u0027delayed wave carrier\u0027."",""lang"":""en""},{""type"":[""literal""],""value"":""2014-03-10: We are not certain that all information carriers are qualities. There was a discussion of dropping it.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Smith, Ceusters, Ruttenberg, 2000 years of philosophy"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000015""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000059"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""concretizes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000059""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""IAO:0000015"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000015"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000015""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000019","true","","12/15/09: There is a concern that some ways that carry information may be processes rather than qualities, such as in a 'delayed wave carrier'.|2014-03-10: We are not certain that all information carriers are qualities. There was a discussion of dropping it.","PERSON: Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000125","A quality of an information bearer that imparts the information content","","","In the case of a printed paperback novel the physicality of the ink and of the paper form part of the information bearer. The qualities of appearing black and having a certain pattern for the ink and appearing white for the paper form part of the information carrier in this case.","","","","information carrier","","","","0.0","","Smith, Ceusters, Ruttenberg, 2000 years of philosophy","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A quality of an information bearer that imparts the information content","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000019","","http://purl.obolibrary.org/obo/IAO_0000015","http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","information carrier","","","DUO","","IAO:0000015","IAO_0000015","","information carrier","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000017","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000017"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000017""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""model number"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""manufactered items may have more than one model number, sometimes by rebranding, or because companies are sold and the products issued new model numbers"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""model number"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000028"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""model number"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""model number"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""manufactered items may have more than one model number, sometimes by rebranding, or because companies are sold and the products issued new model numbers"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000017""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""IAO:0000017"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000017"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000017""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000028""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000028","true","","manufactered items may have more than one model number, sometimes by rebranding, or because companies are sold and the products issued new model numbers","Person: Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000125","A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","","","","","","","model number","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000028","","http://purl.obolibrary.org/obo/IAO_0000017","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","model number","","","DUO","","IAO:0000017","IAO_0000017","","model number","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000018","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000018"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000018""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000226"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_material_entity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_material_entity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000018""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""IAO:0000018"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000018"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000018""},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000226""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","","","","","","","","","","http://purl.obolibrary.org/obo/IAO_0000226","","","","","0.0","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000018","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_material_entity","","","DUO","","IAO:0000018","IAO_0000018","","obsolete_material_entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000019","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000019"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000019""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""binary digital entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""MS Word document, ZIP file, DICOM file, JPEG file"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nSuperclass was \u0027digital entity\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""digital_entity"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""OBI_0000244""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_binary digital entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_binary digital entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""binary digital entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""MS Word document, ZIP file, DICOM file, JPEG file"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nSuperclass was \u0027digital entity\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""digital_entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000244""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000019""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""IAO:0000019"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000019"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000019""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4 +"duo+class+http://purl.obolibrary.org/obo/IAO_0000013","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000013"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000013""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report that is published in a journal."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000088"",""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000311""],""directParent"":[""http://purl.obolibrary.org/obo/IAO_0000088"",""http://purl.obolibrary.org/obo/IAO_0000311""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000088"",""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000311""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/IAO_0000088"",""http://purl.obolibrary.org/obo/IAO_0000311""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""journal article"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples are articles published in the journals, Nature and Science. The content can often be cited by reference to a paper based encoding, e.g. Authors, Title of article, Journal name, date or year of publication, volume and page number."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report that is published in a journal."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000159"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""journal article"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000088"",""http://purl.obolibrary.org/obo/IAO_0000311"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000312"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000444"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000444"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000312"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""journal article"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000443"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000013"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/OBI_0000312"",""value"":""http://purl.obolibrary.org/obo/IAO_0000444"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000312"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000444"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""journal article"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples are articles published in the journals, Nature and Science. The content can often be cited by reference to a paper based encoding, e.g. Authors, Title of article, Journal name, date or year of publication, volume and page number."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report that is published in a journal."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000159"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000013""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000311"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000311""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000312"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000312""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000444"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publishing process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000444""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""data item extraction from journal article""},""curie"":{""type"":[""literal""],""value"":""IAO:0000443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000088"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000088""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000444","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000088|http://purl.obolibrary.org/obo/IAO_0000311||","true","","","PERSON: Alan Ruttenberg|PERSON: Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000120","A report that is published in a journal.","","","Examples are articles published in the journals, Nature and Science. The content can often be cited by reference to a paper based encoding, e.g. Authors, Title of article, Journal name, date or year of publication, volume and page number.","","","","journal article","","","http://purl.obolibrary.org/obo/IAO_0000443","0.0","","OBI_0000159|group:OBI","http://purl.obolibrary.org/obo/IAO_0000088|http://purl.obolibrary.org/obo/IAO_0000311","http://purl.obolibrary.org/obo/IAO_0000088|http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000311","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A report that is published in a journal.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000088|http://purl.obolibrary.org/obo/IAO_0000311","","http://purl.obolibrary.org/obo/IAO_0000013","http://purl.obolibrary.org/obo/IAO_0000088|http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000311","","","false","journal article","","","DUO","","IAO:0000013","IAO_0000013","","journal article","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000015","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000015"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000015""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A quality of an information bearer that imparts the information content"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000019"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000019"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information carrier"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""In the case of a printed paperback novel the physicality of the ink and of the paper form part of the information bearer. The qualities of appearing black and having a certain pattern for the ink and appearing white for the paper form part of the information carrier in this case."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A quality of an information bearer that imparts the information content"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""12/15/09: There is a concern that some ways that carry information may be processes rather than qualities, such as in a \u0027delayed wave carrier\u0027."",""lang"":""en""},{""type"":[""literal""],""value"":""2014-03-10: We are not certain that all information carriers are qualities. There was a discussion of dropping it.""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Smith, Ceusters, Ruttenberg, 2000 years of philosophy"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information carrier"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000019"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000019"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000059"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information carrier"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information carrier"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""In the case of a printed paperback novel the physicality of the ink and of the paper form part of the information bearer. The qualities of appearing black and having a certain pattern for the ink and appearing white for the paper form part of the information carrier in this case."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A quality of an information bearer that imparts the information content"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""12/15/09: There is a concern that some ways that carry information may be processes rather than qualities, such as in a \u0027delayed wave carrier\u0027."",""lang"":""en""},{""type"":[""literal""],""value"":""2014-03-10: We are not certain that all information carriers are qualities. There was a discussion of dropping it.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Smith, Ceusters, Ruttenberg, 2000 years of philosophy"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000015""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000059"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""concretizes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000059""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000019","true","","12/15/09: There is a concern that some ways that carry information may be processes rather than qualities, such as in a 'delayed wave carrier'.|2014-03-10: We are not certain that all information carriers are qualities. There was a discussion of dropping it.","PERSON: Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000125","A quality of an information bearer that imparts the information content","","","In the case of a printed paperback novel the physicality of the ink and of the paper form part of the information bearer. The qualities of appearing black and having a certain pattern for the ink and appearing white for the paper form part of the information carrier in this case.","","","","information carrier","","","","0.0","","Smith, Ceusters, Ruttenberg, 2000 years of philosophy","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A quality of an information bearer that imparts the information content","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000019","","http://purl.obolibrary.org/obo/IAO_0000015","http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","information carrier","","","DUO","","IAO:0000015","IAO_0000015","","information carrier","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000017","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000017"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000017""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""model number"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""manufactered items may have more than one model number, sometimes by rebranding, or because companies are sold and the products issued new model numbers"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""model number"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000028"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""model number"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""model number"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""manufactered items may have more than one model number, sometimes by rebranding, or because companies are sold and the products issued new model numbers"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000017""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000028""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000028","true","","manufactered items may have more than one model number, sometimes by rebranding, or because companies are sold and the products issued new model numbers","Person: Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000125","A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","","","","","","","model number","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A model number is an information content entity specifically borne by catalogs, design specifications, advertising materials, inventory systems and similar that is about manufactured objects of the same class. The model number is an alternative term for the class. The manufactered objects may or may not also bear the model number. Model numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000028","","http://purl.obolibrary.org/obo/IAO_0000017","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","model number","","","DUO","","IAO:0000017","IAO_0000017","","model number","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000018","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000018"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000018""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000226"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_material_entity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_material_entity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000018""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000226""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","","","","","","","","","","http://purl.obolibrary.org/obo/IAO_0000226","","","","","0.0","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000018","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_material_entity","","","DUO","","IAO:0000018","IAO_0000018","","obsolete_material_entity","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000019","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000019"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000019""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""binary digital entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""MS Word document, ZIP file, DICOM file, JPEG file"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nSuperclass was \u0027digital entity\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""digital_entity"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""OBI_0000244""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_binary digital entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_binary digital entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""binary digital entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""MS Word document, ZIP file, DICOM file, JPEG file"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nSuperclass was \u0027digital entity\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""digital_entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000244""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000019""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4 Superclass was 'digital entity'|digital_entity","person:Chris Stoeckert","","A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters.","","","MS Word document, ZIP file, DICOM file, JPEG file","","","http://purl.obolibrary.org/obo/IAO_0000103","binary digital entity","","","","0.0","","OBI_0000244|group:OBI","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A binary digital entity is a digital entity that is encoded in a way that is not easily human readable and that contains other than text characters.","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000019","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete2_binary digital entity","","","DUO","","IAO:0000019","IAO_0000019","","obsolete2_binary digital entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000024","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000024"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000024""},""definition"":{""type"":[""literal""],""value"":""a unit of measure is the quality of some material entity compared to which another quality is some multiple of.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""value"":""The length of a ruler.""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""a unit of measure is the quality of some material entity compared to which another quality is some multiple of.""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""value"":""Alan Ruttenberg""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""Smith, Ceusters, Ruttenberg, 2000 years of philosophy""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_unit of measure""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_unit of measure""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The length of a ruler.""},{""type"":[""literal""],""value"":""a unit of measure is the quality of some material entity compared to which another quality is some multiple of.""},{""type"":[""literal""],""value"":""Alan Ruttenberg""},{""type"":[""literal""],""value"":""Smith, Ceusters, Ruttenberg, 2000 years of philosophy""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000024""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""IAO:0000024"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000024"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000024""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","","Alan Ruttenberg","","a unit of measure is the quality of some material entity compared to which another quality is some multiple of.","","","The length of a ruler.","","","http://purl.obolibrary.org/obo/IAO_0000103","","","","","0.0","","Smith, Ceusters, Ruttenberg, 2000 years of philosophy","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","a unit of measure is the quality of some material entity compared to which another quality is some multiple of.","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000024","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_unit of measure","","","DUO","","IAO:0000024","IAO_0000024","","obsolete_unit of measure","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000025","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000025"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000025""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""programming language"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""R, Perl, Java"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000058"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""programming language"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000104"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""programming language"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""programming language"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""R, Perl, Java"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000058"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000025""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]},""IAO:0000025"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000025"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000025""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000104","true","","","person:Alan Ruttenberg|person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000120","A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.","","","R, Perl, Java","","","","programming language","","","","0.0","","OBI_0000058|group:OBI","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000104","","http://purl.obolibrary.org/obo/IAO_0000025","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","programming language","","","DUO","","IAO:0000025","IAO_0000025","","programming language","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000027","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000027"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Data items include counts of things, analyte concentrations, and statistical summaries."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym."",""lang"":""en""},{""type"":[""literal""],""value"":""2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""JAR: datum -- well, this will be very tricky to define, but maybe some \ninformation-like stuff that might be put into a computer and that is \nmeant, by someone, to denote and/or to be interpreted by some \nprocess... I would include lists, tables, sentences... I think I might \ndefer to Barry, or to Brian Cantwell Smith\n\nJAR: A data item is an approximately justified approximately true approximate belief"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""numDescendants"":83.0,""numHierarchicalDescendants"":65.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/APOLLO_SV_00000522"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/IAO_0000027"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000096"",""isObsolete"":false}]},{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000443"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000027"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Data items include counts of things, analyte concentrations, and statistical summaries."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym."",""lang"":""en""},{""type"":[""literal""],""value"":""2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""JAR: datum -- well, this will be very tricky to define, but maybe some \ninformation-like stuff that might be put into a computer and that is \nmeant, by someone, to denote and/or to be interpreted by some \nprocess... I would include lists, tables, sentences... I think I might \ndefer to Barry, or to Brian Cantwell Smith\n\nJAR: A data item is an approximately justified approximately true approximate belief"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000027""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/APOLLO_SV_00000522"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code repository"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""APOLLO:SV_00000522""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""data item extraction from journal article""},""curie"":{""type"":[""literal""],""value"":""IAO:0000443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000027"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000027"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000027""}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","65.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030","true","","2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers.|2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum.|2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym.|2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/|JAR: datum -- well, this will be very tricky to define, but maybe some +"duo+class+http://purl.obolibrary.org/obo/IAO_0000024","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000024"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000024""},""definition"":{""type"":[""literal""],""value"":""a unit of measure is the quality of some material entity compared to which another quality is some multiple of.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""value"":""The length of a ruler.""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""a unit of measure is the quality of some material entity compared to which another quality is some multiple of.""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""value"":""Alan Ruttenberg""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""Smith, Ceusters, Ruttenberg, 2000 years of philosophy""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_unit of measure""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_unit of measure""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The length of a ruler.""},{""type"":[""literal""],""value"":""a unit of measure is the quality of some material entity compared to which another quality is some multiple of.""},{""type"":[""literal""],""value"":""Alan Ruttenberg""},{""type"":[""literal""],""value"":""Smith, Ceusters, Ruttenberg, 2000 years of philosophy""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000024""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","","Alan Ruttenberg","","a unit of measure is the quality of some material entity compared to which another quality is some multiple of.","","","The length of a ruler.","","","http://purl.obolibrary.org/obo/IAO_0000103","","","","","0.0","","Smith, Ceusters, Ruttenberg, 2000 years of philosophy","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","a unit of measure is the quality of some material entity compared to which another quality is some multiple of.","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000024","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_unit of measure","","","DUO","","IAO:0000024","IAO_0000024","","obsolete_unit of measure","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000025","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000025"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000025""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""programming language"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""R, Perl, Java"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000058"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""programming language"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000104"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""programming language"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""programming language"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""R, Perl, Java"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000058"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000025""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000104","true","","","person:Alan Ruttenberg|person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000120","A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.","","","R, Perl, Java","","","","programming language","","","","0.0","","OBI_0000058|group:OBI","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A language in which source code is written that is intended to be executed/run by a software interpreter. Programming languages are ways to write instructions that specify what to do, and sometimes, how to do it.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000104","","http://purl.obolibrary.org/obo/IAO_0000025","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","programming language","","","DUO","","IAO:0000025","IAO_0000025","","programming language","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000027","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000027"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Data items include counts of things, analyte concentrations, and statistical summaries."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym."",""lang"":""en""},{""type"":[""literal""],""value"":""2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""JAR: datum -- well, this will be very tricky to define, but maybe some \ninformation-like stuff that might be put into a computer and that is \nmeant, by someone, to denote and/or to be interpreted by some \nprocess... I would include lists, tables, sentences... I think I might \ndefer to Barry, or to Brian Cantwell Smith\n\nJAR: A data item is an approximately justified approximately true approximate belief"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""numDescendants"":83.0,""numHierarchicalDescendants"":65.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/APOLLO_SV_00000522"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/IAO_0000027"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000096"",""isObsolete"":false}]},{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000443"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000027"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Data items include counts of things, analyte concentrations, and statistical summaries."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym."",""lang"":""en""},{""type"":[""literal""],""value"":""2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""JAR: datum -- well, this will be very tricky to define, but maybe some \ninformation-like stuff that might be put into a computer and that is \nmeant, by someone, to denote and/or to be interpreted by some \nprocess... I would include lists, tables, sentences... I think I might \ndefer to Barry, or to Brian Cantwell Smith\n\nJAR: A data item is an approximately justified approximately true approximate belief"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000027""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/APOLLO_SV_00000522"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code repository"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""APOLLO:SV_00000522""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000443"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""data item extraction from journal article""},""curie"":{""type"":[""literal""],""value"":""IAO:0000443""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000096"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000096""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","65.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030","true","","2/2/2009 Alan and Bjoern discussing FACS run output data. This is a data item because it is about the cell population. Each element records an event and is typically further composed a set of measurment data items that record the fluorescent intensity stimulated by one of the lasers.|2009-03-16: data item deliberatly ambiguous: we merged data set and datum to be one entity, not knowing how to define singular versus plural. So data item is more general than datum.|2009-03-16: removed datum as alternative term as datum specifically refers to singular form, and is thus not an exact synonym.|2014-03-31: See discussion at http://odontomachus.wordpress.com/2014/03/30/aboutness-objects-propositions/|JAR: datum -- well, this will be very tricky to define, but maybe some information-like stuff that might be put into a computer and that is meant, by someone, to denote and/or to be interpreted by some process... I would include lists, tables, sentences... I think I might defer to Barry, or to Brian Cantwell Smith JAR: A data item is an approximately justified approximately true approximate belief","PERSON: Alan Ruttenberg|PERSON: Chris Stoeckert|PERSON: Jonathan Rees","http://purl.obolibrary.org/obo/IAO_0000125","An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.","","","Data items include counts of things, analyte concentrations, and statistical summaries.","","","","data item","","","http://purl.obolibrary.org/obo/APOLLO_SV_00000522|http://purl.obolibrary.org/obo/IAO_0000443","83.0","data","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","data item","","","DUO","","IAO:0000027","IAO_0000027","","data item","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000028","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000028"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000028""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a serial number such as \""12324X\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a stop sign"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a written proper name such as \""OBI\"""",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""20091104, MC: this needs work and will most probably change"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-03-31: We would like to have a deeper analysis of \u0027mark\u0027 and \u0027sign\u0027 in the future (see https://github.com/information-artifact-ontology/IAO/issues/154)."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: James A. Overton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""based on Oxford English Dictionary"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""numDescendants"":7.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a serial number such as \""12324X\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a stop sign"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a written proper name such as \""OBI\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""20091104, MC: this needs work and will most probably change"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-03-31: We would like to have a deeper analysis of \u0027mark\u0027 and \u0027sign\u0027 in the future (see https://github.com/information-artifact-ontology/IAO/issues/154)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: James A. Overton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""based on Oxford English Dictionary"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000028""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000028"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000028"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000028""}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030","true","","20091104, MC: this needs work and will most probably change|2014-03-31: We would like to have a deeper analysis of 'mark' and 'sign' in the future (see https://github.com/information-artifact-ontology/IAO/issues/154).","PERSON: James A. Overton|PERSON: Jonathan Rees","http://purl.obolibrary.org/obo/IAO_0000125","An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity.","","","a serial number such as ""12324X""|a stop sign|a written proper name such as ""OBI""","","","","symbol","","","","7.0","","based on Oxford English Dictionary","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","symbol","","","DUO","","IAO:0000028","IAO_0000028","","symbol","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000029","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000029"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000029""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A symbol that denotes a number."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""numeral"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A symbol that denotes a number."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""numeral"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000028"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""numeral"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""numeral"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A symbol that denotes a number."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000029""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000028""},""type"":[""class"",""entity""]},""IAO:0000029"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000029"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000029""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000028","true","","","PERSON: Jonathan Rees","http://purl.obolibrary.org/obo/IAO_0000123","A symbol that denotes a number.","","","","","","","numeral","","","","1.0","","","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A symbol that denotes a number.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000028","","http://purl.obolibrary.org/obo/IAO_0000029","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","numeral","","","DUO","","IAO:0000029","IAO_0000029","","numeral","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000030","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000030"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A generically dependent continuant that is about some thing."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000031"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000031"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of information content entites include journal articles, data, graphical layouts, and graphs."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A generically dependent continuant that is about some thing."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-03-10: The use of \""thing\"" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information_content_entity \u0027is_encoded_in\u0027 some digital_entity in obi before split (040907). information_content_entity \u0027is_encoded_in\u0027 some physical_document in obi before split (040907).\n\nPrevious. An information content entity is a non-realizable information entity that \u0027is encoded in\u0027 some digital or physical entity."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000142"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/BFO_0000031"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000001"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""numDescendants"":229.0,""numHierarchicalDescendants"":211.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000572"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000575"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000580"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000650"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000650"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false}],""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/BFO_0000001"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000001"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of information content entites include journal articles, data, graphical layouts, and graphs."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A generically dependent continuant that is about some thing."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-03-10: The use of \""thing\"" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information_content_entity \u0027is_encoded_in\u0027 some digital_entity in obi before split (040907). information_content_entity \u0027is_encoded_in\u0027 some physical_document in obi before split (040907).\n\nPrevious. An information content entity is a non-realizable information entity that \u0027is encoded in\u0027 some digital or physical entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000142"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000030""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000030"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000030"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000030""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000575"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""associating information with a centrally registered identifier in its registry"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000575""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000572"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""documenting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000572""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000650"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database extract, transform, and load process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000650""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000580"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""looking up a centrally registered identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000580""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","211.0","class|entity","http://purl.obolibrary.org/obo/BFO_0000001","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000031|","true","","2014-03-10: The use of ""thing"" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ).|information_content_entity 'is_encoded_in' some digital_entity in obi before split (040907). information_content_entity 'is_encoded_in' some physical_document in obi before split (040907). +"duo+class+http://purl.obolibrary.org/obo/IAO_0000028","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000028"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000028""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a serial number such as \""12324X\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a stop sign"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a written proper name such as \""OBI\"""",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""20091104, MC: this needs work and will most probably change"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-03-31: We would like to have a deeper analysis of \u0027mark\u0027 and \u0027sign\u0027 in the future (see https://github.com/information-artifact-ontology/IAO/issues/154)."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: James A. Overton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""based on Oxford English Dictionary"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""numDescendants"":7.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a serial number such as \""12324X\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a stop sign"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a written proper name such as \""OBI\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""20091104, MC: this needs work and will most probably change"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-03-31: We would like to have a deeper analysis of \u0027mark\u0027 and \u0027sign\u0027 in the future (see https://github.com/information-artifact-ontology/IAO/issues/154)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: James A. Overton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""based on Oxford English Dictionary"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000028""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030","true","","20091104, MC: this needs work and will most probably change|2014-03-31: We would like to have a deeper analysis of 'mark' and 'sign' in the future (see https://github.com/information-artifact-ontology/IAO/issues/154).","PERSON: James A. Overton|PERSON: Jonathan Rees","http://purl.obolibrary.org/obo/IAO_0000125","An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity.","","","a serial number such as ""12324X""|a stop sign|a written proper name such as ""OBI""","","","","symbol","","","","7.0","","based on Oxford English Dictionary","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An information content entity that is a mark(s) or character(s) used as a conventional representation of another entity.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","symbol","","","DUO","","IAO:0000028","IAO_0000028","","symbol","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000029","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000029"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000029""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A symbol that denotes a number."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""numeral"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A symbol that denotes a number."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""numeral"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000028"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""numeral"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""numeral"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A symbol that denotes a number."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000029""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000028""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000028","true","","","PERSON: Jonathan Rees","http://purl.obolibrary.org/obo/IAO_0000123","A symbol that denotes a number.","","","","","","","numeral","","","","1.0","","","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A symbol that denotes a number.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000028","","http://purl.obolibrary.org/obo/IAO_0000029","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","numeral","","","DUO","","IAO:0000029","IAO_0000029","","numeral","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000030","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000030"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A generically dependent continuant that is about some thing."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000031"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000031"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of information content entites include journal articles, data, graphical layouts, and graphs."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A generically dependent continuant that is about some thing."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-03-10: The use of \""thing\"" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information_content_entity \u0027is_encoded_in\u0027 some digital_entity in obi before split (040907). information_content_entity \u0027is_encoded_in\u0027 some physical_document in obi before split (040907).\n\nPrevious. An information content entity is a non-realizable information entity that \u0027is encoded in\u0027 some digital or physical entity."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000142"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/BFO_0000031"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000001"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""numDescendants"":229.0,""numHierarchicalDescendants"":211.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000572"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000575"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000580"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000650"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000650"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false}],""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/BFO_0000001"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000001"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of information content entites include journal articles, data, graphical layouts, and graphs."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A generically dependent continuant that is about some thing."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-03-10: The use of \""thing\"" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information_content_entity \u0027is_encoded_in\u0027 some digital_entity in obi before split (040907). information_content_entity \u0027is_encoded_in\u0027 some physical_document in obi before split (040907).\n\nPrevious. An information content entity is a non-realizable information entity that \u0027is encoded in\u0027 some digital or physical entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000142"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000030""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000575"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""associating information with a centrally registered identifier in its registry"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000575""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000572"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""documenting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000572""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000650"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database extract, transform, and load process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000650""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000580"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""looking up a centrally registered identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000580""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","211.0","class|entity","http://purl.obolibrary.org/obo/BFO_0000001","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000031|","true","","2014-03-10: The use of ""thing"" is intended to be general enough to include universals and configurations (see https://groups.google.com/d/msg/information-ontology/GBxvYZCk1oc/-L6B5fSBBTQJ).|information_content_entity 'is_encoded_in' some digital_entity in obi before split (040907). information_content_entity 'is_encoded_in' some physical_document in obi before split (040907). Previous. An information content entity is a non-realizable information entity that 'is encoded in' some digital or physical entity.","PERSON: Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000122","A generically dependent continuant that is about some thing.","","","Examples of information content entites include journal articles, data, graphical layouts, and graphs.","","","","information content entity","","","http://purl.obolibrary.org/obo/IAO_0000572|http://purl.obolibrary.org/obo/IAO_0000575|http://purl.obolibrary.org/obo/IAO_0000580|http://purl.obolibrary.org/obo/IAO_0000650|http://purl.obolibrary.org/obo/IAO_0000650","229.0","","OBI_0000142","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A generically dependent continuant that is about some thing.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000031","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","information content entity","","","DUO","","IAO:0000030","IAO_0000030","","information content entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000031","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000031"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000031""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A numeral that denotes an integer"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000029"",""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000029"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000029"",""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000029"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""integer numeral"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A numeral that denotes an integer"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""integer numeral"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000029"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""integer numeral"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""integer numeral"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A numeral that denotes an integer"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000031""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000031"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000031"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000031""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000028""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000029"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""numeral"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000029""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000029","true","","","PERSON: Jonathan Rees","http://purl.obolibrary.org/obo/IAO_0000123","A numeral that denotes an integer","","","","","","","integer numeral","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000029","http://purl.obolibrary.org/obo/IAO_0000029|http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A numeral that denotes an integer","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000029","","http://purl.obolibrary.org/obo/IAO_0000031","http://purl.obolibrary.org/obo/IAO_0000029|http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","integer numeral","","","DUO","","IAO:0000031","IAO_0000031","","integer numeral","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000032","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000032"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000032""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000109"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000109"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""10 feet. 3 ml."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: we decided to keep datum singular in scalar measurement datum, as in\nthis case we explicitly refer to the singular form"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Would write this as: has_part some \u0027measurement unit label\u0027 and has_part some numeral and has_part exactly 2, except for the fact that this won\u0027t let us take advantage of OWL reasoning over the numbers. Instead use has measurment value property to represent the same. Use has measurement unit label (subproperty of has_part) so we can easily say that there is only one of them."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scalar measurement datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000109"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#minCardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000039"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#minCardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000004"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scalar measurement datum"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""10 feet. 3 ml."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: we decided to keep datum singular in scalar measurement datum, as in\nthis case we explicitly refer to the singular form"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Would write this as: has_part some \u0027measurement unit label\u0027 and has_part some numeral and has_part exactly 2, except for the fact that this won\u0027t let us take advantage of OWL reasoning over the numbers. Instead use has measurment value property to represent the same. Use has measurement unit label (subproperty of has_part) so we can easily say that there is only one of them."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000032""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000032"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000032"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000032""},""http://purl.obolibrary.org/obo/IAO_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000039""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement value"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000004""},""type"":[""dataProperty"",""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000109||","true","","2009-03-16: we decided to keep datum singular in scalar measurement datum, as in +"duo+class+http://purl.obolibrary.org/obo/IAO_0000031","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000031"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000031""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A numeral that denotes an integer"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000029"",""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000029"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000029"",""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000029"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""integer numeral"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A numeral that denotes an integer"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""integer numeral"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000029"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""integer numeral"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""integer numeral"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A numeral that denotes an integer"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000031""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000028""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000029"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""numeral"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000029""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000029","true","","","PERSON: Jonathan Rees","http://purl.obolibrary.org/obo/IAO_0000123","A numeral that denotes an integer","","","","","","","integer numeral","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000029","http://purl.obolibrary.org/obo/IAO_0000029|http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A numeral that denotes an integer","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000029","","http://purl.obolibrary.org/obo/IAO_0000031","http://purl.obolibrary.org/obo/IAO_0000029|http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","integer numeral","","","DUO","","IAO:0000031","IAO_0000031","","integer numeral","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000032","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000032"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000032""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000109"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000109"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""10 feet. 3 ml."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: we decided to keep datum singular in scalar measurement datum, as in\nthis case we explicitly refer to the singular form"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Would write this as: has_part some \u0027measurement unit label\u0027 and has_part some numeral and has_part exactly 2, except for the fact that this won\u0027t let us take advantage of OWL reasoning over the numbers. Instead use has measurment value property to represent the same. Use has measurement unit label (subproperty of has_part) so we can easily say that there is only one of them."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scalar measurement datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000109"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#minCardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000039"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#minCardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000004"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scalar measurement datum"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""10 feet. 3 ml."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: we decided to keep datum singular in scalar measurement datum, as in\nthis case we explicitly refer to the singular form"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Would write this as: has_part some \u0027measurement unit label\u0027 and has_part some numeral and has_part exactly 2, except for the fact that this won\u0027t let us take advantage of OWL reasoning over the numbers. Instead use has measurment value property to represent the same. Use has measurement unit label (subproperty of has_part) so we can easily say that there is only one of them."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000032""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000039""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement value"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000004""},""type"":[""dataProperty"",""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000109||","true","","2009-03-16: we decided to keep datum singular in scalar measurement datum, as in this case we explicitly refer to the singular form|Would write this as: has_part some 'measurement unit label' and has_part some numeral and has_part exactly 2, except for the fact that this won't let us take advantage of OWL reasoning over the numbers. Instead use has measurment value property to represent the same. Use has measurement unit label (subproperty of has_part) so we can easily say that there is only one of them.","PERSON: Alan Ruttenberg|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000120","A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label.","","","10 feet. 3 ml.","","","","","","","","3.0","","","http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A scalar measurement datum is a measurement datum that is composed of two parts, numerals and a unit label.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000109","","http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","scalar measurement datum","","","DUO","","IAO:0000032","IAO_0000032","","scalar measurement datum","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000033","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000033"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity whose concretizations indicate to their bearer how to realize them in a process."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity whose concretizations indicate to their bearer how to realize them in a process."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: provenance: a term realizable information entity was proposed for OBI (OBI_0000337) , edited by the PlanAndPlannedProcess branch. Original definition was \""is the specification of a process that can be concretized and realized by an actor\"" with alternative term \""instruction\"".It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2013-05-30 Alan Ruttenberg: What differentiates a directive information entity from an information concretization is that it can have concretizations that are either qualities or realizable entities. The concretizations that are realizable entities are created when an individual chooses to take up the direction, i.e. has the intention to (try to) realize it."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""8/6/2009 Alan Ruttenberg: Changed label from \""information entity about a realizable\"" after discussions at ICBO"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Werner pushed back on calling it realizable information entity as it isn\u0027t realizable. However this name isn\u0027t right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn\u0027t about the plan, it, once concretized, *is* the plan. -Alan"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000030"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000017"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""numDescendants"":19.0,""numHierarchicalDescendants"":19.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/BFO_0000017"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000017"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity whose concretizations indicate to their bearer how to realize them in a process."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: provenance: a term realizable information entity was proposed for OBI (OBI_0000337) , edited by the PlanAndPlannedProcess branch. Original definition was \""is the specification of a process that can be concretized and realized by an actor\"" with alternative term \""instruction\"".It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2013-05-30 Alan Ruttenberg: What differentiates a directive information entity from an information concretization is that it can have concretizations that are either qualities or realizable entities. The concretizations that are realizable entities are created when an individual chooses to take up the direction, i.e. has the intention to (try to) realize it."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""8/6/2009 Alan Ruttenberg: Changed label from \""information entity about a realizable\"" after discussions at ICBO"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Werner pushed back on calling it realizable information entity as it isn\u0027t realizable. However this name isn\u0027t right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn\u0027t about the plan, it, once concretized, *is* the plan. -Alan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000033""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000033"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000033"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000033""},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","19.0","class|entity","http://purl.obolibrary.org/obo/BFO_0000017","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030|","true","","2009-03-16: provenance: a term realizable information entity was proposed for OBI (OBI_0000337) , edited by the PlanAndPlannedProcess branch. Original definition was ""is the specification of a process that can be concretized and realized by an actor"" with alternative term ""instruction"".It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.|2013-05-30 Alan Ruttenberg: What differentiates a directive information entity from an information concretization is that it can have concretizations that are either qualities or realizable entities. The concretizations that are realizable entities are created when an individual chooses to take up the direction, i.e. has the intention to (try to) realize it.|8/6/2009 Alan Ruttenberg: Changed label from ""information entity about a realizable"" after discussions at ICBO|Werner pushed back on calling it realizable information entity as it isn't realizable. However this name isn't right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn't about the plan, it, once concretized, *is* the plan. -Alan","PERSON: Alan Ruttenberg|PERSON: Bjoern Peters","http://purl.obolibrary.org/obo/IAO_0000122","An information content entity whose concretizations indicate to their bearer how to realize them in a process.","","","","","","","","","","","19.0","","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An information content entity whose concretizations indicate to their bearer how to realize them in a process.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","directive information entity","","","DUO","","IAO:0000033","IAO_0000033","","directive information entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000034","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000034"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000034""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000001"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000001"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time trigger"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PlanAndPlannedProcess Branch"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time trigger"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000001"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time trigger"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time trigger"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PlanAndPlannedProcess Branch"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000034""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000034"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000034"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000034""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conditional specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000001","true","","","PlanAndPlannedProcess Branch","http://purl.obolibrary.org/obo/IAO_0000124","","","","","","","","time trigger","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000001","http://purl.obolibrary.org/obo/IAO_0000001|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000001","","http://purl.obolibrary.org/obo/IAO_0000034","http://purl.obolibrary.org/obo/IAO_0000001|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","time trigger","","","DUO","","IAO:0000034","IAO_0000034","","time trigger","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000035","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000035"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000035""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_study interpretation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""value"":""2009-03-16: definition was \""A conclusion is a narrative object which can be published in a paper summerizing and interpreting a protocol application.\""""},{""type"":[""literal""],""value"":""2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The obsoleting of narrative object required a modest change in the definition of this term. Circularity with \""interpretation... interprets\"" has been removed, using \""about the implications\"" instead."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Alan Ruttenberg""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jennifer Fostel"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Melanie Courtot""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""value"":""conclusion""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""OBI_0000005""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_study interpretation"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_study interpretation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_study interpretation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses"",""lang"":""en""},{""type"":[""literal""],""value"":""2009-03-16: definition was \""A conclusion is a narrative object which can be published in a paper summerizing and interpreting a protocol application.\""""},{""type"":[""literal""],""value"":""2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The obsoleting of narrative object required a modest change in the definition of this term. Circularity with \""interpretation... interprets\"" has been removed, using \""about the implications\"" instead."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Alan Ruttenberg""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jennifer Fostel"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Melanie Courtot""},{""type"":[""literal""],""value"":""conclusion""},{""type"":[""literal""],""value"":""OBI_0000005""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000035""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000035"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000035"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000035""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","2009-03-16: definition was ""A conclusion is a narrative object which can be published in a paper summerizing and interpreting a protocol application.""|2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.|The obsoleting of narrative object required a modest change in the definition of this term. Circularity with ""interpretation... interprets"" has been removed, using ""about the implications"" instead.","Lawrence Hunter|PERSON: Alan Ruttenberg|PERSON: Jennifer Fostel|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000125","A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","obsolete_study interpretation","","","","0.0","conclusion","OBI_0000005","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000035","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_study interpretation","","","DUO","","IAO:0000035","IAO_0000035","","obsolete_study interpretation","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000037","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000037"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000037""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dot plot"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Dot plot of SSC-H and FSC-H."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000002"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000123"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dot plot"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dot plot"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dot plot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Dot plot of SSC-H and FSC-H."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000123"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000037""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""IAO:0000037"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000037"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000037""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000002""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000038","true","","","person:Allyson Lister|person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000002","A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions.","","","Dot plot of SSC-H and FSC-H.","","","","dot plot","","","","0.0","","OBI_0000123|group:OBI","http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000038","","http://purl.obolibrary.org/obo/IAO_0000037","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","dot plot","","","DUO","","IAO:0000037","IAO_0000037","","dot plot","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000038","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000038"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000309"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000309"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000240"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000309"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""numDescendants"":9.0,""numHierarchicalDescendants"":9.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000240"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000038""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000038"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000038"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000038""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","9.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000309","true","","","PERSON: Lawrence Hunter|person:Alan Ruttenberg|person:Allyson Lister","http://purl.obolibrary.org/obo/IAO_0000125","A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way.","","","","","","","graph","","","","9.0","","OBI_0000240|group:OBI","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000309","","http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","graph","","","DUO","","IAO:0000038","IAO_0000038","","graph","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000047","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000047"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000047""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A text based digital entity is a digital entity that is encoded so that it only contains text characters."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""text based digital entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XML file, C++ source code file"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A text based digital entity is a digital entity that is encoded so that it only contains text characters."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digital document\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""digital_entity"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""OBI_0000132""},{""type"":[""literal""],""value"":""group:OBI""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_text based digital entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_text based digital entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""text based digital entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XML file, C++ source code file"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A text based digital entity is a digital entity that is encoded so that it only contains text characters."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digital document\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""digital_entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000132""},{""type"":[""literal""],""value"":""group:OBI""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000047""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000047"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000047"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000047""},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4 +"duo+class+http://purl.obolibrary.org/obo/IAO_0000033","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000033"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity whose concretizations indicate to their bearer how to realize them in a process."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity whose concretizations indicate to their bearer how to realize them in a process."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: provenance: a term realizable information entity was proposed for OBI (OBI_0000337) , edited by the PlanAndPlannedProcess branch. Original definition was \""is the specification of a process that can be concretized and realized by an actor\"" with alternative term \""instruction\"".It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2013-05-30 Alan Ruttenberg: What differentiates a directive information entity from an information concretization is that it can have concretizations that are either qualities or realizable entities. The concretizations that are realizable entities are created when an individual chooses to take up the direction, i.e. has the intention to (try to) realize it."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""8/6/2009 Alan Ruttenberg: Changed label from \""information entity about a realizable\"" after discussions at ICBO"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Werner pushed back on calling it realizable information entity as it isn\u0027t realizable. However this name isn\u0027t right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn\u0027t about the plan, it, once concretized, *is* the plan. -Alan"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000030"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000017"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""numDescendants"":19.0,""numHierarchicalDescendants"":19.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/BFO_0000017"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000017"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity whose concretizations indicate to their bearer how to realize them in a process."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: provenance: a term realizable information entity was proposed for OBI (OBI_0000337) , edited by the PlanAndPlannedProcess branch. Original definition was \""is the specification of a process that can be concretized and realized by an actor\"" with alternative term \""instruction\"".It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2013-05-30 Alan Ruttenberg: What differentiates a directive information entity from an information concretization is that it can have concretizations that are either qualities or realizable entities. The concretizations that are realizable entities are created when an individual chooses to take up the direction, i.e. has the intention to (try to) realize it."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""8/6/2009 Alan Ruttenberg: Changed label from \""information entity about a realizable\"" after discussions at ICBO"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Werner pushed back on calling it realizable information entity as it isn\u0027t realizable. However this name isn\u0027t right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn\u0027t about the plan, it, once concretized, *is* the plan. -Alan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000033""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","19.0","class|entity","http://purl.obolibrary.org/obo/BFO_0000017","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030|","true","","2009-03-16: provenance: a term realizable information entity was proposed for OBI (OBI_0000337) , edited by the PlanAndPlannedProcess branch. Original definition was ""is the specification of a process that can be concretized and realized by an actor"" with alternative term ""instruction"".It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.|2013-05-30 Alan Ruttenberg: What differentiates a directive information entity from an information concretization is that it can have concretizations that are either qualities or realizable entities. The concretizations that are realizable entities are created when an individual chooses to take up the direction, i.e. has the intention to (try to) realize it.|8/6/2009 Alan Ruttenberg: Changed label from ""information entity about a realizable"" after discussions at ICBO|Werner pushed back on calling it realizable information entity as it isn't realizable. However this name isn't right either. An example would be a recipe. The realizable entity would be a plan, but the information entity isn't about the plan, it, once concretized, *is* the plan. -Alan","PERSON: Alan Ruttenberg|PERSON: Bjoern Peters","http://purl.obolibrary.org/obo/IAO_0000122","An information content entity whose concretizations indicate to their bearer how to realize them in a process.","","","","","","","","","","","19.0","","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An information content entity whose concretizations indicate to their bearer how to realize them in a process.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","directive information entity","","","DUO","","IAO:0000033","IAO_0000033","","directive information entity","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000034","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000034"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000034""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000001"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000001"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time trigger"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PlanAndPlannedProcess Branch"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time trigger"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000001"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time trigger"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time trigger"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PlanAndPlannedProcess Branch"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000034""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conditional specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000001","true","","","PlanAndPlannedProcess Branch","http://purl.obolibrary.org/obo/IAO_0000124","","","","","","","","time trigger","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000001","http://purl.obolibrary.org/obo/IAO_0000001|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000001","","http://purl.obolibrary.org/obo/IAO_0000034","http://purl.obolibrary.org/obo/IAO_0000001|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","time trigger","","","DUO","","IAO:0000034","IAO_0000034","","time trigger","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000035","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000035"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000035""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_study interpretation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""value"":""2009-03-16: definition was \""A conclusion is a narrative object which can be published in a paper summerizing and interpreting a protocol application.\""""},{""type"":[""literal""],""value"":""2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The obsoleting of narrative object required a modest change in the definition of this term. Circularity with \""interpretation... interprets\"" has been removed, using \""about the implications\"" instead."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Alan Ruttenberg""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jennifer Fostel"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Melanie Courtot""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""value"":""conclusion""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""OBI_0000005""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_study interpretation"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_study interpretation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_study interpretation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses"",""lang"":""en""},{""type"":[""literal""],""value"":""2009-03-16: definition was \""A conclusion is a narrative object which can be published in a paper summerizing and interpreting a protocol application.\""""},{""type"":[""literal""],""value"":""2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The obsoleting of narrative object required a modest change in the definition of this term. Circularity with \""interpretation... interprets\"" has been removed, using \""about the implications\"" instead."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Alan Ruttenberg""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jennifer Fostel"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Melanie Courtot""},{""type"":[""literal""],""value"":""conclusion""},{""type"":[""literal""],""value"":""OBI_0000005""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000035""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","2009-03-16: definition was ""A conclusion is a narrative object which can be published in a paper summerizing and interpreting a protocol application.""|2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.|The obsoleting of narrative object required a modest change in the definition of this term. Circularity with ""interpretation... interprets"" has been removed, using ""about the implications"" instead.","Lawrence Hunter|PERSON: Alan Ruttenberg|PERSON: Jennifer Fostel|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000125","A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","obsolete_study interpretation","","","","0.0","conclusion","OBI_0000005","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A study interpretation is a textual entity about the implications of a study result. Examples include discussion of whether a hypothesis is false, whether the study failed to address the hypothesis, and whether the study results have led to new hypotheses","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000035","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_study interpretation","","","DUO","","IAO:0000035","IAO_0000035","","obsolete_study interpretation","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000037","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000037"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000037""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dot plot"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Dot plot of SSC-H and FSC-H."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000002"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000123"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dot plot"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dot plot"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dot plot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Dot plot of SSC-H and FSC-H."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000123"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000037""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000002""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000038","true","","","person:Allyson Lister|person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000002","A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions.","","","Dot plot of SSC-H and FSC-H.","","","","dot plot","","","","0.0","","OBI_0000123|group:OBI","http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000038","","http://purl.obolibrary.org/obo/IAO_0000037","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","dot plot","","","DUO","","IAO:0000037","IAO_0000037","","dot plot","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000038","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000038"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000309"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000309"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000240"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000309"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""numDescendants"":9.0,""numHierarchicalDescendants"":9.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000240"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000038""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","9.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000309","true","","","PERSON: Lawrence Hunter|person:Alan Ruttenberg|person:Allyson Lister","http://purl.obolibrary.org/obo/IAO_0000125","A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way.","","","","","","","graph","","","","9.0","","OBI_0000240|group:OBI","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000309","","http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","graph","","","DUO","","IAO:0000038","IAO_0000038","","graph","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000047","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000047"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000047""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A text based digital entity is a digital entity that is encoded so that it only contains text characters."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""text based digital entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XML file, C++ source code file"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A text based digital entity is a digital entity that is encoded so that it only contains text characters."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digital document\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""digital_entity"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""OBI_0000132""},{""type"":[""literal""],""value"":""group:OBI""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_text based digital entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_text based digital entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""text based digital entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XML file, C++ source code file"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A text based digital entity is a digital entity that is encoded so that it only contains text characters."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digital document\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""digital_entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000132""},{""type"":[""literal""],""value"":""group:OBI""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000047""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4 superclass was 'digital document'|digital_entity","person:Chris Stoeckert","","A text based digital entity is a digital entity that is encoded so that it only contains text characters.","","","XML file, C++ source code file","","","http://purl.obolibrary.org/obo/IAO_0000103","text based digital entity","","","","0.0","","OBI_0000132|group:OBI","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A text based digital entity is a digital entity that is encoded so that it only contains text characters.","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000047","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete2_text based digital entity","","","DUO","","IAO:0000047","IAO_0000047","","obsolete2_text based digital entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000055","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000055"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000055""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A rule is an executable which guides, defines, restricts actions."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000001"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000001"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""rule"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be added"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A rule is an executable which guides, defines, restricts actions."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""MSI"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PRS"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0500021"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PRS"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""rule"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000001"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""rule"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""rule"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be added"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A rule is an executable which guides, defines, restricts actions."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""MSI"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PRS"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0500021"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000055""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conditional specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000001""},""type"":[""class"",""entity""]},""IAO:0000055"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000055"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000055""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000001","true","","MSI","PRS","http://purl.obolibrary.org/obo/IAO_0000123","A rule is an executable which guides, defines, restricts actions.","","","example to be added","","","","rule","","","","0.0","","OBI_0500021|PRS","http://purl.obolibrary.org/obo/IAO_0000001","http://purl.obolibrary.org/obo/IAO_0000001|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A rule is an executable which guides, defines, restricts actions.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000001","","http://purl.obolibrary.org/obo/IAO_0000055","http://purl.obolibrary.org/obo/IAO_0000001|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","rule","","","DUO","","IAO:0000055","IAO_0000055","","rule","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000057","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000057"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000057""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contour plot"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Contour plot of SSC-H, FSC-H, and FL1-H."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000002"",""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically_dependent_continuants"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000246"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:Flow Cytometry community"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contour plot"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contour plot"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contour plot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Contour plot of SSC-H, FSC-H, and FL1-H."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically_dependent_continuants"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000246"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:Flow Cytometry community"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000057""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000002""},""type"":[""individual"",""entity""]},""IAO:0000057"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000057"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000057""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000038","true","","generically_dependent_continuants","person:Allyson Lister|person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000002","","","","Contour plot of SSC-H, FSC-H, and FL1-H.","","","","contour plot","","","","0.0","","OBI_0000246|group:Flow Cytometry community","http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000038","","http://purl.obolibrary.org/obo/IAO_0000057","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","contour plot","","","DUO","","IAO:0000057","IAO_0000057","","contour plot","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000059","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000059"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000059""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report figure"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""I prepended the \u0027report \u0027 to make it clear that we mean parts of reports here. We may want a more generic version of \u0027figure\u0027, in which case this would become a defined class - figure and part_of some report"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Replaced by defined version of figure"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""OBI_0000027""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_report figure"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_report figure"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report figure"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""I prepended the \u0027report \u0027 to make it clear that we mean parts of reports here. We may want a more generic version of \u0027figure\u0027, in which case this would become a defined class - figure and part_of some report"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Replaced by defined version of figure"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000027""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000059""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""IAO:0000059"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000059"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000059""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","I prepended the 'report ' to make it clear that we mean parts of reports here. We may want a more generic version of 'figure', in which case this would become a defined class - figure and part_of some report|Replaced by defined version of figure","person:Alan Ruttenberg|person:Allyson Lister","http://purl.obolibrary.org/obo/IAO_0000124","A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","report figure","","","","0.0","","OBI_0000027|group:OBI","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000059","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete2_report figure","","","DUO","","IAO:0000059","IAO_0000059","","obsolete2_report figure","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000064","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000064"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000064""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""algorithm"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PMID: 18378114.Genomics. 2008 Mar 28. LINKGEN: A new algorithm to process data in genetic linkage studies."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Philippe Rocca-Serra"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PlanAndPlannedProcess Branch"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000270"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""adapted from discussion on OBI list (Matthew Pocock, Christian Cocos, Alan Ruttenberg)"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""algorithm"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000104"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""algorithm"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""algorithm"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PMID: 18378114.Genomics. 2008 Mar 28. LINKGEN: A new algorithm to process data in genetic linkage studies."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Philippe Rocca-Serra"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PlanAndPlannedProcess Branch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000270"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""adapted from discussion on OBI list (Matthew Pocock, Christian Cocos, Alan Ruttenberg)"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000064""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000064"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000064"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000064""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000104","true","","","Philippe Rocca-Serra|PlanAndPlannedProcess Branch","http://purl.obolibrary.org/obo/IAO_0000120","A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.","","","PMID: 18378114.Genomics. 2008 Mar 28. LINKGEN: A new algorithm to process data in genetic linkage studies.","","","","algorithm","","","","1.0","","OBI_0000270|adapted from discussion on OBI list (Matthew Pocock, Christian Cocos, Alan Ruttenberg)","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000104","","http://purl.obolibrary.org/obo/IAO_0000064","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","algorithm","","","DUO","","IAO:0000064","IAO_0000064","","algorithm","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000065","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000065"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000065""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software interpreter is a software application that executes some specified input software."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000064"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000064"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000064"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000064"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software interpreter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""R program, Perl interpreter, Java virtual machine"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software interpreter is a software application that executes some specified input software."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Do we care? Jennifer: Yes, there was a particular version of R that had a bug and it was fixed later. That would imply that we mean specific version of an interpreter. So an instance of this would be a particular version of the interpreter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000199"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software interpreter"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000064"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software interpreter"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software interpreter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""R program, Perl interpreter, Java virtual machine"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software interpreter is a software application that executes some specified input software."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Do we care? Jennifer: Yes, there was a particular version of R that had a bug and it was fixed later. That would imply that we mean specific version of an interpreter. So an instance of this would be a particular version of the interpreter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000199"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000065""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000065"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000065"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000065""},""http://purl.obolibrary.org/obo/IAO_0000064"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""algorithm"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000064""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000064","true","","Do we care? Jennifer: Yes, there was a particular version of R that had a bug and it was fixed later. That would imply that we mean specific version of an interpreter. So an instance of this would be a particular version of the interpreter","person:Alan Ruttenberg|person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000120","A software interpreter is a software application that executes some specified input software.","","","R program, Perl interpreter, Java virtual machine","","","","software interpreter","","","","0.0","","OBI_0000199|group:OBI","http://purl.obolibrary.org/obo/IAO_0000064","http://purl.obolibrary.org/obo/IAO_0000064|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A software interpreter is a software application that executes some specified input software.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000064","","http://purl.obolibrary.org/obo/IAO_0000065","http://purl.obolibrary.org/obo/IAO_0000064|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","software interpreter","","","DUO","","IAO:0000065","IAO_0000065","","software interpreter","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000078","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000078"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000102"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hasIndividuals"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000102"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Bill Bug"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000266"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000102"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#oneOf"":[""http://purl.obolibrary.org/obo/IAO_0000002"",""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000423"",""http://purl.obolibrary.org/obo/IAO_0000428""]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""numDescendants"":9.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Bill Bug"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000266"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000078""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000078"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000078"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000078""},""http://purl.obolibrary.org/obo/IAO_0000428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000002""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000102","true","","Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)","PERSON:Bill Bug","http://purl.obolibrary.org/obo/IAO_0000125","The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","","","","","","","curation status specification","","","","9.0","","GROUP:OBI:|OBI_0000266","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000102","","http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","curation status specification","true","","DUO","","IAO:0000078","IAO_0000078","","curation status specification","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000079","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000079"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000079""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""density plot"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Density plot of SSC-H and FSC-H."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000002"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000179"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:Flow Cytometry community"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""density plot"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""density plot"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""density plot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Density plot of SSC-H and FSC-H."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000179"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:Flow Cytometry community"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000079""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000079"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000079"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000079""},""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000002""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000038","true","","","person:Allyson Lister|person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000002","A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel.","","","Density plot of SSC-H and FSC-H.","","","","density plot","","","","0.0","","OBI_0000179|group:Flow Cytometry community","http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000038","","http://purl.obolibrary.org/obo/IAO_0000079","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","density plot","","","DUO","","IAO:0000079","IAO_0000079","","density plot","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000088","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000088"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000088""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of reports are gene lists and investigation reports. These are not published (journal) articles but may be included in a journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: comment from Darren Natale: I am slightly uneasy with the sentence \""Topic of the report is on \nsomething that has completed.\"" Should it be restricted to those things \nthat are completed? For example, a progress report is (usually) about \nsomething that definitely has *not* been completed, or may include \n(only) projections. I think the definition would not suffer if the \nwhole sentence is deleted."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: this was report of results with definition: A report is a narrative object that is a formal statement of the results of an investigation, or of any matter on which definite information is required, made by some person or body instructed or required to do so."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027document\u0027. Alan restored as there are OBI dependencies and this merits further discussion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disagreement about where reports go. alan: only some gene lists are reports. Is a report all the content of some document? The example of usage suggests that a report may be part of some article. Term needs clarification"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: OBI"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000099"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000310"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of reports are gene lists and investigation reports. These are not published (journal) articles but may be included in a journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: comment from Darren Natale: I am slightly uneasy with the sentence \""Topic of the report is on \nsomething that has completed.\"" Should it be restricted to those things \nthat are completed? For example, a progress report is (usually) about \nsomething that definitely has *not* been completed, or may include \n(only) projections. I think the definition would not suffer if the \nwhole sentence is deleted."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: this was report of results with definition: A report is a narrative object that is a formal statement of the results of an investigation, or of any matter on which definite information is required, made by some person or body instructed or required to do so."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027document\u0027. Alan restored as there are OBI dependencies and this merits further discussion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disagreement about where reports go. alan: only some gene lists are reports. Is a report all the content of some document? The example of usage suggests that a report may be part of some article. Term needs clarification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: OBI"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000099"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000088""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000088"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000088"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000088""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000310","true","","2009-03-16: comment from Darren Natale: I am slightly uneasy with the sentence ""Topic of the report is on +"duo+class+http://purl.obolibrary.org/obo/IAO_0000055","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000055"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000055""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A rule is an executable which guides, defines, restricts actions."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000001"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000001"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""rule"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be added"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A rule is an executable which guides, defines, restricts actions."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""MSI"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PRS"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0500021"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PRS"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""rule"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000001"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""rule"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""rule"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be added"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A rule is an executable which guides, defines, restricts actions."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""MSI"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PRS"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0500021"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000055""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conditional specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000001","true","","MSI","PRS","http://purl.obolibrary.org/obo/IAO_0000123","A rule is an executable which guides, defines, restricts actions.","","","example to be added","","","","rule","","","","0.0","","OBI_0500021|PRS","http://purl.obolibrary.org/obo/IAO_0000001","http://purl.obolibrary.org/obo/IAO_0000001|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A rule is an executable which guides, defines, restricts actions.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000001","","http://purl.obolibrary.org/obo/IAO_0000055","http://purl.obolibrary.org/obo/IAO_0000001|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","rule","","","DUO","","IAO:0000055","IAO_0000055","","rule","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000057","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000057"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000057""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contour plot"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Contour plot of SSC-H, FSC-H, and FL1-H."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000002"",""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically_dependent_continuants"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000246"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:Flow Cytometry community"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contour plot"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contour plot"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contour plot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Contour plot of SSC-H, FSC-H, and FL1-H."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically_dependent_continuants"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000246"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:Flow Cytometry community"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000057""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000002""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000038","true","","generically_dependent_continuants","person:Allyson Lister|person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000002","","","","Contour plot of SSC-H, FSC-H, and FL1-H.","","","","contour plot","","","","0.0","","OBI_0000246|group:Flow Cytometry community","http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000038","","http://purl.obolibrary.org/obo/IAO_0000057","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","contour plot","","","DUO","","IAO:0000057","IAO_0000057","","contour plot","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000059","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000059"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000059""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report figure"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""I prepended the \u0027report \u0027 to make it clear that we mean parts of reports here. We may want a more generic version of \u0027figure\u0027, in which case this would become a defined class - figure and part_of some report"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Replaced by defined version of figure"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""OBI_0000027""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_report figure"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_report figure"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report figure"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""I prepended the \u0027report \u0027 to make it clear that we mean parts of reports here. We may want a more generic version of \u0027figure\u0027, in which case this would become a defined class - figure and part_of some report"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Replaced by defined version of figure"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000027""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000059""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","I prepended the 'report ' to make it clear that we mean parts of reports here. We may want a more generic version of 'figure', in which case this would become a defined class - figure and part_of some report|Replaced by defined version of figure","person:Alan Ruttenberg|person:Allyson Lister","http://purl.obolibrary.org/obo/IAO_0000124","A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","report figure","","","","0.0","","OBI_0000027|group:OBI","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A report figure is a report display element that has some aspect of illustration, but may be a composite of figures, images, and other elements","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000059","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete2_report figure","","","DUO","","IAO:0000059","IAO_0000059","","obsolete2_report figure","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000064","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000064"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000064""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""algorithm"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PMID: 18378114.Genomics. 2008 Mar 28. LINKGEN: A new algorithm to process data in genetic linkage studies."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Philippe Rocca-Serra"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PlanAndPlannedProcess Branch"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000270"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""adapted from discussion on OBI list (Matthew Pocock, Christian Cocos, Alan Ruttenberg)"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""algorithm"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000104"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""algorithm"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""algorithm"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PMID: 18378114.Genomics. 2008 Mar 28. LINKGEN: A new algorithm to process data in genetic linkage studies."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Philippe Rocca-Serra"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PlanAndPlannedProcess Branch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000270"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""adapted from discussion on OBI list (Matthew Pocock, Christian Cocos, Alan Ruttenberg)"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000064""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000104","true","","","Philippe Rocca-Serra|PlanAndPlannedProcess Branch","http://purl.obolibrary.org/obo/IAO_0000120","A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.","","","PMID: 18378114.Genomics. 2008 Mar 28. LINKGEN: A new algorithm to process data in genetic linkage studies.","","","","algorithm","","","","1.0","","OBI_0000270|adapted from discussion on OBI list (Matthew Pocock, Christian Cocos, Alan Ruttenberg)","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000104","","http://purl.obolibrary.org/obo/IAO_0000064","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","algorithm","","","DUO","","IAO:0000064","IAO_0000064","","algorithm","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000065","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000065"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000065""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software interpreter is a software application that executes some specified input software."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000064"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000064"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000064"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000064"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software interpreter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""R program, Perl interpreter, Java virtual machine"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software interpreter is a software application that executes some specified input software."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Do we care? Jennifer: Yes, there was a particular version of R that had a bug and it was fixed later. That would imply that we mean specific version of an interpreter. So an instance of this would be a particular version of the interpreter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000199"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software interpreter"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000064"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software interpreter"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software interpreter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""R program, Perl interpreter, Java virtual machine"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software interpreter is a software application that executes some specified input software."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Do we care? Jennifer: Yes, there was a particular version of R that had a bug and it was fixed later. That would imply that we mean specific version of an interpreter. So an instance of this would be a particular version of the interpreter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000199"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000065""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000064"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""algorithm"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000064""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000064","true","","Do we care? Jennifer: Yes, there was a particular version of R that had a bug and it was fixed later. That would imply that we mean specific version of an interpreter. So an instance of this would be a particular version of the interpreter","person:Alan Ruttenberg|person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000120","A software interpreter is a software application that executes some specified input software.","","","R program, Perl interpreter, Java virtual machine","","","","software interpreter","","","","0.0","","OBI_0000199|group:OBI","http://purl.obolibrary.org/obo/IAO_0000064","http://purl.obolibrary.org/obo/IAO_0000064|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A software interpreter is a software application that executes some specified input software.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000064","","http://purl.obolibrary.org/obo/IAO_0000065","http://purl.obolibrary.org/obo/IAO_0000064|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","software interpreter","","","DUO","","IAO:0000065","IAO_0000065","","software interpreter","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000078","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000078"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000102"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hasIndividuals"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000102"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Bill Bug"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000266"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000102"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#oneOf"":[""http://purl.obolibrary.org/obo/IAO_0000002"",""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000423"",""http://purl.obolibrary.org/obo/IAO_0000428""]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""numDescendants"":9.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Bill Bug"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000266"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000078""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000002""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000102","true","","Better to represent curation as a process with parts and then relate labels to that process (in IAO meeting)","PERSON:Bill Bug","http://purl.obolibrary.org/obo/IAO_0000125","The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","","","","","","","curation status specification","","","","9.0","","GROUP:OBI:|OBI_0000266","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000102","","http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","curation status specification","true","","DUO","","IAO:0000078","IAO_0000078","","curation status specification","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000079","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000079"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000079""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""density plot"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Density plot of SSC-H and FSC-H."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000002"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000179"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:Flow Cytometry community"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""density plot"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""density plot"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""density plot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Density plot of SSC-H and FSC-H."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000179"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:Flow Cytometry community"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000079""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000002""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000038","true","","","person:Allyson Lister|person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000002","A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel.","","","Density plot of SSC-H and FSC-H.","","","","density plot","","","","0.0","","OBI_0000179|group:Flow Cytometry community","http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A density plot is a report graph which is a graphical representation of data where the tint of a particular pixel corresponds to some kind of function corresponding the the amount of data points relativelly with their distance from the the pixel.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000038","","http://purl.obolibrary.org/obo/IAO_0000079","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","density plot","","","DUO","","IAO:0000079","IAO_0000079","","density plot","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000088","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000088"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000088""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of reports are gene lists and investigation reports. These are not published (journal) articles but may be included in a journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: comment from Darren Natale: I am slightly uneasy with the sentence \""Topic of the report is on \nsomething that has completed.\"" Should it be restricted to those things \nthat are completed? For example, a progress report is (usually) about \nsomething that definitely has *not* been completed, or may include \n(only) projections. I think the definition would not suffer if the \nwhole sentence is deleted."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: this was report of results with definition: A report is a narrative object that is a formal statement of the results of an investigation, or of any matter on which definite information is required, made by some person or body instructed or required to do so."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027document\u0027. Alan restored as there are OBI dependencies and this merits further discussion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disagreement about where reports go. alan: only some gene lists are reports. Is a report all the content of some document? The example of usage suggests that a report may be part of some article. Term needs clarification"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: OBI"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000099"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000310"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of reports are gene lists and investigation reports. These are not published (journal) articles but may be included in a journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: comment from Darren Natale: I am slightly uneasy with the sentence \""Topic of the report is on \nsomething that has completed.\"" Should it be restricted to those things \nthat are completed? For example, a progress report is (usually) about \nsomething that definitely has *not* been completed, or may include \n(only) projections. I think the definition would not suffer if the \nwhole sentence is deleted."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: this was report of results with definition: A report is a narrative object that is a formal statement of the results of an investigation, or of any matter on which definite information is required, made by some person or body instructed or required to do so."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027document\u0027. Alan restored as there are OBI dependencies and this merits further discussion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disagreement about where reports go. alan: only some gene lists are reports. Is a report all the content of some document? The example of usage suggests that a report may be part of some article. Term needs clarification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: OBI"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000099"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000088""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000310","true","","2009-03-16: comment from Darren Natale: I am slightly uneasy with the sentence ""Topic of the report is on something that has completed."" Should it be restricted to those things that are completed? For example, a progress report is (usually) about something that definitely has *not* been completed, or may include (only) projections. I think the definition would not suffer if the whole sentence is deleted.|2009-03-16: this was report of results with definition: A report is a narrative object that is a formal statement of the results of an investigation, or of any matter on which definite information is required, made by some person or body instructed or required to do so.|2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.|2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by 'document'. Alan restored as there are OBI dependencies and this merits further discussion|disagreement about where reports go. alan: only some gene lists are reports. Is a report all the content of some document? The example of usage suggests that a report may be part of some article. Term needs clarification","PERSON: Alan Ruttenberg|PERSON: Chris Stoeckert|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000125","A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record).","","","Examples of reports are gene lists and investigation reports. These are not published (journal) articles but may be included in a journal article.","","","","report","","","","1.0","","GROUP: OBI|OBI_0000099","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A document assembled by an author for the purpose of providing information for the audience. A report is the output of a documenting process and has the objective to be consumed by a specific audience. Topic of the report is on something that has completed. A report is not a single figure. Examples of reports are journal article, patent application, grant progress report, case report (not patient record).","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000310","","http://purl.obolibrary.org/obo/IAO_0000088","http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","report","","","DUO","","IAO:0000088","IAO_0000088","","report","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000091","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000091"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000091""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report element"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""value"":""2009-03-16: needs some more work (clarify relations).""},{""type"":[""literal""],""value"":""2009-03-16: was report display element with definition: A report display element is a narrative object that is part of a report. Report display elements are set off from the textual parts of a report and are typically given a label(e.g. Figure 2) which is used to refer to the element from the text. Typically the 2d layout is part of the identity of such elements.""},{""type"":[""literal""],""value"":""2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.""},{""type"":[""literal""],""value"":""2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity\u0027 and \u0027figure\u0027. Alan restored as there are OBI dependencies and this merits further discussion""},{""type"":[""literal""],""value"":""Replaced by textual entity and figure""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""There will be some issue here about whether these are defined classes. As intended these are meant to denote the parts of the report that are not textual but are typically boxed and set within the text, labelled with some identifier, and referred to in the text"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Melanie Courtot""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000001""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_report element"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_report element"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report element"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page)."",""lang"":""en""},{""type"":[""literal""],""value"":""2009-03-16: needs some more work (clarify relations).""},{""type"":[""literal""],""value"":""2009-03-16: was report display element with definition: A report display element is a narrative object that is part of a report. Report display elements are set off from the textual parts of a report and are typically given a label(e.g. Figure 2) which is used to refer to the element from the text. Typically the 2d layout is part of the identity of such elements.""},{""type"":[""literal""],""value"":""2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.""},{""type"":[""literal""],""value"":""2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity\u0027 and \u0027figure\u0027. Alan restored as there are OBI dependencies and this merits further discussion""},{""type"":[""literal""],""value"":""Replaced by textual entity and figure""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""There will be some issue here about whether these are defined classes. As intended these are meant to denote the parts of the report that are not textual but are typically boxed and set within the text, labelled with some identifier, and referred to in the text"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Melanie Courtot""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000001""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000091""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""IAO:0000091"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000091"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000091""},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","2009-03-16: needs some more work (clarify relations).|2009-03-16: was report display element with definition: A report display element is a narrative object that is part of a report. Report display elements are set off from the textual parts of a report and are typically given a label(e.g. Figure 2) which is used to refer to the element from the text. Typically the 2d layout is part of the identity of such elements.|2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.|2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by 'textual entity' and 'figure'. Alan restored as there are OBI dependencies and this merits further discussion|Replaced by textual entity and figure|There will be some issue here about whether these are defined classes. As intended these are meant to denote the parts of the report that are not textual but are typically boxed and set within the text, labelled with some identifier, and referred to in the text","PERSON: Alan Ruttenberg|PERSON: Allyson Lister|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000120","A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page).","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","report element","","","","0.0","","GROUP:OBI|OBI_0000001","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page).","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000091","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_report element","","","DUO","","IAO:0000091","IAO_0000091","","obsolete_report element","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000093","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000093"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000093""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""binary executable"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digital entity\u0027"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Jennifer Fostel"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""OBI_0000222""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_binary executable"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_binary executable"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""binary executable"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digital entity\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Jennifer Fostel"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000222""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000093""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000093"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000093"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000093""},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4 +"duo+class+http://purl.obolibrary.org/obo/IAO_0000091","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000091"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000091""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report element"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""value"":""2009-03-16: needs some more work (clarify relations).""},{""type"":[""literal""],""value"":""2009-03-16: was report display element with definition: A report display element is a narrative object that is part of a report. Report display elements are set off from the textual parts of a report and are typically given a label(e.g. Figure 2) which is used to refer to the element from the text. Typically the 2d layout is part of the identity of such elements.""},{""type"":[""literal""],""value"":""2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.""},{""type"":[""literal""],""value"":""2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity\u0027 and \u0027figure\u0027. Alan restored as there are OBI dependencies and this merits further discussion""},{""type"":[""literal""],""value"":""Replaced by textual entity and figure""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""There will be some issue here about whether these are defined classes. As intended these are meant to denote the parts of the report that are not textual but are typically boxed and set within the text, labelled with some identifier, and referred to in the text"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Melanie Courtot""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000001""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_report element"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_report element"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report element"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page)."",""lang"":""en""},{""type"":[""literal""],""value"":""2009-03-16: needs some more work (clarify relations).""},{""type"":[""literal""],""value"":""2009-03-16: was report display element with definition: A report display element is a narrative object that is part of a report. Report display elements are set off from the textual parts of a report and are typically given a label(e.g. Figure 2) which is used to refer to the element from the text. Typically the 2d layout is part of the identity of such elements.""},{""type"":[""literal""],""value"":""2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.""},{""type"":[""literal""],""value"":""2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity\u0027 and \u0027figure\u0027. Alan restored as there are OBI dependencies and this merits further discussion""},{""type"":[""literal""],""value"":""Replaced by textual entity and figure""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""There will be some issue here about whether these are defined classes. As intended these are meant to denote the parts of the report that are not textual but are typically boxed and set within the text, labelled with some identifier, and referred to in the text"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Melanie Courtot""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000001""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000091""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","2009-03-16: needs some more work (clarify relations).|2009-03-16: was report display element with definition: A report display element is a narrative object that is part of a report. Report display elements are set off from the textual parts of a report and are typically given a label(e.g. Figure 2) which is used to refer to the element from the text. Typically the 2d layout is part of the identity of such elements.|2009-03-16: work has been done on this term during during the OBI workshop winter 2009 and the current definition was considered acceptable for use in OBI. If there is a need to modify this definition please notify OBI.|2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by 'textual entity' and 'figure'. Alan restored as there are OBI dependencies and this merits further discussion|Replaced by textual entity and figure|There will be some issue here about whether these are defined classes. As intended these are meant to denote the parts of the report that are not textual but are typically boxed and set within the text, labelled with some identifier, and referred to in the text","PERSON: Alan Ruttenberg|PERSON: Allyson Lister|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000120","A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page).","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","report element","","","","0.0","","GROUP:OBI|OBI_0000001","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A report element is a narrative object in which information is presented and consumed by a human being, and is part of a report. Examples of report elements are figure (dot plot), table, text portion (may include a movie or audio clip on a web page).","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000091","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_report element","","","DUO","","IAO:0000091","IAO_0000091","","obsolete_report element","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000093","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000093"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000093""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""binary executable"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digital entity\u0027"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Jennifer Fostel"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""OBI_0000222""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_binary executable"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_binary executable"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""binary executable"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digital entity\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Jennifer Fostel"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000222""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000093""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4 superclass was 'digital entity'","person:Jennifer Fostel","","Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","binary executable","","","","0.0","","OBI_0000222|group:OBI","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","Binary executable is a digital entity consisting of the binary representation of machine instructions of a specific processor or they may be binary pseudocode for a virtual machine. A non-source executable file is also called an object program. It is assumed that the binary executable file contains properly-formatted computer instructions. (derived from Wikipedia, Nov 1, 2007)","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000093","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete2_binary executable","","","DUO","","IAO:0000093","IAO_0000093","","obsolete2_binary executable","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000096","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000096"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000096""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A source code module is a directive information entity that specifies, using a programming language, some algorithm."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The written source code that implements part of an algorithm. Test - if you know that it was written in a specific language, then it can be source code module. We mean here, roughly, the wording of a document such as a perl script."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A source code module is a directive information entity that specifies, using a programming language, some algorithm."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000039"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000033"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/APOLLO_SV_00000522"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000096"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The written source code that implements part of an algorithm. Test - if you know that it was written in a specific language, then it can be source code module. We mean here, roughly, the wording of a document such as a perl script."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A source code module is a directive information entity that specifies, using a programming language, some algorithm."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000039"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000096""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/APOLLO_SV_00000522"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code repository"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""APOLLO:SV_00000522""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""IAO:0000096"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000096"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000096""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000033","true","","","person:Alan Ruttenberg|person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000123","A source code module is a directive information entity that specifies, using a programming language, some algorithm.","","","The written source code that implements part of an algorithm. Test - if you know that it was written in a specific language, then it can be source code module. We mean here, roughly, the wording of a document such as a perl script.","","","","source code module","","","http://purl.obolibrary.org/obo/APOLLO_SV_00000522","0.0","","OBI_0000039|group:OBI","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A source code module is a directive information entity that specifies, using a programming language, some algorithm.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000033","","http://purl.obolibrary.org/obo/IAO_0000096","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","source code module","","","DUO","","IAO:0000096","IAO_0000096","","source code module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000097","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000097"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000097""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report table"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000002"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity table\u0027. Alan restored as there are OBI dependencies and this merits further discussion""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""OBI_0000265""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_report table"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_report table"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report table"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content"",""lang"":""en""},{""type"":[""literal""],""value"":""2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity table\u0027. Alan restored as there are OBI dependencies and this merits further discussion""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000265""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000097""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000002""},""type"":[""individual"",""entity""]},""IAO:0000097"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000097"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000097""},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by 'textual entity table'. Alan restored as there are OBI dependencies and this merits further discussion","person:Alan Ruttenberg|person:Allyson Lister","http://purl.obolibrary.org/obo/IAO_0000002","A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","report table","","","","0.0","","OBI_0000265|group:OBI","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000097","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_report table","","","DUO","","IAO:0000097","IAO_0000097","","obsolete_report table","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000098","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000098"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000098""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data format specification is the information content borne by the document published defining the specification.\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data format specification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data format specification is the information content borne by the document published defining the specification.\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: provenance: term imported from OBI_0000187, which had original definition \""A data format specification is a plan which organizes\ninformation. Example: The ISO document specifying what encompasses an\nXML document; The instructions in a XSD file\"""",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PlanAndPlannedProcess Branch"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI branch derived"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000187"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data format specification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000033"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data format specification"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data format specification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data format specification is the information content borne by the document published defining the specification.\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: provenance: term imported from OBI_0000187, which had original definition \""A data format specification is a plan which organizes\ninformation. Example: The ISO document specifying what encompasses an\nXML document; The instructions in a XSD file\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PlanAndPlannedProcess Branch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI branch derived"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000187"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000098""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""IAO:0000098"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000098"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000098""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000033","true","","2009-03-16: provenance: term imported from OBI_0000187, which had original definition ""A data format specification is a plan which organizes +"duo+class+http://purl.obolibrary.org/obo/IAO_0000096","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000096"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000096""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A source code module is a directive information entity that specifies, using a programming language, some algorithm."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The written source code that implements part of an algorithm. Test - if you know that it was written in a specific language, then it can be source code module. We mean here, roughly, the wording of a document such as a perl script."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A source code module is a directive information entity that specifies, using a programming language, some algorithm."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000039"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000033"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/APOLLO_SV_00000522"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000096"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The written source code that implements part of an algorithm. Test - if you know that it was written in a specific language, then it can be source code module. We mean here, roughly, the wording of a document such as a perl script."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A source code module is a directive information entity that specifies, using a programming language, some algorithm."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000039"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000096""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/APOLLO_SV_00000522"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source code repository"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""APOLLO:SV_00000522""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000033","true","","","person:Alan Ruttenberg|person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000123","A source code module is a directive information entity that specifies, using a programming language, some algorithm.","","","The written source code that implements part of an algorithm. Test - if you know that it was written in a specific language, then it can be source code module. We mean here, roughly, the wording of a document such as a perl script.","","","","source code module","","","http://purl.obolibrary.org/obo/APOLLO_SV_00000522","0.0","","OBI_0000039|group:OBI","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A source code module is a directive information entity that specifies, using a programming language, some algorithm.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000033","","http://purl.obolibrary.org/obo/IAO_0000096","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","source code module","","","DUO","","IAO:0000096","IAO_0000096","","source code module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000097","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000097"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000097""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report table"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000002"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity table\u0027. Alan restored as there are OBI dependencies and this merits further discussion""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""OBI_0000265""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_report table"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_report table"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""report table"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content"",""lang"":""en""},{""type"":[""literal""],""value"":""2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by \u0027textual entity table\u0027. Alan restored as there are OBI dependencies and this merits further discussion""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000265""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000097""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000002""},""type"":[""individual"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","2009-08-10 Alan Ruttenberg: Larry Hunter suggests that this be obsoleted and replaced by 'textual entity table'. Alan restored as there are OBI dependencies and this merits further discussion","person:Alan Ruttenberg|person:Allyson Lister","http://purl.obolibrary.org/obo/IAO_0000002","A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","report table","","","","0.0","","OBI_0000265|group:OBI","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A report table is a report display element consisting of a matrix of cells layed out in a grid, some set of which are filled with some information content","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000097","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_report table","","","DUO","","IAO:0000097","IAO_0000097","","obsolete_report table","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000098","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000098"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000098""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data format specification is the information content borne by the document published defining the specification.\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data format specification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data format specification is the information content borne by the document published defining the specification.\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: provenance: term imported from OBI_0000187, which had original definition \""A data format specification is a plan which organizes\ninformation. Example: The ISO document specifying what encompasses an\nXML document; The instructions in a XSD file\"""",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PlanAndPlannedProcess Branch"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI branch derived"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000187"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data format specification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000033"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data format specification"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data format specification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data format specification is the information content borne by the document published defining the specification.\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: provenance: term imported from OBI_0000187, which had original definition \""A data format specification is a plan which organizes\ninformation. Example: The ISO document specifying what encompasses an\nXML document; The instructions in a XSD file\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PlanAndPlannedProcess Branch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI branch derived"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000187"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000098""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000033","true","","2009-03-16: provenance: term imported from OBI_0000187, which had original definition ""A data format specification is a plan which organizes information. Example: The ISO document specifying what encompasses an XML document; The instructions in a XSD file""","PERSON: Alan Ruttenberg|PlanAndPlannedProcess Branch","http://purl.obolibrary.org/obo/IAO_0000123","A data format specification is the information content borne by the document published defining the specification. Example: The ISO document specifying what encompasses an XML document; The instructions in a XSD file","","","","","","","data format specification","","","","0.0","","OBI branch derived|OBI_0000187","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A data format specification is the information content borne by the document published defining the specification. Example: The ISO document specifying what encompasses an XML document; The instructions in a XSD file","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000033","","http://purl.obolibrary.org/obo/IAO_0000098","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","data format specification","","","DUO","","IAO:0000098","IAO_0000098","","data format specification","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000100","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000100"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000100""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data set"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Intensity values in a CEL file or from multiple CEL files comprise a data set (as opposed to the CEL files themselves)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/10/23 Alan Ruttenberg. The intention is that this term represent collections of like data. So this isn\u0027t for, e.g. the whole contents of a cel file, which includes parameters, metadata etc. This is more like java arrays of a certain rather specific type"",""lang"":""en""},{""type"":[""literal""],""value"":""2014-05-05: Data sets are aggregates and thus must include two or more data items. We have chosen not to add logical axioms to make this restriction.""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000042"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data set"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000027"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data set"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data set"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Intensity values in a CEL file or from multiple CEL files comprise a data set (as opposed to the CEL files themselves)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/10/23 Alan Ruttenberg. The intention is that this term represent collections of like data. So this isn\u0027t for, e.g. the whole contents of a cel file, which includes parameters, metadata etc. This is more like java arrays of a certain rather specific type"",""lang"":""en""},{""type"":[""literal""],""value"":""2014-05-05: Data sets are aggregates and thus must include two or more data items. We have chosen not to add logical axioms to make this restriction.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000042"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000100""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000100"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000100"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000100""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000027","true","","2009/10/23 Alan Ruttenberg. The intention is that this term represent collections of like data. So this isn't for, e.g. the whole contents of a cel file, which includes parameters, metadata etc. This is more like java arrays of a certain rather specific type|2014-05-05: Data sets are aggregates and thus must include two or more data items. We have chosen not to add logical axioms to make this restriction.","person:Allyson Lister|person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000125","A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets.","","","Intensity values in a CEL file or from multiple CEL files comprise a data set (as opposed to the CEL files themselves).","","","","data set","","","","2.0","","OBI_0000042|group:OBI","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000027","","http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","data set","","","DUO","","IAO:0000100","IAO_0000100","","data set","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000101","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000101"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000101""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000308"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000308"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""image"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000030"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""image"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000308"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""image"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""image"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000030"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000101""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000101"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000101"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000101""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000308","true","","","person:Alan Ruttenberg|person:Allyson|person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000122","An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface.","","","","","","","image","","","","1.0","","OBI_0000030|group:OBI","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000308","","http://purl.obolibrary.org/obo/IAO_0000101","http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","image","","","DUO","","IAO:0000101","IAO_0000101","","image","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000102","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000102"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Data about an ontology part is a data item about a part of an ontology, for example a term"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Data about an ontology part is a data item about a part of an ontology, for example a term"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000027"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""numDescendants"":42.0,""numHierarchicalDescendants"":24.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Data about an ontology part is a data item about a part of an ontology, for example a term"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000102""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""IAO:0000102"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000102"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000102""}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","24.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000027","true","","","Person:Alan Ruttenberg","","Data about an ontology part is a data item about a part of an ontology, for example a term","","","","","","","data about an ontology part","","","","42.0","","","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","Data about an ontology part is a data item about a part of an ontology, for example a term","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000027","","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","data about an ontology part","","","DUO","","IAO:0000102","IAO_0000102","","data about an ontology part","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000104","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000104"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2/3/2009 Comment from OBI review.\n\nAction specification not well enough specified.\nConditional specification not well enough specified.\nQuestion whether all plan specifications have objective specifications.\n\nRequest that IAO either clarify these or change definitions not to use them"",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was \"" a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan\"". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-03-31: A plan specification can have other parts, such as conditional specifications."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2022-01-16 Updated definition to that proposed by Clint Dowloand, IAO Issue 231."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Clint Dowland"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI Plan and Planned Process branch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000344"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2/3/2009 Comment from OBI review.\n\nAction specification not well enough specified.\nConditional specification not well enough specified.\nQuestion whether all plan specifications have objective specifications.\n\nRequest that IAO either clarify these or change definitions not to use them"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/231#issuecomment-1010455131"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000033"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000005"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000007"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""numDescendants"":11.0,""numHierarchicalDescendants"":11.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000005"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000005"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000007"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000007"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was \"" a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan\"". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-03-31: A plan specification can have other parts, such as conditional specifications."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2022-01-16 Updated definition to that proposed by Clint Dowloand, IAO Issue 231."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Clint Dowland"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI Plan and Planned Process branch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000344"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000104""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""action specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000005"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""objective specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000005""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000104"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000104"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000104""}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","11.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000005|http://purl.obolibrary.org/obo/IAO_0000007","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/IAO_0000033||","true","","2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was "" a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan"". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.|2014-03-31: A plan specification can have other parts, such as conditional specifications.|2022-01-16 Updated definition to that proposed by Clint Dowloand, IAO Issue 231.|Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved","Alan Ruttenberg|Clint Dowland","http://purl.obolibrary.org/obo/IAO_0000122","A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified.","","","PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice.","","","","plan specification","","","","11.0","","OBI Plan and Planned Process branch|OBI_0000344","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","https://github.com/information-artifact-ontology/IAO/issues/231#issuecomment-1010455131","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","2/3/2009 Comment from OBI review. +"duo+class+http://purl.obolibrary.org/obo/IAO_0000100","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000100"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000100""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data set"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Intensity values in a CEL file or from multiple CEL files comprise a data set (as opposed to the CEL files themselves)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/10/23 Alan Ruttenberg. The intention is that this term represent collections of like data. So this isn\u0027t for, e.g. the whole contents of a cel file, which includes parameters, metadata etc. This is more like java arrays of a certain rather specific type"",""lang"":""en""},{""type"":[""literal""],""value"":""2014-05-05: Data sets are aggregates and thus must include two or more data items. We have chosen not to add logical axioms to make this restriction.""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000042"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data set"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000027"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data set"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data set"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Intensity values in a CEL file or from multiple CEL files comprise a data set (as opposed to the CEL files themselves)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/10/23 Alan Ruttenberg. The intention is that this term represent collections of like data. So this isn\u0027t for, e.g. the whole contents of a cel file, which includes parameters, metadata etc. This is more like java arrays of a certain rather specific type"",""lang"":""en""},{""type"":[""literal""],""value"":""2014-05-05: Data sets are aggregates and thus must include two or more data items. We have chosen not to add logical axioms to make this restriction.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson Lister"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000042"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000100""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000027","true","","2009/10/23 Alan Ruttenberg. The intention is that this term represent collections of like data. So this isn't for, e.g. the whole contents of a cel file, which includes parameters, metadata etc. This is more like java arrays of a certain rather specific type|2014-05-05: Data sets are aggregates and thus must include two or more data items. We have chosen not to add logical axioms to make this restriction.","person:Allyson Lister|person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000125","A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets.","","","Intensity values in a CEL file or from multiple CEL files comprise a data set (as opposed to the CEL files themselves).","","","","data set","","","","2.0","","OBI_0000042|group:OBI","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000027","","http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","data set","","","DUO","","IAO:0000100","IAO_0000100","","data set","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000101","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000101"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000101""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000308"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000308"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""image"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000030"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""image"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000308"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""image"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""image"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Allyson"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000030"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000101""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000308","true","","","person:Alan Ruttenberg|person:Allyson|person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000122","An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface.","","","","","","","image","","","","1.0","","OBI_0000030|group:OBI","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000308","","http://purl.obolibrary.org/obo/IAO_0000101","http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","image","","","DUO","","IAO:0000101","IAO_0000101","","image","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000102","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000102"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Data about an ontology part is a data item about a part of an ontology, for example a term"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Data about an ontology part is a data item about a part of an ontology, for example a term"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000027"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""numDescendants"":42.0,""numHierarchicalDescendants"":24.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Data about an ontology part is a data item about a part of an ontology, for example a term"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000102""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","24.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000027","true","","","Person:Alan Ruttenberg","","Data about an ontology part is a data item about a part of an ontology, for example a term","","","","","","","data about an ontology part","","","","42.0","","","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","Data about an ontology part is a data item about a part of an ontology, for example a term","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000027","","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","data about an ontology part","","","DUO","","IAO:0000102","IAO_0000102","","data about an ontology part","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000104","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000104"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2/3/2009 Comment from OBI review.\n\nAction specification not well enough specified.\nConditional specification not well enough specified.\nQuestion whether all plan specifications have objective specifications.\n\nRequest that IAO either clarify these or change definitions not to use them"",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000033"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was \"" a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan\"". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-03-31: A plan specification can have other parts, such as conditional specifications."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2022-01-16 Updated definition to that proposed by Clint Dowloand, IAO Issue 231."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Clint Dowland"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI Plan and Planned Process branch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000344"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2/3/2009 Comment from OBI review.\n\nAction specification not well enough specified.\nConditional specification not well enough specified.\nQuestion whether all plan specifications have objective specifications.\n\nRequest that IAO either clarify these or change definitions not to use them"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/231#issuecomment-1010455131"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000033"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000005"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000007"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""numDescendants"":11.0,""numHierarchicalDescendants"":11.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000005"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000005"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000007"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000007"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was \"" a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan\"". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-03-31: A plan specification can have other parts, such as conditional specifications."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2022-01-16 Updated definition to that proposed by Clint Dowloand, IAO Issue 231."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Clint Dowland"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI Plan and Planned Process branch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000344"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000104""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""action specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000005"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""objective specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000005""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","11.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000005|http://purl.obolibrary.org/obo/IAO_0000007","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/IAO_0000033||","true","","2009-03-16: provenance: a term a plan was proposed for OBI (OBI_0000344) , edited by the PlanAndPlannedProcess branch. Original definition was "" a plan is a specification of a process that is realized by an actor to achieve the objective specified as part of the plan"". It has been subsequently moved to IAO where the objective for which the original term was defined was satisfied with the definitionof this, different, term.|2014-03-31: A plan specification can have other parts, such as conditional specifications.|2022-01-16 Updated definition to that proposed by Clint Dowloand, IAO Issue 231.|Alternative previous definition: a plan is a set of instructions that specify how an objective should be achieved","Alan Ruttenberg|Clint Dowland","http://purl.obolibrary.org/obo/IAO_0000122","A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified.","","","PMID: 18323827.Nat Med. 2008 Mar;14(3):226.New plan proposed to help resolve conflicting medical advice.","","","","plan specification","","","","11.0","","OBI Plan and Planned Process branch|OBI_0000344","http://purl.obolibrary.org/obo/IAO_0000033","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","https://github.com/information-artifact-ontology/IAO/issues/231#issuecomment-1010455131","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","2/3/2009 Comment from OBI review. Action specification not well enough specified. Conditional specification not well enough specified. @@ -178,188 +178,188 @@ Conditional specification not well enough specified. Question whether all plan specifications have objective specifications. Request that IAO either clarify these or change definitions not to use them","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000033","","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","plan specification","","","DUO","","IAO:0000104","IAO_0000104","","plan specification","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000105","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000105"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000105""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""digital document"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digial entity\u0027"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Jennifer Fostel"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""OBI_0000195""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_digital document"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_digital document"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""digital document"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digial entity\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Jennifer Fostel"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000195""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000105""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]},""IAO:0000105"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000105"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000105""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4 +"duo+class+http://purl.obolibrary.org/obo/IAO_0000105","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000105"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000105""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""digital document"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digial entity\u0027"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Jennifer Fostel"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""OBI_0000195""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_digital document"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete2_digital document"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""digital document"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4\nsuperclass was \u0027digial entity\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Jennifer Fostel"",""lang"":""en""},{""type"":[""literal""],""value"":""OBI_0000195""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000105""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4 superclass was 'digial entity'","person:Jennifer Fostel","","A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file.","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","digital document","","","","0.0","","OBI_0000195|group:OBI","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A digital document is a digital entity consisting of an electronic file which can be rendered into human-readable form by one or more computational applications. The digital document does not refer to the information content of the document but to an instance of the file.","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000105","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete2_digital document","","","DUO","","IAO:0000105","IAO_0000105","","obsolete2_digital document","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000109","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000109"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000109""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of measurement data are the recoding of the weight of a mouse as {40,mass,\""grams\""}, the recording of an observation of the behavior of the mouse {,process,\""agitated\""}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2/2/2009 is_specified_output of some assay?"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000305"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000027"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""numDescendants"":6.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of measurement data are the recoding of the weight of a mouse as {40,mass,\""grams\""}, the recording of an observation of the behavior of the mouse {,process,\""agitated\""}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2/2/2009 is_specified_output of some assay?"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000305"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000109""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000109"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000109"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000109""},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000027","true","","2/2/2009 is_specified_output of some assay?","person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000125","A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.","","","Examples of measurement data are the recoding of the weight of a mouse as {40,mass,""grams""}, the recording of an observation of the behavior of the mouse {,process,""agitated""}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}.","","","","measurement datum","","","","6.0","","OBI_0000305|group:OBI","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000027","","http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","measurement datum","","","DUO","","IAO:0000109","IAO_0000109","","measurement datum","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000128","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000128"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000128""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""_identifier is a container under information content entity for collecting types of terms to indicate a specific instance or clas of what was used or participated in an investigation. Identifiers are borne by a product or its packaging, and can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\n\nNote: everybody agreed that identifier is probably a too general term. We however felt that it would be appropriate to group \""identifiying\"" terms under some kind of umbrella. We therefore propose to use _identifier for that purpose. As per OBI conventions, the _ prefixing identifier indicates that this is a helper class and shouldn\u0027t be considered as final.""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000226"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_identifier""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_identifier""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""_identifier is a container under information content entity for collecting types of terms to indicate a specific instance or clas of what was used or participated in an investigation. Identifiers are borne by a product or its packaging, and can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\n\nNote: everybody agreed that identifier is probably a too general term. We however felt that it would be appropriate to group \""identifiying\"" terms under some kind of umbrella. We therefore propose to use _identifier for that purpose. As per OBI conventions, the _ prefixing identifier indicates that this is a helper class and shouldn\u0027t be considered as final.""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000128""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000226""},""type"":[""individual"",""entity""]},""IAO:0000128"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000128"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000128""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","_identifier is a container under information content entity for collecting types of terms to indicate a specific instance or clas of what was used or participated in an investigation. Identifiers are borne by a product or its packaging, and can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots. +"duo+class+http://purl.obolibrary.org/obo/IAO_0000109","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000109"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000109""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of measurement data are the recoding of the weight of a mouse as {40,mass,\""grams\""}, the recording of an observation of the behavior of the mouse {,process,\""agitated\""}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2/2/2009 is_specified_output of some assay?"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000305"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000027"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""numDescendants"":6.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Examples of measurement data are the recoding of the weight of a mouse as {40,mass,\""grams\""}, the recording of an observation of the behavior of the mouse {,process,\""agitated\""}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2/2/2009 is_specified_output of some assay?"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000305"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000109""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000027","true","","2/2/2009 is_specified_output of some assay?","person:Chris Stoeckert","http://purl.obolibrary.org/obo/IAO_0000125","A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.","","","Examples of measurement data are the recoding of the weight of a mouse as {40,mass,""grams""}, the recording of an observation of the behavior of the mouse {,process,""agitated""}, the recording of the expression level of a gene as measured through the process of microarray experiment {3.4,luminosity,}.","","","","measurement datum","","","","6.0","","OBI_0000305|group:OBI","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A measurement datum is an information content entity that is a recording of the output of a measurement such as produced by a device.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000027","","http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","measurement datum","","","DUO","","IAO:0000109","IAO_0000109","","measurement datum","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000128","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000128"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000128""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""_identifier is a container under information content entity for collecting types of terms to indicate a specific instance or clas of what was used or participated in an investigation. Identifiers are borne by a product or its packaging, and can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\n\nNote: everybody agreed that identifier is probably a too general term. We however felt that it would be appropriate to group \""identifiying\"" terms under some kind of umbrella. We therefore propose to use _identifier for that purpose. As per OBI conventions, the _ prefixing identifier indicates that this is a helper class and shouldn\u0027t be considered as final.""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000226"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_identifier""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_identifier""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""_identifier is a container under information content entity for collecting types of terms to indicate a specific instance or clas of what was used or participated in an investigation. Identifiers are borne by a product or its packaging, and can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.\n\nNote: everybody agreed that identifier is probably a too general term. We however felt that it would be appropriate to group \""identifiying\"" terms under some kind of umbrella. We therefore propose to use _identifier for that purpose. As per OBI conventions, the _ prefixing identifier indicates that this is a helper class and shouldn\u0027t be considered as final.""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000128""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000226""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","_identifier is a container under information content entity for collecting types of terms to indicate a specific instance or clas of what was used or participated in an investigation. Identifiers are borne by a product or its packaging, and can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots. Note: everybody agreed that identifier is probably a too general term. We however felt that it would be appropriate to group ""identifiying"" terms under some kind of umbrella. We therefore propose to use _identifier for that purpose. As per OBI conventions, the _ prefixing identifier indicates that this is a helper class and shouldn't be considered as final.","","http://purl.obolibrary.org/obo/IAO_0000121","","","","","","","http://purl.obolibrary.org/obo/IAO_0000226","","","","","0.0","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000128","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_identifier","","","DUO","","IAO:0000128","IAO_0000128","","obsolete_identifier","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000129","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000129"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000129""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""version number"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Note: we feel that at the moment we are happy with a general version number, and that we will subclass as needed in the future. For example, see 7. genome sequence version"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""version number"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000028"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""version number"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""version number"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Note: we feel that at the moment we are happy with a general version number, and that we will subclass as needed in the future. For example, see 7. genome sequence version"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000129""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000129"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000129"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000129""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000028""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000028","true","","Note: we feel that at the moment we are happy with a general version number, and that we will subclass as needed in the future. For example, see 7. genome sequence version","GROUP: IAO","http://purl.obolibrary.org/obo/IAO_0000123","A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name.","","","","","","","version number","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000028","","http://purl.obolibrary.org/obo/IAO_0000129","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","version number","","","DUO","","IAO:0000129","IAO_0000129","","version number","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000131","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000131"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000131""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""serial number"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Note: during the call there was some confusion between serial number and model number. We agreed that it would be very helpful for all those terms to have example of usages - please add if you have any :-)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""serial number"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000028"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""serial number"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""serial number"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Note: during the call there was some confusion between serial number and model number. We agreed that it would be very helpful for all those terms to have example of usages - please add if you have any :-)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000131""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""IAO:0000131"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000131"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000131""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000028""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000028","true","","Note: during the call there was some confusion between serial number and model number. We agreed that it would be very helpful for all those terms to have example of usages - please add if you have any :-)","GROUP: IAO","http://purl.obolibrary.org/obo/IAO_0000123","A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","","","","","","","serial number","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000028","","http://purl.obolibrary.org/obo/IAO_0000131","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","serial number","","","DUO","","IAO:0000131","IAO_0000131","","serial number","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000132","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000132"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000132""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""lot number"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""batch number"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""lot number"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000028"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""lot number"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""lot number"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""batch number"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000132""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""IAO:0000132"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000132"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000132""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000028""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000028","true","","","GROUP: IAO","http://purl.obolibrary.org/obo/IAO_0000123","A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots.","","","","","","","lot number","","","","0.0","batch number","","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000028","","http://purl.obolibrary.org/obo/IAO_0000132","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","lot number","","","DUO","","IAO:0000132","IAO_0000132","","lot number","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000140","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000140"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000140""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A settings datum is a datum that denotes some configuration of an instrument."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A settings datum is a datum that denotes some configuration of an instrument."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2/3/2009 Feedback from OBI\n\nThis should be a \""setting specification\"". There is a question of whether it is information about a realizable or not.\n\nPro other specification are about realizables.\nCons sometimes specifies a quality which is not a realizable."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan grouped these in placeholder for the moment. Name by analogy to measurement datum."",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""setting datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000027"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""setting datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A settings datum is a datum that denotes some configuration of an instrument."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2/3/2009 Feedback from OBI\n\nThis should be a \""setting specification\"". There is a question of whether it is information about a realizable or not.\n\nPro other specification are about realizables.\nCons sometimes specifies a quality which is not a realizable."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan grouped these in placeholder for the moment. Name by analogy to measurement datum."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000140""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000140"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000140"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000140""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000027","true","","2/3/2009 Feedback from OBI +"duo+class+http://purl.obolibrary.org/obo/IAO_0000129","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000129"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000129""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""version number"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Note: we feel that at the moment we are happy with a general version number, and that we will subclass as needed in the future. For example, see 7. genome sequence version"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""version number"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000028"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""version number"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""version number"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Note: we feel that at the moment we are happy with a general version number, and that we will subclass as needed in the future. For example, see 7. genome sequence version"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000129""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000028""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000028","true","","Note: we feel that at the moment we are happy with a general version number, and that we will subclass as needed in the future. For example, see 7. genome sequence version","GROUP: IAO","http://purl.obolibrary.org/obo/IAO_0000123","A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name.","","","","","","","version number","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A version number is an information content entity which is a sequence of characters borne by part of each of a class of manufactured products or its packaging and indicates its order within a set of other products having the same name.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000028","","http://purl.obolibrary.org/obo/IAO_0000129","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","version number","","","DUO","","IAO:0000129","IAO_0000129","","version number","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000131","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000131"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000131""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""serial number"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Note: during the call there was some confusion between serial number and model number. We agreed that it would be very helpful for all those terms to have example of usages - please add if you have any :-)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""serial number"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000028"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""serial number"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""serial number"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Note: during the call there was some confusion between serial number and model number. We agreed that it would be very helpful for all those terms to have example of usages - please add if you have any :-)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000131""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000028""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000028","true","","Note: during the call there was some confusion between serial number and model number. We agreed that it would be very helpful for all those terms to have example of usages - please add if you have any :-)","GROUP: IAO","http://purl.obolibrary.org/obo/IAO_0000123","A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","","","","","","","serial number","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A serial number is an information content entity which is a unique sequence of characters borne by part of manufactured product or its packaging that is assigned to each individual in some class of products, and so can serve as a way to identify an individual product within the class. Serial numbers can be encoded in a variety of other information objects, such as bar codes, numerals, or patterns of dots.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000028","","http://purl.obolibrary.org/obo/IAO_0000131","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","serial number","","","DUO","","IAO:0000131","IAO_0000131","","serial number","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000132","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000132"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000132""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""lot number"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""batch number"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""lot number"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000028"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""lot number"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""lot number"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""batch number"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000132""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000028""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000028","true","","","GROUP: IAO","http://purl.obolibrary.org/obo/IAO_0000123","A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots.","","","","","","","lot number","","","","0.0","batch number","","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A lot number is an information content entity which is an identical sequence of character borne by part of manufactured product or its packaging for each instances of a product class in a discrete batch of an item. Lot numbers are usually assigned to each separate production run of an item. Manufacturing as a lot might be due to a variety of reasons, for example, a single process during which many individuals are made from the same portion of source material. Lot numbers can be encoded in a pattern of other information objects, such as bar codes, numerals, or patterns of dots.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000028","","http://purl.obolibrary.org/obo/IAO_0000132","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","lot number","","","DUO","","IAO:0000132","IAO_0000132","","lot number","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000140","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000140"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000140""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A settings datum is a datum that denotes some configuration of an instrument."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A settings datum is a datum that denotes some configuration of an instrument."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2/3/2009 Feedback from OBI\n\nThis should be a \""setting specification\"". There is a question of whether it is information about a realizable or not.\n\nPro other specification are about realizables.\nCons sometimes specifies a quality which is not a realizable."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan grouped these in placeholder for the moment. Name by analogy to measurement datum."",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""setting datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000027"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""setting datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A settings datum is a datum that denotes some configuration of an instrument."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2/3/2009 Feedback from OBI\n\nThis should be a \""setting specification\"". There is a question of whether it is information about a realizable or not.\n\nPro other specification are about realizables.\nCons sometimes specifies a quality which is not a realizable."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan grouped these in placeholder for the moment. Name by analogy to measurement datum."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000140""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000027","true","","2/3/2009 Feedback from OBI This should be a ""setting specification"". There is a question of whether it is information about a realizable or not. Pro other specification are about realizables. Cons sometimes specifies a quality which is not a realizable.|Alan grouped these in placeholder for the moment. Name by analogy to measurement datum.","","http://purl.obolibrary.org/obo/IAO_0000123","A settings datum is a datum that denotes some configuration of an instrument.","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A settings datum is a datum that denotes some configuration of an instrument.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000027","","http://purl.obolibrary.org/obo/IAO_0000140","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","setting datum","","","DUO","","IAO:0000140","IAO_0000140","","setting datum","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000141","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000141"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000141""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4""},{""type"":[""literal""],""value"":""Need to rework digital entity. Digital quality was suggested by Barry.""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_digital quality""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_digital quality""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4""},{""type"":[""literal""],""value"":""Need to rework digital entity. Digital quality was suggested by Barry.""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000141""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000141"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000141"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000141""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4|Need to rework digital entity. Digital quality was suggested by Barry.","","","","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","","","","","0.0","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000141","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_digital quality","","","DUO","","IAO:0000141","IAO_0000141","","obsolete_digital quality","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000144","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000144"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000144""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\u0027, by Lowenthal et. al.PMID:19696660"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/09/28 Alan Ruttenberg. Fucoidan-use-case"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/10/23 Alan Ruttenberg: We need to work on the definition still"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000615"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000144"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\u0027, by Lowenthal et. al.PMID:19696660"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/09/28 Alan Ruttenberg. Fucoidan-use-case"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/10/23 Alan Ruttenberg: We need to work on the definition still"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000144""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""PMID:19696660"":{""url"":""http://www.ncbi.nlm.nih.gov/pubmed/19696660"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""PMID:19696660""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000144"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000144"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000144""},""http://purl.obolibrary.org/obo/IAO_0000615"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000615""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","2009/09/28 Alan Ruttenberg. Fucoidan-use-case|2009/10/23 Alan Ruttenberg: We need to work on the definition still","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000120","A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers.","","","that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper 'Pilot clinical study to evaluate the anticoagulant activity of fucoidan', by Lowenthal et. al.PMID:19696660","","","","conclusion textual entity","","","http://purl.obolibrary.org/obo/IAO_0000615","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000144","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","conclusion textual entity","","","DUO","","IAO:0000144","IAO_0000144","","conclusion textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000178","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000178"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000178""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A material entity in which a concretization of an information content entity inheres."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000040"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000040"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material information bearer"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A page of a paperback novel with writing on it. The paper itself is a material information bearer, the pattern of ink is the information carrier."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a brain"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a hard drive"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A material entity in which a concretization of an information content entity inheres."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material information bearer"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000040"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000059"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material information bearer"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material information bearer"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A page of a paperback novel with writing on it. The paper itself is a material information bearer, the pattern of ink is the information carrier."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a brain"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a hard drive"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A material entity in which a concretization of an information content entity inheres."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000178""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000059"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""concretizes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000059""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""IAO:0000178"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000178"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000178""},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000040","true","","","GROUP: IAO","http://purl.obolibrary.org/obo/IAO_0000122","A material entity in which a concretization of an information content entity inheres.","","","A page of a paperback novel with writing on it. The paper itself is a material information bearer, the pattern of ink is the information carrier.|a brain|a hard drive","","","","material information bearer","","","","1.0","","","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A material entity in which a concretization of an information content entity inheres.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000040","","http://purl.obolibrary.org/obo/IAO_0000178","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","material information bearer","","","DUO","","IAO:0000178","IAO_0000178","","material information bearer","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000179","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000179"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000179""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A histogram is a report graph which is a statistical description of a\ndistribution in terms of occurrence frequencies of different event classes."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""histogram"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A histogram is a report graph which is a statistical description of a\ndistribution in terms of occurrence frequencies of different event classes."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""histogram"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""histogram"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""histogram"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A histogram is a report graph which is a statistical description of a\ndistribution in terms of occurrence frequencies of different event classes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000179""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""IAO:0000179"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000179"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000179""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000038","true","","","PERSON:Chris Stoeckert|PERSON:James Malone|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","A histogram is a report graph which is a statistical description of a +"duo+class+http://purl.obolibrary.org/obo/IAO_0000141","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000141"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000141""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4""},{""type"":[""literal""],""value"":""Need to rework digital entity. Digital quality was suggested by Barry.""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_digital quality""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_digital quality""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4""},{""type"":[""literal""],""value"":""Need to rework digital entity. Digital quality was suggested by Barry.""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000141""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","3/22/2009 Alan Ruttenberg, obsoleted per http://groups.google.com/group/information-ontology/browse_thread/thread/789ad4b7708d5cf4|Need to rework digital entity. Digital quality was suggested by Barry.","","","","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","","","","","0.0","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000141","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_digital quality","","","DUO","","IAO:0000141","IAO_0000141","","obsolete_digital quality","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000144","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000144"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000144""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\u0027, by Lowenthal et. al.PMID:19696660"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/09/28 Alan Ruttenberg. Fucoidan-use-case"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/10/23 Alan Ruttenberg: We need to work on the definition still"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000615"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000144"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\u0027, by Lowenthal et. al.PMID:19696660"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/09/28 Alan Ruttenberg. Fucoidan-use-case"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/10/23 Alan Ruttenberg: We need to work on the definition still"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000144""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""PMID:19696660"":{""url"":""http://www.ncbi.nlm.nih.gov/pubmed/19696660"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""PMID:19696660""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000615"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000615""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","2009/09/28 Alan Ruttenberg. Fucoidan-use-case|2009/10/23 Alan Ruttenberg: We need to work on the definition still","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000120","A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers.","","","that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper 'Pilot clinical study to evaluate the anticoagulant activity of fucoidan', by Lowenthal et. al.PMID:19696660","","","","conclusion textual entity","","","http://purl.obolibrary.org/obo/IAO_0000615","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity that expresses the results of reasoning about a problem, for instance as typically found towards the end of scientific papers.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000144","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","conclusion textual entity","","","DUO","","IAO:0000144","IAO_0000144","","conclusion textual entity","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000178","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000178"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000178""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A material entity in which a concretization of an information content entity inheres."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000040"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000040"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material information bearer"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A page of a paperback novel with writing on it. The paper itself is a material information bearer, the pattern of ink is the information carrier."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a brain"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a hard drive"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A material entity in which a concretization of an information content entity inheres."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material information bearer"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000040"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000059"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material information bearer"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material information bearer"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A page of a paperback novel with writing on it. The paper itself is a material information bearer, the pattern of ink is the information carrier."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a brain"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a hard drive"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A material entity in which a concretization of an information content entity inheres."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP: IAO"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000178""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000059"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""concretizes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000059""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000040","true","","","GROUP: IAO","http://purl.obolibrary.org/obo/IAO_0000122","A material entity in which a concretization of an information content entity inheres.","","","A page of a paperback novel with writing on it. The paper itself is a material information bearer, the pattern of ink is the information carrier.|a brain|a hard drive","","","","material information bearer","","","","1.0","","","http://purl.obolibrary.org/obo/BFO_0000040","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A material entity in which a concretization of an information content entity inheres.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000040","","http://purl.obolibrary.org/obo/IAO_0000178","http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","material information bearer","","","DUO","","IAO:0000178","IAO_0000178","","material information bearer","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000179","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000179"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000179""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A histogram is a report graph which is a statistical description of a\ndistribution in terms of occurrence frequencies of different event classes."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""histogram"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A histogram is a report graph which is a statistical description of a\ndistribution in terms of occurrence frequencies of different event classes."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""histogram"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""histogram"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""histogram"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A histogram is a report graph which is a statistical description of a\ndistribution in terms of occurrence frequencies of different event classes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000179""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000038","true","","","PERSON:Chris Stoeckert|PERSON:James Malone|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","A histogram is a report graph which is a statistical description of a distribution in terms of occurrence frequencies of different event classes.","","","","","","","histogram","","","","0.0","","GROUP:OBI","http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A histogram is a report graph which is a statistical description of a distribution in terms of occurrence frequencies of different event classes.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000038","","http://purl.obolibrary.org/obo/IAO_0000179","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","histogram","","","DUO","","IAO:0000179","IAO_0000179","","histogram","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000180","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000180"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000180""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A heatmap is a report graph which is a graphical representation of data\nwhere the values taken by a variable(s) are shown as colors in a\ntwo-dimensional map."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""heatmap"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A heatmap is a report graph which is a graphical representation of data\nwhere the values taken by a variable(s) are shown as colors in a\ntwo-dimensional map."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""heatmap"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""heatmap"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""heatmap"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A heatmap is a report graph which is a graphical representation of data\nwhere the values taken by a variable(s) are shown as colors in a\ntwo-dimensional map."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000180""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000180"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000180"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000180""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000038","true","","","PERSON:Chris Stoeckert|PERSON:James Malone|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","A heatmap is a report graph which is a graphical representation of data +"duo+class+http://purl.obolibrary.org/obo/IAO_0000180","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000180"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000180""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A heatmap is a report graph which is a graphical representation of data\nwhere the values taken by a variable(s) are shown as colors in a\ntwo-dimensional map."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""heatmap"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A heatmap is a report graph which is a graphical representation of data\nwhere the values taken by a variable(s) are shown as colors in a\ntwo-dimensional map."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""heatmap"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""heatmap"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""heatmap"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A heatmap is a report graph which is a graphical representation of data\nwhere the values taken by a variable(s) are shown as colors in a\ntwo-dimensional map."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000180""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000038","true","","","PERSON:Chris Stoeckert|PERSON:James Malone|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","A heatmap is a report graph which is a graphical representation of data where the values taken by a variable(s) are shown as colors in a two-dimensional map.","","","","","","","heatmap","","","","0.0","","GROUP:OBI","http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A heatmap is a report graph which is a graphical representation of data where the values taken by a variable(s) are shown as colors in a two-dimensional map.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000038","","http://purl.obolibrary.org/obo/IAO_0000180","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","heatmap","","","DUO","","IAO:0000180","IAO_0000180","","heatmap","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000181","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000181"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000181""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A Venn diagram is a report graph showing all hypothetically possible\nlogical relations between a finite collection of sets."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Venn diagram"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A Venn diagram is a report graph showing all hypothetically possible\nlogical relations between a finite collection of sets."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wikipedia.org/wiki/Venn_diagram"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Venn diagram"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Venn diagram"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Venn diagram"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A Venn diagram is a report graph showing all hypothetically possible\nlogical relations between a finite collection of sets."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wikipedia.org/wiki/Venn_diagram"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000181""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://en.wikipedia.org/wiki/Venn_diagram"":{""url"":""http://en.wikipedia.org/wiki/Venn_diagram"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Venn_diagram""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000181"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000181"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000181""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000038","true","","","PERSON:Chris Stoeckert|PERSON:James Malone|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","A Venn diagram is a report graph showing all hypothetically possible +"duo+class+http://purl.obolibrary.org/obo/IAO_0000181","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000181"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000181""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A Venn diagram is a report graph showing all hypothetically possible\nlogical relations between a finite collection of sets."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Venn diagram"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A Venn diagram is a report graph showing all hypothetically possible\nlogical relations between a finite collection of sets."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wikipedia.org/wiki/Venn_diagram"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Venn diagram"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Venn diagram"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Venn diagram"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A Venn diagram is a report graph showing all hypothetically possible\nlogical relations between a finite collection of sets."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wikipedia.org/wiki/Venn_diagram"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000181""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://en.wikipedia.org/wiki/Venn_diagram"":{""url"":""http://en.wikipedia.org/wiki/Venn_diagram"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Venn_diagram""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000038","true","","","PERSON:Chris Stoeckert|PERSON:James Malone|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","A Venn diagram is a report graph showing all hypothetically possible logical relations between a finite collection of sets.","","","","","","","Venn diagram","","","","0.0","","WEB: http://en.wikipedia.org/wiki/Venn_diagram","http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A Venn diagram is a report graph showing all hypothetically possible logical relations between a finite collection of sets.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000038","","http://purl.obolibrary.org/obo/IAO_0000181","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","Venn diagram","","","DUO","","IAO:0000181","IAO_0000181","","Venn diagram","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000182","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000182"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000182""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_survival curve"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://www.graphpad.com/www/book/survive.htm"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_survival curve"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_survival curve"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_survival curve"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://www.graphpad.com/www/book/survive.htm"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000182""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""IAO:0000182"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000182"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000182""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","","PERSON:Chris Stoeckert|PERSON:James Malone|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time.","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","obsolete_survival curve","","","","0.0","","WEB: http://www.graphpad.com/www/book/survive.htm","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time.","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000182","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_survival curve","","","DUO","","IAO:0000182","IAO_0000182","","obsolete_survival curve","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000183","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000183"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000183""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A dendrogram is a report graph which is a tree diagram\nfrequently used to illustrate the arrangement of the clusters produced by a\nclustering algorithm."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dendrogram"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Dendrograms are often used in computational biology to\nillustrate the clustering of genes."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A dendrogram is a report graph which is a tree diagram\nfrequently used to illustrate the arrangement of the clusters produced by a\nclustering algorithm."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wikipedia.org/wiki/Dendrogram"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dendrogram"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dendrogram"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dendrogram"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Dendrograms are often used in computational biology to\nillustrate the clustering of genes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A dendrogram is a report graph which is a tree diagram\nfrequently used to illustrate the arrangement of the clusters produced by a\nclustering algorithm."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wikipedia.org/wiki/Dendrogram"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000183""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000183"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000183"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000183""},""http://en.wikipedia.org/wiki/Dendrogram"":{""url"":""http://en.wikipedia.org/wiki/Dendrogram"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Dendrogram""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000038","true","","","PERSON:Chris Stoeckert|PERSON:James Malone|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","A dendrogram is a report graph which is a tree diagram +"duo+class+http://purl.obolibrary.org/obo/IAO_0000182","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000182"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000182""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_survival curve"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://www.graphpad.com/www/book/survive.htm"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_survival curve"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_survival curve"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_survival curve"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://www.graphpad.com/www/book/survive.htm"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000182""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","","PERSON:Chris Stoeckert|PERSON:James Malone|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time.","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","obsolete_survival curve","","","","0.0","","WEB: http://www.graphpad.com/www/book/survive.htm","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A survival curve is a report graph which is a graphical representation of data where the percentage of survival is plotted as a function of time.","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000182","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_survival curve","","","DUO","","IAO:0000182","IAO_0000182","","obsolete_survival curve","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000183","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000183"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000183""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A dendrogram is a report graph which is a tree diagram\nfrequently used to illustrate the arrangement of the clusters produced by a\nclustering algorithm."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dendrogram"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Dendrograms are often used in computational biology to\nillustrate the clustering of genes."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A dendrogram is a report graph which is a tree diagram\nfrequently used to illustrate the arrangement of the clusters produced by a\nclustering algorithm."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wikipedia.org/wiki/Dendrogram"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dendrogram"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dendrogram"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dendrogram"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Dendrograms are often used in computational biology to\nillustrate the clustering of genes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A dendrogram is a report graph which is a tree diagram\nfrequently used to illustrate the arrangement of the clusters produced by a\nclustering algorithm."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wikipedia.org/wiki/Dendrogram"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000183""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://en.wikipedia.org/wiki/Dendrogram"":{""url"":""http://en.wikipedia.org/wiki/Dendrogram"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Dendrogram""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000038","true","","","PERSON:Chris Stoeckert|PERSON:James Malone|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","A dendrogram is a report graph which is a tree diagram frequently used to illustrate the arrangement of the clusters produced by a clustering algorithm.","","","Dendrograms are often used in computational biology to illustrate the clustering of genes.","","","","dendrogram","","","","0.0","","WEB: http://en.wikipedia.org/wiki/Dendrogram","http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A dendrogram is a report graph which is a tree diagram frequently used to illustrate the arrangement of the clusters produced by a clustering algorithm.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000038","","http://purl.obolibrary.org/obo/IAO_0000183","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","dendrogram","","","DUO","","IAO:0000183","IAO_0000183","","dendrogram","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000184","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000184"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000184""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scatter plot"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Comparison of gene expression values in two samples can be displayed in a scatter plot"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scattergraph"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wikipedia.org/wiki/Scatterplot"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scatter plot"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scatter plot"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scatter plot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Comparison of gene expression values in two samples can be displayed in a scatter plot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scattergraph"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wikipedia.org/wiki/Scatterplot"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000184""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://en.wikipedia.org/wiki/Scatterplot"":{""url"":""http://en.wikipedia.org/wiki/Scatterplot"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Scatterplot""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000184"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000184"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000184""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000038","true","","","PERSON:Chris Stoeckert|PERSON:James Malone|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.","","","Comparison of gene expression values in two samples can be displayed in a scatter plot","","","","scatter plot","","","","0.0","scattergraph","WEB: http://en.wikipedia.org/wiki/Scatterplot","http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000038","","http://purl.obolibrary.org/obo/IAO_0000184","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","scatter plot","","","DUO","","IAO:0000184","IAO_0000184","","scatter plot","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000185","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000185"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000185""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000101"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000101"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000101"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000101"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Joanne Luciano"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wiktionary.org/wiki/photograph"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""photograph"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000101"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""photograph"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Joanne Luciano"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wiktionary.org/wiki/photograph"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000185""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000185"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000185"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000185""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000101"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""image"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000101""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000101","true","","","PERSON:Alan Ruttenberg|PERSON:Joanne Luciano|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc.","","","","","","","","","","","0.0","","WEB: http://en.wiktionary.org/wiki/photograph","http://purl.obolibrary.org/obo/IAO_0000101","http://purl.obolibrary.org/obo/IAO_0000101|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000101","","http://purl.obolibrary.org/obo/IAO_0000185","http://purl.obolibrary.org/obo/IAO_0000101|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","photograph","","","DUO","","IAO:0000185","IAO_0000185","","photograph","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000186","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000186"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000186""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A photographic print is a material entity upon which a photograph generically depends."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000178"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000178"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000178"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000178"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""photographic print"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A photographic print is a material entity upon which a photograph generically depends."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""photographic print"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000178"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000040"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000059"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000185"",""isObsolete"":false},""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""photographic print"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""photographic print"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A photographic print is a material entity upon which a photograph generically depends."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000186""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000059"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""concretizes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000059""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000178"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material information bearer"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000178""},""type"":[""class"",""entity""]},""IAO:0000186"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000186"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000186""},""http://purl.obolibrary.org/obo/IAO_0000185"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""photograph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000185""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000178","true","","","PERSON:Alan Ruttenberg|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000125","A photographic print is a material entity upon which a photograph generically depends.","","","","","","","photographic print","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000178","http://purl.obolibrary.org/obo/IAO_0000178|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A photographic print is a material entity upon which a photograph generically depends.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000178","","http://purl.obolibrary.org/obo/IAO_0000186","http://purl.obolibrary.org/obo/IAO_0000178|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","photographic print","","","DUO","","IAO:0000186","IAO_0000186","","photographic print","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000225","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000225"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000225""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000102"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hasIndividuals"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000102"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The creation of this class has been inspired in part by Werner Ceusters\u0027 paper, Applying evolutionary terminology auditing to the Gene Ontology."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000102"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#oneOf"":[""http://purl.obolibrary.org/obo/IAO_0000103"",""http://purl.obolibrary.org/obo/IAO_0000226"",""http://purl.obolibrary.org/obo/IAO_0000227"",""http://purl.obolibrary.org/obo/IAO_0000228"",""http://purl.obolibrary.org/obo/IAO_0000229"",""http://purl.obolibrary.org/obo/OMO_0001000""]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""numDescendants"":6.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The creation of this class has been inspired in part by Werner Ceusters\u0027 paper, Applying evolutionary terminology auditing to the Gene Ontology."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000225""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000228"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term imported"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000228""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000229"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term split"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000229""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/OMO_0001000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""out of scope""},""curie"":{""type"":[""literal""],""value"":""OMO:0001000""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000226""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000227"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""terms merged"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000227""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""IAO:0000225"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000225"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000225""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000102","true","","The creation of this class has been inspired in part by Werner Ceusters' paper, Applying evolutionary terminology auditing to the Gene Ontology.","PERSON: Alan Ruttenberg|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000125","The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","","","","","","","obsolescence reason specification","","","","6.0","","","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000102","","http://purl.obolibrary.org/obo/IAO_0000225","http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","obsolescence reason specification","true","","DUO","","IAO:0000225","IAO_0000225","","obsolescence reason specification","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000300","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000300"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Words, sentences, paragraphs, and the written (non-figure) parts of publications are all textual entities"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""AR, (IAO call 2009-09-01): a document as a whole is not typically a textual entity, because it has pictures in it - rather there are parts of it that are textual entities. Examples: The title, paragraph 2 sentence 7, etc."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""MC, 2009-09-14 (following IAO call 2009-09-01): textual entities live at the FRBR (http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records) manifestation level. Everything is significant: line break, pdf and html versions of same document are different textual entities."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""text"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""numDescendants"":32.0,""numHierarchicalDescendants"":32.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Words, sentences, paragraphs, and the written (non-figure) parts of publications are all textual entities"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""AR, (IAO call 2009-09-01): a document as a whole is not typically a textual entity, because it has pictures in it - rather there are parts of it that are textual entities. Examples: The title, paragraph 2 sentence 7, etc."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""MC, 2009-09-14 (following IAO call 2009-09-01): textual entities live at the FRBR (http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records) manifestation level. Everything is significant: line break, pdf and html versions of same document are different textual entities."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""text"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000300""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records)"":{""url"":""http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records)"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Functional_Requirements_for_Bibliographic_Records)""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000300"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000300"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000300""}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","32.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030","true","","AR, (IAO call 2009-09-01): a document as a whole is not typically a textual entity, because it has pictures in it - rather there are parts of it that are textual entities. Examples: The title, paragraph 2 sentence 7, etc.|MC, 2009-09-14 (following IAO call 2009-09-01): textual entities live at the FRBR (http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records) manifestation level. Everything is significant: line break, pdf and html versions of same document are different textual entities.","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000123","A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc.","","","Words, sentences, paragraphs, and the written (non-figure) parts of publications are all textual entities","","","","textual entity","","","","32.0","text","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","textual entity","","","DUO","","IAO:0000300","IAO_0000300","","textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000301","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000301"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000301""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular publication."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""citation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Verspoor, K., Cohen, KB., Hunter, L. Textual characteristics of traditional and Open Access scientific journals are similar, BMC Bioinformatics 2009, 10:183."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular publication."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""citation"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000300"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""citation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000320"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000301"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000310"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""citation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Verspoor, K., Cohen, KB., Hunter, L. Textual characteristics of traditional and Open Access scientific journals are similar, BMC Bioinformatics 2009, 10:183."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular publication."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000301""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000320"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""references section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000320""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000301"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000301"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000301""},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000310","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A textual entity intended to identify a particular publication.","","","Verspoor, K., Cohen, KB., Hunter, L. Textual characteristics of traditional and Open Access scientific journals are similar, BMC Bioinformatics 2009, 10:183.","","","","citation","","","http://purl.obolibrary.org/obo/IAO_0000320","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity intended to identify a particular publication.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000301","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","citation","","","DUO","","IAO:0000301","IAO_0000301","","citation","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000302","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000302"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000302""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular author"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000590"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000590"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000590"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000590"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author identification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""L. Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular author"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author identification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000590"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author identification"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000321"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000302"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author identification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""L. Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular author"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000302""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000590"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""written name"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000590""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000321"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author list"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000321""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]},""IAO:0000302"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000302"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000302""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000590","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A textual entity intended to identify a particular author","","","L. Hunter","","","","author identification","","","http://purl.obolibrary.org/obo/IAO_0000321","0.0","","","http://purl.obolibrary.org/obo/IAO_0000590","http://purl.obolibrary.org/obo/IAO_0000590|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity intended to identify a particular author","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000590","","http://purl.obolibrary.org/obo/IAO_0000302","http://purl.obolibrary.org/obo/IAO_0000590|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","author identification","","","DUO","","IAO:0000302","IAO_0000302","","author identification","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000303","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000303"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000303""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular institution"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institutional identification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""University of Colorado Denver School of Medicine"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular institution"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institutional identification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institutional identification"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000322"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000303"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institutional identification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""University of Colorado Denver School of Medicine"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular institution"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000303""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000322"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institution list"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000322""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]},""IAO:0000303"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000303"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000303""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A textual entity intended to identify a particular institution","","","University of Colorado Denver School of Medicine","","","","institutional identification","","","http://purl.obolibrary.org/obo/IAO_0000322","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity intended to identify a particular institution","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000303","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","institutional identification","","","DUO","","IAO:0000303","IAO_0000303","","institutional identification","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000304","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000304"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000304""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that describes a figure"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""caption"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Figure 1: A system diagram describing the modules of the Hanalyzer. Reading methods (green) take external sources of knowledge (blue) and extract information from them, either by parsing structured data or biomedical language processing to extract information from unstructured data. Reading modules are responsible for tracking the provenance of all knowledge. Reasoning methods (yellow) enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. All knowledge sources, read or reasoned, are assigned a reliability score, and all are combined using that score into a knowledge network (orange) that represents the integration of all sorts of relationship between a pair of genes and a combined reliability score. A data network (also orange) is created from experimental results to be analyzed. The reporting modules (pink) integrate the data and knowledge networks, producing visualizations that can be queried with the associated drill-down tool."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that describes a figure"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""caption"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000300"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000308"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""caption"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000308"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000308"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""caption"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Figure 1: A system diagram describing the modules of the Hanalyzer. Reading methods (green) take external sources of knowledge (blue) and extract information from them, either by parsing structured data or biomedical language processing to extract information from unstructured data. Reading modules are responsible for tracking the provenance of all knowledge. Reasoning methods (yellow) enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. All knowledge sources, read or reasoned, are assigned a reliability score, and all are combined using that score into a knowledge network (orange) that represents the integration of all sorts of relationship between a pair of genes and a combined reliability score. A data network (also orange) is created from experimental results to be analyzed. The reporting modules (pink) integrate the data and knowledge networks, producing visualizations that can be queried with the associated drill-down tool."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that describes a figure"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000304""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000304"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000304"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000304""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000308","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A textual entity that describes a figure","","","Figure 1: A system diagram describing the modules of the Hanalyzer. Reading methods (green) take external sources of knowledge (blue) and extract information from them, either by parsing structured data or biomedical language processing to extract information from unstructured data. Reading modules are responsible for tracking the provenance of all knowledge. Reasoning methods (yellow) enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. All knowledge sources, read or reasoned, are assigned a reliability score, and all are combined using that score into a knowledge network (orange) that represents the integration of all sorts of relationship between a pair of genes and a combined reliability score. A data network (also orange) is created from experimental results to be analyzed. The reporting modules (pink) integrate the data and knowledge networks, producing visualizations that can be queried with the associated drill-down tool.","","","","caption","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity that describes a figure","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000304","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","caption","","","DUO","","IAO:0000304","IAO_0000304","","caption","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000305","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000305"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000305""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that names a document"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document title"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Textual characteristics of traditional and Open Access scientific journals are similar"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that names a document"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document title"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document title"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document title"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Textual characteristics of traditional and Open Access scientific journals are similar"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that names a document"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000305""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000305"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000305"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000305""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A textual entity that names a document","","","Textual characteristics of traditional and Open Access scientific journals are similar","","","","document title","","","","1.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A textual entity that names a document","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000305","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","document title","","","DUO","","IAO:0000305","IAO_0000305","","document title","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000306","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000306"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000306""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""| T F\n--+-----\nT | T F\nF | F F"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000645"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000306"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""| T F\n--+-----\nT | T F\nF | F F"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000306""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000645"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""tables section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000645""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000306"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000306"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000306""},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions","","","\u007C T F +"duo+class+http://purl.obolibrary.org/obo/IAO_0000184","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000184"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000184""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scatter plot"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Comparison of gene expression values in two samples can be displayed in a scatter plot"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scattergraph"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wikipedia.org/wiki/Scatterplot"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scatter plot"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scatter plot"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scatter plot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Comparison of gene expression values in two samples can be displayed in a scatter plot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:James Malone"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scattergraph"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wikipedia.org/wiki/Scatterplot"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000184""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://en.wikipedia.org/wiki/Scatterplot"":{""url"":""http://en.wikipedia.org/wiki/Scatterplot"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Scatterplot""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000038","true","","","PERSON:Chris Stoeckert|PERSON:James Malone|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.","","","Comparison of gene expression values in two samples can be displayed in a scatter plot","","","","scatter plot","","","","0.0","scattergraph","WEB: http://en.wikipedia.org/wiki/Scatterplot","http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000038","","http://purl.obolibrary.org/obo/IAO_0000184","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","scatter plot","","","DUO","","IAO:0000184","IAO_0000184","","scatter plot","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000185","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000185"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000185""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000101"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000101"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000101"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000101"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Joanne Luciano"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wiktionary.org/wiki/photograph"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""photograph"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000101"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""photograph"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Joanne Luciano"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wiktionary.org/wiki/photograph"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000185""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000101"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""image"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000101""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000101","true","","","PERSON:Alan Ruttenberg|PERSON:Joanne Luciano|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc.","","","","","","","","","","","0.0","","WEB: http://en.wiktionary.org/wiki/photograph","http://purl.obolibrary.org/obo/IAO_0000101","http://purl.obolibrary.org/obo/IAO_0000101|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A photograph is created by projecting an image onto a photosensitive surface such as a chemically treated plate or film, CCD receptor, etc.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000101","","http://purl.obolibrary.org/obo/IAO_0000185","http://purl.obolibrary.org/obo/IAO_0000101|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","photograph","","","DUO","","IAO:0000185","IAO_0000185","","photograph","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000186","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000186"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000186""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A photographic print is a material entity upon which a photograph generically depends."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000178"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000178"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000178"",""http://purl.obolibrary.org/obo/BFO_0000040"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000178"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""photographic print"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A photographic print is a material entity upon which a photograph generically depends."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""photographic print"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000178"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000040"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000059"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000185"",""isObsolete"":false},""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""photographic print"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""photographic print"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A photographic print is a material entity upon which a photograph generically depends."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000186""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000059"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""concretizes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000059""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000178"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material information bearer"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000178""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000185"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""photograph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000185""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000178","true","","","PERSON:Alan Ruttenberg|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000125","A photographic print is a material entity upon which a photograph generically depends.","","","","","","","photographic print","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000178","http://purl.obolibrary.org/obo/IAO_0000178|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A photographic print is a material entity upon which a photograph generically depends.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000178","","http://purl.obolibrary.org/obo/IAO_0000186","http://purl.obolibrary.org/obo/IAO_0000178|http://purl.obolibrary.org/obo/BFO_0000040|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","photographic print","","","DUO","","IAO:0000186","IAO_0000186","","photographic print","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000225","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000225"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000225""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000102"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hasIndividuals"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000102"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The creation of this class has been inspired in part by Werner Ceusters\u0027 paper, Applying evolutionary terminology auditing to the Gene Ontology."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000102"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#oneOf"":[""http://purl.obolibrary.org/obo/IAO_0000103"",""http://purl.obolibrary.org/obo/IAO_0000226"",""http://purl.obolibrary.org/obo/IAO_0000227"",""http://purl.obolibrary.org/obo/IAO_0000228"",""http://purl.obolibrary.org/obo/IAO_0000229"",""http://purl.obolibrary.org/obo/OMO_0001000""]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""numDescendants"":6.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The creation of this class has been inspired in part by Werner Ceusters\u0027 paper, Applying evolutionary terminology auditing to the Gene Ontology."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000225""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000228"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term imported"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000228""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000229"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term split"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000229""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/OMO_0001000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""out of scope""},""curie"":{""type"":[""literal""],""value"":""OMO:0001000""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000226""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000227"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""terms merged"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000227""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000102","true","","The creation of this class has been inspired in part by Werner Ceusters' paper, Applying evolutionary terminology auditing to the Gene Ontology.","PERSON: Alan Ruttenberg|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000125","The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","","","","","","","obsolescence reason specification","","","","6.0","","","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000102","","http://purl.obolibrary.org/obo/IAO_0000225","http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","obsolescence reason specification","true","","DUO","","IAO:0000225","IAO_0000225","","obsolescence reason specification","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000300","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000300"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Words, sentences, paragraphs, and the written (non-figure) parts of publications are all textual entities"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""AR, (IAO call 2009-09-01): a document as a whole is not typically a textual entity, because it has pictures in it - rather there are parts of it that are textual entities. Examples: The title, paragraph 2 sentence 7, etc."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""MC, 2009-09-14 (following IAO call 2009-09-01): textual entities live at the FRBR (http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records) manifestation level. Everything is significant: line break, pdf and html versions of same document are different textual entities."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""text"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""numDescendants"":32.0,""numHierarchicalDescendants"":32.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Words, sentences, paragraphs, and the written (non-figure) parts of publications are all textual entities"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""AR, (IAO call 2009-09-01): a document as a whole is not typically a textual entity, because it has pictures in it - rather there are parts of it that are textual entities. Examples: The title, paragraph 2 sentence 7, etc."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""MC, 2009-09-14 (following IAO call 2009-09-01): textual entities live at the FRBR (http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records) manifestation level. Everything is significant: line break, pdf and html versions of same document are different textual entities."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""text"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000300""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records)"":{""url"":""http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records)"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Functional_Requirements_for_Bibliographic_Records)""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","32.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030","true","","AR, (IAO call 2009-09-01): a document as a whole is not typically a textual entity, because it has pictures in it - rather there are parts of it that are textual entities. Examples: The title, paragraph 2 sentence 7, etc.|MC, 2009-09-14 (following IAO call 2009-09-01): textual entities live at the FRBR (http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records) manifestation level. Everything is significant: line break, pdf and html versions of same document are different textual entities.","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000123","A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc.","","","Words, sentences, paragraphs, and the written (non-figure) parts of publications are all textual entities","","","","textual entity","","","","32.0","text","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A textual entity is a part of a manifestation (FRBR sense), a generically dependent continuant whose concretizations are patterns of glyphs intended to be interpreted as words, formulas, etc.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","textual entity","","","DUO","","IAO:0000300","IAO_0000300","","textual entity","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000301","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000301"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000301""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular publication."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""citation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Verspoor, K., Cohen, KB., Hunter, L. Textual characteristics of traditional and Open Access scientific journals are similar, BMC Bioinformatics 2009, 10:183."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular publication."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""citation"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000300"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""citation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000320"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000301"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000310"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""citation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Verspoor, K., Cohen, KB., Hunter, L. Textual characteristics of traditional and Open Access scientific journals are similar, BMC Bioinformatics 2009, 10:183."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular publication."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000301""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000320"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""references section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000320""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000310","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A textual entity intended to identify a particular publication.","","","Verspoor, K., Cohen, KB., Hunter, L. Textual characteristics of traditional and Open Access scientific journals are similar, BMC Bioinformatics 2009, 10:183.","","","","citation","","","http://purl.obolibrary.org/obo/IAO_0000320","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity intended to identify a particular publication.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000301","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","citation","","","DUO","","IAO:0000301","IAO_0000301","","citation","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000302","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000302"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000302""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular author"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000590"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000590"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000590"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000590"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author identification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""L. Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular author"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author identification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000590"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author identification"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000321"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000302"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author identification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""L. Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular author"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000302""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000590"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""written name"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000590""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000321"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author list"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000321""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000590","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A textual entity intended to identify a particular author","","","L. Hunter","","","","author identification","","","http://purl.obolibrary.org/obo/IAO_0000321","0.0","","","http://purl.obolibrary.org/obo/IAO_0000590","http://purl.obolibrary.org/obo/IAO_0000590|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity intended to identify a particular author","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000590","","http://purl.obolibrary.org/obo/IAO_0000302","http://purl.obolibrary.org/obo/IAO_0000590|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","author identification","","","DUO","","IAO:0000302","IAO_0000302","","author identification","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000303","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000303"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000303""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular institution"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institutional identification"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""University of Colorado Denver School of Medicine"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular institution"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institutional identification"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institutional identification"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000322"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000303"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institutional identification"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""University of Colorado Denver School of Medicine"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity intended to identify a particular institution"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000303""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000322"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institution list"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000322""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A textual entity intended to identify a particular institution","","","University of Colorado Denver School of Medicine","","","","institutional identification","","","http://purl.obolibrary.org/obo/IAO_0000322","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity intended to identify a particular institution","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000303","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","institutional identification","","","DUO","","IAO:0000303","IAO_0000303","","institutional identification","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000304","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000304"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000304""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that describes a figure"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""caption"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Figure 1: A system diagram describing the modules of the Hanalyzer. Reading methods (green) take external sources of knowledge (blue) and extract information from them, either by parsing structured data or biomedical language processing to extract information from unstructured data. Reading modules are responsible for tracking the provenance of all knowledge. Reasoning methods (yellow) enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. All knowledge sources, read or reasoned, are assigned a reliability score, and all are combined using that score into a knowledge network (orange) that represents the integration of all sorts of relationship between a pair of genes and a combined reliability score. A data network (also orange) is created from experimental results to be analyzed. The reporting modules (pink) integrate the data and knowledge networks, producing visualizations that can be queried with the associated drill-down tool."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that describes a figure"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""caption"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000300"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000308"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""caption"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000308"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000308"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""caption"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Figure 1: A system diagram describing the modules of the Hanalyzer. Reading methods (green) take external sources of knowledge (blue) and extract information from them, either by parsing structured data or biomedical language processing to extract information from unstructured data. Reading modules are responsible for tracking the provenance of all knowledge. Reasoning methods (yellow) enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. All knowledge sources, read or reasoned, are assigned a reliability score, and all are combined using that score into a knowledge network (orange) that represents the integration of all sorts of relationship between a pair of genes and a combined reliability score. A data network (also orange) is created from experimental results to be analyzed. The reporting modules (pink) integrate the data and knowledge networks, producing visualizations that can be queried with the associated drill-down tool."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that describes a figure"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000304""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000308","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A textual entity that describes a figure","","","Figure 1: A system diagram describing the modules of the Hanalyzer. Reading methods (green) take external sources of knowledge (blue) and extract information from them, either by parsing structured data or biomedical language processing to extract information from unstructured data. Reading modules are responsible for tracking the provenance of all knowledge. Reasoning methods (yellow) enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. All knowledge sources, read or reasoned, are assigned a reliability score, and all are combined using that score into a knowledge network (orange) that represents the integration of all sorts of relationship between a pair of genes and a combined reliability score. A data network (also orange) is created from experimental results to be analyzed. The reporting modules (pink) integrate the data and knowledge networks, producing visualizations that can be queried with the associated drill-down tool.","","","","caption","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity that describes a figure","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000304","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","caption","","","DUO","","IAO:0000304","IAO_0000304","","caption","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000305","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000305"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000305""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that names a document"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document title"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Textual characteristics of traditional and Open Access scientific journals are similar"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that names a document"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document title"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document title"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document title"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Textual characteristics of traditional and Open Access scientific journals are similar"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that names a document"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000305""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A textual entity that names a document","","","Textual characteristics of traditional and Open Access scientific journals are similar","","","","document title","","","","1.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A textual entity that names a document","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000305","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","document title","","","DUO","","IAO:0000305","IAO_0000305","","document title","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000306","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000306"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000306""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""| T F\n--+-----\nT | T F\nF | F F"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000645"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000306"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""| T F\n--+-----\nT | T F\nF | F F"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000306""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000645"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""tables section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000645""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions","","","\u007C T F --+----- T \u007C T F F \u007C F F","","","","table","","","http://purl.obolibrary.org/obo/IAO_0000645","3.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A textual entity that contains a two-dimensional arrangement of texts repeated at regular intervals across a spatial range, such that the spatial relationships among the constituent texts expresses propositions","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","table","","","DUO","","IAO:0000306","IAO_0000306","","table","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000307","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000307"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000307""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table where the constituent texts are abbreviations and their expansions"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000306"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000306"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000306"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000306"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of abbreviations"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""IAO information artifact ontology\nOBI ontology of biomedical investiations\nGO gene ontology"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table where the constituent texts are abbreviations and their expansions"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of abbreviations"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000306"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of abbreviations"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""IAO information artifact ontology\nOBI ontology of biomedical investiations\nGO gene ontology"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table where the constituent texts are abbreviations and their expansions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000307""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000306"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000306""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000307"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000307"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000307""},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000306","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A table where the constituent texts are abbreviations and their expansions","","","IAO information artifact ontology +"duo+class+http://purl.obolibrary.org/obo/IAO_0000307","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000307"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000307""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table where the constituent texts are abbreviations and their expansions"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000306"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000306"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000306"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000306"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of abbreviations"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""IAO information artifact ontology\nOBI ontology of biomedical investiations\nGO gene ontology"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table where the constituent texts are abbreviations and their expansions"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of abbreviations"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000306"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of abbreviations"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""IAO information artifact ontology\nOBI ontology of biomedical investiations\nGO gene ontology"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table where the constituent texts are abbreviations and their expansions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000307""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000306"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000306""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000306","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A table where the constituent texts are abbreviations and their expansions","","","IAO information artifact ontology OBI ontology of biomedical investiations GO gene ontology","","","","table of abbreviations","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000306|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A table where the constituent texts are abbreviations and their expansions","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000306","","http://purl.obolibrary.org/obo/IAO_0000307","http://purl.obolibrary.org/obo/IAO_0000306|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","table of abbreviations","","","DUO","","IAO:0000307","IAO_0000307","","table of abbreviations","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000308","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000308"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Any picture, diagram or table"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""numDescendants"":13.0,""numHierarchicalDescendants"":13.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000304"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000308"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000622"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000308"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Any picture, diagram or table"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000308""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000308"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000308"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000308""},""http://purl.obolibrary.org/obo/IAO_0000622"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figures section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000622""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000304"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""caption"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000304""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","13.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something.","","","Any picture, diagram or table","","","","figure","","","http://purl.obolibrary.org/obo/IAO_0000304|http://purl.obolibrary.org/obo/IAO_0000622","13.0","","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","figure","","","DUO","","IAO:0000308","IAO_0000308","","figure","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000309","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000309"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A figure that expresses one or more propositions"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000308"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000308"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A molecular structure ribbon cartoon showing helices, turns and sheets and their relations to each other in space."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A figure that expresses one or more propositions"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000308"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""numDescendants"":10.0,""numHierarchicalDescendants"":10.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A molecular structure ribbon cartoon showing helices, turns and sheets and their relations to each other in space."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A figure that expresses one or more propositions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000309""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000309"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000309"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000309""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","10.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000308","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A figure that expresses one or more propositions","","","A molecular structure ribbon cartoon showing helices, turns and sheets and their relations to each other in space.","","","","diagram","","","","10.0","","","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A figure that expresses one or more propositions","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000308","","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","diagram","","","DUO","","IAO:0000309","IAO_0000309","","diagram","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000310","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000310"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A collection of information content entities intended to be understood together as a whole"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A journal article, patent application, laboratory notebook, or a book"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A collection of information content entities intended to be understood together as a whole"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""numDescendants"":7.0,""numHierarchicalDescendants"":51.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000301"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/IAO_0000314"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000315"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000572"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A journal article, patent application, laboratory notebook, or a book"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A collection of information content entities intended to be understood together as a whole"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000310""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000310"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000310"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000310""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000315"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abstract"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000315""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000572"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""documenting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000572""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000301"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""citation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000301""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","51.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A collection of information content entities intended to be understood together as a whole","","","A journal article, patent application, laboratory notebook, or a book","","","","document","","","http://purl.obolibrary.org/obo/IAO_0000301|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000315|http://purl.obolibrary.org/obo/IAO_0000572","7.0","","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A collection of information content entities intended to be understood together as a whole","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","document","","","DUO","","IAO:0000310","IAO_0000310","","document","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000311","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000311"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000311""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that is the output of a publishing process."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Revisit the term in Octorber 2020. Improve the defintion."",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""journal article, newspaper story, book, etc."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that is the output of a publishing process."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jie Zheng"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""published document"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/232"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Revisit the term in Octorber 2020. Improve the defintion."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000310"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/IAO_0000310"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000444"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000312"",""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""journal article, newspaper story, book, etc."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that is the output of a publishing process."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jie Zheng"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""published document"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000311""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000311"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000311"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000311""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000312"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000312""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000444"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publishing process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000444""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/IAO_0000310","true","","","PERSON: Chris Stoeckert|PERSON: Jie Zheng|PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A document that is the output of a publishing process.","","","journal article, newspaper story, book, etc.","https://github.com/information-artifact-ontology/IAO/issues/232","","","publication","","","","2.0","published document","","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","Revisit the term in Octorber 2020. Improve the defintion.","A document that is the output of a publishing process.|Revisit the term in Octorber 2020. Improve the defintion.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000310","","http://purl.obolibrary.org/obo/IAO_0000311","http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","publication","","","DUO","","IAO:0000311","IAO_0000311","","publication","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000312","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000312"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000312""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A publication that is about an investigation"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000311"",""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000311"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000311"",""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000311"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication about an investigation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Most scientific journal articles"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A publication that is about an investigation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scientific publication"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication about an investigation"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000311"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0000066"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication about an investigation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/OBI_0000066"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0000066"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication about an investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Most scientific journal articles"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A publication that is about an investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scientific publication"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000312""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/OBI_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000066""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000312"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000312"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000312""},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000311"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000311""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/OBI_0000066","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000311|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A publication that is about an investigation","","","Most scientific journal articles","","","","publication about an investigation","","","","0.0","scientific publication","","http://purl.obolibrary.org/obo/IAO_0000311","http://purl.obolibrary.org/obo/IAO_0000311|http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A publication that is about an investigation","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000311","","http://purl.obolibrary.org/obo/IAO_0000312","http://purl.obolibrary.org/obo/IAO_0000311|http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","publication about an investigation","","","DUO","","IAO:0000312","IAO_0000312","","publication about an investigation","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000313","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000313"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000313""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that has been accepted by a patent authority"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patent"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""US Patent 6,449,603"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that has been accepted by a patent authority"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patent"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000310"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patent"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patent"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""US Patent 6,449,603"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that has been accepted by a patent authority"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000313""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000313"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000313"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000313""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000310","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A document that has been accepted by a patent authority","","","US Patent 6,449,603","","","","patent","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A document that has been accepted by a patent authority","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000310","","http://purl.obolibrary.org/obo/IAO_0000313","http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","patent","","","DUO","","IAO:0000313","IAO_0000313","","patent","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000314","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000314"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is part of a document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/IAO_0000030"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/IAO_0000310"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An abstract, introduction, method or results section."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is part of a document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000030"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""numDescendants"":43.0,""numHierarchicalDescendants"":43.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000325"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000314"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/IAO_0000310"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An abstract, introduction, method or results section."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is part of a document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000314""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000314"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000314"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000314""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000325"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""footnote"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000325""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","43.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000310","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","An information content entity that is part of a document.","","","An abstract, introduction, method or results section.","","","","document part","","","http://purl.obolibrary.org/obo/IAO_0000325","43.0","","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An information content entity that is part of a document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/IAO_0000310","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","document part","","","DUO","","IAO:0000314","IAO_0000314","","document part","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000315","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000315"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000315""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abstract"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The profusion of high-throughput instruments and the explosion of new results in the scientific literature, particularly in molecular biomedicine, is both a blessing and a curse to the bench researcher. Even knowledgeable and experienced scientists can benefit from computational tools that help navigate this vast and rapidly evolving terrain. In this paper, we describe a novel computational approach to this challenge, a knowledge-based system that combines reading, reasoning and reporting methods to facilitate analysis of experimental data. Reading methods extract information from external resources, either by parsing structured data or biomedical language processing to extract information from unstructured data, and track knowledge provenance. Reasoning methods enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. Reasoning is also used to combine all sources into a knowledge network that represents the integration of all sorts of relationships between a pair of genes, and to calculate a combined reliability score. Reporting methods combine the knowledge network with a congruent network constructed from experimental data and visualize the combined network in a tool that facilitates the knowledge-based analysis of that data."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precis"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abstract"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abstract"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000310"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abstract"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The profusion of high-throughput instruments and the explosion of new results in the scientific literature, particularly in molecular biomedicine, is both a blessing and a curse to the bench researcher. Even knowledgeable and experienced scientists can benefit from computational tools that help navigate this vast and rapidly evolving terrain. In this paper, we describe a novel computational approach to this challenge, a knowledge-based system that combines reading, reasoning and reporting methods to facilitate analysis of experimental data. Reading methods extract information from external resources, either by parsing structured data or biomedical language processing to extract information from unstructured data, and track knowledge provenance. Reasoning methods enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. Reasoning is also used to combine all sources into a knowledge network that represents the integration of all sorts of relationships between a pair of genes, and to calculate a combined reliability score. Reporting methods combine the knowledge network with a congruent network constructed from experimental data and visualize the combined network in a tool that facilitates the knowledge-based analysis of that data."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precis"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000315""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""IAO:0000315"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000315"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000315""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000310","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes.","","","The profusion of high-throughput instruments and the explosion of new results in the scientific literature, particularly in molecular biomedicine, is both a blessing and a curse to the bench researcher. Even knowledgeable and experienced scientists can benefit from computational tools that help navigate this vast and rapidly evolving terrain. In this paper, we describe a novel computational approach to this challenge, a knowledge-based system that combines reading, reasoning and reporting methods to facilitate analysis of experimental data. Reading methods extract information from external resources, either by parsing structured data or biomedical language processing to extract information from unstructured data, and track knowledge provenance. Reasoning methods enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. Reasoning is also used to combine all sources into a knowledge network that represents the integration of all sorts of relationships between a pair of genes, and to calculate a combined reliability score. Reporting methods combine the knowledge network with a congruent network constructed from experimental data and visualize the combined network in a tool that facilitates the knowledge-based analysis of that data.","https://github.com/information-artifact-ontology/IAO/issues/234","","","abstract","","","","1.0","precis","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000315","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","abstract","","","DUO","","IAO:0000315","IAO_0000315","","abstract","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000316","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000316"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000316""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the objective specification (why the investigation is being done)"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""introduction to a publication about an investigation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Section labelled \u0027introduction\u0027 of a typical scientific journal article"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the objective specification (why the investigation is being done)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""background"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""introduction"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overview"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""introduction to a publication about an investigation"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000005"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""introduction to a publication about an investigation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000005"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000005"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""introduction to a publication about an investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Section labelled \u0027introduction\u0027 of a typical scientific journal article"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the objective specification (why the investigation is being done)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""background"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""introduction"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overview"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000316""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""IAO:0000316"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000316"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000316""},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000005"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""objective specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000005""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000005","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a publication about an investigation that is about the objective specification (why the investigation is being done)","","","Section labelled 'introduction' of a typical scientific journal article","https://github.com/information-artifact-ontology/IAO/issues/234","","","introduction to a publication about an investigation","","","","0.0","background|introduction|overview","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a publication about an investigation that is about the objective specification (why the investigation is being done)","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000316","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","introduction to a publication about an investigation","","","DUO","","IAO:0000316","IAO_0000316","","introduction to a publication about an investigation","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000317","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000317"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000317""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the study design of the investigation"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methods section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027Methods\u0027 or \u0027Materials and Methods\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the study design of the investigation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental methods"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental procedures"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""method"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methodology"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methods"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methods section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methods section"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/OBI_0500000"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methods section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027Methods\u0027 or \u0027Materials and Methods\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the study design of the investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental methods"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental procedures"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""method"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methodology"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methods"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000317""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000317"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000317"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000317""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0500000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study design"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0500000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/OBI_0500000","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a publication about an investigation that is about the study design of the investigation","","","The section labelled 'Methods' or 'Materials and Methods' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/234","","","methods section","","","","1.0","experimental|experimental methods|experimental procedures|experimental section|method|methodology|methods","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A part of a publication about an investigation that is about the study design of the investigation","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000317","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","methods section","","","DUO","","IAO:0000317","IAO_0000317","","methods section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000318","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000318"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000318""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about a study design execution"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""results section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027results\u0027 in a typical scientific journal article"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about a study design execution"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""results"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""results section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0000471"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""results section"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/OBI_0000471"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0000471"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""results section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027results\u0027 in a typical scientific journal article"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about a study design execution"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""results"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000318""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000318"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000318"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000318""},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000471"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""study design execution""},""curie"":{""type"":[""literal""],""value"":""OBI:0000471""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/OBI_0000471","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a publication about an investigation that is about a study design execution","","","The section labelled 'results' in a typical scientific journal article","","","","results section","","","","1.0","results","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A part of a publication about an investigation that is about a study design execution","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000318","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","results section","","","DUO","","IAO:0000318","IAO_0000318","","results section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000319","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000319"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000319""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the study interpretation of the investigation"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussion section of a publication about an investigation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the study interpretation of the investigation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussion section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussions"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussion section of a publication about an investigation"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussion section of a publication about an investigation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussion section of a publication about an investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the study interpretation of the investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussion section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussions"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000319""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""IAO:0000319"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000319"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000319""},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a publication about an investigation that is about the study interpretation of the investigation","","","","https://github.com/information-artifact-ontology/IAO/issues/234","","","discussion section of a publication about an investigation","","","","0.0","discussion|discussion section|discussions","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a publication about an investigation that is about the study interpretation of the investigation","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000319","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","discussion section of a publication about an investigation","","","DUO","","IAO:0000319","IAO_0000319","","discussion section of a publication about an investigation","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000320","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000320"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000320""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that has citations as parts"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""references section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The list of citations found at the end of a scientific publication, grant proposal or patent application, sometimes called \""literature cited\"" or \""bibliography\"""",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that has citations as parts"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""literature cited"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""reference"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""reference list"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""references"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""references section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000301"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""references section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000301"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000301"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""references section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The list of citations found at the end of a scientific publication, grant proposal or patent application, sometimes called \""literature cited\"" or \""bibliography\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that has citations as parts"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""literature cited"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""reference"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""reference list"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""references"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000320""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000320"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000320"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000320""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000301"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""citation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000301""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000301","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a document that has citations as parts","","","The list of citations found at the end of a scientific publication, grant proposal or patent application, sometimes called ""literature cited"" or ""bibliography""","https://github.com/information-artifact-ontology/IAO/issues/234","","","references section","","","","0.0","literature cited|reference|reference list|references","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document that has citations as parts","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000320","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","references section","","","DUO","","IAO:0000320","IAO_0000320","","references section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000321","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000321"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000321""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that enumerates the authors of the document"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author list"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Lawrence Hunter and Kevin Brettonel Cohen"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that enumerates the authors of the document"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author list"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000302"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author list"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000302"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000302"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author list"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Lawrence Hunter and Kevin Brettonel Cohen"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that enumerates the authors of the document"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000321""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000321"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000321"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000321""},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000302"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author identification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000302""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000302","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a document that enumerates the authors of the document","","","Lawrence Hunter and Kevin Brettonel Cohen","","","","author list","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document that enumerates the authors of the document","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000321","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","author list","","","DUO","","IAO:0000321","IAO_0000321","","author list","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000322","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000322"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000322""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that has parts that are institution identifications associated with the authors of the document"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institution list"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The University of Colorado Denver School of Medicine and the University of Colorado Boulder."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that has parts that are institution identifications associated with the authors of the document"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institution list"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000303"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institution list"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000303"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000303"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institution list"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The University of Colorado Denver School of Medicine and the University of Colorado Boulder."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that has parts that are institution identifications associated with the authors of the document"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000322""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000322"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000322"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000322""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000303"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institutional identification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000303""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000303","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a document that has parts that are institution identifications associated with the authors of the document","","","The University of Colorado Denver School of Medicine and the University of Colorado Boulder.","","","","institution list","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document that has parts that are institution identifications associated with the authors of the document","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000322","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","institution list","","","DUO","","IAO:0000322","IAO_0000322","","institution list","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000323","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000323"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000323""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication that is about the specific contributions of each author"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author contributions section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""LH conceived of the hypothesis, designed the study and contributed to the writing of the manuscript. KBC executed the experiments, analyzed the data, and contributed to the writing of the manuscript."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication that is about the specific contributions of each author"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author contributions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors\u0027 contribution"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors\u0027 contributions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors\u0027 roles"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contributions by the authors"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contributorship"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author contributions section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author contributions section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author contributions section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""LH conceived of the hypothesis, designed the study and contributed to the writing of the manuscript. KBC executed the experiments, analyzed the data, and contributed to the writing of the manuscript."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication that is about the specific contributions of each author"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author contributions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors\u0027 contribution"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors\u0027 contributions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors\u0027 roles"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contributions by the authors"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contributorship"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000323""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000323"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000323"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000323""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a publication that is about the specific contributions of each author","","","LH conceived of the hypothesis, designed the study and contributed to the writing of the manuscript. KBC executed the experiments, analyzed the data, and contributed to the writing of the manuscript.","https://github.com/information-artifact-ontology/IAO/issues/234","","","author contributions section","","","","0.0","author contributions|authors' contribution|authors' contributions|authors' roles|contributions by the authors|contributorship","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a publication that is about the specific contributions of each author","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000323","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","author contributions section","","","DUO","","IAO:0000323","IAO_0000323","","author contributions section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000324","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000324"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000324""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Part of a publication that is about the contributions of people or institutions other than the authors."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgements section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The authors wish to thank Alan Ruttenberg for his constructive comments about an earlier draft of this manuscript"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Part of a publication that is about the contributions of people or institutions other than the authors."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgements"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgment"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgments"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgements section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgements section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgements section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The authors wish to thank Alan Ruttenberg for his constructive comments about an earlier draft of this manuscript"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Part of a publication that is about the contributions of people or institutions other than the authors."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgements"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgment"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgments"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000324""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000324"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000324"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000324""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","Part of a publication that is about the contributions of people or institutions other than the authors.","","","The authors wish to thank Alan Ruttenberg for his constructive comments about an earlier draft of this manuscript","https://github.com/information-artifact-ontology/IAO/issues/234","","","acknowledgements section","","","","0.0","acknowledgement|acknowledgements|acknowledgment|acknowledgments","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","Part of a publication that is about the contributions of people or institutions other than the authors.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000324","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","acknowledgements section","","","DUO","","IAO:0000324","IAO_0000324","","acknowledgements section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000325","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000325"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000325""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""footnote"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The referent in the text is usually indicated by a special typographic character such as * or a superscripted number, which is also used to indicate the footnote that refers to that text."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""endnote"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""footnotes"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""footnote"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000314"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""footnote"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000314"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000314"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""footnote"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The referent in the text is usually indicated by a special typographic character such as * or a superscripted number, which is also used to indicate the footnote that refers to that text."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""endnote"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""footnotes"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000325""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000325"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000325"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000325""},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000314","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document.","","","The referent in the text is usually indicated by a special typographic character such as * or a superscripted number, which is also used to indicate the footnote that refers to that text.","https://github.com/information-artifact-ontology/IAO/issues/234","","","footnote","","","","0.0","endnote|footnotes","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000325","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","footnote","","","DUO","","IAO:0000325","IAO_0000325","","footnote","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000326","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000326"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000326""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that is segregated from the rest of the document due to its size"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary material to a document"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that is segregated from the rest of the document due to its size"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional file"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional files"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""appendix"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""electronic supplementary material"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""electronic supplementary materials"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplemental data"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplemental information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplemental material"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary data"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary files"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary material"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary materials"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supporting information"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary material to a document"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary material to a document"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary material to a document"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that is segregated from the rest of the document due to its size"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional file"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional files"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""appendix"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""electronic supplementary material"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""electronic supplementary materials"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplemental data"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplemental information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplemental material"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary data"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary files"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary material"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary materials"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supporting information"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000326""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""IAO:0000326"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000326"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000326""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a document that is segregated from the rest of the document due to its size","","","","https://github.com/information-artifact-ontology/IAO/issues/234","","","supplementary material to a document","","","","0.0","additional file|additional files|additional information|appendix|electronic supplementary material|electronic supplementary materials|supplemental data|supplemental information|supplemental material|supplementary data|supplementary files|supplementary information|supplementary material|supplementary materials|supporting information","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document that is segregated from the rest of the document due to its size","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000326","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","supplementary material to a document","","","DUO","","IAO:0000326","IAO_0000326","","supplementary material to a document","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000327","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000327"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000327""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000306"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000306"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000306"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000306"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of contents"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of contents"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000306"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of contents"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of contents"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000327""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000306"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000306""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000327"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000327"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000327""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000306","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred).","","","","","","","table of contents","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000306|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred).","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000306","","http://purl.obolibrary.org/obo/IAO_0000327","http://purl.obolibrary.org/obo/IAO_0000306|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","table of contents","","","DUO","","IAO:0000327","IAO_0000327","","table of contents","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000328","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000328"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000328""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000306"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000306"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000306"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000306"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of figures"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of figures"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000306"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of figures"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of figures"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000328""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000306"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000306""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""IAO:0000328"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000328"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000328""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000306","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred).","","","","","","","table of figures","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000306|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred).","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000306","","http://purl.obolibrary.org/obo/IAO_0000328","http://purl.obolibrary.org/obo/IAO_0000306|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","table of figures","","","DUO","","IAO:0000328","IAO_0000328","","table of figures","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000329","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000329"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000329""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A shorter version of a document title"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000305"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000305"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000305"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000305"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""running title"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A shorter version of a document title"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""running title"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000305"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""running title"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""running title"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A shorter version of a document title"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000329""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000305"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document title"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000305""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""IAO:0000329"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000329"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000329""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000305","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A shorter version of a document title","","","","","","","running title","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000305","http://purl.obolibrary.org/obo/IAO_0000305|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A shorter version of a document title","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000305","","http://purl.obolibrary.org/obo/IAO_0000329","http://purl.obolibrary.org/obo/IAO_0000305|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","running title","","","DUO","","IAO:0000329","IAO_0000329","","running title","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000330","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000330"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000330""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes legal restrictions on making or distributing copies of the document"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""copyright section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes legal restrictions on making or distributing copies of the document"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""copyright section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""copyright section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""copyright section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes legal restrictions on making or distributing copies of the document"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000330""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000330"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000330"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000330""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A document part that describes legal restrictions on making or distributing copies of the document","","","This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.","","","","copyright section","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A document part that describes legal restrictions on making or distributing copies of the document","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000330","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","copyright section","","","DUO","","IAO:0000330","IAO_0000330","","copyright section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000400","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000400"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-08-18 Alan Ruttenberg - question to BFO list about whether the BFO sense of the lower dimensional regions is that they are always part of actual space (the three dimensional sort) http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""value"":""AR notes: We need to discuss whether it should include site.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000027"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000219"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000018"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#cardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000407"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000219"",""value"":""http://purl.obolibrary.org/obo/BFO_0000018"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000219"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000018"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-08-18 Alan Ruttenberg - question to BFO list about whether the BFO sense of the lower dimensional regions is that they are always part of actual space (the three dimensional sort) http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""value"":""AR notes: We need to discuss whether it should include site.""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000400""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000400"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000400"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000400""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000407"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has coordinate unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000407""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000219"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/BFO_0000018","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000027||","true","","2009-08-18 Alan Ruttenberg - question to BFO list about whether the BFO sense of the lower dimensional regions is that they are always part of actual space (the three dimensional sort) http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000120","A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude","","","","","","","","AR notes: We need to discuss whether it should include site.","","","3.0","","","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000027","","http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","cartesian spatial coordinate datum","","","DUO","","IAO:0000400","IAO_0000400","","cartesian spatial coordinate datum","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000401","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000401"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000401""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000400"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000400"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000400"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000400"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one dimensional cartesian spatial coordinate datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000400"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000219"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000026"",""isObsolete"":false}]},""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#cardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000404"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one dimensional cartesian spatial coordinate datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000219"",""value"":""http://purl.obolibrary.org/obo/BFO_0000018"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000026"",""isObsolete"":false}]},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000401""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""IAO:0000401"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000401"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000401""},""http://purl.obolibrary.org/obo/IAO_0000404"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has x coordinate value"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000404""},""type"":[""dataProperty"",""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000219"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000026""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/BFO_0000018","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000400||","true","","","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000123","A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000400|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000400","","http://purl.obolibrary.org/obo/IAO_0000401","http://purl.obolibrary.org/obo/IAO_0000400|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","one dimensional cartesian spatial coordinate datum","","","DUO","","IAO:0000401","IAO_0000401","","one dimensional cartesian spatial coordinate datum","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000402","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000402"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000402""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000400"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000400"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000400"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000400"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two dimensional cartesian spatial coordinate datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000400"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000219"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000009"",""isObsolete"":false}]},""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#cardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000404"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#cardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000406"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two dimensional cartesian spatial coordinate datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000219"",""value"":""http://purl.obolibrary.org/obo/BFO_0000018"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000009"",""isObsolete"":false}]},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000402""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""IAO:0000402"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000402"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000402""},""http://purl.obolibrary.org/obo/IAO_0000406"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has y coordinate value"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000406""},""type"":[""dataProperty"",""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000404"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has x coordinate value"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000404""},""type"":[""dataProperty"",""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000219"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/BFO_0000018","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000400|||","true","","","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000123","A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000400|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000400","","http://purl.obolibrary.org/obo/IAO_0000402","http://purl.obolibrary.org/obo/IAO_0000400|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","two dimensional cartesian spatial coordinate datum","","","DUO","","IAO:0000402","IAO_0000402","","two dimensional cartesian spatial coordinate datum","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000403","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000403"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000403""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000400"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000400"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000400"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000400"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three dimensional cartesian spatial coordinate datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000400"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000219"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000028"",""isObsolete"":false}]},""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#cardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000404"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#cardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000405"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#cardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000406"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three dimensional cartesian spatial coordinate datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000219"",""value"":""http://purl.obolibrary.org/obo/BFO_0000018"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000028"",""isObsolete"":false}]},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000403""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000403"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000403"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000403""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000406"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has y coordinate value"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000406""},""type"":[""dataProperty"",""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000404"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has x coordinate value"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000404""},""type"":[""dataProperty"",""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000405"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has z coordinate value"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000405""},""type"":[""dataProperty"",""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000219"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000028""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/BFO_0000018","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000400||||","true","","","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000123","A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000400|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000400","","http://purl.obolibrary.org/obo/IAO_0000403","http://purl.obolibrary.org/obo/IAO_0000400|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","three dimensional cartesian spatial coordinate datum","","","DUO","","IAO:0000403","IAO_0000403","","three dimensional cartesian spatial coordinate datum","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000408","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000408"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000408""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measurement of length quality"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000032"",""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000032"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000032"",""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000032"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measurement of length quality"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""length measurement datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000032"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000039"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UO_0000001"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000221"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0000122"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""length measurement datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/IAO_0000039"",""value"":""http://purl.obolibrary.org/obo/UO_0000001"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000039"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UO_0000001"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/IAO_0000221"",""value"":""http://purl.obolibrary.org/obo/PATO_0000122"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000221"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0000122"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measurement of length quality"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000408""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000032"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scalar measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000032""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""length""},""curie"":{""type"":[""literal""],""value"":""PATO:0000122""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000039""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""length unit""},""curie"":{""type"":[""literal""],""value"":""UO:0000001""},""type"":[""class"",""entity""]},""IAO:0000408"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000408"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000408""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000221"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measurement of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000221""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UO_0000001|http://purl.obolibrary.org/obo/PATO_0000122","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000032||","true","","","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000123","A scalar measurement datum that is the result of measurement of length quality","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000032|http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A scalar measurement datum that is the result of measurement of length quality","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000032","","http://purl.obolibrary.org/obo/IAO_0000408","http://purl.obolibrary.org/obo/IAO_0000032|http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","length measurement datum","","","DUO","","IAO:0000408","IAO_0000408","","length measurement datum","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000409","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000409"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000409""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A denotator type indicates how a term should be interpreted from an ontological perspective."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000102"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hasIndividuals"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000102"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotator type"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are \""natural kinds\"" and the latter arbitrary collections of entities."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A denotator type indicates how a term should be interpreted from an ontological perspective."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Barry Smith, Werner Ceusters"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotator type"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000102"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#oneOf"":[""http://purl.obolibrary.org/obo/IAO_0000410"",""http://purl.obolibrary.org/obo/IAO_0000420"",""http://purl.obolibrary.org/obo/IAO_0000421""]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotator type"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotator type"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are \""natural kinds\"" and the latter arbitrary collections of entities."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A denotator type indicates how a term should be interpreted from an ontological perspective."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Barry Smith, Werner Ceusters"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000409""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000409"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000409"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000409""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000410"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""universal"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000410""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000420"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined class"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000420""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000421"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""named class expression"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000421""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000102","true","","","Alan Ruttenberg","","A denotator type indicates how a term should be interpreted from an ontological perspective.","","","The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are ""natural kinds"" and the latter arbitrary collections of entities.","","","","denotator type","","","","3.0","","Barry Smith, Werner Ceusters","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A denotator type indicates how a term should be interpreted from an ontological perspective.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000102","","http://purl.obolibrary.org/obo/IAO_0000409","http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","denotator type","true","","DUO","","IAO:0000409","IAO_0000409","","denotator type","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000414","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000414"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000414""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measurement of mass quality"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000032"",""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000032"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000032"",""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000032"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measurement of mass quality"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/09/28 Alan Ruttenberg. Fucoidan-use-case"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""mass measurement datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000032"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/UO_0000002"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000039"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0000125"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000221"",""isObsolete"":false}]}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""mass measurement datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measurement of mass quality"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/09/28 Alan Ruttenberg. Fucoidan-use-case"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000414""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""mass""},""curie"":{""type"":[""literal""],""value"":""PATO:0000125""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000032"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scalar measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000032""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000039""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""mass unit""},""curie"":{""type"":[""literal""],""value"":""UO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""IAO:0000414"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000414"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000414""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000221"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measurement of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000221""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000032|","true","","2009/09/28 Alan Ruttenberg. Fucoidan-use-case","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000123","A scalar measurement datum that is the result of measurement of mass quality","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000032|http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A scalar measurement datum that is the result of measurement of mass quality","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000032","","http://purl.obolibrary.org/obo/IAO_0000414","http://purl.obolibrary.org/obo/IAO_0000032|http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","mass measurement datum","","","DUO","","IAO:0000414","IAO_0000414","","mass measurement datum","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000415","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000415"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000415""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses an assertion that is intended to be tested."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""hypothesis textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\u0027, by Lowenthal et. al.PMID:19696660"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses an assertion that is intended to be tested."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/09/28 Alan Ruttenberg. Fucoidan-use-case"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""hypothesis textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""hypothesis textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""hypothesis textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\u0027, by Lowenthal et. al.PMID:19696660"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses an assertion that is intended to be tested."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/09/28 Alan Ruttenberg. Fucoidan-use-case"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000415""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""PMID:19696660"":{""url"":""http://www.ncbi.nlm.nih.gov/pubmed/19696660"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""PMID:19696660""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000415"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000415"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000415""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","2009/09/28 Alan Ruttenberg. Fucoidan-use-case","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000120","A textual entity that expresses an assertion that is intended to be tested.","","","that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper 'Pilot clinical study to evaluate the anticoagulant activity of fucoidan', by Lowenthal et. al.PMID:19696660","","","","hypothesis textual entity","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity that expresses an assertion that is intended to be tested.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000415","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","hypothesis textual entity","","","DUO","","IAO:0000415","IAO_0000415","","hypothesis textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000416","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000416"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000416""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measuring a temporal interval"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000032"",""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000032"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000032"",""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000032"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measuring a temporal interval"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/09/28 Alan Ruttenberg. Fucoidan-use-case"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time measurement datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000032"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/UO_0000003"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000039"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000413"",""isObsolete"":false}]}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time measurement datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measuring a temporal interval"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/09/28 Alan Ruttenberg. Fucoidan-use-case"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000416""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000032"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scalar measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000032""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000039""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""time unit""},""curie"":{""type"":[""literal""],""value"":""UO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000413"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is duration of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000413""},""type"":[""property"",""objectProperty"",""entity""]},""IAO:0000416"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000416"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000416""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000032|","true","","2009/09/28 Alan Ruttenberg. Fucoidan-use-case","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000123","A scalar measurement datum that is the result of measuring a temporal interval","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000032|http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A scalar measurement datum that is the result of measuring a temporal interval","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000032","","http://purl.obolibrary.org/obo/IAO_0000416","http://purl.obolibrary.org/obo/IAO_0000032|http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","time measurement datum","","","DUO","","IAO:0000416","IAO_0000416","","time measurement datum","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000422","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000422"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000422""},""definition"":{""type"":[""literal""],""value"":""A textual entity that is used as directive to deliver something to a person, or organization""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A textual entity that is used as directive to deliver something to a person, or organization""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""2010-05-24 Alan Ruttenberg. Use label for the string representation. See issue https://github.com/information-artifact-ontology/IAO/issues/59""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""postal address"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""postal address"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A textual entity that is used as directive to deliver something to a person, or organization""},{""type"":[""literal""],""value"":""2010-05-24 Alan Ruttenberg. Use label for the string representation. See issue https://github.com/information-artifact-ontology/IAO/issues/59""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000422""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000422"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000422"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000422""},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","2010-05-24 Alan Ruttenberg. Use label for the string representation. See issue https://github.com/information-artifact-ontology/IAO/issues/59","","http://purl.obolibrary.org/obo/IAO_0000123","A textual entity that is used as directive to deliver something to a person, or organization","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity that is used as directive to deliver something to a person, or organization","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000422","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","postal address","","","DUO","","IAO:0000422","IAO_0000422","","postal address","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000429","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000429"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000429""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""email address"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg 1/3/2012 - Provisional id, see issue at https://github.com/information-artifact-ontology/IAO/issues/130\u0026thanks\u003d130\u0026ts\u003d1325636583"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Chris Stoeckart"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""email address"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""email address"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""email address"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg 1/3/2012 - Provisional id, see issue at https://github.com/information-artifact-ontology/IAO/issues/130\u0026thanks\u003d130\u0026ts\u003d1325636583"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Chris Stoeckart"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000429""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000429"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000429"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000429""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000030","true","","Alan Ruttenberg 1/3/2012 - Provisional id, see issue at https://github.com/information-artifact-ontology/IAO/issues/130&thanks=130&ts=1325636583","Person:Alan Ruttenberg|Person:Chris Stoeckart","http://purl.obolibrary.org/obo/IAO_0000123","","","","","","","","email address","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0000429","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","email address","","","DUO","","IAO:0000429","IAO_0000429","","email address","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000442","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000442"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000442""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000023"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000023"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000023"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000023"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author role"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author role"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000023"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author role"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author role"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000442""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000442"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000442"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000442""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000023""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000023","true","","","PERSON: Alan Ruttenberg|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000125","A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name.","","","","","","","author role","","","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000023","http://purl.obolibrary.org/obo/BFO_0000023|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000023","","http://purl.obolibrary.org/obo/IAO_0000442","http://purl.obolibrary.org/obo/BFO_0000023|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","author role","","","DUO","","IAO:0000442","IAO_0000442","","author role","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000443","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000443"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000443""},""definition"":{""type"":[""literal""],""value"":""A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""value"":""Person:Alan Ruttenberg""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""data item extraction from journal article""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/OBI_0000011"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000013"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000027"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""data item extraction from journal article""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000013"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000013"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000027"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000027"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing""},{""type"":[""literal""],""value"":""Person:Alan Ruttenberg""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000443""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""IAO:0000443"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000443"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000443""},""http://purl.obolibrary.org/obo/IAO_0000013"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""journal article"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000013""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000013|http://purl.obolibrary.org/obo/IAO_0000027","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011||","true","","","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000120","A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/IAO_0000443","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","data item extraction from journal article","","","DUO","","IAO:0000443","IAO_0000443","","data item extraction from journal article","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000444","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000444"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000444""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""https://en.wikipedia.org/wiki/Publishing""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/232"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""VEuPathDB"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publishing process"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000011"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publishing process"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/OBI_0000312"",""value"":""http://purl.obolibrary.org/obo/IAO_0000013"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000312"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000444"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng"",""lang"":""en""},{""type"":[""literal""],""value"":""https://en.wikipedia.org/wiki/Publishing""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""VEuPathDB"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000444""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000312"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000312""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""IAO:0000444"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000444"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000444""},""http://purl.obolibrary.org/obo/IAO_0000013"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""journal article"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000013""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011","true","","","Person: Jie Zheng","http://purl.obolibrary.org/obo/IAO_0000120","A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free.","","","","https://github.com/information-artifact-ontology/IAO/issues/232","VEuPathDB","","","","","http://purl.obolibrary.org/obo/IAO_0000013","0.0","","https://en.wikipedia.org/wiki/Publishing","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/IAO_0000444","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","publishing process","","","DUO","","IAO:0000444","IAO_0000444","","publishing process","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000445","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000445"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000445""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that is in preparation for submission to be published."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that is in preparation for submission to be published."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jie Zheng"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""EFO_0001795 in preparation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/232"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""VEuPathDB"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document in preparation for publication"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000310"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document in preparation for publication"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that is in preparation for submission to be published."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jie Zheng"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""EFO_0001795 in preparation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""VEuPathDB"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000445""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000445"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000445"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000445""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000310","true","","","PERSON: Jie Zheng","http://purl.obolibrary.org/obo/IAO_0000120","A document that is in preparation for submission to be published.","","","","https://github.com/information-artifact-ontology/IAO/issues/232","VEuPathDB","","","","","","0.0","","EFO_0001795 in preparation","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A document that is in preparation for submission to be published.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000310","","http://purl.obolibrary.org/obo/IAO_0000445","http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","document in preparation for publication","","","DUO","","IAO:0000445","IAO_0000445","","document in preparation for publication","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000572","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000572"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000572""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a document is created or added to by including the specified input in it."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Recording the current temperature in a laboratory notebook. Writing a journal article. Updating a patient record in a database."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a document is created or added to by including the specified input in it."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""6/11/9: Edited at OBI workshop. We need to be able identify a child form of information artifact which corresponds to something enduring (not brain like). This used to be restricted to physical document or digital entity as the output, but that excludes e.g. an audio cassette tape"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Bjoern Peters"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""wikipedia http://en.wikipedia.org/wiki/Documenting"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""documenting"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/OBI_0000011"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""documenting"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000030"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000310"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Recording the current temperature in a laboratory notebook. Writing a journal article. Updating a patient record in a database."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a document is created or added to by including the specified input in it."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""6/11/9: Edited at OBI workshop. We need to be able identify a child form of information artifact which corresponds to something enduring (not brain like). This used to be restricted to physical document or digital entity as the output, but that excludes e.g. an audio cassette tape"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""wikipedia http://en.wikipedia.org/wiki/Documenting"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000572""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""IAO:0000572"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000572"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000572""},""http://en.wikipedia.org/wiki/Documenting"":{""url"":""http://en.wikipedia.org/wiki/Documenting"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Documenting""},""http://purl.obolibrary.org/obo/OBI_0000293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/IAO_0000310","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011||","true","","6/11/9: Edited at OBI workshop. We need to be able identify a child form of information artifact which corresponds to something enduring (not brain like). This used to be restricted to physical document or digital entity as the output, but that excludes e.g. an audio cassette tape","Bjoern Peters","http://purl.obolibrary.org/obo/IAO_0000125","A planned process in which a document is created or added to by including the specified input in it.","","","Recording the current temperature in a laboratory notebook. Writing a journal article. Updating a patient record in a database.","","","","","","","","0.0","","wikipedia http://en.wikipedia.org/wiki/Documenting","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A planned process in which a document is created or added to by including the specified input in it.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/IAO_0000572","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","documenting","","","DUO","","IAO:0000572","IAO_0000572","","documenting","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000573","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000573"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000573""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A line graph is a type of graph created by connecting a series of data\npoints together with a line."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""line graph"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A line graph is a type of graph created by connecting a series of data\npoints together with a line."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""line chart"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wikipedia.org/wiki/Line_chart"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""line graph"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""line graph"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""line graph"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A line graph is a type of graph created by connecting a series of data\npoints together with a line."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""line chart"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wikipedia.org/wiki/Line_chart"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000573""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://en.wikipedia.org/wiki/Line_chart"":{""url"":""http://en.wikipedia.org/wiki/Line_chart"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Line_chart""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""IAO:0000573"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000573"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000573""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000038","true","","","PERSON:Chris Stoeckert|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","A line graph is a type of graph created by connecting a series of data +"duo+class+http://purl.obolibrary.org/obo/IAO_0000308","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000308"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Any picture, diagram or table"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""numDescendants"":13.0,""numHierarchicalDescendants"":13.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000304"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000308"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000622"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000308"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Any picture, diagram or table"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000308""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000622"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figures section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000622""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000304"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""caption"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000304""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","13.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something.","","","Any picture, diagram or table","","","","figure","","","http://purl.obolibrary.org/obo/IAO_0000304|http://purl.obolibrary.org/obo/IAO_0000622","13.0","","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","figure","","","DUO","","IAO:0000308","IAO_0000308","","figure","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000309","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000309"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A figure that expresses one or more propositions"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000308"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000308"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A molecular structure ribbon cartoon showing helices, turns and sheets and their relations to each other in space."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A figure that expresses one or more propositions"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000308"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""numDescendants"":10.0,""numHierarchicalDescendants"":10.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A molecular structure ribbon cartoon showing helices, turns and sheets and their relations to each other in space."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A figure that expresses one or more propositions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000309""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","10.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000308","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A figure that expresses one or more propositions","","","A molecular structure ribbon cartoon showing helices, turns and sheets and their relations to each other in space.","","","","diagram","","","","10.0","","","http://purl.obolibrary.org/obo/IAO_0000308","http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A figure that expresses one or more propositions","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000308","","http://purl.obolibrary.org/obo/IAO_0000309","http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","diagram","","","DUO","","IAO:0000309","IAO_0000309","","diagram","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000310","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000310"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A collection of information content entities intended to be understood together as a whole"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A journal article, patent application, laboratory notebook, or a book"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A collection of information content entities intended to be understood together as a whole"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""numDescendants"":7.0,""numHierarchicalDescendants"":51.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000301"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/IAO_0000314"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000315"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000572"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A journal article, patent application, laboratory notebook, or a book"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A collection of information content entities intended to be understood together as a whole"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000310""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000315"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abstract"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000315""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000572"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""documenting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000572""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000301"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""citation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000301""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","51.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A collection of information content entities intended to be understood together as a whole","","","A journal article, patent application, laboratory notebook, or a book","","","","document","","","http://purl.obolibrary.org/obo/IAO_0000301|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000315|http://purl.obolibrary.org/obo/IAO_0000572","7.0","","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A collection of information content entities intended to be understood together as a whole","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","document","","","DUO","","IAO:0000310","IAO_0000310","","document","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000311","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000311"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000311""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that is the output of a publishing process."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Revisit the term in Octorber 2020. Improve the defintion."",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""journal article, newspaper story, book, etc."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that is the output of a publishing process."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jie Zheng"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""published document"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/232"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Revisit the term in Octorber 2020. Improve the defintion."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000310"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/IAO_0000310"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000444"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000312"",""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""journal article, newspaper story, book, etc."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that is the output of a publishing process."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jie Zheng"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""published document"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000311""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000312"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000312""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000444"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publishing process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000444""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/IAO_0000310","true","","","PERSON: Chris Stoeckert|PERSON: Jie Zheng|PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A document that is the output of a publishing process.","","","journal article, newspaper story, book, etc.","https://github.com/information-artifact-ontology/IAO/issues/232","","","publication","","","","2.0","published document","","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","Revisit the term in Octorber 2020. Improve the defintion.","A document that is the output of a publishing process.|Revisit the term in Octorber 2020. Improve the defintion.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000310","","http://purl.obolibrary.org/obo/IAO_0000311","http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","publication","","","DUO","","IAO:0000311","IAO_0000311","","publication","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000312","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000312"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000312""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A publication that is about an investigation"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000311"",""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000311"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000311"",""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000311"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication about an investigation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Most scientific journal articles"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A publication that is about an investigation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scientific publication"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication about an investigation"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000311"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0000066"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication about an investigation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/OBI_0000066"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0000066"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication about an investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Most scientific journal articles"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A publication that is about an investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scientific publication"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000312""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/OBI_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000066""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000311"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000311""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/OBI_0000066","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000311|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A publication that is about an investigation","","","Most scientific journal articles","","","","publication about an investigation","","","","0.0","scientific publication","","http://purl.obolibrary.org/obo/IAO_0000311","http://purl.obolibrary.org/obo/IAO_0000311|http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A publication that is about an investigation","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000311","","http://purl.obolibrary.org/obo/IAO_0000312","http://purl.obolibrary.org/obo/IAO_0000311|http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","publication about an investigation","","","DUO","","IAO:0000312","IAO_0000312","","publication about an investigation","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000313","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000313"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000313""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that has been accepted by a patent authority"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patent"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""US Patent 6,449,603"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that has been accepted by a patent authority"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patent"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000310"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patent"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patent"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""US Patent 6,449,603"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that has been accepted by a patent authority"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000313""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000310","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A document that has been accepted by a patent authority","","","US Patent 6,449,603","","","","patent","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A document that has been accepted by a patent authority","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000310","","http://purl.obolibrary.org/obo/IAO_0000313","http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","patent","","","DUO","","IAO:0000313","IAO_0000313","","patent","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000314","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000314"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is part of a document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/IAO_0000030"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/IAO_0000310"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An abstract, introduction, method or results section."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is part of a document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000030"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""numDescendants"":43.0,""numHierarchicalDescendants"":43.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000325"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000314"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/IAO_0000310"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An abstract, introduction, method or results section."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is part of a document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000314""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000325"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""footnote"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000325""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","43.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000310","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","An information content entity that is part of a document.","","","An abstract, introduction, method or results section.","","","","document part","","","http://purl.obolibrary.org/obo/IAO_0000325","43.0","","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An information content entity that is part of a document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/IAO_0000310","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","document part","","","DUO","","IAO:0000314","IAO_0000314","","document part","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000315","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000315"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000315""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abstract"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The profusion of high-throughput instruments and the explosion of new results in the scientific literature, particularly in molecular biomedicine, is both a blessing and a curse to the bench researcher. Even knowledgeable and experienced scientists can benefit from computational tools that help navigate this vast and rapidly evolving terrain. In this paper, we describe a novel computational approach to this challenge, a knowledge-based system that combines reading, reasoning and reporting methods to facilitate analysis of experimental data. Reading methods extract information from external resources, either by parsing structured data or biomedical language processing to extract information from unstructured data, and track knowledge provenance. Reasoning methods enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. Reasoning is also used to combine all sources into a knowledge network that represents the integration of all sorts of relationships between a pair of genes, and to calculate a combined reliability score. Reporting methods combine the knowledge network with a congruent network constructed from experimental data and visualize the combined network in a tool that facilitates the knowledge-based analysis of that data."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precis"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abstract"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abstract"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000310"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abstract"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The profusion of high-throughput instruments and the explosion of new results in the scientific literature, particularly in molecular biomedicine, is both a blessing and a curse to the bench researcher. Even knowledgeable and experienced scientists can benefit from computational tools that help navigate this vast and rapidly evolving terrain. In this paper, we describe a novel computational approach to this challenge, a knowledge-based system that combines reading, reasoning and reporting methods to facilitate analysis of experimental data. Reading methods extract information from external resources, either by parsing structured data or biomedical language processing to extract information from unstructured data, and track knowledge provenance. Reasoning methods enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. Reasoning is also used to combine all sources into a knowledge network that represents the integration of all sorts of relationships between a pair of genes, and to calculate a combined reliability score. Reporting methods combine the knowledge network with a congruent network constructed from experimental data and visualize the combined network in a tool that facilitates the knowledge-based analysis of that data."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""precis"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000315""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000310","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes.","","","The profusion of high-throughput instruments and the explosion of new results in the scientific literature, particularly in molecular biomedicine, is both a blessing and a curse to the bench researcher. Even knowledgeable and experienced scientists can benefit from computational tools that help navigate this vast and rapidly evolving terrain. In this paper, we describe a novel computational approach to this challenge, a knowledge-based system that combines reading, reasoning and reporting methods to facilitate analysis of experimental data. Reading methods extract information from external resources, either by parsing structured data or biomedical language processing to extract information from unstructured data, and track knowledge provenance. Reasoning methods enrich the knowledge that results from reading by, for example, noting two genes that are annotated to the same ontology term or database entry. Reasoning is also used to combine all sources into a knowledge network that represents the integration of all sorts of relationships between a pair of genes, and to calculate a combined reliability score. Reporting methods combine the knowledge network with a congruent network constructed from experimental data and visualize the combined network in a tool that facilitates the knowledge-based analysis of that data.","https://github.com/information-artifact-ontology/IAO/issues/234","","","abstract","","","","1.0","precis","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A summary of the entire document that is substantially smaller than the document it summarizes. It is about the document it summarizes.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000315","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","abstract","","","DUO","","IAO:0000315","IAO_0000315","","abstract","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000316","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000316"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000316""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the objective specification (why the investigation is being done)"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""introduction to a publication about an investigation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Section labelled \u0027introduction\u0027 of a typical scientific journal article"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the objective specification (why the investigation is being done)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""background"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""introduction"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overview"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""introduction to a publication about an investigation"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000005"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""introduction to a publication about an investigation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000005"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000005"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""introduction to a publication about an investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Section labelled \u0027introduction\u0027 of a typical scientific journal article"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the objective specification (why the investigation is being done)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""background"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""introduction"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""overview"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000316""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000005"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""objective specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000005""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000005","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a publication about an investigation that is about the objective specification (why the investigation is being done)","","","Section labelled 'introduction' of a typical scientific journal article","https://github.com/information-artifact-ontology/IAO/issues/234","","","introduction to a publication about an investigation","","","","0.0","background|introduction|overview","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a publication about an investigation that is about the objective specification (why the investigation is being done)","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000316","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","introduction to a publication about an investigation","","","DUO","","IAO:0000316","IAO_0000316","","introduction to a publication about an investigation","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000317","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000317"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000317""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the study design of the investigation"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methods section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027Methods\u0027 or \u0027Materials and Methods\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the study design of the investigation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental methods"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental procedures"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""method"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methodology"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methods"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methods section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methods section"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/OBI_0500000"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methods section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027Methods\u0027 or \u0027Materials and Methods\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the study design of the investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental methods"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental procedures"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""method"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methodology"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methods"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000317""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0500000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study design"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0500000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/OBI_0500000","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a publication about an investigation that is about the study design of the investigation","","","The section labelled 'Methods' or 'Materials and Methods' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/234","","","methods section","","","","1.0","experimental|experimental methods|experimental procedures|experimental section|method|methodology|methods","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A part of a publication about an investigation that is about the study design of the investigation","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000317","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","methods section","","","DUO","","IAO:0000317","IAO_0000317","","methods section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000318","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000318"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000318""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about a study design execution"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""results section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027results\u0027 in a typical scientific journal article"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about a study design execution"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""results"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""results section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0000471"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""results section"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/OBI_0000471"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0000471"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""results section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027results\u0027 in a typical scientific journal article"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about a study design execution"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""results"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000318""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000471"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""study design execution""},""curie"":{""type"":[""literal""],""value"":""OBI:0000471""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/OBI_0000471","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a publication about an investigation that is about a study design execution","","","The section labelled 'results' in a typical scientific journal article","","","","results section","","","","1.0","results","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A part of a publication about an investigation that is about a study design execution","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000318","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","results section","","","DUO","","IAO:0000318","IAO_0000318","","results section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000319","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000319"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000319""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the study interpretation of the investigation"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussion section of a publication about an investigation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the study interpretation of the investigation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussion section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussions"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussion section of a publication about an investigation"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussion section of a publication about an investigation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussion section of a publication about an investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication about an investigation that is about the study interpretation of the investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussion section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""discussions"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000319""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a publication about an investigation that is about the study interpretation of the investigation","","","","https://github.com/information-artifact-ontology/IAO/issues/234","","","discussion section of a publication about an investigation","","","","0.0","discussion|discussion section|discussions","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a publication about an investigation that is about the study interpretation of the investigation","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000319","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","discussion section of a publication about an investigation","","","DUO","","IAO:0000319","IAO_0000319","","discussion section of a publication about an investigation","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000320","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000320"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000320""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that has citations as parts"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""references section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The list of citations found at the end of a scientific publication, grant proposal or patent application, sometimes called \""literature cited\"" or \""bibliography\"""",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that has citations as parts"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""literature cited"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""reference"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""reference list"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""references"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""references section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000301"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""references section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000301"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000301"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""references section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The list of citations found at the end of a scientific publication, grant proposal or patent application, sometimes called \""literature cited\"" or \""bibliography\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that has citations as parts"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""literature cited"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""reference"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""reference list"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""references"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000320""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000301"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""citation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000301""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000301","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a document that has citations as parts","","","The list of citations found at the end of a scientific publication, grant proposal or patent application, sometimes called ""literature cited"" or ""bibliography""","https://github.com/information-artifact-ontology/IAO/issues/234","","","references section","","","","0.0","literature cited|reference|reference list|references","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document that has citations as parts","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000320","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","references section","","","DUO","","IAO:0000320","IAO_0000320","","references section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000321","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000321"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000321""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that enumerates the authors of the document"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author list"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Lawrence Hunter and Kevin Brettonel Cohen"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that enumerates the authors of the document"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author list"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000302"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author list"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000302"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000302"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author list"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Lawrence Hunter and Kevin Brettonel Cohen"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that enumerates the authors of the document"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000321""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000302"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author identification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000302""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000302","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a document that enumerates the authors of the document","","","Lawrence Hunter and Kevin Brettonel Cohen","","","","author list","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document that enumerates the authors of the document","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000321","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","author list","","","DUO","","IAO:0000321","IAO_0000321","","author list","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000322","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000322"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000322""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that has parts that are institution identifications associated with the authors of the document"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institution list"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The University of Colorado Denver School of Medicine and the University of Colorado Boulder."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that has parts that are institution identifications associated with the authors of the document"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institution list"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000303"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institution list"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000303"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000303"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institution list"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The University of Colorado Denver School of Medicine and the University of Colorado Boulder."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that has parts that are institution identifications associated with the authors of the document"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000322""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000303"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""institutional identification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000303""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000303","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a document that has parts that are institution identifications associated with the authors of the document","","","The University of Colorado Denver School of Medicine and the University of Colorado Boulder.","","","","institution list","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document that has parts that are institution identifications associated with the authors of the document","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000322","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","institution list","","","DUO","","IAO:0000322","IAO_0000322","","institution list","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000323","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000323"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000323""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication that is about the specific contributions of each author"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author contributions section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""LH conceived of the hypothesis, designed the study and contributed to the writing of the manuscript. KBC executed the experiments, analyzed the data, and contributed to the writing of the manuscript."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication that is about the specific contributions of each author"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author contributions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors\u0027 contribution"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors\u0027 contributions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors\u0027 roles"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contributions by the authors"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contributorship"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author contributions section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author contributions section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author contributions section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""LH conceived of the hypothesis, designed the study and contributed to the writing of the manuscript. KBC executed the experiments, analyzed the data, and contributed to the writing of the manuscript."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a publication that is about the specific contributions of each author"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author contributions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors\u0027 contribution"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors\u0027 contributions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors\u0027 roles"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contributions by the authors"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contributorship"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000323""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a publication that is about the specific contributions of each author","","","LH conceived of the hypothesis, designed the study and contributed to the writing of the manuscript. KBC executed the experiments, analyzed the data, and contributed to the writing of the manuscript.","https://github.com/information-artifact-ontology/IAO/issues/234","","","author contributions section","","","","0.0","author contributions|authors' contribution|authors' contributions|authors' roles|contributions by the authors|contributorship","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a publication that is about the specific contributions of each author","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000323","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","author contributions section","","","DUO","","IAO:0000323","IAO_0000323","","author contributions section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000324","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000324"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000324""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Part of a publication that is about the contributions of people or institutions other than the authors."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgements section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The authors wish to thank Alan Ruttenberg for his constructive comments about an earlier draft of this manuscript"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Part of a publication that is about the contributions of people or institutions other than the authors."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgements"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgment"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgments"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgements section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgements section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgements section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The authors wish to thank Alan Ruttenberg for his constructive comments about an earlier draft of this manuscript"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Part of a publication that is about the contributions of people or institutions other than the authors."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgements"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgment"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""acknowledgments"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000324""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","Part of a publication that is about the contributions of people or institutions other than the authors.","","","The authors wish to thank Alan Ruttenberg for his constructive comments about an earlier draft of this manuscript","https://github.com/information-artifact-ontology/IAO/issues/234","","","acknowledgements section","","","","0.0","acknowledgement|acknowledgements|acknowledgment|acknowledgments","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","Part of a publication that is about the contributions of people or institutions other than the authors.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000324","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","acknowledgements section","","","DUO","","IAO:0000324","IAO_0000324","","acknowledgements section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000325","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000325"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000325""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""footnote"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The referent in the text is usually indicated by a special typographic character such as * or a superscripted number, which is also used to indicate the footnote that refers to that text."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""endnote"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""footnotes"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""footnote"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000314"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""footnote"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000314"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000314"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""footnote"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The referent in the text is usually indicated by a special typographic character such as * or a superscripted number, which is also used to indicate the footnote that refers to that text."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""endnote"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""footnotes"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000325""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000314","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document.","","","The referent in the text is usually indicated by a special typographic character such as * or a superscripted number, which is also used to indicate the footnote that refers to that text.","https://github.com/information-artifact-ontology/IAO/issues/234","","","footnote","","","","0.0","endnote|footnotes","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document that is about a specific other part of the document. Usually footnotes are spatially segregated from the rest of the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000325","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","footnote","","","DUO","","IAO:0000325","IAO_0000325","","footnote","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000326","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000326"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000326""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that is segregated from the rest of the document due to its size"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary material to a document"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that is segregated from the rest of the document due to its size"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional file"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional files"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""appendix"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""electronic supplementary material"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""electronic supplementary materials"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplemental data"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplemental information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplemental material"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary data"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary files"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary material"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary materials"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supporting information"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary material to a document"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary material to a document"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary material to a document"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that is segregated from the rest of the document due to its size"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional file"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional files"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""appendix"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""electronic supplementary material"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""electronic supplementary materials"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplemental data"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplemental information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplemental material"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary data"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary files"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary material"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supplementary materials"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""supporting information"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000326""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A part of a document that is segregated from the rest of the document due to its size","","","","https://github.com/information-artifact-ontology/IAO/issues/234","","","supplementary material to a document","","","","0.0","additional file|additional files|additional information|appendix|electronic supplementary material|electronic supplementary materials|supplemental data|supplemental information|supplemental material|supplementary data|supplementary files|supplementary information|supplementary material|supplementary materials|supporting information","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document that is segregated from the rest of the document due to its size","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000326","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","supplementary material to a document","","","DUO","","IAO:0000326","IAO_0000326","","supplementary material to a document","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000327","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000327"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000327""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000306"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000306"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000306"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000306"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of contents"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of contents"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000306"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of contents"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of contents"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000327""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000306"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000306""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000306","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred).","","","","","","","table of contents","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000306|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A table that relates document parts to specific locations in a document (usually page numbers). This is also a document part (subsumption there should be inferred).","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000306","","http://purl.obolibrary.org/obo/IAO_0000327","http://purl.obolibrary.org/obo/IAO_0000306|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","table of contents","","","DUO","","IAO:0000327","IAO_0000327","","table of contents","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000328","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000328"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000328""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000306"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000306"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000306"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000306"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of figures"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of figures"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000306"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of figures"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table of figures"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000328""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000306"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000306""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000306","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred).","","","","","","","table of figures","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000306","http://purl.obolibrary.org/obo/IAO_0000306|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A table that relates figures in a document to specific locations in that document (usually page numbers). This is also a document part (subsumption there should be inferred).","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000306","","http://purl.obolibrary.org/obo/IAO_0000328","http://purl.obolibrary.org/obo/IAO_0000306|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","table of figures","","","DUO","","IAO:0000328","IAO_0000328","","table of figures","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000329","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000329"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000329""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A shorter version of a document title"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000305"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000305"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000305"",""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000305"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""running title"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A shorter version of a document title"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""running title"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000305"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""running title"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""running title"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A shorter version of a document title"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000329""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000305"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document title"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000305""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000305","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000125","A shorter version of a document title","","","","","","","running title","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000305","http://purl.obolibrary.org/obo/IAO_0000305|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A shorter version of a document title","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000305","","http://purl.obolibrary.org/obo/IAO_0000329","http://purl.obolibrary.org/obo/IAO_0000305|http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","running title","","","DUO","","IAO:0000329","IAO_0000329","","running title","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000330","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000330"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000330""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes legal restrictions on making or distributing copies of the document"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""copyright section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes legal restrictions on making or distributing copies of the document"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""copyright section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""copyright section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""copyright section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes legal restrictions on making or distributing copies of the document"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Lawrence Hunter"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000330""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Lawrence Hunter","http://purl.obolibrary.org/obo/IAO_0000120","A document part that describes legal restrictions on making or distributing copies of the document","","","This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.","","","","copyright section","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A document part that describes legal restrictions on making or distributing copies of the document","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000330","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","copyright section","","","DUO","","IAO:0000330","IAO_0000330","","copyright section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000400","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000400"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000027"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-08-18 Alan Ruttenberg - question to BFO list about whether the BFO sense of the lower dimensional regions is that they are always part of actual space (the three dimensional sort) http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""value"":""AR notes: We need to discuss whether it should include site.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000027"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000219"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000018"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#cardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000407"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000219"",""value"":""http://purl.obolibrary.org/obo/BFO_0000018"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000219"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000018"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-08-18 Alan Ruttenberg - question to BFO list about whether the BFO sense of the lower dimensional regions is that they are always part of actual space (the three dimensional sort) http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""value"":""AR notes: We need to discuss whether it should include site.""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000400""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000407"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has coordinate unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000407""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000219"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","http://purl.obolibrary.org/obo/BFO_0000018","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000027||","true","","2009-08-18 Alan Ruttenberg - question to BFO list about whether the BFO sense of the lower dimensional regions is that they are always part of actual space (the three dimensional sort) http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000120","A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude","","","","","","","","AR notes: We need to discuss whether it should include site.","","","3.0","","","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","http://groups.google.com/group/bfo-discuss/browse_thread/thread/9d04e717e39fb617","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A cartesian spatial coordinate datum is a representation of a point in a spatial region, in which equal changes in the magnitude of a coordinate value denote length qualities with the same magnitude","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000027","","http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","cartesian spatial coordinate datum","","","DUO","","IAO:0000400","IAO_0000400","","cartesian spatial coordinate datum","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000401","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000401"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000401""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000400"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000400"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000400"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000400"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one dimensional cartesian spatial coordinate datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000400"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000219"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000026"",""isObsolete"":false}]},""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#cardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000404"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one dimensional cartesian spatial coordinate datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000219"",""value"":""http://purl.obolibrary.org/obo/BFO_0000018"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000026"",""isObsolete"":false}]},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000401""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000404"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has x coordinate value"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000404""},""type"":[""dataProperty"",""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000219"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000026"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""one-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000026""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/BFO_0000018","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000400||","true","","","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000123","A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000400|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A cartesion spatial coordinate datum that uses one value to specify a position along a one dimensional spatial region","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000400","","http://purl.obolibrary.org/obo/IAO_0000401","http://purl.obolibrary.org/obo/IAO_0000400|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","one dimensional cartesian spatial coordinate datum","","","DUO","","IAO:0000401","IAO_0000401","","one dimensional cartesian spatial coordinate datum","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000402","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000402"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000402""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000400"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000400"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000400"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000400"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two dimensional cartesian spatial coordinate datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000400"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000219"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000009"",""isObsolete"":false}]},""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#cardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000404"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#cardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000406"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two dimensional cartesian spatial coordinate datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000219"",""value"":""http://purl.obolibrary.org/obo/BFO_0000018"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000009"",""isObsolete"":false}]},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000402""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""two-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000406"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has y coordinate value"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000406""},""type"":[""dataProperty"",""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000404"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has x coordinate value"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000404""},""type"":[""dataProperty"",""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000219"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/BFO_0000018","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000400|||","true","","","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000123","A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000400|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A cartesion spatial coordinate datum that uses two values to specify a position within a two dimensional spatial region","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000400","","http://purl.obolibrary.org/obo/IAO_0000402","http://purl.obolibrary.org/obo/IAO_0000400|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","two dimensional cartesian spatial coordinate datum","","","DUO","","IAO:0000402","IAO_0000402","","two dimensional cartesian spatial coordinate datum","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000403","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000403"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000403""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000400"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000400"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000400"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000400"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three dimensional cartesian spatial coordinate datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000400"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000219"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000028"",""isObsolete"":false}]},""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#cardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000404"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#cardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000405"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#cardinality"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#nonNegativeInteger"",""value"":""1""},""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000406"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three dimensional cartesian spatial coordinate datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000219"",""value"":""http://purl.obolibrary.org/obo/BFO_0000018"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000018"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000028"",""isObsolete"":false}]},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000403""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zero-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000406"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has y coordinate value"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000406""},""type"":[""dataProperty"",""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000404"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has x coordinate value"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000404""},""type"":[""dataProperty"",""property"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000405"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has z coordinate value"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000405""},""type"":[""dataProperty"",""property"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000219"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""three-dimensional spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000028""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/BFO_0000018","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000400||||","true","","","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000123","A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000400","http://purl.obolibrary.org/obo/IAO_0000400|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A cartesion spatial coordinate datum that uses three values to specify a position within a three dimensional spatial region","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000400","","http://purl.obolibrary.org/obo/IAO_0000403","http://purl.obolibrary.org/obo/IAO_0000400|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","three dimensional cartesian spatial coordinate datum","","","DUO","","IAO:0000403","IAO_0000403","","three dimensional cartesian spatial coordinate datum","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000408","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000408"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000408""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measurement of length quality"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000032"",""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000032"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000032"",""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000032"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measurement of length quality"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""length measurement datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000032"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000039"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UO_0000001"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000221"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0000122"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""length measurement datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/IAO_0000039"",""value"":""http://purl.obolibrary.org/obo/UO_0000001"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000039"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UO_0000001"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/IAO_0000221"",""value"":""http://purl.obolibrary.org/obo/PATO_0000122"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000221"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0000122"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measurement of length quality"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000408""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000032"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scalar measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000032""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""length""},""curie"":{""type"":[""literal""],""value"":""PATO:0000122""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000039""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""length unit""},""curie"":{""type"":[""literal""],""value"":""UO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000221"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measurement of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000221""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UO_0000001|http://purl.obolibrary.org/obo/PATO_0000122","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000032||","true","","","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000123","A scalar measurement datum that is the result of measurement of length quality","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000032|http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A scalar measurement datum that is the result of measurement of length quality","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000032","","http://purl.obolibrary.org/obo/IAO_0000408","http://purl.obolibrary.org/obo/IAO_0000032|http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","length measurement datum","","","DUO","","IAO:0000408","IAO_0000408","","length measurement datum","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000409","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000409"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000409""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A denotator type indicates how a term should be interpreted from an ontological perspective."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000102"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hasIndividuals"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000102"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotator type"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are \""natural kinds\"" and the latter arbitrary collections of entities."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A denotator type indicates how a term should be interpreted from an ontological perspective."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Barry Smith, Werner Ceusters"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotator type"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000102"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#oneOf"":[""http://purl.obolibrary.org/obo/IAO_0000410"",""http://purl.obolibrary.org/obo/IAO_0000420"",""http://purl.obolibrary.org/obo/IAO_0000421""]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotator type"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotator type"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are \""natural kinds\"" and the latter arbitrary collections of entities."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A denotator type indicates how a term should be interpreted from an ontological perspective."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Barry Smith, Werner Ceusters"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000409""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000410"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""universal"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000410""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000420"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined class"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000420""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000421"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""named class expression"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000421""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000102","true","","","Alan Ruttenberg","","A denotator type indicates how a term should be interpreted from an ontological perspective.","","","The Basic Formal Ontology ontology makes a distinction between Universals and defined classes, where the formal are ""natural kinds"" and the latter arbitrary collections of entities.","","","","denotator type","","","","3.0","","Barry Smith, Werner Ceusters","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A denotator type indicates how a term should be interpreted from an ontological perspective.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000102","","http://purl.obolibrary.org/obo/IAO_0000409","http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","denotator type","true","","DUO","","IAO:0000409","IAO_0000409","","denotator type","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000414","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000414"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000414""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measurement of mass quality"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000032"",""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000032"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000032"",""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000032"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measurement of mass quality"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/09/28 Alan Ruttenberg. Fucoidan-use-case"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""mass measurement datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000032"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/UO_0000002"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000039"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0000125"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000221"",""isObsolete"":false}]}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""mass measurement datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measurement of mass quality"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/09/28 Alan Ruttenberg. Fucoidan-use-case"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000414""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""mass""},""curie"":{""type"":[""literal""],""value"":""PATO:0000125""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000032"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scalar measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000032""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000039""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""mass unit""},""curie"":{""type"":[""literal""],""value"":""UO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000221"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measurement of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000221""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000032|","true","","2009/09/28 Alan Ruttenberg. Fucoidan-use-case","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000123","A scalar measurement datum that is the result of measurement of mass quality","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000032|http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A scalar measurement datum that is the result of measurement of mass quality","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000032","","http://purl.obolibrary.org/obo/IAO_0000414","http://purl.obolibrary.org/obo/IAO_0000032|http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","mass measurement datum","","","DUO","","IAO:0000414","IAO_0000414","","mass measurement datum","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000415","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000415"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000415""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses an assertion that is intended to be tested."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""hypothesis textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\u0027, by Lowenthal et. al.PMID:19696660"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses an assertion that is intended to be tested."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/09/28 Alan Ruttenberg. Fucoidan-use-case"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""hypothesis textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""hypothesis textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""hypothesis textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper \u0027Pilot clinical study to evaluate the anticoagulant activity of fucoidan\u0027, by Lowenthal et. al.PMID:19696660"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses an assertion that is intended to be tested."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/09/28 Alan Ruttenberg. Fucoidan-use-case"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000415""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""PMID:19696660"":{""url"":""http://www.ncbi.nlm.nih.gov/pubmed/19696660"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""PMID:19696660""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","2009/09/28 Alan Ruttenberg. Fucoidan-use-case","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000120","A textual entity that expresses an assertion that is intended to be tested.","","","that fucoidan has a small statistically significant effect on AT3 level but no useful clinical effect as in-vivo anticoagulant, a paraphrase of part of the last paragraph of the discussion section of the paper 'Pilot clinical study to evaluate the anticoagulant activity of fucoidan', by Lowenthal et. al.PMID:19696660","","","","hypothesis textual entity","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity that expresses an assertion that is intended to be tested.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000415","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","hypothesis textual entity","","","DUO","","IAO:0000415","IAO_0000415","","hypothesis textual entity","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000416","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000416"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000416""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measuring a temporal interval"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000032"",""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000032"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000032"",""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000032"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measuring a temporal interval"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/09/28 Alan Ruttenberg. Fucoidan-use-case"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time measurement datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000032"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/UO_0000003"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000039"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#allValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000413"",""isObsolete"":false}]}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time measurement datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A scalar measurement datum that is the result of measuring a temporal interval"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/09/28 Alan Ruttenberg. Fucoidan-use-case"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000416""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000032"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scalar measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000032""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000039""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/UO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""time unit""},""curie"":{""type"":[""literal""],""value"":""UO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000413"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is duration of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000413""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000032|","true","","2009/09/28 Alan Ruttenberg. Fucoidan-use-case","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000123","A scalar measurement datum that is the result of measuring a temporal interval","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000032","http://purl.obolibrary.org/obo/IAO_0000032|http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A scalar measurement datum that is the result of measuring a temporal interval","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000032","","http://purl.obolibrary.org/obo/IAO_0000416","http://purl.obolibrary.org/obo/IAO_0000032|http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","time measurement datum","","","DUO","","IAO:0000416","IAO_0000416","","time measurement datum","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000422","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000422"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000422""},""definition"":{""type"":[""literal""],""value"":""A textual entity that is used as directive to deliver something to a person, or organization""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A textual entity that is used as directive to deliver something to a person, or organization""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""2010-05-24 Alan Ruttenberg. Use label for the string representation. See issue https://github.com/information-artifact-ontology/IAO/issues/59""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""postal address"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""postal address"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A textual entity that is used as directive to deliver something to a person, or organization""},{""type"":[""literal""],""value"":""2010-05-24 Alan Ruttenberg. Use label for the string representation. See issue https://github.com/information-artifact-ontology/IAO/issues/59""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000422""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","2010-05-24 Alan Ruttenberg. Use label for the string representation. See issue https://github.com/information-artifact-ontology/IAO/issues/59","","http://purl.obolibrary.org/obo/IAO_0000123","A textual entity that is used as directive to deliver something to a person, or organization","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity that is used as directive to deliver something to a person, or organization","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000422","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","postal address","","","DUO","","IAO:0000422","IAO_0000422","","postal address","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000429","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000429"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000429""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""email address"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg 1/3/2012 - Provisional id, see issue at https://github.com/information-artifact-ontology/IAO/issues/130\u0026thanks\u003d130\u0026ts\u003d1325636583"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Chris Stoeckart"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""email address"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""email address"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""email address"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg 1/3/2012 - Provisional id, see issue at https://github.com/information-artifact-ontology/IAO/issues/130\u0026thanks\u003d130\u0026ts\u003d1325636583"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Chris Stoeckart"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000429""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000030","true","","Alan Ruttenberg 1/3/2012 - Provisional id, see issue at https://github.com/information-artifact-ontology/IAO/issues/130&thanks=130&ts=1325636583","Person:Alan Ruttenberg|Person:Chris Stoeckart","http://purl.obolibrary.org/obo/IAO_0000123","","","","","","","","email address","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0000429","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","email address","","","DUO","","IAO:0000429","IAO_0000429","","email address","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000442","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000442"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000442""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000023"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000023"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000023"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000023"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author role"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author role"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000023"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author role"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author role"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000442""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000023""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000023","true","","","PERSON: Alan Ruttenberg|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000125","A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name.","","","","","","","author role","","","","0.0","","","http://purl.obolibrary.org/obo/BFO_0000023","http://purl.obolibrary.org/obo/BFO_0000023|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A role inhering in a person or organization that is realized when the bearer participates in the work which is the basis of the document, in the writing of the document, and signs it with their name.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000023","","http://purl.obolibrary.org/obo/IAO_0000442","http://purl.obolibrary.org/obo/BFO_0000023|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","author role","","","DUO","","IAO:0000442","IAO_0000442","","author role","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000443","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000443"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000443""},""definition"":{""type"":[""literal""],""value"":""A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""value"":""Person:Alan Ruttenberg""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""data item extraction from journal article""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/OBI_0000011"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000013"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000027"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""data item extraction from journal article""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000013"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000013"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000027"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000027"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing""},{""type"":[""literal""],""value"":""Person:Alan Ruttenberg""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000443""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000013"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""journal article"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000013""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000013|http://purl.obolibrary.org/obo/IAO_0000027","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011||","true","","","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000120","A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A planned process in which journal articles are read or processed and data items are extracted, typically for further analysis or indexing","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/IAO_0000443","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","data item extraction from journal article","","","DUO","","IAO:0000443","IAO_0000443","","data item extraction from journal article","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000444","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000444"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000444""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""https://en.wikipedia.org/wiki/Publishing""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/232"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""VEuPathDB"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publishing process"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000011"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publishing process"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/OBI_0000312"",""value"":""http://purl.obolibrary.org/obo/IAO_0000013"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000312"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000444"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng"",""lang"":""en""},{""type"":[""literal""],""value"":""https://en.wikipedia.org/wiki/Publishing""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""VEuPathDB"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000444""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000312"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000312""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000013"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""journal article"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000013""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011","true","","","Person: Jie Zheng","http://purl.obolibrary.org/obo/IAO_0000120","A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free.","","","","https://github.com/information-artifact-ontology/IAO/issues/232","VEuPathDB","","","","","http://purl.obolibrary.org/obo/IAO_0000013","0.0","","https://en.wikipedia.org/wiki/Publishing","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/IAO_0000444","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","publishing process","","","DUO","","IAO:0000444","IAO_0000444","","publishing process","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000445","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000445"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000445""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that is in preparation for submission to be published."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000310"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000310"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that is in preparation for submission to be published."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jie Zheng"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""EFO_0001795 in preparation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/232"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""VEuPathDB"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document in preparation for publication"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000310"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document in preparation for publication"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document that is in preparation for submission to be published."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jie Zheng"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""EFO_0001795 in preparation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""VEuPathDB"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000445""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000310","true","","","PERSON: Jie Zheng","http://purl.obolibrary.org/obo/IAO_0000120","A document that is in preparation for submission to be published.","","","","https://github.com/information-artifact-ontology/IAO/issues/232","VEuPathDB","","","","","","0.0","","EFO_0001795 in preparation","http://purl.obolibrary.org/obo/IAO_0000310","http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A document that is in preparation for submission to be published.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000310","","http://purl.obolibrary.org/obo/IAO_0000445","http://purl.obolibrary.org/obo/IAO_0000310|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","document in preparation for publication","","","DUO","","IAO:0000445","IAO_0000445","","document in preparation for publication","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000572","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000572"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000572""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a document is created or added to by including the specified input in it."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Recording the current temperature in a laboratory notebook. Writing a journal article. Updating a patient record in a database."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a document is created or added to by including the specified input in it."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""6/11/9: Edited at OBI workshop. We need to be able identify a child form of information artifact which corresponds to something enduring (not brain like). This used to be restricted to physical document or digital entity as the output, but that excludes e.g. an audio cassette tape"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Bjoern Peters"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""wikipedia http://en.wikipedia.org/wiki/Documenting"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""documenting"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/OBI_0000011"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""documenting"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000030"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000310"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000310"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Recording the current temperature in a laboratory notebook. Writing a journal article. Updating a patient record in a database."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a document is created or added to by including the specified input in it."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""6/11/9: Edited at OBI workshop. We need to be able identify a child form of information artifact which corresponds to something enduring (not brain like). This used to be restricted to physical document or digital entity as the output, but that excludes e.g. an audio cassette tape"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""wikipedia http://en.wikipedia.org/wiki/Documenting"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000572""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://en.wikipedia.org/wiki/Documenting"":{""url"":""http://en.wikipedia.org/wiki/Documenting"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Documenting""},""http://purl.obolibrary.org/obo/OBI_0000293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/IAO_0000310","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011||","true","","6/11/9: Edited at OBI workshop. We need to be able identify a child form of information artifact which corresponds to something enduring (not brain like). This used to be restricted to physical document or digital entity as the output, but that excludes e.g. an audio cassette tape","Bjoern Peters","http://purl.obolibrary.org/obo/IAO_0000125","A planned process in which a document is created or added to by including the specified input in it.","","","Recording the current temperature in a laboratory notebook. Writing a journal article. Updating a patient record in a database.","","","","","","","","0.0","","wikipedia http://en.wikipedia.org/wiki/Documenting","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A planned process in which a document is created or added to by including the specified input in it.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/IAO_0000572","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","documenting","","","DUO","","IAO:0000572","IAO_0000572","","documenting","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000573","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000573"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000573""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A line graph is a type of graph created by connecting a series of data\npoints together with a line."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000038"",""http://purl.obolibrary.org/obo/IAO_0000309"",""http://purl.obolibrary.org/obo/IAO_0000308"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000038"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""line graph"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A line graph is a type of graph created by connecting a series of data\npoints together with a line."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""line chart"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wikipedia.org/wiki/Line_chart"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""line graph"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000038"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""line graph"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""line graph"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A line graph is a type of graph created by connecting a series of data\npoints together with a line."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Stoeckert"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""line chart"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""WEB: http://en.wikipedia.org/wiki/Line_chart"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000573""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000309"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""diagram"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000309""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://en.wikipedia.org/wiki/Line_chart"":{""url"":""http://en.wikipedia.org/wiki/Line_chart"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Line_chart""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000038"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graph"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000038""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000038","true","","","PERSON:Chris Stoeckert|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","A line graph is a type of graph created by connecting a series of data points together with a line.","","","","","","","line graph","","","","0.0","line chart","GROUP:OBI|WEB: http://en.wikipedia.org/wiki/Line_chart","http://purl.obolibrary.org/obo/IAO_0000038","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A line graph is a type of graph created by connecting a series of data points together with a line.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000038","","http://purl.obolibrary.org/obo/IAO_0000573","http://purl.obolibrary.org/obo/IAO_0000038|http://purl.obolibrary.org/obo/IAO_0000309|http://purl.obolibrary.org/obo/IAO_0000308|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","line graph","","","DUO","","IAO:0000573","IAO_0000573","","line graph","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000574","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000574"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000574""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A new pubmed ID being created for a journal article, and the associated pubmed record containing information to the journal article. A license plate number registered at the DMV to be belonging to a specific vehicle and owner. Placing a barcode on a product and entering information in a database that this barcode is assigned."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-05-05: It is the CRID registry that assigns CRIDs, not the users of the registry."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""value"":""assigning a CRID""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""assigning a centrally registered identifier"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/OBI_0000011"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""assigning a centrally registered identifier"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000577"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000057"",""value"":""http://purl.obolibrary.org/obo/IAO_0000579"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A new pubmed ID being created for a journal article, and the associated pubmed record containing information to the journal article. A license plate number registered at the DMV to be belonging to a specific vehicle and owner. Placing a barcode on a product and entering information in a database that this barcode is assigned."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-05-05: It is the CRID registry that assigns CRIDs, not the users of the registry."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""value"":""assigning a CRID""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000574""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""IAO:0000574"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000574"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000574""},""http://purl.obolibrary.org/obo/IAO_0000579"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier registry"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000579""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000577"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000577""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000577|http://purl.obolibrary.org/obo/IAO_0000579","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011||","true","","2014-05-05: It is the CRID registry that assigns CRIDs, not the users of the registry.","Person:Alan Ruttenberg|Person:Bjoern Peters|Person:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000120","A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity","","","A new pubmed ID being created for a journal article, and the associated pubmed record containing information to the journal article. A license plate number registered at the DMV to be belonging to a specific vehicle and owner. Placing a barcode on a product and entering information in a database that this barcode is assigned.","","","","","","","","0.0","assigning a CRID","","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/IAO_0000574","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","assigning a centrally registered identifier","","","DUO","","IAO:0000574","IAO_0000574","","assigning a centrally registered identifier","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000575","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000575"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000575""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a CRID registry associates an information content entity with a CRID symbol"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""value"":""Articles in Pubmed are reviewed by curators who add MESH terms to the Pubmed records in order to categorize them better and improve the ability to search for them. ""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a CRID registry associates an information content entity with a CRID symbol"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""value"":""associating information with a CRID in the CRID registry""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""associating information with a centrally registered identifier in its registry"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/OBI_0000011"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""associating information with a centrally registered identifier in its registry"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000030"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000577"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000057"",""value"":""http://purl.obolibrary.org/obo/IAO_0000579"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Articles in Pubmed are reviewed by curators who add MESH terms to the Pubmed records in order to categorize them better and improve the ability to search for them. ""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a CRID registry associates an information content entity with a CRID symbol"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""value"":""associating information with a CRID in the CRID registry""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000575""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000579"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier registry"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000579""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000577"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000577""},""type"":[""class"",""entity""]},""IAO:0000575"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000575"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000575""},""http://purl.obolibrary.org/obo/OBI_0000293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/IAO_0000577|http://purl.obolibrary.org/obo/IAO_0000579","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011|||","true","","","PERSON:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000120","A planned process in which a CRID registry associates an information content entity with a CRID symbol","","","Articles in Pubmed are reviewed by curators who add MESH terms to the Pubmed records in order to categorize them better and improve the ability to search for them. ","","","","","","","","0.0","associating information with a CRID in the CRID registry","","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A planned process in which a CRID registry associates an information content entity with a CRID symbol","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/IAO_0000575","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","associating information with a centrally registered identifier in its registry","","","DUO","","IAO:0000575","IAO_0000575","","associating information with a centrally registered identifier in its registry","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000576","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000576"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000576""},""definition"":{""type"":[""literal""],""value"":""a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""MC, 20101124: deprecated following discussion at IAO call 20101124. Term was deemed not necessary - no use case for now.""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_establishing a CRID registry""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_establishing a CRID registry""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.""},{""type"":[""literal""],""value"":""MC, 20101124: deprecated following discussion at IAO call 20101124. Term was deemed not necessary - no use case for now.""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000576""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000576"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000576"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000576""},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","MC, 20101124: deprecated following discussion at IAO call 20101124. Term was deemed not necessary - no use case for now.","","","a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","","","","","0.0","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000576","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_establishing a CRID registry","","","DUO","","IAO:0000576","IAO_0000576","","obsolete_establishing a CRID registry","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000577","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000577"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000577""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\u0027s registry."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000578"",""http://purl.obolibrary.org/obo/IAO_0020000""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/IAO_0000028"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/IAO_0000578"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The sentence \""The article has Pubmed ID 12345.\"" contains a CRID that has two parts: one part is the CRID symbol, which is \u002712345\u0027; the other part denotes the CRID registry, which is Pubmed."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\u0027s registry."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""value"":""CRID symbol""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Original proposal from Bjoern, discussions at IAO calls"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier symbol"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000028"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000578"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier symbol"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000574"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000575"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000578"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000580"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false}],""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/IAO_0000578"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000578"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The sentence \""The article has Pubmed ID 12345.\"" contains a CRID that has two parts: one part is the CRID symbol, which is \u002712345\u0027; the other part denotes the CRID registry, which is Pubmed."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\u0027s registry."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""value"":""CRID symbol""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Original proposal from Bjoern, discussions at IAO calls"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000577""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000578"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000578""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000574"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""assigning a centrally registered identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000574""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000575"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""associating information with a centrally registered identifier in its registry"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000575""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000577"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000577"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000577""},""http://purl.obolibrary.org/obo/OBI_0000293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000580"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""looking up a centrally registered identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000580""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000028""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000578","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000028|","true","","","PERSON: Alan Ruttenberg|PERSON: Bill Hogan|PERSON: Bjoern Peters|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000120","A symbol that is part of a CRID and that is sufficient to look up a record from the CRID's registry.","","","The sentence ""The article has Pubmed ID 12345."" contains a CRID that has two parts: one part is the CRID symbol, which is '12345'; the other part denotes the CRID registry, which is Pubmed.","","","","","","","http://purl.obolibrary.org/obo/IAO_0000574|http://purl.obolibrary.org/obo/IAO_0000575|http://purl.obolibrary.org/obo/IAO_0000578|http://purl.obolibrary.org/obo/IAO_0000580","0.0","CRID symbol","Original proposal from Bjoern, discussions at IAO calls","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A symbol that is part of a CRID and that is sufficient to look up a record from the CRID's registry.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000578","","http://purl.obolibrary.org/obo/IAO_0000577","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000578|http://purl.obolibrary.org/obo/IAO_0020000","","","false","centrally registered identifier symbol","","","DUO","","IAO:0000577","IAO_0000577","","centrally registered identifier symbol","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000578","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000578"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000578""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0020000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0020000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The sentence \""The article has Pubmed ID 12345.\"" contains a CRID that has two parts: one part is the CRID symbol, which is \u002712345\u0027; the other part denotes the CRID registry, which is Pubmed."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-05-05: In defining this term we take no position on what the CRID denotes. In particular do not assume it denotes a *record* in the CRID registry (since the registry might not have \u0027records\u0027)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan, IAO call 20101124: potentially the CRID denotes the instance it was associated with during creation."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Note, IAO call 20101124: URIs are not always CRID, as not centrally registered. We acknowledge that CRID is a subset of a larger identifier class, but this subset fulfills our current needs. OBI PURLs are CRID as they are registered with OCLC. UPCs (Universal Product Codes from AC Nielsen)are not CRID as they are not centrally registered."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""value"":""CRID""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Original proposal from Bjoern, discussions at IAO calls"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0020000"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000219"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false},""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/IAO_0000577"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000578"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000577"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The sentence \""The article has Pubmed ID 12345.\"" contains a CRID that has two parts: one part is the CRID symbol, which is \u002712345\u0027; the other part denotes the CRID registry, which is Pubmed."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-05-05: In defining this term we take no position on what the CRID denotes. In particular do not assume it denotes a *record* in the CRID registry (since the registry might not have \u0027records\u0027)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan, IAO call 20101124: potentially the CRID denotes the instance it was associated with during creation."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Note, IAO call 20101124: URIs are not always CRID, as not centrally registered. We acknowledge that CRID is a subset of a larger identifier class, but this subset fulfills our current needs. OBI PURLs are CRID as they are registered with OCLC. UPCs (Universal Product Codes from AC Nielsen)are not CRID as they are not centrally registered."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""value"":""CRID""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Original proposal from Bjoern, discussions at IAO calls"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000578""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000579"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier registry"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000579""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000577"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000577""},""type"":[""class"",""entity""]},""IAO:0000578"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000578"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000578""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000219"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000577","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0020000||","true","","2014-05-05: In defining this term we take no position on what the CRID denotes. In particular do not assume it denotes a *record* in the CRID registry (since the registry might not have 'records').|Alan, IAO call 20101124: potentially the CRID denotes the instance it was associated with during creation.|Note, IAO call 20101124: URIs are not always CRID, as not centrally registered. We acknowledge that CRID is a subset of a larger identifier class, but this subset fulfills our current needs. OBI PURLs are CRID as they are registered with OCLC. UPCs (Universal Product Codes from AC Nielsen)are not CRID as they are not centrally registered.","PERSON: Alan Ruttenberg|PERSON: Bill Hogan|PERSON: Bjoern Peters|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000120","An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs.","","","The sentence ""The article has Pubmed ID 12345."" contains a CRID that has two parts: one part is the CRID symbol, which is '12345'; the other part denotes the CRID registry, which is Pubmed.","","","","","","","http://purl.obolibrary.org/obo/IAO_0000577","1.0","CRID","Original proposal from Bjoern, discussions at IAO calls","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0020000","","http://purl.obolibrary.org/obo/IAO_0000578","http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","centrally registered identifier","","","DUO","","IAO:0000578","IAO_0000578","","centrally registered identifier","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000579","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000579"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000579""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000100"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0020020""],""directParent"":[""http://purl.obolibrary.org/obo/IAO_0000100"",""http://purl.obolibrary.org/obo/IAO_0020020""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000100"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0020020""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/IAO_0000100"",""http://purl.obolibrary.org/obo/IAO_0020020""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PubMed is a CRID registry. It has a code set of PubMed identifiers associated with journal articles. "",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""value"":""CRID registry""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Original proposal from Bjoern, discussions at IAO calls"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier registry"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000100"",""http://purl.obolibrary.org/obo/IAO_0020020""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier registry"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0000057"",""value"":""http://purl.obolibrary.org/obo/IAO_0000574"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000057"",""value"":""http://purl.obolibrary.org/obo/IAO_0000575"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000057"",""value"":""http://purl.obolibrary.org/obo/IAO_0000580"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PubMed is a CRID registry. It has a code set of PubMed identifiers associated with journal articles. "",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""value"":""CRID registry""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Original proposal from Bjoern, discussions at IAO calls"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000579""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000579"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000579"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000579""},""http://purl.obolibrary.org/obo/IAO_0020020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""code set"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020020""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000574"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""assigning a centrally registered identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000574""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000575"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""associating information with a centrally registered identifier in its registry"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000575""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000580"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""looking up a centrally registered identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000580""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data set"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000100""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000100|http://purl.obolibrary.org/obo/IAO_0020020","true","","","Justin Whorton|PERSON: Alan Ruttenberg|PERSON: Bill Hogan|PERSON: Bjoern Peters|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000120","A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process.","","","PubMed is a CRID registry. It has a code set of PubMed identifiers associated with journal articles. ","https://github.com/information-artifact-ontology/IAO/issues/237","","","","","","http://purl.obolibrary.org/obo/IAO_0000574|http://purl.obolibrary.org/obo/IAO_0000575|http://purl.obolibrary.org/obo/IAO_0000580","0.0","CRID registry","Original proposal from Bjoern, discussions at IAO calls","http://purl.obolibrary.org/obo/IAO_0000100|http://purl.obolibrary.org/obo/IAO_0020020","http://purl.obolibrary.org/obo/IAO_0000100|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0020020","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000100|http://purl.obolibrary.org/obo/IAO_0020020","","http://purl.obolibrary.org/obo/IAO_0000579","http://purl.obolibrary.org/obo/IAO_0000100|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0020020","","","false","centrally registered identifier registry","","","DUO","","IAO:0000579","IAO_0000579","","centrally registered identifier registry","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000580","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000580"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000580""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""value"":""Going to the PubMed website and entering a PubMed ID in order to retrieve the Pubmed information associated with that ID. ""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""value"":""looking up a CRID""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""looking up a centrally registered identifier"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/OBI_0000011"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""looking up a centrally registered identifier"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000577"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000030"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000057"",""value"":""http://purl.obolibrary.org/obo/IAO_0000579"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Going to the PubMed website and entering a PubMed ID in order to retrieve the Pubmed information associated with that ID. ""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""value"":""looking up a CRID""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000580""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000579"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier registry"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000579""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000577"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000577""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""IAO:0000580"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000580"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000580""},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000577|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/IAO_0000579","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011|||","true","","","PERSON: Alan Ruttenberg|PERSON: Bill Hogan|PERSON: Bjoern Peters|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000120","A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol","","","Going to the PubMed website and entering a PubMed ID in order to retrieve the Pubmed information associated with that ID. ","","","","","","","","0.0","looking up a CRID","","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/IAO_0000580","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","looking up a centrally registered identifier","","","DUO","","IAO:0000580","IAO_0000580","","looking up a centrally registered identifier","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000582","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000582"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000582""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000109"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000109"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time stamped measurement datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000109"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000581"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000416"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000583"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000109"",""isObsolete"":false}]}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time stamped measurement datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000584"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000582"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000582""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000582"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000582"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000582""},""http://purl.obolibrary.org/obo/IAO_0000416"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000416""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000581"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has time stamp"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000581""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000583"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000583""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000584"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time sampled measurement data set"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000584""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000109|","true","","","","http://purl.obolibrary.org/obo/IAO_0000123","","","","","","","","","","","http://purl.obolibrary.org/obo/IAO_0000584","0.0","","","http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000109","","http://purl.obolibrary.org/obo/IAO_0000582","http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","time stamped measurement datum","","","DUO","","IAO:0000582","IAO_0000582","","time stamped measurement datum","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000584","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000584"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000584""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000100"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000100"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000100"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000100"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pmid:20604925 - time-lapse live cell microscopy"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental time series"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time sampled measurement data set"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000100"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000582"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time sampled measurement data set"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000582"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000582"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pmid:20604925 - time-lapse live cell microscopy"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental time series"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000584""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000584"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000584"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000584""},""http://purl.obolibrary.org/obo/IAO_0000582"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time stamped measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000582""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data set"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000100""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000582","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000100|","true","","","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000120","A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time.","","","pmid:20604925 - time-lapse live cell microscopy","","","","","","","","0.0","experimental time series","","http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0000100|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000100","","http://purl.obolibrary.org/obo/IAO_0000584","http://purl.obolibrary.org/obo/IAO_0000100|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","time sampled measurement data set","","","DUO","","IAO:0000584","IAO_0000584","","time sampled measurement data set","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000590","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000590"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000590""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that denotes a particular in reality."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""written name"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""\""Bill Clinton\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""\""The Eiffel Tower\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""\""United States of America\"""",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that denotes a particular in reality."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/114"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The qualifier \""written\"" is to set it apart from spoken names. Also, note the restrictions to particulars. We are not naming universals. We could however, be naming, attributive collections which are particulars, so \""All people located in the boundaries of the city of Little Rock, AR on June 18, 2011 at 9:50a CDT\"" would be a name."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""written name"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""written name"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""written name"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""\""Bill Clinton\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""\""The Eiffel Tower\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""\""United States of America\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that denotes a particular in reality."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/114"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The qualifier \""written\"" is to set it apart from spoken names. Also, note the restrictions to particulars. We are not naming universals. We could however, be naming, attributive collections which are particulars, so \""All people located in the boundaries of the city of Little Rock, AR on June 18, 2011 at 9:50a CDT\"" would be a name."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000590""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000590"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000590"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000590""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Hogan","http://purl.obolibrary.org/obo/IAO_0000125","A textual entity that denotes a particular in reality.","","","""Bill Clinton""|""The Eiffel Tower""|""United States of America""","","","","written name","The qualifier ""written"" is to set it apart from spoken names. Also, note the restrictions to particulars. We are not naming universals. We could however, be naming, attributive collections which are particulars, so ""All people located in the boundaries of the city of Little Rock, AR on June 18, 2011 at 9:50a CDT"" would be a name.","","","1.0","","https://github.com/information-artifact-ontology/IAO/issues/114","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A textual entity that denotes a particular in reality.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000590","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","written name","","","DUO","","IAO:0000590","IAO_0000590","","written name","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000591","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000591"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000591""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software method"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000010"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software method"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000591""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000591"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000591"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000591""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000010","true","","","PERSON: Melanie Courtot|PERSON: Michel Dumontier","http://purl.obolibrary.org/obo/IAO_0000123","A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task.","","","","","","","","","","","0.0","","https://github.com/information-artifact-ontology/IAO/issues/80","http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000010","","http://purl.obolibrary.org/obo/IAO_0000591","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","software method","","","DUO","","IAO:0000591","IAO_0000591","","software method","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000592","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000592"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000592""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software module is software composed of a collection of software methods."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software module is software composed of a collection of software methods."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanei Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000010"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software module is software composed of a collection of software methods."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanei Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000592""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000592"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000592"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000592""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000010","true","","","PERSON: Melanei Courtot|PERSON: Michel Dumontier","http://purl.obolibrary.org/obo/IAO_0000123","A software module is software composed of a collection of software methods.","","","","","","","","","","","0.0","","https://github.com/information-artifact-ontology/IAO/issues/80","http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A software module is software composed of a collection of software methods.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000010","","http://purl.obolibrary.org/obo/IAO_0000592","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","software module","","","DUO","","IAO:0000592","IAO_0000592","","software module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000593","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000593"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000593""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software library"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000010"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software library"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000593""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000593"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000593"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000593""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000010","true","","","PERSON: Melanie Courtot|PERSON: Michel Dumontier","http://purl.obolibrary.org/obo/IAO_0000123","A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application.","","","","","","","","","","","0.0","","https://github.com/information-artifact-ontology/IAO/issues/80","http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000010","","http://purl.obolibrary.org/obo/IAO_0000593","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","software library","","","DUO","","IAO:0000593","IAO_0000593","","software library","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000594","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000594"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000594""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software application is software that can be directly executed by some processing unit."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software application is software that can be directly executed by some processing unit."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software application"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000010"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software application"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software application is software that can be directly executed by some processing unit."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000594""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000594"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000594"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000594""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000010","true","","","PERSON: Melanie Courtot|PERSON: Michel Dumontier","http://purl.obolibrary.org/obo/IAO_0000123","A software application is software that can be directly executed by some processing unit.","","","","","","","","","","","0.0","","https://github.com/information-artifact-ontology/IAO/issues/80","http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A software application is software that can be directly executed by some processing unit.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000010","","http://purl.obolibrary.org/obo/IAO_0000594","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","software application","","","DUO","","IAO:0000594","IAO_0000594","","software application","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000595","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000595"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000595""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software script is software whose instructions can be executed using a software interpreter."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software script is software whose instructions can be executed using a software interpreter."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software script"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000010"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software script"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software script is software whose instructions can be executed using a software interpreter."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000595""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000595"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000595"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000595""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000010","true","","","PERSON: Melanie Courtot|PERSON: Michel Dumontier","http://purl.obolibrary.org/obo/IAO_0000123","A software script is software whose instructions can be executed using a software interpreter.","","","","","","","","","","","0.0","","https://github.com/information-artifact-ontology/IAO/issues/80","http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A software script is software whose instructions can be executed using a software interpreter.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000010","","http://purl.obolibrary.org/obo/IAO_0000595","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","software script","","","DUO","","IAO:0000595","IAO_0000595","","software script","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000605","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000605"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000605""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity listing abbreviations and their expansions that are used in a document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\n\nBAC: Bacterial artificial chromosome; CR: Calretinin; GFAP: Glial fibrillary acidic protein; MAP: Microtubule-associated protein; MRI: Magnetic resonance imaging; NSC: Neural stem cell; PDA: Patent ductus arteriosus; PMG: Polymicrogyria; PNH: Periventricular nodular heterotopia; VSD: Ventricular septal defect."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity listing abbreviations and their expansions that are used in a document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000606"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000605"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\n\nBAC: Bacterial artificial chromosome; CR: Calretinin; GFAP: Glial fibrillary acidic protein; MAP: Microtubule-associated protein; MRI: Magnetic resonance imaging; NSC: Neural stem cell; PDA: Patent ductus arteriosus; PMG: Polymicrogyria; PNH: Periventricular nodular heterotopia; VSD: Ventricular septal defect."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity listing abbreviations and their expansions that are used in a document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000605""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000605"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000605"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000605""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000606"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000606""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity listing abbreviations and their expansions that are used in a document.","","","From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/): +"duo+class+http://purl.obolibrary.org/obo/IAO_0000574","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000574"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000574""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A new pubmed ID being created for a journal article, and the associated pubmed record containing information to the journal article. A license plate number registered at the DMV to be belonging to a specific vehicle and owner. Placing a barcode on a product and entering information in a database that this barcode is assigned."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-05-05: It is the CRID registry that assigns CRIDs, not the users of the registry."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""value"":""assigning a CRID""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""assigning a centrally registered identifier"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/OBI_0000011"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""assigning a centrally registered identifier"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000577"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000057"",""value"":""http://purl.obolibrary.org/obo/IAO_0000579"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A new pubmed ID being created for a journal article, and the associated pubmed record containing information to the journal article. A license plate number registered at the DMV to be belonging to a specific vehicle and owner. Placing a barcode on a product and entering information in a database that this barcode is assigned."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-05-05: It is the CRID registry that assigns CRIDs, not the users of the registry."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""value"":""assigning a CRID""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000574""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000579"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier registry"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000579""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000577"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000577""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000577|http://purl.obolibrary.org/obo/IAO_0000579","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011||","true","","2014-05-05: It is the CRID registry that assigns CRIDs, not the users of the registry.","Person:Alan Ruttenberg|Person:Bjoern Peters|Person:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000120","A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity","","","A new pubmed ID being created for a journal article, and the associated pubmed record containing information to the journal article. A license plate number registered at the DMV to be belonging to a specific vehicle and owner. Placing a barcode on a product and entering information in a database that this barcode is assigned.","","","","","","","","0.0","assigning a CRID","","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A planned process in which a new CRID is created, associated with an entity, and stored in the CRID registry thereby registering it as being associated with some entity","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/IAO_0000574","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","assigning a centrally registered identifier","","","DUO","","IAO:0000574","IAO_0000574","","assigning a centrally registered identifier","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000575","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000575"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000575""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a CRID registry associates an information content entity with a CRID symbol"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""value"":""Articles in Pubmed are reviewed by curators who add MESH terms to the Pubmed records in order to categorize them better and improve the ability to search for them. ""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a CRID registry associates an information content entity with a CRID symbol"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""value"":""associating information with a CRID in the CRID registry""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""associating information with a centrally registered identifier in its registry"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/OBI_0000011"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""associating information with a centrally registered identifier in its registry"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000030"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000577"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000057"",""value"":""http://purl.obolibrary.org/obo/IAO_0000579"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Articles in Pubmed are reviewed by curators who add MESH terms to the Pubmed records in order to categorize them better and improve the ability to search for them. ""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a CRID registry associates an information content entity with a CRID symbol"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""value"":""associating information with a CRID in the CRID registry""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000575""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000579"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier registry"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000579""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000577"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000577""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/IAO_0000577|http://purl.obolibrary.org/obo/IAO_0000579","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011|||","true","","","PERSON:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000120","A planned process in which a CRID registry associates an information content entity with a CRID symbol","","","Articles in Pubmed are reviewed by curators who add MESH terms to the Pubmed records in order to categorize them better and improve the ability to search for them. ","","","","","","","","0.0","associating information with a CRID in the CRID registry","","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A planned process in which a CRID registry associates an information content entity with a CRID symbol","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/IAO_0000575","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","associating information with a centrally registered identifier in its registry","","","DUO","","IAO:0000575","IAO_0000575","","associating information with a centrally registered identifier in its registry","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000576","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000576"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000576""},""definition"":{""type"":[""literal""],""value"":""a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""MC, 20101124: deprecated following discussion at IAO call 20101124. Term was deemed not necessary - no use case for now.""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_establishing a CRID registry""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":false,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_establishing a CRID registry""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.""},{""type"":[""literal""],""value"":""MC, 20101124: deprecated following discussion at IAO call 20101124. Term was deemed not necessary - no use case for now.""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000576""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","true","","MC, 20101124: deprecated following discussion at IAO call 20101124. Term was deemed not necessary - no use case for now.","","","a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","","","","","0.0","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","a planned process with the objective to establish a system that allows to refer to specific entities of a certain kind and store information about them, by establishing a CRID registry and plan specifications for the process of 1) assigning a CRID and 2) looking up a CRID.","http://purl.obolibrary.org/obo/duo.owl","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","http://purl.obolibrary.org/obo/IAO_0000576","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","true","true","obsolete_establishing a CRID registry","","","DUO","","IAO:0000576","IAO_0000576","","obsolete_establishing a CRID registry","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000577","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000577"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000577""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\u0027s registry."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000028"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000028"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000578"",""http://purl.obolibrary.org/obo/IAO_0020000""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/IAO_0000028"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/IAO_0000578"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The sentence \""The article has Pubmed ID 12345.\"" contains a CRID that has two parts: one part is the CRID symbol, which is \u002712345\u0027; the other part denotes the CRID registry, which is Pubmed."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\u0027s registry."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""value"":""CRID symbol""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Original proposal from Bjoern, discussions at IAO calls"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier symbol"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000028"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000578"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier symbol"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000574"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000575"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000578"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000580"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false}],""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/IAO_0000578"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000578"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The sentence \""The article has Pubmed ID 12345.\"" contains a CRID that has two parts: one part is the CRID symbol, which is \u002712345\u0027; the other part denotes the CRID registry, which is Pubmed."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A symbol that is part of a CRID and that is sufficient to look up a record from the CRID\u0027s registry."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""value"":""CRID symbol""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Original proposal from Bjoern, discussions at IAO calls"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000577""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000578"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000578""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000574"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""assigning a centrally registered identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000574""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000575"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""associating information with a centrally registered identifier in its registry"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000575""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000580"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""looking up a centrally registered identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000580""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000028"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000028""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000578","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000028|","true","","","PERSON: Alan Ruttenberg|PERSON: Bill Hogan|PERSON: Bjoern Peters|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000120","A symbol that is part of a CRID and that is sufficient to look up a record from the CRID's registry.","","","The sentence ""The article has Pubmed ID 12345."" contains a CRID that has two parts: one part is the CRID symbol, which is '12345'; the other part denotes the CRID registry, which is Pubmed.","","","","","","","http://purl.obolibrary.org/obo/IAO_0000574|http://purl.obolibrary.org/obo/IAO_0000575|http://purl.obolibrary.org/obo/IAO_0000578|http://purl.obolibrary.org/obo/IAO_0000580","0.0","CRID symbol","Original proposal from Bjoern, discussions at IAO calls","http://purl.obolibrary.org/obo/IAO_0000028","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A symbol that is part of a CRID and that is sufficient to look up a record from the CRID's registry.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000578","","http://purl.obolibrary.org/obo/IAO_0000577","http://purl.obolibrary.org/obo/IAO_0000028|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000578|http://purl.obolibrary.org/obo/IAO_0020000","","","false","centrally registered identifier symbol","","","DUO","","IAO:0000577","IAO_0000577","","centrally registered identifier symbol","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000578","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000578"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000578""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0020000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0020000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The sentence \""The article has Pubmed ID 12345.\"" contains a CRID that has two parts: one part is the CRID symbol, which is \u002712345\u0027; the other part denotes the CRID registry, which is Pubmed."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-05-05: In defining this term we take no position on what the CRID denotes. In particular do not assume it denotes a *record* in the CRID registry (since the registry might not have \u0027records\u0027)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan, IAO call 20101124: potentially the CRID denotes the instance it was associated with during creation."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Note, IAO call 20101124: URIs are not always CRID, as not centrally registered. We acknowledge that CRID is a subset of a larger identifier class, but this subset fulfills our current needs. OBI PURLs are CRID as they are registered with OCLC. UPCs (Universal Product Codes from AC Nielsen)are not CRID as they are not centrally registered."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""value"":""CRID""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Original proposal from Bjoern, discussions at IAO calls"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0020000"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000219"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false},""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/IAO_0000577"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000578"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000577"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The sentence \""The article has Pubmed ID 12345.\"" contains a CRID that has two parts: one part is the CRID symbol, which is \u002712345\u0027; the other part denotes the CRID registry, which is Pubmed."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2014-05-05: In defining this term we take no position on what the CRID denotes. In particular do not assume it denotes a *record* in the CRID registry (since the registry might not have \u0027records\u0027)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan, IAO call 20101124: potentially the CRID denotes the instance it was associated with during creation."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Note, IAO call 20101124: URIs are not always CRID, as not centrally registered. We acknowledge that CRID is a subset of a larger identifier class, but this subset fulfills our current needs. OBI PURLs are CRID as they are registered with OCLC. UPCs (Universal Product Codes from AC Nielsen)are not CRID as they are not centrally registered."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""value"":""CRID""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Original proposal from Bjoern, discussions at IAO calls"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000578""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000579"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier registry"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000579""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000577"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000577""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000219"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000577","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0020000||","true","","2014-05-05: In defining this term we take no position on what the CRID denotes. In particular do not assume it denotes a *record* in the CRID registry (since the registry might not have 'records').|Alan, IAO call 20101124: potentially the CRID denotes the instance it was associated with during creation.|Note, IAO call 20101124: URIs are not always CRID, as not centrally registered. We acknowledge that CRID is a subset of a larger identifier class, but this subset fulfills our current needs. OBI PURLs are CRID as they are registered with OCLC. UPCs (Universal Product Codes from AC Nielsen)are not CRID as they are not centrally registered.","PERSON: Alan Ruttenberg|PERSON: Bill Hogan|PERSON: Bjoern Peters|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000120","An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs.","","","The sentence ""The article has Pubmed ID 12345."" contains a CRID that has two parts: one part is the CRID symbol, which is '12345'; the other part denotes the CRID registry, which is Pubmed.","","","","","","","http://purl.obolibrary.org/obo/IAO_0000577","1.0","CRID","Original proposal from Bjoern, discussions at IAO calls","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An information content entity that consists of a CRID symbol and additional information about the CRID registry to which it belongs.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0020000","","http://purl.obolibrary.org/obo/IAO_0000578","http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","centrally registered identifier","","","DUO","","IAO:0000578","IAO_0000578","","centrally registered identifier","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000579","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000579"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000579""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000100"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0020020""],""directParent"":[""http://purl.obolibrary.org/obo/IAO_0000100"",""http://purl.obolibrary.org/obo/IAO_0020020""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000100"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0020020""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/IAO_0000100"",""http://purl.obolibrary.org/obo/IAO_0020020""],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PubMed is a CRID registry. It has a code set of PubMed identifiers associated with journal articles. "",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""value"":""CRID registry""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Original proposal from Bjoern, discussions at IAO calls"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier registry"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000100"",""http://purl.obolibrary.org/obo/IAO_0020020""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier registry"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/RO_0000057"",""value"":""http://purl.obolibrary.org/obo/IAO_0000574"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000057"",""value"":""http://purl.obolibrary.org/obo/IAO_0000575"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000057"",""value"":""http://purl.obolibrary.org/obo/IAO_0000580"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PubMed is a CRID registry. It has a code set of PubMed identifiers associated with journal articles. "",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""value"":""CRID registry""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Original proposal from Bjoern, discussions at IAO calls"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000579""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""code set"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020020""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000574"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""assigning a centrally registered identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000574""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000575"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""associating information with a centrally registered identifier in its registry"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000575""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000580"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""looking up a centrally registered identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000580""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data set"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000100""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000100|http://purl.obolibrary.org/obo/IAO_0020020","true","","","Justin Whorton|PERSON: Alan Ruttenberg|PERSON: Bill Hogan|PERSON: Bjoern Peters|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000120","A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process.","","","PubMed is a CRID registry. It has a code set of PubMed identifiers associated with journal articles. ","https://github.com/information-artifact-ontology/IAO/issues/237","","","","","","http://purl.obolibrary.org/obo/IAO_0000574|http://purl.obolibrary.org/obo/IAO_0000575|http://purl.obolibrary.org/obo/IAO_0000580","0.0","CRID registry","Original proposal from Bjoern, discussions at IAO calls","http://purl.obolibrary.org/obo/IAO_0000100|http://purl.obolibrary.org/obo/IAO_0020020","http://purl.obolibrary.org/obo/IAO_0000100|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0020020","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A code set of CRID records, each consisting of a CRID symbol and additional information which was recorded in the code set through an assigning a centrally registered identifier process.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000100|http://purl.obolibrary.org/obo/IAO_0020020","","http://purl.obolibrary.org/obo/IAO_0000579","http://purl.obolibrary.org/obo/IAO_0000100|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0020020","","","false","centrally registered identifier registry","","","DUO","","IAO:0000579","IAO_0000579","","centrally registered identifier registry","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000580","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000580"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000580""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""value"":""Going to the PubMed website and entering a PubMed ID in order to retrieve the Pubmed information associated with that ID. ""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""value"":""looking up a CRID""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""looking up a centrally registered identifier"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/OBI_0000011"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""looking up a centrally registered identifier"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000577"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000577"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000030"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/RO_0000057"",""value"":""http://purl.obolibrary.org/obo/IAO_0000579"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000579"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""Going to the PubMed website and entering a PubMed ID in order to retrieve the Pubmed information associated with that ID. ""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""value"":""looking up a CRID""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000580""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000579"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier registry"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000579""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000577"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier symbol"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000577""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000577|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/IAO_0000579","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011|||","true","","","PERSON: Alan Ruttenberg|PERSON: Bill Hogan|PERSON: Bjoern Peters|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000120","A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol","","","Going to the PubMed website and entering a PubMed ID in order to retrieve the Pubmed information associated with that ID. ","","","","","","","","0.0","looking up a CRID","","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A planned process in which a request to a CRID registry is made to return the information associated with a CRID symbol","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/IAO_0000580","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","looking up a centrally registered identifier","","","DUO","","IAO:0000580","IAO_0000580","","looking up a centrally registered identifier","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000582","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000582"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000582""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000109"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000109"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000109"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time stamped measurement datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000109"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000581"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000416"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000583"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000109"",""isObsolete"":false}]}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time stamped measurement datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000584"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000582"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000582""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000416"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000416""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000581"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has time stamp"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000581""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000583"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000583""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000584"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time sampled measurement data set"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000584""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000109|","true","","","","http://purl.obolibrary.org/obo/IAO_0000123","","","","","","","","","","","http://purl.obolibrary.org/obo/IAO_0000584","0.0","","","http://purl.obolibrary.org/obo/IAO_0000109","http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000109","","http://purl.obolibrary.org/obo/IAO_0000582","http://purl.obolibrary.org/obo/IAO_0000109|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","time stamped measurement datum","","","DUO","","IAO:0000582","IAO_0000582","","time stamped measurement datum","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000584","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000584"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000584""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000100"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000100"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000100"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000100"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pmid:20604925 - time-lapse live cell microscopy"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental time series"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time sampled measurement data set"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000100"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000582"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time sampled measurement data set"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000582"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000582"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pmid:20604925 - time-lapse live cell microscopy"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""experimental time series"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000584""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000582"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time stamped measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000582""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data set"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000100""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000582","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000100|","true","","","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000120","A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time.","","","pmid:20604925 - time-lapse live cell microscopy","","","","","","","","0.0","experimental time series","","http://purl.obolibrary.org/obo/IAO_0000100","http://purl.obolibrary.org/obo/IAO_0000100|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A data set that is an aggregate of data recording some measurement at a number of time points. The time series data set is an ordered list of pairs of time measurement data and the corresponding measurement data acquired at that time.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000100","","http://purl.obolibrary.org/obo/IAO_0000584","http://purl.obolibrary.org/obo/IAO_0000100|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","time sampled measurement data set","","","DUO","","IAO:0000584","IAO_0000584","","time sampled measurement data set","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000590","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000590"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000590""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that denotes a particular in reality."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""written name"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""\""Bill Clinton\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""\""The Eiffel Tower\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""\""United States of America\"""",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that denotes a particular in reality."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/114"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The qualifier \""written\"" is to set it apart from spoken names. Also, note the restrictions to particulars. We are not naming universals. We could however, be naming, attributive collections which are particulars, so \""All people located in the boundaries of the city of Little Rock, AR on June 18, 2011 at 9:50a CDT\"" would be a name."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""written name"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""written name"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""written name"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""\""Bill Clinton\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""\""The Eiffel Tower\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""\""United States of America\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that denotes a particular in reality."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Hogan"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/114"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The qualifier \""written\"" is to set it apart from spoken names. Also, note the restrictions to particulars. We are not naming universals. We could however, be naming, attributive collections which are particulars, so \""All people located in the boundaries of the city of Little Rock, AR on June 18, 2011 at 9:50a CDT\"" would be a name."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000590""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Hogan","http://purl.obolibrary.org/obo/IAO_0000125","A textual entity that denotes a particular in reality.","","","""Bill Clinton""|""The Eiffel Tower""|""United States of America""","","","","written name","The qualifier ""written"" is to set it apart from spoken names. Also, note the restrictions to particulars. We are not naming universals. We could however, be naming, attributive collections which are particulars, so ""All people located in the boundaries of the city of Little Rock, AR on June 18, 2011 at 9:50a CDT"" would be a name.","","","1.0","","https://github.com/information-artifact-ontology/IAO/issues/114","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A textual entity that denotes a particular in reality.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000590","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","written name","","","DUO","","IAO:0000590","IAO_0000590","","written name","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000591","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000591"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000591""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software method"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000010"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software method"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000591""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000010","true","","","PERSON: Melanie Courtot|PERSON: Michel Dumontier","http://purl.obolibrary.org/obo/IAO_0000123","A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task.","","","","","","","","","","","0.0","","https://github.com/information-artifact-ontology/IAO/issues/80","http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A software method (also called subroutine, subprogram, procedure, method, function, or routine) is software designed to execute a specific task.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000010","","http://purl.obolibrary.org/obo/IAO_0000591","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","software method","","","DUO","","IAO:0000591","IAO_0000591","","software method","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000592","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000592"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000592""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software module is software composed of a collection of software methods."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software module is software composed of a collection of software methods."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanei Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000010"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software module is software composed of a collection of software methods."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanei Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000592""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000010","true","","","PERSON: Melanei Courtot|PERSON: Michel Dumontier","http://purl.obolibrary.org/obo/IAO_0000123","A software module is software composed of a collection of software methods.","","","","","","","","","","","0.0","","https://github.com/information-artifact-ontology/IAO/issues/80","http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A software module is software composed of a collection of software methods.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000010","","http://purl.obolibrary.org/obo/IAO_0000592","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","software module","","","DUO","","IAO:0000592","IAO_0000592","","software module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000593","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000593"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000593""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software library"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000010"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software library"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000593""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000010","true","","","PERSON: Melanie Courtot|PERSON: Michel Dumontier","http://purl.obolibrary.org/obo/IAO_0000123","A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application.","","","","","","","","","","","0.0","","https://github.com/information-artifact-ontology/IAO/issues/80","http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A software library is software composed of a collection of software modules and/or software methods in a form that can be statically or dynamically linked to some software application.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000010","","http://purl.obolibrary.org/obo/IAO_0000593","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","software library","","","DUO","","IAO:0000593","IAO_0000593","","software library","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000594","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000594"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000594""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software application is software that can be directly executed by some processing unit."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software application is software that can be directly executed by some processing unit."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software application"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000010"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software application"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software application is software that can be directly executed by some processing unit."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000594""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000010","true","","","PERSON: Melanie Courtot|PERSON: Michel Dumontier","http://purl.obolibrary.org/obo/IAO_0000123","A software application is software that can be directly executed by some processing unit.","","","","","","","","","","","0.0","","https://github.com/information-artifact-ontology/IAO/issues/80","http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A software application is software that can be directly executed by some processing unit.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000010","","http://purl.obolibrary.org/obo/IAO_0000594","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","software application","","","DUO","","IAO:0000594","IAO_0000594","","software application","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000595","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000595"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000595""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software script is software whose instructions can be executed using a software interpreter."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000010"",""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000010"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software script is software whose instructions can be executed using a software interpreter."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software script"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000010"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software script"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A software script is software whose instructions can be executed using a software interpreter."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Michel Dumontier"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/80"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000595""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""software"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000010""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000010","true","","","PERSON: Melanie Courtot|PERSON: Michel Dumontier","http://purl.obolibrary.org/obo/IAO_0000123","A software script is software whose instructions can be executed using a software interpreter.","","","","","","","","","","","0.0","","https://github.com/information-artifact-ontology/IAO/issues/80","http://purl.obolibrary.org/obo/IAO_0000010","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A software script is software whose instructions can be executed using a software interpreter.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000010","","http://purl.obolibrary.org/obo/IAO_0000595","http://purl.obolibrary.org/obo/IAO_0000010|http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","software script","","","DUO","","IAO:0000595","IAO_0000595","","software script","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000605","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000605"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000605""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity listing abbreviations and their expansions that are used in a document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\n\nBAC: Bacterial artificial chromosome; CR: Calretinin; GFAP: Glial fibrillary acidic protein; MAP: Microtubule-associated protein; MRI: Magnetic resonance imaging; NSC: Neural stem cell; PDA: Patent ductus arteriosus; PMG: Polymicrogyria; PNH: Periventricular nodular heterotopia; VSD: Ventricular septal defect."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity listing abbreviations and their expansions that are used in a document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000606"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000605"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\n\nBAC: Bacterial artificial chromosome; CR: Calretinin; GFAP: Glial fibrillary acidic protein; MAP: Microtubule-associated protein; MRI: Magnetic resonance imaging; NSC: Neural stem cell; PDA: Patent ductus arteriosus; PMG: Polymicrogyria; PNH: Periventricular nodular heterotopia; VSD: Ventricular septal defect."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity listing abbreviations and their expansions that are used in a document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000605""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000606"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000606""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity listing abbreviations and their expansions that are used in a document.","","","From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/): BAC: Bacterial artificial chromosome; CR: Calretinin; GFAP: Glial fibrillary acidic protein; MAP: Microtubule-associated protein; MRI: Magnetic resonance imaging; NSC: Neural stem cell; PDA: Patent ductus arteriosus; PMG: Polymicrogyria; PNH: Periventricular nodular heterotopia; VSD: Ventricular septal defect.","https://github.com/information-artifact-ontology/IAO/issues/183","","","abbreviation textual entity","","","http://purl.obolibrary.org/obo/IAO_0000606","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity listing abbreviations and their expansions that are used in a document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000605","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","abbreviation textual entity","","","DUO","","IAO:0000605","IAO_0000605","","abbreviation textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000606","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000606"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000606""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document where abbreviations and their long-forms used within the document are listed."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027abbreviations\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document where abbreviations and their long-forms used within the document are listed."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation and acronyms"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation list"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations and acronyms"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations list"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations used"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definitions for abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""list of abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""list of abbreviations used"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""non-standard abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""nonstandard abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""nonstandard abbreviations and acronyms"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":[""https://github.com/information-artifact-ontology/IAO/issues/183"",""https://github.com/information-artifact-ontology/IAO/issues/234""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000605"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000605"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000605"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027abbreviations\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document where abbreviations and their long-forms used within the document are listed."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation and acronyms"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation list"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations and acronyms"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations list"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations used"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definitions for abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""list of abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""list of abbreviations used"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""non-standard abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""nonstandard abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""nonstandard abbreviations and acronyms"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000606""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000606"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000606"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000606""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000605"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000605""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000605","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document where abbreviations and their long-forms used within the document are listed.","","","The section labelled 'abbreviations' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183|https://github.com/information-artifact-ontology/IAO/issues/234","","","abbreviations section","","","","0.0","abbreviation and acronyms|abbreviation list|abbreviations|abbreviations and acronyms|abbreviations list|abbreviations used|definitions for abbreviations|list of abbreviations|list of abbreviations used|non-standard abbreviations|nonstandard abbreviations|nonstandard abbreviations and acronyms","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document where abbreviations and their long-forms used within the document are listed.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000606","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","abbreviations section","","","DUO","","IAO:0000606","IAO_0000606","","abbreviations section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000607","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000607"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000607""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the authors that provides biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027author information\u0027 in a typical scientific journal article, e.g. in Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the authors that provides biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors’ information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""biographies"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contributor information"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":[""https://github.com/information-artifact-ontology/IAO/issues/183"",""https://github.com/information-artifact-ontology/IAO/issues/234""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000608"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000608"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000608"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027author information\u0027 in a typical scientific journal article, e.g. in Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the authors that provides biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors’ information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""biographies"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contributor information"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000607""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000607"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000607"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000607""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000608"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000608""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000608","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document about the authors that provides biographical information and may discuss how the authors' professional experiences are relevant to the work described in the document.","","","The section labelled 'author information' in a typical scientific journal article, e.g. in Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/)","https://github.com/information-artifact-ontology/IAO/issues/183|https://github.com/information-artifact-ontology/IAO/issues/234","","","author information section","","","","0.0","author information|authors’ information|biographies|contributor information","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about the authors that provides biographical information and may discuss how the authors' professional experiences are relevant to the work described in the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000607","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","author information section","","","DUO","","IAO:0000607","IAO_0000607","","author information section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000608","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000608"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000608""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/):\n\nIT [the author] is the lead paediatrician for ADHD services in East Hertfordshire, UK, where she runs a weekly joint ADHD clinic with the Child and Adolescent psychiatrist and works within an ADHD specialist team. IT also sees children with other neurodisability issues who may have comorbid ADHD, where the presentation may be more complex and challenging to manage. IT has vast experience in managing children with complex ADHD. She has 18 years of experience in paediatrics and also has extensive experience in the use of psychopharmacologic agents in managing children with ADHD."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000607"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000608"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/):\n\nIT [the author] is the lead paediatrician for ADHD services in East Hertfordshire, UK, where she runs a weekly joint ADHD clinic with the Child and Adolescent psychiatrist and works within an ADHD specialist team. IT also sees children with other neurodisability issues who may have comorbid ADHD, where the presentation may be more complex and challenging to manage. IT has vast experience in managing children with complex ADHD. She has 18 years of experience in paediatrics and also has extensive experience in the use of psychopharmacologic agents in managing children with ADHD."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000608""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000608"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000608"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000608""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000607"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000607""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors' professional experiences are relevant to the work described in the document.","","","From Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/): +"duo+class+http://purl.obolibrary.org/obo/IAO_0000606","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000606"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000606""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document where abbreviations and their long-forms used within the document are listed."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027abbreviations\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document where abbreviations and their long-forms used within the document are listed."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation and acronyms"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation list"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations and acronyms"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations list"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations used"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definitions for abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""list of abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""list of abbreviations used"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""non-standard abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""nonstandard abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""nonstandard abbreviations and acronyms"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":[""https://github.com/information-artifact-ontology/IAO/issues/183"",""https://github.com/information-artifact-ontology/IAO/issues/234""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000605"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000605"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000605"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027abbreviations\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document where abbreviations and their long-forms used within the document are listed."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation and acronyms"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation list"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations and acronyms"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations list"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviations used"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definitions for abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""list of abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""list of abbreviations used"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""non-standard abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""nonstandard abbreviations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""nonstandard abbreviations and acronyms"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000606""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000605"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abbreviation textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000605""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000605","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document where abbreviations and their long-forms used within the document are listed.","","","The section labelled 'abbreviations' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183|https://github.com/information-artifact-ontology/IAO/issues/234","","","abbreviations section","","","","0.0","abbreviation and acronyms|abbreviation list|abbreviations|abbreviations and acronyms|abbreviations list|abbreviations used|definitions for abbreviations|list of abbreviations|list of abbreviations used|non-standard abbreviations|nonstandard abbreviations|nonstandard abbreviations and acronyms","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document where abbreviations and their long-forms used within the document are listed.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000606","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","abbreviations section","","","DUO","","IAO:0000606","IAO_0000606","","abbreviations section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000607","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000607"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000607""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the authors that provides biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027author information\u0027 in a typical scientific journal article, e.g. in Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the authors that provides biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors’ information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""biographies"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contributor information"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":[""https://github.com/information-artifact-ontology/IAO/issues/183"",""https://github.com/information-artifact-ontology/IAO/issues/234""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000608"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000608"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000608"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027author information\u0027 in a typical scientific journal article, e.g. in Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the authors that provides biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors’ information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""biographies"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contributor information"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000607""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000608"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000608""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000608","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document about the authors that provides biographical information and may discuss how the authors' professional experiences are relevant to the work described in the document.","","","The section labelled 'author information' in a typical scientific journal article, e.g. in Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/)","https://github.com/information-artifact-ontology/IAO/issues/183|https://github.com/information-artifact-ontology/IAO/issues/234","","","author information section","","","","0.0","author information|authors’ information|biographies|contributor information","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about the authors that provides biographical information and may discuss how the authors' professional experiences are relevant to the work described in the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000607","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","author information section","","","DUO","","IAO:0000607","IAO_0000607","","author information section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000608","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000608"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000608""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/):\n\nIT [the author] is the lead paediatrician for ADHD services in East Hertfordshire, UK, where she runs a weekly joint ADHD clinic with the Child and Adolescent psychiatrist and works within an ADHD specialist team. IT also sees children with other neurodisability issues who may have comorbid ADHD, where the presentation may be more complex and challenging to manage. IT has vast experience in managing children with complex ADHD. She has 18 years of experience in paediatrics and also has extensive experience in the use of psychopharmacologic agents in managing children with ADHD."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000607"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000608"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/):\n\nIT [the author] is the lead paediatrician for ADHD services in East Hertfordshire, UK, where she runs a weekly joint ADHD clinic with the Child and Adolescent psychiatrist and works within an ADHD specialist team. IT also sees children with other neurodisability issues who may have comorbid ADHD, where the presentation may be more complex and challenging to manage. IT has vast experience in managing children with complex ADHD. She has 18 years of experience in paediatrics and also has extensive experience in the use of psychopharmacologic agents in managing children with ADHD."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors\u0027 professional experiences are relevant to the work described in the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000608""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000607"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author information section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000607""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors' professional experiences are relevant to the work described in the document.","","","From Takon. Ann Gen Psychiatry. 2011; 10: 25. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3204268/): IT [the author] is the lead paediatrician for ADHD services in East Hertfordshire, UK, where she runs a weekly joint ADHD clinic with the Child and Adolescent psychiatrist and works within an ADHD specialist team. IT also sees children with other neurodisability issues who may have comorbid ADHD, where the presentation may be more complex and challenging to manage. IT has vast experience in managing children with complex ADHD. She has 18 years of experience in paediatrics and also has extensive experience in the use of psychopharmacologic agents in managing children with ADHD.","https://github.com/information-artifact-ontology/IAO/issues/183","","","author information textual entity","","","http://purl.obolibrary.org/obo/IAO_0000607","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity expression information about an author of a document. This information may include biographical information and may discuss how the authors' professional experiences are relevant to the work described in the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000608","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","author information textual entity","","","DUO","","IAO:0000608","IAO_0000608","","author information textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000609","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000609"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000609""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027synopsis\u0027 in a typical scientific journal article, e.g. in Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""summary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""synopsis"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000610"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000610"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000610"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027synopsis\u0027 in a typical scientific journal article, e.g. in Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""summary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""synopsis"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000609""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000609"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000609"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000609""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000610"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000610""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000610","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers.","","","The section labelled 'synopsis' in a typical scientific journal article, e.g. in Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","author summary section","","","","0.0","author summary|summary|synopsis","Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000609","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","author summary section","","","DUO","","IAO:0000609","IAO_0000609","","author summary section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000610","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000610"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000610""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/):\n\n\nThe search for genetic risk factors for common human diseases often relies on the use of linkage and association studies to establish correlation between genomic markers and disease risk. These studies require additional functional evaluation of candidate genes, including their possible interaction with diet and environment. The number of candidate genes is typically large and the development of appropriate genetic tools in mammalian systems is slow. By contrast, large-scale genetic screens, using widely available genetic tools, are routinely conducted in the fruit fly Drosophila melanogaster. In this study, we used Drosophila to screen candidate genes identified in human genome-wide scans as associated with risk of metabolic abnormalities such as type 2 diabetes. We show that a number of human candidate genes have fly orthologs that play an important role in Drosophila tolerance to high dietary sucrose. We further explored some of the specific metabolic abnormalities that can result when these genes’ activities are reduced in flies, focusing on a gene we call dHHEX (CG7056), the fly ortholog of human HHEX."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000609"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000610"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/):\n\n\nThe search for genetic risk factors for common human diseases often relies on the use of linkage and association studies to establish correlation between genomic markers and disease risk. These studies require additional functional evaluation of candidate genes, including their possible interaction with diet and environment. The number of candidate genes is typically large and the development of appropriate genetic tools in mammalian systems is slow. By contrast, large-scale genetic screens, using widely available genetic tools, are routinely conducted in the fruit fly Drosophila melanogaster. In this study, we used Drosophila to screen candidate genes identified in human genome-wide scans as associated with risk of metabolic abnormalities such as type 2 diabetes. We show that a number of human candidate genes have fly orthologs that play an important role in Drosophila tolerance to high dietary sucrose. We further explored some of the specific metabolic abnormalities that can result when these genes’ activities are reduced in flies, focusing on a gene we call dHHEX (CG7056), the fly ortholog of human HHEX."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000610""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000609"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000609""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000610"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000610"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000610""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).","","","From Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/): +"duo+class+http://purl.obolibrary.org/obo/IAO_0000609","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000609"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000609""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027synopsis\u0027 in a typical scientific journal article, e.g. in Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""summary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""synopsis"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000610"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000610"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000610"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027synopsis\u0027 in a typical scientific journal article, e.g. in Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""summary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""synopsis"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000609""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000610"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000610""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000610","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers.","","","The section labelled 'synopsis' in a typical scientific journal article, e.g. in Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","author summary section","","","","0.0","author summary|summary|synopsis","Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000609","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","author summary section","","","DUO","","IAO:0000609","IAO_0000609","","author summary section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000610","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000610"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000610""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/):\n\n\nThe search for genetic risk factors for common human diseases often relies on the use of linkage and association studies to establish correlation between genomic markers and disease risk. These studies require additional functional evaluation of candidate genes, including their possible interaction with diet and environment. The number of candidate genes is typically large and the development of appropriate genetic tools in mammalian systems is slow. By contrast, large-scale genetic screens, using widely available genetic tools, are routinely conducted in the fruit fly Drosophila melanogaster. In this study, we used Drosophila to screen candidate genes identified in human genome-wide scans as associated with risk of metabolic abnormalities such as type 2 diabetes. We show that a number of human candidate genes have fly orthologs that play an important role in Drosophila tolerance to high dietary sucrose. We further explored some of the specific metabolic abnormalities that can result when these genes’ activities are reduced in flies, focusing on a gene we call dHHEX (CG7056), the fly ortholog of human HHEX."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000609"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000610"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/):\n\n\nThe search for genetic risk factors for common human diseases often relies on the use of linkage and association studies to establish correlation between genomic markers and disease risk. These studies require additional functional evaluation of candidate genes, including their possible interaction with diet and environment. The number of candidate genes is typically large and the development of appropriate genetic tools in mammalian systems is slow. By contrast, large-scale genetic screens, using widely available genetic tools, are routinely conducted in the fruit fly Drosophila melanogaster. In this study, we used Drosophila to screen candidate genes identified in human genome-wide scans as associated with risk of metabolic abnormalities such as type 2 diabetes. We show that a number of human candidate genes have fly orthologs that play an important role in Drosophila tolerance to high dietary sucrose. We further explored some of the specific metabolic abnormalities that can result when these genes’ activities are reduced in flies, focusing on a gene we call dHHEX (CG7056), the fly ortholog of human HHEX."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines)."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000610""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000609"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""author summary section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000609""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).","","","From Pendse et al. BMC Genomics. 2013; 14: 136. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3608171/): The search for genetic risk factors for common human diseases often relies on the use of linkage and association studies to establish correlation between genomic markers and disease risk. These studies require additional functional evaluation of candidate genes, including their possible interaction with diet and environment. The number of candidate genes is typically large and the development of appropriate genetic tools in mammalian systems is slow. By contrast, large-scale genetic screens, using widely available genetic tools, are routinely conducted in the fruit fly Drosophila melanogaster. In this study, we used Drosophila to screen candidate genes identified in human genome-wide scans as associated with risk of metabolic abnormalities such as type 2 diabetes. We show that a number of human candidate genes have fly orthologs that play an important role in Drosophila tolerance to high dietary sucrose. We further explored some of the specific metabolic abnormalities that can result when these genes’ activities are reduced in flies, focusing on a gene we call dHHEX (CG7056), the fly ortholog of human HHEX.","https://github.com/information-artifact-ontology/IAO/issues/183","","","author summary textual entity","","","http://purl.obolibrary.org/obo/IAO_0000609","0.0","","Article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity, distinct from the abstract, that describes the significance and broader context of the document content. The author summary is often written in a non-technical manner and is aimed at both scientists and non-scientist readers, e.g as described in the article submission guidelines for PLoS Genetics (http://journals.plos.org/plosgenetics/s/submission-guidelines).","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000610","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","author summary textual entity","","","DUO","","IAO:0000610","IAO_0000610","","author summary textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000611","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000611"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000611""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027availability and requirements\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability of data"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data archiving"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data availability"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data availability statement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data sharing statement"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":[""https://github.com/information-artifact-ontology/IAO/issues/183"",""https://github.com/information-artifact-ontology/IAO/issues/234""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000612"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000612"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000612"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027availability and requirements\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability of data"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data archiving"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data availability"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data availability statement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data sharing statement"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000611""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000612"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000612""},""type"":[""class"",""entity""]},""IAO:0000611"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000611"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000611""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000612","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained.","","","The section labelled 'availability and requirements' in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).","https://github.com/information-artifact-ontology/IAO/issues/183|https://github.com/information-artifact-ontology/IAO/issues/234","","","availability section","","","","0.0","availability|availability of data|data archiving|data availability|data availability statement|data sharing statement","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000611","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","availability section","","","DUO","","IAO:0000611","IAO_0000611","","availability section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000612","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000612"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000612""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\n\nProject home page:http://krux.googlecode.com"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000611"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000612"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\n\nProject home page:http://krux.googlecode.com"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000612""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000611"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000611""},""type"":[""class"",""entity""]},""IAO:0000612"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000612"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000612""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained.","","","From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/): +"duo+class+http://purl.obolibrary.org/obo/IAO_0000611","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000611"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000611""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027availability and requirements\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability of data"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data archiving"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data availability"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data availability statement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data sharing statement"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":[""https://github.com/information-artifact-ontology/IAO/issues/183"",""https://github.com/information-artifact-ontology/IAO/issues/234""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000612"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000612"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000612"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027availability and requirements\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability of data"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data archiving"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data availability"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data availability statement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data sharing statement"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000611""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000612"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000612""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000612","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained.","","","The section labelled 'availability and requirements' in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).","https://github.com/information-artifact-ontology/IAO/issues/183|https://github.com/information-artifact-ontology/IAO/issues/234","","","availability section","","","","0.0","availability|availability of data|data archiving|data availability|data availability statement|data sharing statement","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about a resource described in the document, e.g. software, that describes where and/or how that resource can be obtained.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000611","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","availability section","","","DUO","","IAO:0000611","IAO_0000611","","availability section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000612","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000612"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000612""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\n\nProject home page:http://krux.googlecode.com"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000611"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000612"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\n\nProject home page:http://krux.googlecode.com"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000612""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000611"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""availability section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000611""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained.","","","From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/): Project home page:http://krux.googlecode.com","https://github.com/information-artifact-ontology/IAO/issues/183","","","availability textual entity","","","http://purl.obolibrary.org/obo/IAO_0000611","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity expressing the location of a resource, e.g. software, or the manner in which a resource can be obtained.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000612","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","availability textual entity","","","DUO","","IAO:0000612","IAO_0000612","","availability textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000613","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000613"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000613""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the medical history of a specific patient as it relates to the topic of the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027case report\u0027 in a typical scientific journal article, e.g. in Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the medical history of a specific patient as it relates to the topic of the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case presentation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000614"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000614"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000614"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027case report\u0027 in a typical scientific journal article, e.g. in Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the medical history of a specific patient as it relates to the topic of the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case presentation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000613""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000613"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000613"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000613""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000614"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000614""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000614","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document about the medical history of a specific patient as it relates to the topic of the document.","","","The section labelled 'case report' in a typical scientific journal article, e.g. in Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","case report section","","","","0.0","case presentation|case report","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about the medical history of a specific patient as it relates to the topic of the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000613","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","case report section","","","DUO","","IAO:0000613","IAO_0000613","","case report section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000614","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000614"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000614""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses a detailed account of a portion of the medical history for a specific patient."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/):\n\nThe patient is a 50-year-old man. His medical history was not contributory. At the age of 37 years, he complained of persistent fatigue and dyspnoea even for modest efforts and oedema of lower limbs. The patient was examined at the department of internal medicine of the local hospital, and hospitalised with a diagnosis of dilated cardiomyopathy probably consequence of a myocarditis process. Soon after he was transferred to the cardiologic department of the regional hospital, and pharmacologically treated for heart failure and pulmonary hypertension."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses a detailed account of a portion of the medical history for a specific patient."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000613"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000614"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/):\n\nThe patient is a 50-year-old man. His medical history was not contributory. At the age of 37 years, he complained of persistent fatigue and dyspnoea even for modest efforts and oedema of lower limbs. The patient was examined at the department of internal medicine of the local hospital, and hospitalised with a diagnosis of dilated cardiomyopathy probably consequence of a myocarditis process. Soon after he was transferred to the cardiologic department of the regional hospital, and pharmacologically treated for heart failure and pulmonary hypertension."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses a detailed account of a portion of the medical history for a specific patient."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000614""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000614"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000614"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000614""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000613"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000613""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity that expresses a detailed account of a portion of the medical history for a specific patient.","","","Excerpt from Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/): +"duo+class+http://purl.obolibrary.org/obo/IAO_0000613","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000613"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000613""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the medical history of a specific patient as it relates to the topic of the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027case report\u0027 in a typical scientific journal article, e.g. in Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the medical history of a specific patient as it relates to the topic of the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case presentation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000614"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000614"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000614"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027case report\u0027 in a typical scientific journal article, e.g. in Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the medical history of a specific patient as it relates to the topic of the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case presentation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000613""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000614"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000614""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000614","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document about the medical history of a specific patient as it relates to the topic of the document.","","","The section labelled 'case report' in a typical scientific journal article, e.g. in Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","case report section","","","","0.0","case presentation|case report","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about the medical history of a specific patient as it relates to the topic of the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000613","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","case report section","","","DUO","","IAO:0000613","IAO_0000613","","case report section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000614","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000614"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000614""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses a detailed account of a portion of the medical history for a specific patient."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/):\n\nThe patient is a 50-year-old man. His medical history was not contributory. At the age of 37 years, he complained of persistent fatigue and dyspnoea even for modest efforts and oedema of lower limbs. The patient was examined at the department of internal medicine of the local hospital, and hospitalised with a diagnosis of dilated cardiomyopathy probably consequence of a myocarditis process. Soon after he was transferred to the cardiologic department of the regional hospital, and pharmacologically treated for heart failure and pulmonary hypertension."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses a detailed account of a portion of the medical history for a specific patient."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000613"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000614"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/):\n\nThe patient is a 50-year-old man. His medical history was not contributory. At the age of 37 years, he complained of persistent fatigue and dyspnoea even for modest efforts and oedema of lower limbs. The patient was examined at the department of internal medicine of the local hospital, and hospitalised with a diagnosis of dilated cardiomyopathy probably consequence of a myocarditis process. Soon after he was transferred to the cardiologic department of the regional hospital, and pharmacologically treated for heart failure and pulmonary hypertension."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses a detailed account of a portion of the medical history for a specific patient."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000614""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000613"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""case report section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000613""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity that expresses a detailed account of a portion of the medical history for a specific patient.","","","Excerpt from Taglia et al. Acta Myol. 2012 Dec; 31(3): 201–203. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3631801/): The patient is a 50-year-old man. His medical history was not contributory. At the age of 37 years, he complained of persistent fatigue and dyspnoea even for modest efforts and oedema of lower limbs. The patient was examined at the department of internal medicine of the local hospital, and hospitalised with a diagnosis of dilated cardiomyopathy probably consequence of a myocarditis process. Soon after he was transferred to the cardiologic department of the regional hospital, and pharmacologically treated for heart failure and pulmonary hypertension.","https://github.com/information-artifact-ontology/IAO/issues/183","","","case report textual entity","","","http://purl.obolibrary.org/obo/IAO_0000613","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity that expresses a detailed account of a portion of the medical history for a specific patient.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000614","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","case report textual entity","","","DUO","","IAO:0000614","IAO_0000614","","case report textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000615","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000615"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000615""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027conclusion\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""concluding remarks"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""findings"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""summary"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000144"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000144"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000144"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027conclusion\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""concluding remarks"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""findings"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""summary"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000615""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000615"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000615"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000615""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000144"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000144""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000144","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document.","","","The section labelled 'conclusion' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183","","","conclusion section","","","","0.0","concluding remarks|conclusion|conclusions|findings|summary","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000615","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","conclusion section","","","DUO","","IAO:0000615","IAO_0000615","","conclusion section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000616","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000616"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000616""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027conflict of interest statement\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors\u0027 disclosures of potential conflicts of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""competing financial interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""competing interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest statement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflicts of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""declaration of competing interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""declaration of competing interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""declaration of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""declaration of interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disclosure of conflict of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disclosure of potential conflicts of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""duality of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statement of interest"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":[""https://github.com/information-artifact-ontology/IAO/issues/183"",""https://github.com/information-artifact-ontology/IAO/issues/234""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000617"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000617"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000617"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027conflict of interest statement\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors\u0027 disclosures of potential conflicts of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""competing financial interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""competing interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest statement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflicts of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""declaration of competing interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""declaration of competing interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""declaration of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""declaration of interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disclosure of conflict of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disclosure of potential conflicts of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""duality of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statement of interest"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000616""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000616"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000616"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000616""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000617"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000617""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000617","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document.","","","The section labelled 'conflict of interest statement' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183|https://github.com/information-artifact-ontology/IAO/issues/234","","","conflict of interest section","","","","0.0","authors' disclosures of potential conflicts of interest|competing financial interests|competing interests|conflict of interest|conflict of interest statement|conflict of interests|conflicts of interest|declaration of competing interest|declaration of competing interests|declaration of interest|declaration of interests|disclosure of conflict of interest|disclosure of potential conflicts of interest|duality of interest|statement of interest","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000616","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","conflict of interest section","","","DUO","","IAO:0000616","IAO_0000616","","conflict of interest section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000617","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000617"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000617""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest statement"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""SD [an author] is a Merck employee and Merck is the sponsor of this study. [Taken from \u0027Effects of obstructive sleep apnoea risk on postoperative respiratory complications: protocol for a hospital-based registry study\u0027 Shin et al. 2016 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4735131/)] "",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000616"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000617"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest statement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""SD [an author] is a Merck employee and Merck is the sponsor of this study. [Taken from \u0027Effects of obstructive sleep apnoea risk on postoperative respiratory complications: protocol for a hospital-based registry study\u0027 Shin et al. 2016 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4735131/)] "",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000617""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000617"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000617"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000617""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000616"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000616""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document.","","","SD [an author] is a Merck employee and Merck is the sponsor of this study. [Taken from 'Effects of obstructive sleep apnoea risk on postoperative respiratory complications: protocol for a hospital-based registry study' Shin et al. 2016 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4735131/)] ","https://github.com/information-artifact-ontology/IAO/issues/183","","","conflict of interest statement","","","http://purl.obolibrary.org/obo/IAO_0000616","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000617","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","conflict of interest textual entity","","","DUO","","IAO:0000617","IAO_0000617","","conflict of interest textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000618","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000618"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000618""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the consent process that was used to enroll patients in a study."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027consent\u0027 in a typical scientific journal article, e.g. Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the consent process that was used to enroll patients in a study."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000619"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000619"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000619"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027consent\u0027 in a typical scientific journal article, e.g. Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the consent process that was used to enroll patients in a study."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000618""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000618"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000618"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000618""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000619"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000619""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000619","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document about the consent process that was used to enroll patients in a study.","","","The section labelled 'consent' in a typical scientific journal article, e.g. Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","consent section","","","","0.0","consent","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about the consent process that was used to enroll patients in a study.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000618","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","consent section","","","DUO","","IAO:0000618","IAO_0000618","","consent section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000619","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000619"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000619""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that documents the consenting process used to enroll patients in a study."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\n\nWritten informed consent was obtained from the patient’s parents for publication of this Case report and any accompanying images. A copy of the written consent is available for review by the Editor-in chief of this journal."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that documents the consenting process used to enroll patients in a study."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000618"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000619"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\n\nWritten informed consent was obtained from the patient’s parents for publication of this Case report and any accompanying images. A copy of the written consent is available for review by the Editor-in chief of this journal."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that documents the consenting process used to enroll patients in a study."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000619""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000619"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000619"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000619""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000618"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000618""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity that documents the consenting process used to enroll patients in a study.","","","From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/): +"duo+class+http://purl.obolibrary.org/obo/IAO_0000615","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000615"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000615""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027conclusion\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""concluding remarks"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""findings"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""summary"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000144"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000144"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000144"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027conclusion\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""concluding remarks"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""findings"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""summary"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000615""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000144"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conclusion textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000144""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000144","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document.","","","The section labelled 'conclusion' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183","","","conclusion section","","","","0.0","concluding remarks|conclusion|conclusions|findings|summary","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document used to summarize the findings discussed in the document. The conclusion section is typically found near the end of a document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000615","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","conclusion section","","","DUO","","IAO:0000615","IAO_0000615","","conclusion section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000616","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000616"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000616""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027conflict of interest statement\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors\u0027 disclosures of potential conflicts of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""competing financial interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""competing interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest statement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflicts of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""declaration of competing interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""declaration of competing interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""declaration of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""declaration of interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disclosure of conflict of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disclosure of potential conflicts of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""duality of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statement of interest"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":[""https://github.com/information-artifact-ontology/IAO/issues/183"",""https://github.com/information-artifact-ontology/IAO/issues/234""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000617"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000617"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000617"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027conflict of interest statement\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""authors\u0027 disclosures of potential conflicts of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""competing financial interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""competing interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest statement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflicts of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""declaration of competing interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""declaration of competing interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""declaration of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""declaration of interests"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disclosure of conflict of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disclosure of potential conflicts of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""duality of interest"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statement of interest"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000616""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000617"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000617""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000617","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document.","","","The section labelled 'conflict of interest statement' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183|https://github.com/information-artifact-ontology/IAO/issues/234","","","conflict of interest section","","","","0.0","authors' disclosures of potential conflicts of interest|competing financial interests|competing interests|conflict of interest|conflict of interest statement|conflict of interests|conflicts of interest|declaration of competing interest|declaration of competing interests|declaration of interest|declaration of interests|disclosure of conflict of interest|disclosure of potential conflicts of interest|duality of interest|statement of interest","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document used to declare any competing interests regarding the authors and/or funding organization for the work described in the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000616","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","conflict of interest section","","","DUO","","IAO:0000616","IAO_0000616","","conflict of interest section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000617","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000617"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000617""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest statement"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""SD [an author] is a Merck employee and Merck is the sponsor of this study. [Taken from \u0027Effects of obstructive sleep apnoea risk on postoperative respiratory complications: protocol for a hospital-based registry study\u0027 Shin et al. 2016 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4735131/)] "",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000616"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000617"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest statement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""SD [an author] is a Merck employee and Merck is the sponsor of this study. [Taken from \u0027Effects of obstructive sleep apnoea risk on postoperative respiratory complications: protocol for a hospital-based registry study\u0027 Shin et al. 2016 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4735131/)] "",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000617""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000616"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""conflict of interest section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000616""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document.","","","SD [an author] is a Merck employee and Merck is the sponsor of this study. [Taken from 'Effects of obstructive sleep apnoea risk on postoperative respiratory complications: protocol for a hospital-based registry study' Shin et al. 2016 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4735131/)] ","https://github.com/information-artifact-ontology/IAO/issues/183","","","conflict of interest statement","","","http://purl.obolibrary.org/obo/IAO_0000616","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity that expresses a situation involving one or more of the authors, or the funding source of a document whereby the authors or funding source stand to potentially gain (typically financially) from the results reported in the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000617","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","conflict of interest textual entity","","","DUO","","IAO:0000617","IAO_0000617","","conflict of interest textual entity","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000618","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000618"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000618""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the consent process that was used to enroll patients in a study."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027consent\u0027 in a typical scientific journal article, e.g. Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the consent process that was used to enroll patients in a study."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000619"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000619"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000619"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027consent\u0027 in a typical scientific journal article, e.g. Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the consent process that was used to enroll patients in a study."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000618""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000619"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000619""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000619","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document about the consent process that was used to enroll patients in a study.","","","The section labelled 'consent' in a typical scientific journal article, e.g. Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","consent section","","","","0.0","consent","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about the consent process that was used to enroll patients in a study.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000618","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","consent section","","","DUO","","IAO:0000618","IAO_0000618","","consent section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000619","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000619"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000619""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that documents the consenting process used to enroll patients in a study."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\n\nWritten informed consent was obtained from the patient’s parents for publication of this Case report and any accompanying images. A copy of the written consent is available for review by the Editor-in chief of this journal."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that documents the consenting process used to enroll patients in a study."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000618"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000619"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/):\n\nWritten informed consent was obtained from the patient’s parents for publication of this Case report and any accompanying images. A copy of the written consent is available for review by the Editor-in chief of this journal."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that documents the consenting process used to enroll patients in a study."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000619""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000618"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""consent section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000618""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity that documents the consenting process used to enroll patients in a study.","","","From Shiba et al. Acta Neuropathol Commun. 2013; 1: 45. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3893467/): Written informed consent was obtained from the patient’s parents for publication of this Case report and any accompanying images. A copy of the written consent is available for review by the Editor-in chief of this journal.","https://github.com/information-artifact-ontology/IAO/issues/183","","","consent textual entity","","","http://purl.obolibrary.org/obo/IAO_0000618","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity that documents the consenting process used to enroll patients in a study.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000619","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","consent textual entity","","","DUO","","IAO:0000619","IAO_0000619","","consent textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000620","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000620"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000620""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027ethical approval\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical requirements"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethics"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethics statement"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":[""https://github.com/information-artifact-ontology/IAO/issues/183"",""https://github.com/information-artifact-ontology/IAO/issues/234""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000621"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000621"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000621"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027ethical approval\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical requirements"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethics"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethics statement"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000620""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000621"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000621""},""type"":[""class"",""entity""]},""IAO:0000620"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000620"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000620""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000621","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis.","","","The section labelled 'ethical approval' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183|https://github.com/information-artifact-ontology/IAO/issues/234","","","ethical approval section","","","","0.0","ethical approval|ethical requirements|ethics|ethics statement","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000620","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","ethical approval section","","","DUO","","IAO:0000620","IAO_0000620","","ethical approval section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000621","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000621"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000621""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that documents the ethical approval of some study design."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):\n\nThe NHS National Research Ethics Service had previously approved the use of these anonymised data for research purposes and this analysis did not require independent review."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that documents the ethical approval of some study design."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000300"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000620"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000621"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/OBI_0500000"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):\n\nThe NHS National Research Ethics Service had previously approved the use of these anonymised data for research purposes and this analysis did not require independent review."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that documents the ethical approval of some study design."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000621""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0500000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study design"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0500000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000620"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000620""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]},""IAO:0000621"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000621"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000621""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/OBI_0500000","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300|","true","","","PERSON: Bill Baumgartner","","A textual entity that documents the ethical approval of some study design.","","","From McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/): +"duo+class+http://purl.obolibrary.org/obo/IAO_0000620","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000620"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000620""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027ethical approval\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical requirements"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethics"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethics statement"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":[""https://github.com/information-artifact-ontology/IAO/issues/183"",""https://github.com/information-artifact-ontology/IAO/issues/234""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000621"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000621"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000621"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027ethical approval\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical requirements"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethics"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethics statement"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000620""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000621"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000621""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000621","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis.","","","The section labelled 'ethical approval' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183|https://github.com/information-artifact-ontology/IAO/issues/234","","","ethical approval section","","","","0.0","ethical approval|ethical requirements|ethics|ethics statement","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about the governance body responsible for approving the work discussed in a document on an ethical basis.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000620","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","ethical approval section","","","DUO","","IAO:0000620","IAO_0000620","","ethical approval section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000621","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000621"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000621""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that documents the ethical approval of some study design."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):\n\nThe NHS National Research Ethics Service had previously approved the use of these anonymised data for research purposes and this analysis did not require independent review."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that documents the ethical approval of some study design."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000300"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000620"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000621"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/OBI_0500000"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):\n\nThe NHS National Research Ethics Service had previously approved the use of these anonymised data for research purposes and this analysis did not require independent review."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that documents the ethical approval of some study design."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000621""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0500000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study design"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0500000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000620"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000620""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/OBI_0500000","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300|","true","","","PERSON: Bill Baumgartner","","A textual entity that documents the ethical approval of some study design.","","","From McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/): The NHS National Research Ethics Service had previously approved the use of these anonymised data for research purposes and this analysis did not require independent review.","https://github.com/information-artifact-ontology/IAO/issues/183","","","ethical approval textual entity","","","http://purl.obolibrary.org/obo/IAO_0000620","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity that documents the ethical approval of some study design.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000621","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","ethical approval textual entity","","","DUO","","IAO:0000621","IAO_0000621","","ethical approval textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000622","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000622"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000622""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that contains one or more figures."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figures section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027figures\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that contains one or more figures."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figures"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figures section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000308"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figures section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000308"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000308"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figures section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027figures\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that contains one or more figures."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figures"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000622""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000622"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000622"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000622""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000308","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document that contains one or more figures.","","","The section labelled 'figures' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183","","","figures section","","","","0.0","figures","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document that contains one or more figures.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000622","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","figures section","","","DUO","","IAO:0000622","IAO_0000622","","figures section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000623","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000623"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000623""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to detail information regarding the source of funding used in support of the generation of the document content."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding source declaration section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027funding\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to detail information regarding the source of funding used in support of the generation of the document content."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""financial support"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding sources"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding statement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding/support"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""grants"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role of the funding source"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source of funding"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""sources of funding"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study funding"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":[""https://github.com/information-artifact-ontology/IAO/issues/183"",""https://github.com/information-artifact-ontology/IAO/issues/234""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding source declaration section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000624"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding source declaration section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000624"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000624"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding source declaration section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027funding\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to detail information regarding the source of funding used in support of the generation of the document content."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""financial support"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding sources"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding statement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding/support"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""grants"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role of the funding source"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source of funding"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""sources of funding"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study funding"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000623""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000624"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding source declaration textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000624""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000623"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000623"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000623""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000624","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document used to detail information regarding the source of funding used in support of the generation of the document content.","","","The section labelled 'funding' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183|https://github.com/information-artifact-ontology/IAO/issues/234","","","funding source declaration section","","","","0.0","financial support|funding|funding information|funding sources|funding statement|funding/support|grants|role of the funding source|source of funding|sources of funding|study funding","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document used to detail information regarding the source of funding used in support of the generation of the document content.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000623","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","funding source declaration section","","","DUO","","IAO:0000623","IAO_0000623","","funding source declaration section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000624","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000624"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000624""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity documenting the source of funding that supported some study."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding souce declaration textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Stephan et al. Accid Anal Prev. 2011 May; 43(3): 1062–1067. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3062852/):\n\nThis study was supported by the International Collaborative Research Grants Scheme with joint grants from the Wellcome Trust UK (GR071587MA) and the Australian NHMRC (268055). The funding sources played no role in study design, data collection, analysis or interpretation, writing the report, or the decision to submit the paper for publication."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity documenting the source of funding that supported some study."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding source declaration textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding source declaration textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000623"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000624"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding souce declaration textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Stephan et al. Accid Anal Prev. 2011 May; 43(3): 1062–1067. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3062852/):\n\nThis study was supported by the International Collaborative Research Grants Scheme with joint grants from the Wellcome Trust UK (GR071587MA) and the Australian NHMRC (268055). The funding sources played no role in study design, data collection, analysis or interpretation, writing the report, or the decision to submit the paper for publication."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity documenting the source of funding that supported some study."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000624""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000624"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000624"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000624""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000623"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding source declaration section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000623""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity documenting the source of funding that supported some study.","","","From Stephan et al. Accid Anal Prev. 2011 May; 43(3): 1062–1067. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3062852/): +"duo+class+http://purl.obolibrary.org/obo/IAO_0000622","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000622"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000622""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that contains one or more figures."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figures section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027figures\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that contains one or more figures."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figures"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figures section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000308"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figures section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000308"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000308"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figures section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027figures\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that contains one or more figures."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figures"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000622""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000308"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""figure"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000308""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000308","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document that contains one or more figures.","","","The section labelled 'figures' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183","","","figures section","","","","0.0","figures","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document that contains one or more figures.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000622","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","figures section","","","DUO","","IAO:0000622","IAO_0000622","","figures section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000623","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000623"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000623""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to detail information regarding the source of funding used in support of the generation of the document content."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding source declaration section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027funding\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to detail information regarding the source of funding used in support of the generation of the document content."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""financial support"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding sources"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding statement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding/support"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""grants"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role of the funding source"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source of funding"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""sources of funding"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study funding"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":[""https://github.com/information-artifact-ontology/IAO/issues/183"",""https://github.com/information-artifact-ontology/IAO/issues/234""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding source declaration section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000624"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding source declaration section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000624"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000624"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding source declaration section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027funding\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document used to detail information regarding the source of funding used in support of the generation of the document content."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""financial support"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding information"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding sources"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding statement"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding/support"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""grants"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role of the funding source"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source of funding"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""sources of funding"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study funding"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000623""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000624"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding source declaration textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000624""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000624","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document used to detail information regarding the source of funding used in support of the generation of the document content.","","","The section labelled 'funding' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183|https://github.com/information-artifact-ontology/IAO/issues/234","","","funding source declaration section","","","","0.0","financial support|funding|funding information|funding sources|funding statement|funding/support|grants|role of the funding source|source of funding|sources of funding|study funding","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document used to detail information regarding the source of funding used in support of the generation of the document content.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000623","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","funding source declaration section","","","DUO","","IAO:0000623","IAO_0000623","","funding source declaration section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000624","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000624"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000624""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity documenting the source of funding that supported some study."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding souce declaration textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Stephan et al. Accid Anal Prev. 2011 May; 43(3): 1062–1067. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3062852/):\n\nThis study was supported by the International Collaborative Research Grants Scheme with joint grants from the Wellcome Trust UK (GR071587MA) and the Australian NHMRC (268055). The funding sources played no role in study design, data collection, analysis or interpretation, writing the report, or the decision to submit the paper for publication."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity documenting the source of funding that supported some study."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding source declaration textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding source declaration textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000623"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000624"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding souce declaration textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Stephan et al. Accid Anal Prev. 2011 May; 43(3): 1062–1067. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3062852/):\n\nThis study was supported by the International Collaborative Research Grants Scheme with joint grants from the Wellcome Trust UK (GR071587MA) and the Australian NHMRC (268055). The funding sources played no role in study design, data collection, analysis or interpretation, writing the report, or the decision to submit the paper for publication."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity documenting the source of funding that supported some study."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000624""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000623"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""funding source declaration section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000623""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity documenting the source of funding that supported some study.","","","From Stephan et al. Accid Anal Prev. 2011 May; 43(3): 1062–1067. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3062852/): This study was supported by the International Collaborative Research Grants Scheme with joint grants from the Wellcome Trust UK (GR071587MA) and the Australian NHMRC (268055). The funding sources played no role in study design, data collection, analysis or interpretation, writing the report, or the decision to submit the paper for publication.","https://github.com/information-artifact-ontology/IAO/issues/183","","","funding souce declaration textual entity","","","http://purl.obolibrary.org/obo/IAO_0000623","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity documenting the source of funding that supported some study.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000624","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","funding source declaration textual entity","","","DUO","","IAO:0000624","IAO_0000624","","funding source declaration textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000625","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000625"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000625""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document detailing extensions of the described work that may be implemented at some future point in time."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027future directions\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document detailing extensions of the described work that may be implemented at some future point in time."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future challenges"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future considerations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future developments"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future outlook"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future perspectives"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future plans"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future prospects"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future research"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future research directions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future studies"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future work"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""outlook"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":[""https://github.com/information-artifact-ontology/IAO/issues/183"",""https://github.com/information-artifact-ontology/IAO/issues/234""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000626"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000626"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000626"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027future directions\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document detailing extensions of the described work that may be implemented at some future point in time."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future challenges"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future considerations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future developments"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future outlook"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future perspectives"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future plans"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future prospects"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future research"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future research directions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future studies"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future work"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""outlook"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000625""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000626"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000626""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000625"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000625"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000625""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000626","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document detailing extensions of the described work that may be implemented at some future point in time.","","","The section labelled 'future directions' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183|https://github.com/information-artifact-ontology/IAO/issues/234","","","future directions section","","","","0.0","future challenges|future considerations|future developments|future directions|future outlook|future perspectives|future plans|future prospects|future research|future research directions|future studies|future work|outlook","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document detailing extensions of the described work that may be implemented at some future point in time.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000625","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","future directions section","","","DUO","","IAO:0000625","IAO_0000625","","future directions section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000626","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000626"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000626""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing ideas regarding future work relevant to work described in a document that could be done."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Wang and Li. Acta Pharmacol Sin. 2016 Jan; 37(1): 25–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4722976/):\n\nIn the future, several questions will need to be resolved regarding the physiological assembly of KCNQ channels and their functional implications in complex neural circuits. First, we still lack sufficiently selective inhibitors and activators among the KCNQ family members."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing ideas regarding future work relevant to work described in a document that could be done."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000625"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000626"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Wang and Li. Acta Pharmacol Sin. 2016 Jan; 37(1): 25–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4722976/):\n\nIn the future, several questions will need to be resolved regarding the physiological assembly of KCNQ channels and their functional implications in complex neural circuits. First, we still lack sufficiently selective inhibitors and activators among the KCNQ family members."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing ideas regarding future work relevant to work described in a document that could be done."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000626""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000625"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000625""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000626"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000626"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000626""},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity expressing ideas regarding future work relevant to work described in a document that could be done.","","","Excerpt from Wang and Li. Acta Pharmacol Sin. 2016 Jan; 37(1): 25–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4722976/): +"duo+class+http://purl.obolibrary.org/obo/IAO_0000625","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000625"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000625""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document detailing extensions of the described work that may be implemented at some future point in time."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027future directions\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document detailing extensions of the described work that may be implemented at some future point in time."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future challenges"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future considerations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future developments"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future outlook"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future perspectives"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future plans"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future prospects"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future research"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future research directions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future studies"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future work"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""outlook"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":[""https://github.com/information-artifact-ontology/IAO/issues/183"",""https://github.com/information-artifact-ontology/IAO/issues/234""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000626"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000626"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000626"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027future directions\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document detailing extensions of the described work that may be implemented at some future point in time."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future challenges"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future considerations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future developments"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future outlook"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future perspectives"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future plans"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future prospects"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future research"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future research directions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future studies"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future work"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""outlook"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000625""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000626"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000626""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000626","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document detailing extensions of the described work that may be implemented at some future point in time.","","","The section labelled 'future directions' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183|https://github.com/information-artifact-ontology/IAO/issues/234","","","future directions section","","","","0.0","future challenges|future considerations|future developments|future directions|future outlook|future perspectives|future plans|future prospects|future research|future research directions|future studies|future work|outlook","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document detailing extensions of the described work that may be implemented at some future point in time.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000625","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","future directions section","","","DUO","","IAO:0000625","IAO_0000625","","future directions section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000626","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000626"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000626""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing ideas regarding future work relevant to work described in a document that could be done."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Wang and Li. Acta Pharmacol Sin. 2016 Jan; 37(1): 25–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4722976/):\n\nIn the future, several questions will need to be resolved regarding the physiological assembly of KCNQ channels and their functional implications in complex neural circuits. First, we still lack sufficiently selective inhibitors and activators among the KCNQ family members."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing ideas regarding future work relevant to work described in a document that could be done."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000625"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000626"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Wang and Li. Acta Pharmacol Sin. 2016 Jan; 37(1): 25–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4722976/):\n\nIn the future, several questions will need to be resolved regarding the physiological assembly of KCNQ channels and their functional implications in complex neural circuits. First, we still lack sufficiently selective inhibitors and activators among the KCNQ family members."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing ideas regarding future work relevant to work described in a document that could be done."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000626""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000625"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""future directions section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000625""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity expressing ideas regarding future work relevant to work described in a document that could be done.","","","Excerpt from Wang and Li. Acta Pharmacol Sin. 2016 Jan; 37(1): 25–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4722976/): In the future, several questions will need to be resolved regarding the physiological assembly of KCNQ channels and their functional implications in complex neural circuits. First, we still lack sufficiently selective inhibitors and activators among the KCNQ family members.","https://github.com/information-artifact-ontology/IAO/issues/183","","","future directions textual entity","","","http://purl.obolibrary.org/obo/IAO_0000625","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity expressing ideas regarding future work relevant to work described in a document that could be done.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000626","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","future directions textual entity","","","DUO","","IAO:0000626","IAO_0000626","","future directions textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000627","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000627"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000627""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part announcing the publication of a novel draft genome sequence."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027genome announcement\u0027 in a typical scientific journal article, e.g. in Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part announcing the publication of a novel draft genome sequence."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000628"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000628"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000628"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027genome announcement\u0027 in a typical scientific journal article, e.g. in Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part announcing the publication of a novel draft genome sequence."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000627""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000628"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000628""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000627"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000627"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000627""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000628","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A document part announcing the publication of a novel draft genome sequence.","","","The section labelled 'genome announcement' in a typical scientific journal article, e.g. in Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","genome announcement section","","","","0.0","genome announcement","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A document part announcing the publication of a novel draft genome sequence.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000627","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","genome announcement section","","","DUO","","IAO:0000627","IAO_0000627","","genome announcement section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000628","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000628"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000628""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that describes the generation and public release of a novel, draft genome sequence."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/):\n\nHere we report the genome sequence of Lactobacillus malefermentans KCTC 3548, which we obtained using a whole-genome shotgun strategy (4) with Roche 454 GS (FLX Titanium) pyrosequencing (257,559 reads totaling ∼89.8 Mb; ∼45-fold coverage of the genome) at the Genome Resource Center, Korea Research Institute of Bioscience and Biotechnology (KRIBB)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that describes the generation and public release of a novel, draft genome sequence."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000627"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000628"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/):\n\nHere we report the genome sequence of Lactobacillus malefermentans KCTC 3548, which we obtained using a whole-genome shotgun strategy (4) with Roche 454 GS (FLX Titanium) pyrosequencing (257,559 reads totaling ∼89.8 Mb; ∼45-fold coverage of the genome) at the Genome Resource Center, Korea Research Institute of Bioscience and Biotechnology (KRIBB)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that describes the generation and public release of a novel, draft genome sequence."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000628""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000627"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000627""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000628"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000628"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000628""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity that describes the generation and public release of a novel, draft genome sequence.","","","Excerpt from Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/): +"duo+class+http://purl.obolibrary.org/obo/IAO_0000627","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000627"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000627""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part announcing the publication of a novel draft genome sequence."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027genome announcement\u0027 in a typical scientific journal article, e.g. in Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part announcing the publication of a novel draft genome sequence."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000628"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000628"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000628"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027genome announcement\u0027 in a typical scientific journal article, e.g. in Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part announcing the publication of a novel draft genome sequence."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000627""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000628"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000628""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000628","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A document part announcing the publication of a novel draft genome sequence.","","","The section labelled 'genome announcement' in a typical scientific journal article, e.g. in Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","genome announcement section","","","","0.0","genome announcement","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A document part announcing the publication of a novel draft genome sequence.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000627","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","genome announcement section","","","DUO","","IAO:0000627","IAO_0000627","","genome announcement section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000628","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000628"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000628""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that describes the generation and public release of a novel, draft genome sequence."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/):\n\nHere we report the genome sequence of Lactobacillus malefermentans KCTC 3548, which we obtained using a whole-genome shotgun strategy (4) with Roche 454 GS (FLX Titanium) pyrosequencing (257,559 reads totaling ∼89.8 Mb; ∼45-fold coverage of the genome) at the Genome Resource Center, Korea Research Institute of Bioscience and Biotechnology (KRIBB)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that describes the generation and public release of a novel, draft genome sequence."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000627"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000628"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/):\n\nHere we report the genome sequence of Lactobacillus malefermentans KCTC 3548, which we obtained using a whole-genome shotgun strategy (4) with Roche 454 GS (FLX Titanium) pyrosequencing (257,559 reads totaling ∼89.8 Mb; ∼45-fold coverage of the genome) at the Genome Resource Center, Korea Research Institute of Bioscience and Biotechnology (KRIBB)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that describes the generation and public release of a novel, draft genome sequence."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000628""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000627"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""genome announcement section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000627""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity that describes the generation and public release of a novel, draft genome sequence.","","","Excerpt from Kim et al. J Bacteriol. 2011 Oct; 193(19): 5537. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3187466/): Here we report the genome sequence of Lactobacillus malefermentans KCTC 3548, which we obtained using a whole-genome shotgun strategy (4) with Roche 454 GS (FLX Titanium) pyrosequencing (257,559 reads totaling ∼89.8 Mb; ∼45-fold coverage of the genome) at the Genome Resource Center, Korea Research Institute of Bioscience and Biotechnology (KRIBB).","https://github.com/information-artifact-ontology/IAO/issues/183","","","genome announcement textual entity","","","http://purl.obolibrary.org/obo/IAO_0000627","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity that describes the generation and public release of a novel, draft genome sequence.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000628","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","genome announcement textual entity","","","DUO","","IAO:0000628","IAO_0000628","","genome announcement textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000629","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000629"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000629""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity listing keywords indicating the major theme(s) of a document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keyword textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From: Fu and Lin. Identification of gene-oriented exon orthology between human and mouse. BMC Genomics. 2012; 13(Suppl 1): S10. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3303729/):\n\nExon orthology; alternative splicing; exon duplication; intron-exon structure."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity listing keywords indicating the major theme(s) of a document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keyword textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keyword textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000630"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000629"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keyword textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From: Fu and Lin. Identification of gene-oriented exon orthology between human and mouse. BMC Genomics. 2012; 13(Suppl 1): S10. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3303729/):\n\nExon orthology; alternative splicing; exon duplication; intron-exon structure."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity listing keywords indicating the major theme(s) of a document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000629""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000630"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keywords section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000630""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000629"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000629"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000629""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity listing keywords indicating the major theme(s) of a document.","","","From: Fu and Lin. Identification of gene-oriented exon orthology between human and mouse. BMC Genomics. 2012; 13(Suppl 1): S10. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3303729/): +"duo+class+http://purl.obolibrary.org/obo/IAO_0000629","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000629"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000629""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity listing keywords indicating the major theme(s) of a document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keyword textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From: Fu and Lin. Identification of gene-oriented exon orthology between human and mouse. BMC Genomics. 2012; 13(Suppl 1): S10. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3303729/):\n\nExon orthology; alternative splicing; exon duplication; intron-exon structure."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity listing keywords indicating the major theme(s) of a document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keyword textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keyword textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000630"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000629"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keyword textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From: Fu and Lin. Identification of gene-oriented exon orthology between human and mouse. BMC Genomics. 2012; 13(Suppl 1): S10. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3303729/):\n\nExon orthology; alternative splicing; exon duplication; intron-exon structure."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity listing keywords indicating the major theme(s) of a document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000629""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000630"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keywords section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000630""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity listing keywords indicating the major theme(s) of a document.","","","From: Fu and Lin. Identification of gene-oriented exon orthology between human and mouse. BMC Genomics. 2012; 13(Suppl 1): S10. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3303729/): Exon orthology; alternative splicing; exon duplication; intron-exon structure.","https://github.com/information-artifact-ontology/IAO/issues/183","","","keyword textual entity","","","http://purl.obolibrary.org/obo/IAO_0000630","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity listing keywords indicating the major theme(s) of a document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000629","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","keyword textual entity","","","DUO","","IAO:0000629","IAO_0000629","","keyword textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000630","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000630"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000630""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keywords section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027keywords\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keywords"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keywords section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000629"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keywords section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000629"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000629"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keywords section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027keywords\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keywords"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000630""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000629"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keyword textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000629""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""IAO:0000630"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000630"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000630""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000629","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed.","","","The section labelled 'keywords' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183","","","keywords section","","","","0.0","keywords","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000630","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","keywords section","","","DUO","","IAO:0000630","IAO_0000630","","keywords section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000631","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000631"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000631""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about biases or short comings related to the study design and execution."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027limitations\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about biases or short comings related to the study design and execution."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""limitations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000632"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations section"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000632"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000632"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/OBI_0500000"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027limitations\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about biases or short comings related to the study design and execution."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""limitations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000631""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000632"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000632""},""type"":[""class"",""entity""]},""IAO:0000631"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000631"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000631""},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0500000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study design"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0500000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000632|http://purl.obolibrary.org/obo/OBI_0500000","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314||","true","","","PERSON: Bill Baumgartner","","A part of a document about biases or short comings related to the study design and execution.","","","The section labelled 'limitations' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183","","","study limitations section","","","","1.0","limitations|study limitations","Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A part of a document about biases or short comings related to the study design and execution.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000631","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","study limitations section","","","DUO","","IAO:0000631","IAO_0000631","","study limitations section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000632","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000632"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000632""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity addressing a shortcoming or bias of a study design or execution."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from the Limitations section of Fermann et al 2015, Acad Emerg Med. 2015 Mar; 22(3): 299–307 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4405051/). \n\nOwing to the nature of a post hoc study, any significant values must be interpreted with caution. In the current analysis, no multiple testing was conducted and p-values remain unadjusted. Moreover, a selection bias arising from the randomized open-label design of the original EINSTEIN PE study cannot be ruled out."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity addressing a shortcoming or bias of a study design or execution."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000631"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000632"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from the Limitations section of Fermann et al 2015, Acad Emerg Med. 2015 Mar; 22(3): 299–307 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4405051/). \n\nOwing to the nature of a post hoc study, any significant values must be interpreted with caution. In the current analysis, no multiple testing was conducted and p-values remain unadjusted. Moreover, a selection bias arising from the randomized open-label design of the original EINSTEIN PE study cannot be ruled out."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity addressing a shortcoming or bias of a study design or execution."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000632""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000631"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000631""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""IAO:0000632"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000632"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000632""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity addressing a shortcoming or bias of a study design or execution.","","","Excerpt from the Limitations section of Fermann et al 2015, Acad Emerg Med. 2015 Mar; 22(3): 299–307 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4405051/). +"duo+class+http://purl.obolibrary.org/obo/IAO_0000630","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000630"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000630""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keywords section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027keywords\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keywords"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keywords section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000629"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keywords section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000629"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000629"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keywords section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027keywords\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keywords"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000630""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000629"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""keyword textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000629""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000629","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed.","","","The section labelled 'keywords' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183","","","keywords section","","","","0.0","keywords","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document where keywords selected by the author to categorize the major theme(s) of a document are listed.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000630","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","keywords section","","","DUO","","IAO:0000630","IAO_0000630","","keywords section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000631","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000631"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000631""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about biases or short comings related to the study design and execution."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027limitations\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about biases or short comings related to the study design and execution."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""limitations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000632"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations section"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000632"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000632"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/OBI_0500000"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027limitations\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about biases or short comings related to the study design and execution."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""limitations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000631""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000632"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000632""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0500000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study design"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0500000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000632|http://purl.obolibrary.org/obo/OBI_0500000","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314||","true","","","PERSON: Bill Baumgartner","","A part of a document about biases or short comings related to the study design and execution.","","","The section labelled 'limitations' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183","","","study limitations section","","","","1.0","limitations|study limitations","Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A part of a document about biases or short comings related to the study design and execution.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000631","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","study limitations section","","","DUO","","IAO:0000631","IAO_0000631","","study limitations section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000632","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000632"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000632""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity addressing a shortcoming or bias of a study design or execution."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from the Limitations section of Fermann et al 2015, Acad Emerg Med. 2015 Mar; 22(3): 299–307 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4405051/). \n\nOwing to the nature of a post hoc study, any significant values must be interpreted with caution. In the current analysis, no multiple testing was conducted and p-values remain unadjusted. Moreover, a selection bias arising from the randomized open-label design of the original EINSTEIN PE study cannot be ruled out."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity addressing a shortcoming or bias of a study design or execution."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000631"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000632"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from the Limitations section of Fermann et al 2015, Acad Emerg Med. 2015 Mar; 22(3): 299–307 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4405051/). \n\nOwing to the nature of a post hoc study, any significant values must be interpreted with caution. In the current analysis, no multiple testing was conducted and p-values remain unadjusted. Moreover, a selection bias arising from the randomized open-label design of the original EINSTEIN PE study cannot be ruled out."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity addressing a shortcoming or bias of a study design or execution."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000632""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000631"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000631""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity addressing a shortcoming or bias of a study design or execution.","","","Excerpt from the Limitations section of Fermann et al 2015, Acad Emerg Med. 2015 Mar; 22(3): 299–307 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4405051/). Owing to the nature of a post hoc study, any significant values must be interpreted with caution. In the current analysis, no multiple testing was conducted and p-values remain unadjusted. Moreover, a selection bias arising from the randomized open-label design of the original EINSTEIN PE study cannot be ruled out.","https://github.com/information-artifact-ontology/IAO/issues/183","","","study limitations textual entity","","","http://purl.obolibrary.org/obo/IAO_0000631","0.0","","Author guidelines published by The Society for Academic Emergency Medicine. (http://onlinelibrary.wiley.com/journal/10.1111/(ISSN)1553-2712/homepage/ForAuthors.html)","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity addressing a shortcoming or bias of a study design or execution.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000632","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","study limitations textual entity","","","DUO","","IAO:0000632","IAO_0000632","","study limitations textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000633","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000633"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000633""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the materials required to reproduce the content of the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""materials section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027materials\u0027 in a typical scientific journal article, e.g. Nguyen et al. BMC Bioinformatics. 2010; 11: 279. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2889936/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the materials required to reproduce the content of the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""materials"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""materials section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""materials section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""materials section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027materials\u0027 in a typical scientific journal article, e.g. Nguyen et al. BMC Bioinformatics. 2010; 11: 279. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2889936/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the materials required to reproduce the content of the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""materials"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000633""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000633"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000633"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000633""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Bill Baumgartner","","A part of a document about the materials required to reproduce the content of the document.","","","The section labelled 'materials' in a typical scientific journal article, e.g. Nguyen et al. BMC Bioinformatics. 2010; 11: 279. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2889936/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","materials section","","","","0.0","materials","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about the materials required to reproduce the content of the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000633","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","materials section","","","DUO","","IAO:0000633","IAO_0000633","","materials section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000634","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000634"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000634""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notes section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027notes\u0027 in a typical scientific journal article, e.g. McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notes"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notes section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notes section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notes section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027notes\u0027 in a typical scientific journal article, e.g. McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notes"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000634""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""IAO:0000634"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000634"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000634""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Bill Baumgartner","","A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc.","","","The section labelled 'notes' in a typical scientific journal article, e.g. McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):","https://github.com/information-artifact-ontology/IAO/issues/183","","","notes section","","","","0.0","notes","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000634","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","notes section","","","DUO","","IAO:0000634","IAO_0000634","","notes section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000635","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000635"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000635""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the patients that participated in a study."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027patients\u0027 in a typical scientific journal article, e.g. in Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the patients that participated in a study."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000636"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000636"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000636"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027patients\u0027 in a typical scientific journal article, e.g. in Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the patients that participated in a study."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000635""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""IAO:0000635"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000635"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000635""},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000636"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000636""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000636","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document about the patients that participated in a study.","","","The section labelled 'patients' in a typical scientific journal article, e.g. in Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","patients section","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about the patients that participated in a study.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000635","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","patients section","","","DUO","","IAO:0000635","IAO_0000635","","patients section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000636","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000636"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000636""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing information regarding the patients used in a study."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/):\n\nBetween January 1996 and February 2012, we treated 4 patients with interprosthetic femoral fractures (3 of them women) (Figure 2) using a custom-made interposition device (Waldemar Link GmbH, Hamburg, Germany) (Figure 1). Mean age was 74 (59–86) years. The fractures occurred mean 18 (13–28) years after primary THA and mean 14 (10–17) years after primary TKA. At the latest follow-up, after mean 8 (0.5–16) years, revision surgery with a total femur replacement was required in 1 case due to aseptic loosening. No other complications requiring revision surgery occurred."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing information regarding the patients used in a study."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000635"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000636"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/):\n\nBetween January 1996 and February 2012, we treated 4 patients with interprosthetic femoral fractures (3 of them women) (Figure 2) using a custom-made interposition device (Waldemar Link GmbH, Hamburg, Germany) (Figure 1). Mean age was 74 (59–86) years. The fractures occurred mean 18 (13–28) years after primary THA and mean 14 (10–17) years after primary TKA. At the latest follow-up, after mean 8 (0.5–16) years, revision surgery with a total femur replacement was required in 1 case due to aseptic loosening. No other complications requiring revision surgery occurred."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing information regarding the patients used in a study."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000636""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000636"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000636"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000636""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000635"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000635""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity expressing information regarding the patients used in a study.","","","Excerpt from Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/): +"duo+class+http://purl.obolibrary.org/obo/IAO_0000633","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000633"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000633""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the materials required to reproduce the content of the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""materials section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027materials\u0027 in a typical scientific journal article, e.g. Nguyen et al. BMC Bioinformatics. 2010; 11: 279. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2889936/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the materials required to reproduce the content of the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""materials"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""materials section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""materials section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""materials section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027materials\u0027 in a typical scientific journal article, e.g. Nguyen et al. BMC Bioinformatics. 2010; 11: 279. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2889936/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the materials required to reproduce the content of the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""materials"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000633""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Bill Baumgartner","","A part of a document about the materials required to reproduce the content of the document.","","","The section labelled 'materials' in a typical scientific journal article, e.g. Nguyen et al. BMC Bioinformatics. 2010; 11: 279. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2889936/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","materials section","","","","0.0","materials","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about the materials required to reproduce the content of the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000633","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","materials section","","","DUO","","IAO:0000633","IAO_0000633","","materials section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000634","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000634"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000634""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notes section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027notes\u0027 in a typical scientific journal article, e.g. McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notes"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notes section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notes section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notes section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027notes\u0027 in a typical scientific journal article, e.g. McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notes"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000634""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Bill Baumgartner","","A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc.","","","The section labelled 'notes' in a typical scientific journal article, e.g. McLean et al. Br J Gen Pract. 2014 Jul; 64(624): e440–e447 (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4073730/):","https://github.com/information-artifact-ontology/IAO/issues/183","","","notes section","","","","0.0","notes","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document containing typically short notes about the document itself and/or the authors. Often the notes section contains subsections related to funding, competing interests, ethical approval, etc.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000634","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","notes section","","","DUO","","IAO:0000634","IAO_0000634","","notes section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000635","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000635"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000635""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the patients that participated in a study."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027patients\u0027 in a typical scientific journal article, e.g. in Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the patients that participated in a study."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000636"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000636"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000636"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027patients\u0027 in a typical scientific journal article, e.g. in Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about the patients that participated in a study."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000635""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000636"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000636""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000636","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document about the patients that participated in a study.","","","The section labelled 'patients' in a typical scientific journal article, e.g. in Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","patients section","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about the patients that participated in a study.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000635","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","patients section","","","DUO","","IAO:0000635","IAO_0000635","","patients section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000636","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000636"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000636""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing information regarding the patients used in a study."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/):\n\nBetween January 1996 and February 2012, we treated 4 patients with interprosthetic femoral fractures (3 of them women) (Figure 2) using a custom-made interposition device (Waldemar Link GmbH, Hamburg, Germany) (Figure 1). Mean age was 74 (59–86) years. The fractures occurred mean 18 (13–28) years after primary THA and mean 14 (10–17) years after primary TKA. At the latest follow-up, after mean 8 (0.5–16) years, revision surgery with a total femur replacement was required in 1 case due to aseptic loosening. No other complications requiring revision surgery occurred."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing information regarding the patients used in a study."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000635"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000636"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/):\n\nBetween January 1996 and February 2012, we treated 4 patients with interprosthetic femoral fractures (3 of them women) (Figure 2) using a custom-made interposition device (Waldemar Link GmbH, Hamburg, Germany) (Figure 1). Mean age was 74 (59–86) years. The fractures occurred mean 18 (13–28) years after primary THA and mean 14 (10–17) years after primary TKA. At the latest follow-up, after mean 8 (0.5–16) years, revision surgery with a total femur replacement was required in 1 case due to aseptic loosening. No other complications requiring revision surgery occurred."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity expressing information regarding the patients used in a study."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000636""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000635"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""patients section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000635""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity expressing information regarding the patients used in a study.","","","Excerpt from Citak et al. Acta Orthop. 2013 Jun; 84(3): 326–327. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3715825/): Between January 1996 and February 2012, we treated 4 patients with interprosthetic femoral fractures (3 of them women) (Figure 2) using a custom-made interposition device (Waldemar Link GmbH, Hamburg, Germany) (Figure 1). Mean age was 74 (59–86) years. The fractures occurred mean 18 (13–28) years after primary THA and mean 14 (10–17) years after primary TKA. At the latest follow-up, after mean 8 (0.5–16) years, revision surgery with a total femur replacement was required in 1 case due to aseptic loosening. No other complications requiring revision surgery occurred.","https://github.com/information-artifact-ontology/IAO/issues/183","","","patients textual entity","","","http://purl.obolibrary.org/obo/IAO_0000635","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity expressing information regarding the patients used in a study.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000636","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","patients textual entity","","","DUO","","IAO:0000636","IAO_0000636","","patients textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000637","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000637"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000637""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027pre-publication history\u0027 in a typical scientific journal article, e.g. in Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notice of republication"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000638"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000638"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000638"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027pre-publication history\u0027 in a typical scientific journal article, e.g. in Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notice of republication"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000637""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000637"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000637"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000637""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000638"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000638""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000638","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors.","","","The section labelled 'pre-publication history' in a typical scientific journal article, e.g. in Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","pre-publication history section","","","","0.0","notice of republication|pre-publication history","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000637","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","pre-publication history section","","","DUO","","IAO:0000637","IAO_0000637","","pre-publication history section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000638","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000638"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000638""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/):\n\nThe pre-publication history for this paper can be accessed here:\nhttp://www.biomedcentral.com/1471-2253/13/33/prepub"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000637"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000638"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/):\n\nThe pre-publication history for this paper can be accessed here:\nhttp://www.biomedcentral.com/1471-2253/13/33/prepub"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000638""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""IAO:0000638"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000638"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000638""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000637"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000637""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information.","","","From Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/): +"duo+class+http://purl.obolibrary.org/obo/IAO_0000637","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000637"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000637""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027pre-publication history\u0027 in a typical scientific journal article, e.g. in Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notice of republication"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000638"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000638"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000638"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027pre-publication history\u0027 in a typical scientific journal article, e.g. in Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""notice of republication"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000637""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000638"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000638""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000638","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors.","","","The section labelled 'pre-publication history' in a typical scientific journal article, e.g. in Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","pre-publication history section","","","","0.0","notice of republication|pre-publication history","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of the document about the publication history of a document. This section typically details dates of document submission to a journal and dates of any re-submissions as well as reviewer comments and responses to reviewers by the authors.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000637","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","pre-publication history section","","","DUO","","IAO:0000637","IAO_0000637","","pre-publication history section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000638","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000638"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000638""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/):\n\nThe pre-publication history for this paper can be accessed here:\nhttp://www.biomedcentral.com/1471-2253/13/33/prepub"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000637"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000638"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/):\n\nThe pre-publication history for this paper can be accessed here:\nhttp://www.biomedcentral.com/1471-2253/13/33/prepub"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000638""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000637"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pre-publication history section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000637""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information.","","","From Xiao et al. BMC Anesthesiol. 2013; 13: 33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4016475/): The pre-publication history for this paper can be accessed here: http://www.biomedcentral.com/1471-2253/13/33/prepub","https://github.com/information-artifact-ontology/IAO/issues/183","","","pre-publication history textual entity","","","http://purl.obolibrary.org/obo/IAO_0000637","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity that expresses the pre-publication history (submission dates, reviewer comments, etc) for a document, often including a hyperlink to a web page detailing the information.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000638","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","pre-publication history textual entity","","","DUO","","IAO:0000638","IAO_0000638","","pre-publication history textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000639","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000639"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000639""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about work in other publications that is relevant to the content of the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027related work\u0027 in a typical scientific journal article, e.g. Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about work in other publications that is relevant to the content of the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related literature"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000640"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000640"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000640"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027related work\u0027 in a typical scientific journal article, e.g. Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about work in other publications that is relevant to the content of the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related literature"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000639""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""IAO:0000639"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000639"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000639""},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000640"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000640""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000640","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document about work in other publications that is relevant to the content of the document.","","","The section labelled 'related work' in a typical scientific journal article, e.g. Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","related work section","","","","0.0","related literature|related work","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about work in other publications that is relevant to the content of the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000639","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","related work section","","","DUO","","IAO:0000639","IAO_0000639","","related work section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000640","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000640"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000640""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that discusses work from other publications and expresses their relevancy to the content of a document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/):\n\nOur work presented here is similar in spirit to our recently developed methodology for data fusion via collective matrix factorization (Žitnik and Zupan, 2015).\n\n"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that discusses work from other publications and expresses their relevancy to the content of a document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000639"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000640"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/):\n\nOur work presented here is similar in spirit to our recently developed methodology for data fusion via collective matrix factorization (Žitnik and Zupan, 2015).\n\n"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that discusses work from other publications and expresses their relevancy to the content of a document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000640""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000640"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000640"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000640""},""http://purl.obolibrary.org/obo/IAO_0000639"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000639""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity that discusses work from other publications and expresses their relevancy to the content of a document.","","","Excerpt from Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/): +"duo+class+http://purl.obolibrary.org/obo/IAO_0000639","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000639"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000639""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about work in other publications that is relevant to the content of the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027related work\u0027 in a typical scientific journal article, e.g. Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about work in other publications that is relevant to the content of the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related literature"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000640"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000640"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000640"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027related work\u0027 in a typical scientific journal article, e.g. Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about work in other publications that is relevant to the content of the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related literature"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000639""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000640"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000640""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000640","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document about work in other publications that is relevant to the content of the document.","","","The section labelled 'related work' in a typical scientific journal article, e.g. Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","related work section","","","","0.0","related literature|related work","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about work in other publications that is relevant to the content of the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000639","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","related work section","","","DUO","","IAO:0000639","IAO_0000639","","related work section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000640","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000640"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000640""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that discusses work from other publications and expresses their relevancy to the content of a document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/):\n\nOur work presented here is similar in spirit to our recently developed methodology for data fusion via collective matrix factorization (Žitnik and Zupan, 2015).\n\n"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that discusses work from other publications and expresses their relevancy to the content of a document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000639"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000640"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Excerpt from Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/):\n\nOur work presented here is similar in spirit to our recently developed methodology for data fusion via collective matrix factorization (Žitnik and Zupan, 2015).\n\n"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that discusses work from other publications and expresses their relevancy to the content of a document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000640""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000639"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""related work section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000639""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity that discusses work from other publications and expresses their relevancy to the content of a document.","","","Excerpt from Žitnik and Zupan. Bioinformatics. 2015 Jun 15; 31(12): i230–i239. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC4542780/): Our work presented here is similar in spirit to our recently developed methodology for data fusion via collective matrix factorization (Žitnik and Zupan, 2015). ","https://github.com/information-artifact-ontology/IAO/issues/183","","","related work textual entity","","","http://purl.obolibrary.org/obo/IAO_0000639","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity that discusses work from other publications and expresses their relevancy to the content of a document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000640","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","related work textual entity","","","DUO","","IAO:0000640","IAO_0000640","","related work textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000641","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000641"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000641""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027availability and requirements\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000642"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000642"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000642"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027availability and requirements\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000641""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000642"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000642""},""type"":[""class"",""entity""]},""IAO:0000641"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000641"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000641""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000642","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource.","","","The section labelled 'availability and requirements' in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).","https://github.com/information-artifact-ontology/IAO/issues/183","","","requirements section","","","","0.0","requirements","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000641","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","requirements section","","","DUO","","IAO:0000641","IAO_0000641","","requirements section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000642","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000642"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000642""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the requirements necessary to use a resource, e.g. software."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\n\n• Operating systems: Platform independent\n\n• Programming language: Matlab, R, Python\n\n• Other requirements: None\n\n• License: GNU GPL v3\n\n• Any restrictions to use by non-academics: None"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the requirements necessary to use a resource, e.g. software."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000641"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000642"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\n\n• Operating systems: Platform independent\n\n• Programming language: Matlab, R, Python\n\n• Other requirements: None\n\n• License: GNU GPL v3\n\n• Any restrictions to use by non-academics: None"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the requirements necessary to use a resource, e.g. software."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000642""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000642"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000642"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000642""},""http://purl.obolibrary.org/obo/IAO_0000641"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000641""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity that expresses the requirements necessary to use a resource, e.g. software.","","","From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/): +"duo+class+http://purl.obolibrary.org/obo/IAO_0000641","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000641"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000641""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027availability and requirements\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000642"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000642"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000642"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027availability and requirements\u0027 in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000641""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000642"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000642""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000642","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource.","","","The section labelled 'availability and requirements' in a typical scientific journal article, e.g. Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/).","https://github.com/information-artifact-ontology/IAO/issues/183","","","requirements section","","","","0.0","requirements","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document about a resource described in the document, e.g. software, that describes the requirements necessary to use the resource, e.g. operating systems, hardware, etc. in the case of a software resource.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000641","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","requirements section","","","DUO","","IAO:0000641","IAO_0000641","","requirements section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000642","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000642"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000642""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the requirements necessary to use a resource, e.g. software."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\n\n• Operating systems: Platform independent\n\n• Programming language: Matlab, R, Python\n\n• Other requirements: None\n\n• License: GNU GPL v3\n\n• Any restrictions to use by non-academics: None"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the requirements necessary to use a resource, e.g. software."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000641"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000642"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/):\n\n• Operating systems: Platform independent\n\n• Programming language: Matlab, R, Python\n\n• Other requirements: None\n\n• License: GNU GPL v3\n\n• Any restrictions to use by non-academics: None"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity that expresses the requirements necessary to use a resource, e.g. software."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000642""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000641"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requirements section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000641""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity that expresses the requirements necessary to use a resource, e.g. software.","","","From Qi et al. BMC Bioinformatics. 2014; 15: 11. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3897912/): • Operating systems: Platform independent @@ -370,53 +370,53 @@ Our work presented here is similar in spirit to our recently developed methodolo • License: GNU GPL v3 • Any restrictions to use by non-academics: None","https://github.com/information-artifact-ontology/IAO/issues/183","","","requirements textual entity","","","http://purl.obolibrary.org/obo/IAO_0000641","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity that expresses the requirements necessary to use a resource, e.g. software.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000642","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","requirements textual entity","","","DUO","","IAO:0000642","IAO_0000642","","requirements textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000643","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000643"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000643""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity documenting statistical analysis tools and techniques employed."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/):\n\nData were captured into EPI-DATA (version 3.1), cleaned and then exported to Stata version 10 for analysis. Continuous variables were summarised as mean (± standard deviation) and median (inter-quartile range), and presented in the tables. Categorical data were analysed using frequency and percentages, and results are presented in frequency tables and bar charts. Test of significance (p-value) was determined using the chi-square test. A p-value of less than 0.05 was considered significant."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity documenting statistical analysis tools and techniques employed."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000644"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000643"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/):\n\nData were captured into EPI-DATA (version 3.1), cleaned and then exported to Stata version 10 for analysis. Continuous variables were summarised as mean (± standard deviation) and median (inter-quartile range), and presented in the tables. Categorical data were analysed using frequency and percentages, and results are presented in frequency tables and bar charts. Test of significance (p-value) was determined using the chi-square test. A p-value of less than 0.05 was considered significant."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity documenting statistical analysis tools and techniques employed."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000643""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000644"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000644""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000643"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000643"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000643""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity documenting statistical analysis tools and techniques employed.","","","From Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/): +"duo+class+http://purl.obolibrary.org/obo/IAO_0000643","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000643"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000643""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity documenting statistical analysis tools and techniques employed."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000300"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000300"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis textual entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/):\n\nData were captured into EPI-DATA (version 3.1), cleaned and then exported to Stata version 10 for analysis. Continuous variables were summarised as mean (± standard deviation) and median (inter-quartile range), and presented in the tables. Categorical data were analysed using frequency and percentages, and results are presented in frequency tables and bar charts. Test of significance (p-value) was determined using the chi-square test. A p-value of less than 0.05 was considered significant."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity documenting statistical analysis tools and techniques employed."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis textual entity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000300"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis textual entity"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000644"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000643"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis textual entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/):\n\nData were captured into EPI-DATA (version 3.1), cleaned and then exported to Stata version 10 for analysis. Continuous variables were summarised as mean (± standard deviation) and median (inter-quartile range), and presented in the tables. Categorical data were analysed using frequency and percentages, and results are presented in frequency tables and bar charts. Test of significance (p-value) was determined using the chi-square test. A p-value of less than 0.05 was considered significant."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A textual entity documenting statistical analysis tools and techniques employed."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000643""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000644"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000644""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000300"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000300""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000300","true","","","PERSON: Bill Baumgartner","","A textual entity documenting statistical analysis tools and techniques employed.","","","From Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/): Data were captured into EPI-DATA (version 3.1), cleaned and then exported to Stata version 10 for analysis. Continuous variables were summarised as mean (± standard deviation) and median (inter-quartile range), and presented in the tables. Categorical data were analysed using frequency and percentages, and results are presented in frequency tables and bar charts. Test of significance (p-value) was determined using the chi-square test. A p-value of less than 0.05 was considered significant.","https://github.com/information-artifact-ontology/IAO/issues/183","","","statistical analysis textual entity","","","http://purl.obolibrary.org/obo/IAO_0000644","0.0","","","http://purl.obolibrary.org/obo/IAO_0000300","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A textual entity documenting statistical analysis tools and techniques employed.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000300","","http://purl.obolibrary.org/obo/IAO_0000643","http://purl.obolibrary.org/obo/IAO_0000300|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","statistical analysis textual entity","","","DUO","","IAO:0000643","IAO_0000643","","statistical analysis textual entity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000644","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000644"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000644""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of the document used to describe the statistical methodologies employed in the work presented in the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027statistical analysis\u0027 in a typical scientific journal article, e.g. Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of the document used to describe the statistical methodologies employed in the work presented in the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000643"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000643"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000643"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027statistical analysis\u0027 in a typical scientific journal article, e.g. Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of the document used to describe the statistical methodologies employed in the work presented in the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000644""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000643"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000643""},""type"":[""class"",""entity""]},""IAO:0000644"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000644"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000644""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000643","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of the document used to describe the statistical methodologies employed in the work presented in the document.","","","The section labelled 'statistical analysis' in a typical scientific journal article, e.g. Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","statistical analysis section","","","","0.0","statistical analysis","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of the document used to describe the statistical methodologies employed in the work presented in the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000644","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","statistical analysis section","","","DUO","","IAO:0000644","IAO_0000644","","statistical analysis section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000645","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000645"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000645""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that contains one or more tables."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""tables section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027tables\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that contains one or more tables."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""tables"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""tables section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000306"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""tables section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000306"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000306"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""tables section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027tables\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that contains one or more tables."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""tables"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000645""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000306"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000306""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000645"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000645"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000645""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000306","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document that contains one or more tables.","","","The section labelled 'tables' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183","","","tables section","","","","0.0","tables","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document that contains one or more tables.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000645","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","tables section","","","DUO","","IAO:0000645","IAO_0000645","","tables section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000646","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000646"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000646""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0020000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0020000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""postal code"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0020000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""postal code"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000646""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000646"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000646"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000646""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0020000","true","","","Mathias Brochhausen","","An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail.","","","","","","","","","","","1.0","","","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0020000","","http://purl.obolibrary.org/obo/IAO_0000646","http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","postal code","","","DUO","","IAO:0000646","IAO_0000646","","postal code","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000647","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000647"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000647""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Postal delivery route"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000104"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Postal delivery route"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000647""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000647"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000647"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000647""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000104","true","","","Mathias Brochhausen","","A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region.","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000104","","http://purl.obolibrary.org/obo/IAO_0000647","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","Postal delivery route","","","DUO","","IAO:0000647","IAO_0000647","","Postal delivery route","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000648","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000648"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000648""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000646"",""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000646"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000646"",""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000646"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ZIP code"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zone improvement plan code"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000646"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zone improvement plan code"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ZIP code"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000648""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""IAO:0000648"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000648"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000648""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""postal code"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000646","true","","","Mathias Brochhausen","","A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes.","","","","","","","","","","","0.0","ZIP code","","http://purl.obolibrary.org/obo/IAO_0000646","http://purl.obolibrary.org/obo/IAO_0000646|http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000646","","http://purl.obolibrary.org/obo/IAO_0000648","http://purl.obolibrary.org/obo/IAO_0000646|http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","zone improvement plan code","","","DUO","","IAO:0000648","IAO_0000648","","zone improvement plan code","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000650","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000650"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000650""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database extract, transform, and load process"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""value"":""Alan Ruttenberg 12/21/16: Maybe this definition instead: A planned process which takes as input a database and copies concretizations from the first, optionally transforms then copies the result to the second""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg 12/21/16: We don\u0027t define database in IAO, currently, as the bare word is ambiguous. Reasonable interpretations of the word might be the material entity, an information structure, an information content entity. However this definition commits, at least, to there being some material thing which bear concretizations of information entities and that there are new concretizations created during the process. We consider the ETL process in terms of information entities rather than the concretizations. No committment is made as to whether the specified output."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""value"":""PERSON:Alan Ruttenberg""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ETL"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""WEB:https://en.wikipedia.org/wiki/Extract,_transform,_load""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/187"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""https://github.com/information-artifact-ontology/IAO"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database extract, transform, and load process"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/OBI_0000011"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false}],""http://xmlns.com/foaf/0.1/page"":""https://en.wikipedia.org/wiki/Extract,_transform,_load"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database extract, transform, and load process"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000030"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000030"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database extract, transform, and load process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second."",""lang"":""en""},{""type"":[""literal""],""value"":""Alan Ruttenberg 12/21/16: Maybe this definition instead: A planned process which takes as input a database and copies concretizations from the first, optionally transforms then copies the result to the second""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg 12/21/16: We don\u0027t define database in IAO, currently, as the bare word is ambiguous. Reasonable interpretations of the word might be the material entity, an information structure, an information content entity. However this definition commits, at least, to there being some material thing which bear concretizations of information entities and that there are new concretizations created during the process. We consider the ETL process in terms of information entities rather than the concretizations. No committment is made as to whether the specified output."",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON:Alan Ruttenberg""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ETL"",""lang"":""en""},{""type"":[""literal""],""value"":""WEB:https://en.wikipedia.org/wiki/Extract,_transform,_load""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000650""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://xmlns.com/foaf/0.1/page"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""page""},""curie"":{""type"":[""literal""],""value"":""page""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""IAO:0000650"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000650"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000650""},""http://purl.obolibrary.org/obo/OBI_0000293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""https://github.com/information-artifact-ontology/IAO"":{""url"":""https://github.com/information-artifact-ontology/IAO"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""github:information-artifact-ontology/IAO""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","https://en.wikipedia.org/wiki/Extract,_transform,_load","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/IAO_0000030","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011||","true","","Alan Ruttenberg 12/21/16: Maybe this definition instead: A planned process which takes as input a database and copies concretizations from the first, optionally transforms then copies the result to the second|Alan Ruttenberg 12/21/16: We don't define database in IAO, currently, as the bare word is ambiguous. Reasonable interpretations of the word might be the material entity, an information structure, an information content entity. However this definition commits, at least, to there being some material thing which bear concretizations of information entities and that there are new concretizations created during the process. We consider the ETL process in terms of information entities rather than the concretizations. No committment is made as to whether the specified output.","PERSON:Alan Ruttenberg","","A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second.","","","","https://github.com/information-artifact-ontology/IAO/issues/187","","","database extract, transform, and load process","","https://github.com/information-artifact-ontology/IAO","","0.0","ETL","WEB:https://en.wikipedia.org/wiki/Extract,_transform,_load","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/IAO_0000650","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","database extract, transform, and load process","","","DUO","","IAO:0000650","IAO_0000650","","database extract, transform, and load process","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000701","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000701"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000701""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""descriptive data section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/prisma/""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/235"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""value"":""ONE ontology""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""descriptive data section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""descriptive data section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""descriptive data section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made."",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/prisma/""},{""type"":[""literal""],""value"":""ONE ontology""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000701""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000701"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000701"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000701""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Chen Yang|PERSON: Jie Zheng","http://purl.obolibrary.org/obo/IAO_0000120","A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made.","","","","https://github.com/information-artifact-ontology/IAO/issues/235","ONE ontology","","descriptive data section","","","","0.0","","https://www.equator-network.org/reporting-guidelines/prisma/","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000701","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","descriptive data section","","","DUO","","IAO:0000701","IAO_0000701","","descriptive data section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000702","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000702"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000702""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000318"",""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000318"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000318"",""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000318"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional results section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/consort/""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/prisma/""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/strobe/""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/235"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""value"":""ONE ontology""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional results section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000318"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional results section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional results section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/consort/""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/prisma/""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/strobe/""},{""type"":[""literal""],""value"":""ONE ontology""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000702""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000318"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""results section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000318""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000702"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000702"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000702""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000318","true","","","PERSON: Chen Yang|PERSON: Jie Zheng","http://purl.obolibrary.org/obo/IAO_0000120","A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)","","","","https://github.com/information-artifact-ontology/IAO/issues/235","ONE ontology","","additional results section","","","","0.0","","https://www.equator-network.org/reporting-guidelines/consort/|https://www.equator-network.org/reporting-guidelines/prisma/|https://www.equator-network.org/reporting-guidelines/strobe/","http://purl.obolibrary.org/obo/IAO_0000318","http://purl.obolibrary.org/obo/IAO_0000318|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000318","","http://purl.obolibrary.org/obo/IAO_0000702","http://purl.obolibrary.org/obo/IAO_0000318|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","additional results section","","","DUO","","IAO:0000702","IAO_0000702","","additional results section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000703","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000703"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000703""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes human subject(s) that participated in a study (e.g. inclusion \u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""research participants section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes human subject(s) that participated in a study (e.g. inclusion \u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/consort/""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/prisma/""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/strobe-nut/""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/235"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""value"":""ONE ontology""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""research participants section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""research participants section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""research participants section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes human subject(s) that participated in a study (e.g. inclusion \u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.)."",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/consort/""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/prisma/""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/strobe-nut/""},{""type"":[""literal""],""value"":""ONE ontology""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000703""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000703"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000703"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000703""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Chen Yang|PERSON: Jie Zheng","http://purl.obolibrary.org/obo/IAO_0000120","A document part that describes human subject(s) that participated in a study (e.g. inclusion & exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.).","","","","https://github.com/information-artifact-ontology/IAO/issues/235","ONE ontology","","research participants section","","","","0.0","","https://www.equator-network.org/reporting-guidelines/consort/|https://www.equator-network.org/reporting-guidelines/prisma/|https://www.equator-network.org/reporting-guidelines/strobe-nut/","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A document part that describes human subject(s) that participated in a study (e.g. inclusion & exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.).","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000703","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","research participants section","","","DUO","","IAO:0000703","IAO_0000703","","research participants section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000704","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000704"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000704""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A methods section that describes details of data assessment methods (data measurement)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000317"",""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000317"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000317"",""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000317"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement methods section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A methods section that describes details of data assessment methods (data measurement)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/strobe/""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/235"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""value"":""ONE ontology""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement methods section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000317"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement methods section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement methods section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A methods section that describes details of data assessment methods (data measurement)."",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/strobe/""},{""type"":[""literal""],""value"":""ONE ontology""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000704""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000317"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methods section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000317""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000704"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000704"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000704""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000317","true","","","PERSON: Chen Yang|PERSON: Jie Zheng","http://purl.obolibrary.org/obo/IAO_0000120","A methods section that describes details of data assessment methods (data measurement).","","","","https://github.com/information-artifact-ontology/IAO/issues/235","ONE ontology","","measurement methods section","","","","0.0","","https://www.equator-network.org/reporting-guidelines/strobe/","http://purl.obolibrary.org/obo/IAO_0000317","http://purl.obolibrary.org/obo/IAO_0000317|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A methods section that describes details of data assessment methods (data measurement).","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000317","","http://purl.obolibrary.org/obo/IAO_0000704","http://purl.obolibrary.org/obo/IAO_0000317|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","measurement methods section","","","DUO","","IAO:0000704","IAO_0000704","","measurement methods section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000705","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000705"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000705""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes the physical/social/cultural conditions around a research trial."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""research settings section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes the physical/social/cultural conditions around a research trial."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""https://www.ncbi.nlm.nih.gov/books/NBK262175/""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/235"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""value"":""ONE ontology""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""research settings section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""research settings section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""research settings section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes the physical/social/cultural conditions around a research trial."",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""},{""type"":[""literal""],""value"":""https://www.ncbi.nlm.nih.gov/books/NBK262175/""},{""type"":[""literal""],""value"":""ONE ontology""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000705""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000705"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000705"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000705""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Chen Yang|PERSON: Jie Zheng","http://purl.obolibrary.org/obo/IAO_0000120","A document part that describes the physical/social/cultural conditions around a research trial.","","","","https://github.com/information-artifact-ontology/IAO/issues/235","ONE ontology","","research settings section","","","","0.0","","https://www.ncbi.nlm.nih.gov/books/NBK262175/","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A document part that describes the physical/social/cultural conditions around a research trial.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000705","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","research settings section","","","DUO","","IAO:0000705","IAO_0000705","","research settings section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000706","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000706"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000706""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000631"",""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000631"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000631"",""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000631"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study bias section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""DOI: 10.1097/PRS.0b013e3181de24bc""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/235"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""value"":""ONE ontology""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study bias section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000631"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study bias section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study bias section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others."",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""},{""type"":[""literal""],""value"":""DOI: 10.1097/PRS.0b013e3181de24bc""},{""type"":[""literal""],""value"":""ONE ontology""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000706""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000631"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000631""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000706"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000706"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000706""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000631","true","","","PERSON: Chen Yang|PERSON: Jie Zheng","http://purl.obolibrary.org/obo/IAO_0000120","A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others.","","","","https://github.com/information-artifact-ontology/IAO/issues/235","ONE ontology","","study bias section","","","","0.0","","DOI: 10.1097/PRS.0b013e3181de24bc","http://purl.obolibrary.org/obo/IAO_0000631","http://purl.obolibrary.org/obo/IAO_0000631|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000631","","http://purl.obolibrary.org/obo/IAO_0000706","http://purl.obolibrary.org/obo/IAO_0000631|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","study bias section","","","DUO","","IAO:0000706","IAO_0000706","","study bias section","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000707","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000707"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000707""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An abstract that is pictorial summary of the main findings described in the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000315"",""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000315"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000315"",""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000315"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graphical abstract"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An abstract that is pictorial summary of the main findings described in the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""value"":""PERSON: Jie Zheng""},{""type"":[""literal""],""value"":""PERSON: Tim Beck""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""visual abstract"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""https://www.elsevier.com/authors/journal-authors/graphical-abstract""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""value"":""Biomedical literature NLP project""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graphical abstract"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000315"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graphical abstract"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graphical abstract"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An abstract that is pictorial summary of the main findings described in the document."",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""},{""type"":[""literal""],""value"":""PERSON: Tim Beck""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""visual abstract"",""lang"":""en""},{""type"":[""literal""],""value"":""https://www.elsevier.com/authors/journal-authors/graphical-abstract""},{""type"":[""literal""],""value"":""Biomedical literature NLP project""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000707""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000315"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abstract"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000315""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000707"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000707"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000707""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000315","true","","","PERSON: Jie Zheng|PERSON: Tim Beck","http://purl.obolibrary.org/obo/IAO_0000120","An abstract that is pictorial summary of the main findings described in the document.","","","","https://github.com/information-artifact-ontology/IAO/issues/234","Biomedical literature NLP project","","graphical abstract","","","","0.0","visual abstract","https://www.elsevier.com/authors/journal-authors/graphical-abstract","http://purl.obolibrary.org/obo/IAO_0000315","http://purl.obolibrary.org/obo/IAO_0000315|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An abstract that is pictorial summary of the main findings described in the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000315","","http://purl.obolibrary.org/obo/IAO_0000707","http://purl.obolibrary.org/obo/IAO_0000315|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","graphical abstract","","","DUO","","IAO:0000707","IAO_0000707","","graphical abstract","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0000708","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000708"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000708""},""definition"":{""type"":[""literal""],""value"":""A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000578"",""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000578"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000578"",""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000578"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""value"":""\""You can connect your iD with your professional information — affiliations, grants, publications, peer review, and more. You can use your iD to share your information with other systems, ensuring you get recognition for all your contributions, saving you time and hassle, and reducing the risk of errors.\"" [https://orcid.org/]""},{""type"":[""literal""],""value"":""This class was originally defined in Apollo_SV (http://purl.obolibrary.org/obo/APOLLO_SV_00000496) but due to it being more in scope of IAO, it was decided to add it to IAO and deprecate its Apollo_SV equivalent. (2022-10-25)""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""value"":""http://orcid.org/0000-0002-1595-3213""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""value"":""ORCID ID""},{""type"":[""literal""],""value"":""ORCiD""},{""type"":[""literal""],""value"":""Open Researcher and Contributor ID""},{""type"":[""literal""],""value"":""Open Researcher and Contributor Identifier""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""https://orcid.org/""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""value"":""https://github.com/information-artifact-ontology/IAO/issues/259""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ORCID identifier"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000578"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ORCID identifier"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.""},{""type"":[""literal""],""value"":""\""You can connect your iD with your professional information — affiliations, grants, publications, peer review, and more. You can use your iD to share your information with other systems, ensuring you get recognition for all your contributions, saving you time and hassle, and reducing the risk of errors.\"" [https://orcid.org/]""},{""type"":[""literal""],""value"":""This class was originally defined in Apollo_SV (http://purl.obolibrary.org/obo/APOLLO_SV_00000496) but due to it being more in scope of IAO, it was decided to add it to IAO and deprecate its Apollo_SV equivalent. (2022-10-25)""},{""type"":[""literal""],""value"":""http://orcid.org/0000-0002-1595-3213""},{""type"":[""literal""],""value"":""ORCID ID""},{""type"":[""literal""],""value"":""ORCiD""},{""type"":[""literal""],""value"":""Open Researcher and Contributor ID""},{""type"":[""literal""],""value"":""Open Researcher and Contributor Identifier""},{""type"":[""literal""],""value"":""https://orcid.org/""},{""type"":[""literal""],""value"":""https://github.com/information-artifact-ontology/IAO/issues/259""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000708""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/"":{""url"":""https://orcid.org/"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000578"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000578""},""type"":[""class"",""entity""]},""https://orcid.org/)"":{""url"":""https://orcid.org/)"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:)""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000708"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000708"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000708""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000578","true","","""You can connect your iD with your professional information — affiliations, grants, publications, peer review, and more. You can use your iD to share your information with other systems, ensuring you get recognition for all your contributions, saving you time and hassle, and reducing the risk of errors."" [https://orcid.org/]|This class was originally defined in Apollo_SV (http://purl.obolibrary.org/obo/APOLLO_SV_00000496) but due to it being more in scope of IAO, it was decided to add it to IAO and deprecate its Apollo_SV equivalent. (2022-10-25)","http://orcid.org/0000-0002-1595-3213","http://purl.obolibrary.org/obo/IAO_0000125","A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.","","","","https://github.com/information-artifact-ontology/IAO/issues/259","","","","","","","0.0","ORCID ID|ORCiD|Open Researcher and Contributor ID|Open Researcher and Contributor Identifier","https://orcid.org/","http://purl.obolibrary.org/obo/IAO_0000578","http://purl.obolibrary.org/obo/IAO_0000578|http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","true","","A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000578","","http://purl.obolibrary.org/obo/IAO_0000708","http://purl.obolibrary.org/obo/IAO_0000578|http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","ORCID identifier","","","DUO","","IAO:0000708","IAO_0000708","","ORCID identifier","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0020000","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0020000"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Sep 29, 2016: The current definition has been amended from the previous version: \""A proper name is an information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\"" to more accuratly reflect the necessary and sufficient condition on the class. (MB)"",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""proper name"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},""http://purl.org/dc/elements/1.1/creator"":{""type"":[""literal""],""value"":""Mathias Brochhausen""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Sep 29, 2016: The current definition has been amended from the previous version: \""A proper name is an information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\"" to more accuratly reflect the necessary and sufficient condition on the class. (MB)"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/IAO_0000030"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000219"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000001"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000312"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0020010"",""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""numDescendants"":7.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0020020"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0020000"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""proper name"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},{""type"":[""literal""],""value"":""Mathias Brochhausen""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0020000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0020000"":{""url"":""http://purl.obolibrary.org/obo/IAO_0020000"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0020000""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000312"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000312""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""code set"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020020""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000219"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.org/dc/elements/1.1/creator"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""creator""},""curie"":{""type"":[""literal""],""value"":""creator""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier creating process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020010""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/IAO_0000030","true","","","Justin Whorton|Mathias Brochhausen","","An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.","","","","https://github.com/information-artifact-ontology/IAO/issues/237","","","identifier","","","http://purl.obolibrary.org/obo/IAO_0020020","7.0","proper name","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","Sep 29, 2016: The current definition has been amended from the previous version: ""A proper name is an information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity."" to more accuratly reflect the necessary and sufficient condition on the class. (MB)","An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.|Sep 29, 2016: The current definition has been amended from the previous version: ""A proper name is an information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity."" to more accuratly reflect the necessary and sufficient condition on the class. (MB)","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","identifier","","Mathias Brochhausen","DUO","","IAO:0020000","IAO_0020000","","identifier","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0020001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0020001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0020001""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a fundamental unit in a written language."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Grapheme is not about anything and hence is likely to not be an information content entity. If a new subclass of GDC for information structure entities is created it should move there."",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alphabetic letters, Chinese characters, numerical digits, punctuation marks, and the individual symbols of any of the world\u0027s writing systems"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a fundamental unit in a written language."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Grapheme""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},""http://purl.org/dc/elements/1.1/creator"":{""type"":[""literal""],""value"":""Mathias Brochhausen""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Grapheme is not about anything and hence is likely to not be an information content entity. If a new subclass of GDC for information structure entities is created it should move there."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""grapheme"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""grapheme"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alphabetic letters, Chinese characters, numerical digits, punctuation marks, and the individual symbols of any of the world\u0027s writing systems"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a fundamental unit in a written language."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Grapheme""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},{""type"":[""literal""],""value"":""Mathias Brochhausen""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0020001""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""IAO:0020001"":{""url"":""http://purl.obolibrary.org/obo/IAO_0020001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0020001""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://en.wikipedia.org/wiki/Grapheme"":{""url"":""http://en.wikipedia.org/wiki/Grapheme"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Grapheme""},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.org/dc/elements/1.1/creator"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""creator""},""curie"":{""type"":[""literal""],""value"":""creator""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/IAO_0000030","true","","","Justin Whorton","","An information content entity that is a fundamental unit in a written language.","","","alphabetic letters, Chinese characters, numerical digits, punctuation marks, and the individual symbols of any of the world's writing systems","https://github.com/information-artifact-ontology/IAO/issues/237","","","","","","","0.0","","http://en.wikipedia.org/wiki/Grapheme","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","true","Grapheme is not about anything and hence is likely to not be an information content entity. If a new subclass of GDC for information structure entities is created it should move there.","An information content entity that is a fundamental unit in a written language.|Grapheme is not about anything and hence is likely to not be an information content entity. If a new subclass of GDC for information structure entities is created it should move there.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0020001","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","grapheme","","Mathias Brochhausen","DUO","","IAO:0020001","IAO_0020001","","grapheme","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0020010","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0020010"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0020010""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dubbing process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""naming"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},""http://purl.org/dc/elements/1.1/creator"":{""type"":[""literal""],""value"":""Mathias Brochhausen""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier creating process"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000011"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/OBI_0000011"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0020000"",""isObsolete"":false}]},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier creating process"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dubbing process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""naming"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},{""type"":[""literal""],""value"":""Mathias Brochhausen""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0020010""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""IAO:0020010"":{""url"":""http://purl.obolibrary.org/obo/IAO_0020010"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0020010""},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.org/dc/elements/1.1/creator"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""creator""},""curie"":{""type"":[""literal""],""value"":""creator""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011","true","","","Justin Whorton|Mathias Brochhausen","","A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity.","","","","https://github.com/information-artifact-ontology/IAO/issues/237","","","","","","","0.0","dubbing process|naming","","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","true","","A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/IAO_0020010","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","identifier creating process","","Mathias Brochhausen","DUO","","IAO:0020010","IAO_0020010","","identifier creating process","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0020015","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0020015"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0020015""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier referring to an individual entity that is ascribed personhood by the user of the identifier."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Personal names \""today usually comprises a given name bestowed at birth or at a young age plus a surname. It is nearly universal for a human to have a name; except in rare cases, for example feral children growing up in isolation, or infants orphaned by natural disaster for whom no written record survives.[citation needed] The Convention on the Rights of the Child specifies that a child has the right from birth to a name. Certain isolated tribes, such as the Machiguenga of the Amazon, also lack personal names.\"" (http://en.wikipedia.org/wiki/Personal_name)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Personal names to not include names of fictional characters, e.g. Sherlock Holmes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Sep 29, 2016: The comment that including the wikipedia definition of personal name is not to be interpreted in a way that restricts this class to only contain strings of letters. A numerical or alphanumerical identifier that denotes a human is being is a personal name, too. (MB)"",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0020000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0020000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier referring to an individual entity that is ascribed personhood by the user of the identifier."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Personal_name""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Personal names \""today usually comprises a given name bestowed at birth or at a young age plus a surname. It is nearly universal for a human to have a name; except in rare cases, for example feral children growing up in isolation, or infants orphaned by natural disaster for whom no written record survives.[citation needed] The Convention on the Rights of the Child specifies that a child has the right from birth to a name. Certain isolated tribes, such as the Machiguenga of the Amazon, also lack personal names.\"" (http://en.wikipedia.org/wiki/Personal_name)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Personal names to not include names of fictional characters, e.g. Sherlock Holmes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Sep 29, 2016: The comment that including the wikipedia definition of personal name is not to be interpreted in a way that restricts this class to only contain strings of letters. A numerical or alphanumerical identifier that denotes a human is being is a personal name, too. (MB)"",""lang"":""en""}],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""personal name"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0020000"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""personal name"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier referring to an individual entity that is ascribed personhood by the user of the identifier."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Personal_name""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0020015""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://en.wikipedia.org/wiki/Personal_name)"":{""url"":""http://en.wikipedia.org/wiki/Personal_name)"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Personal_name)""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://en.wikipedia.org/wiki/Personal_name"":{""url"":""http://en.wikipedia.org/wiki/Personal_name"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Personal_name""},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0020015"":{""url"":""http://purl.obolibrary.org/obo/IAO_0020015"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0020015""}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/IAO_0020000","true","","","Justin Whorton|Mathias Brochhausen","","An identifier referring to an individual entity that is ascribed personhood by the user of the identifier.","","","","https://github.com/information-artifact-ontology/IAO/issues/237","","","","","","","1.0","","http://en.wikipedia.org/wiki/Personal_name","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","true","Personal names ""today usually comprises a given name bestowed at birth or at a young age plus a surname. It is nearly universal for a human to have a name; except in rare cases, for example feral children growing up in isolation, or infants orphaned by natural disaster for whom no written record survives.[citation needed] The Convention on the Rights of the Child specifies that a child has the right from birth to a name. Certain isolated tribes, such as the Machiguenga of the Amazon, also lack personal names."" (http://en.wikipedia.org/wiki/Personal_name)|Personal names to not include names of fictional characters, e.g. Sherlock Holmes.|Sep 29, 2016: The comment that including the wikipedia definition of personal name is not to be interpreted in a way that restricts this class to only contain strings of letters. A numerical or alphanumerical identifier that denotes a human is being is a personal name, too. (MB)","An identifier referring to an individual entity that is ascribed personhood by the user of the identifier.|Personal names ""today usually comprises a given name bestowed at birth or at a young age plus a surname. It is nearly universal for a human to have a name; except in rare cases, for example feral children growing up in isolation, or infants orphaned by natural disaster for whom no written record survives.[citation needed] The Convention on the Rights of the Child specifies that a child has the right from birth to a name. Certain isolated tribes, such as the Machiguenga of the Amazon, also lack personal names."" (http://en.wikipedia.org/wiki/Personal_name)|Personal names to not include names of fictional characters, e.g. Sherlock Holmes.|Sep 29, 2016: The comment that including the wikipedia definition of personal name is not to be interpreted in a way that restricts this class to only contain strings of letters. A numerical or alphanumerical identifier that denotes a human is being is a personal name, too. (MB)","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0020000","","http://purl.obolibrary.org/obo/IAO_0020015","http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","personal name","","","DUO","","IAO:0020015","IAO_0020015","","personal name","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0020016","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0020016"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0020016""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\u0027s parents at or near birth, in contrast to an inherited one such as a family name"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020015"",""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0020015"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020015"",""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0020015"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\u0027s parents at or near birth, in contrast to an inherited one such as a family name"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""first name"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Given_name""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""given name"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0020015"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""given name"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\u0027s parents at or near birth, in contrast to an inherited one such as a family name"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""first name"",""lang"":""en""},{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Given_name""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0020016""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://en.wikipedia.org/wiki/Given_name"":{""url"":""http://en.wikipedia.org/wiki/Given_name"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Given_name""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""personal name"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020015""},""type"":[""class"",""entity""]},""IAO:0020016"":{""url"":""http://purl.obolibrary.org/obo/IAO_0020016"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0020016""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0020015","true","","","Justin Whorton|Mathias Brochhausen","","A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child's parents at or near birth, in contrast to an inherited one such as a family name","","","","https://github.com/information-artifact-ontology/IAO/issues/237","","","","","","","0.0","first name","http://en.wikipedia.org/wiki/Given_name","http://purl.obolibrary.org/obo/IAO_0020015","http://purl.obolibrary.org/obo/IAO_0020015|http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","true","","A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child's parents at or near birth, in contrast to an inherited one such as a family name","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0020015","","http://purl.obolibrary.org/obo/IAO_0020016","http://purl.obolibrary.org/obo/IAO_0020015|http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","given name","","","DUO","","IAO:0020016","IAO_0020016","","given name","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0020017","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0020017"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0020017""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier that is typically a part of a person\u0027s name which has been passed, according to law or custom, from one or both parents to their children."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0020000"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0020000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier that is typically a part of a person\u0027s name which has been passed, according to law or custom, from one or both parents to their children."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""last name"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""surname"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Family_name""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""family name"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0020000"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""family name"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier that is typically a part of a person\u0027s name which has been passed, according to law or custom, from one or both parents to their children."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""last name"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""surname"",""lang"":""en""},{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Family_name""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0020017""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://en.wikipedia.org/wiki/Family_name"":{""url"":""http://en.wikipedia.org/wiki/Family_name"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Family_name""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0020017"":{""url"":""http://purl.obolibrary.org/obo/IAO_0020017"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0020017""}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0020000","true","","","Justin Whorton|Mathias Brochhausen","","An identifier that is typically a part of a person's name which has been passed, according to law or custom, from one or both parents to their children.","","","","https://github.com/information-artifact-ontology/IAO/issues/237","","","","","","","0.0","last name|surname","http://en.wikipedia.org/wiki/Family_name","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","true","","An identifier that is typically a part of a person's name which has been passed, according to law or custom, from one or both parents to their children.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0020000","","http://purl.obolibrary.org/obo/IAO_0020017","http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","family name","","","DUO","","IAO:0020017","IAO_0020017","","family name","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_0020020","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0020020"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0020020""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Code sets might include non-entities/things (e.g. missing thumbs)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Does not imply absence vs. presence of any taxonomy."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Does not imply that aggregated entities denote particulars, universals, or defined classes (a.k.a. attributive collections) or even that they denote only one of these three types of entities."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Each aggregated entity is often (but not necessarily) associated with a text string—variously called a “description,” “name,” “title,” or “label”—that helps humans reach the target of denotation.\n\nWhen there is no such string, it is almost always because the entities take the form of human language words. For example, a “sex” or “gender” code set could contain “MALE” and “FEMALE,” or even “M” and “F” (by convention, we understand what these mean)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For National Drug Codes (NDCs) and similar code sets, there doesn’t even have to be a single, fully-concretized copy somewhere (for example, for NDCs there is no centralized database or repository where they all live as one instance of concretization of code set). The code set can be “distributively” concretized. This seems like an unusual exception, but it also likely applies to Universal Product Codes (UPCs) and their follow on Global Trade Item Numbers (GTINs)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For each given domain, there can potentially exist multiple code sets. The multiplicity of code sets is partially due to the different specific purposes of those code sets."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Many code sets are created for a specific purpose in addition to merely identifying or annotating core ideas of a specified domain."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The information content entities do not denote each other."",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""code map"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""code system"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""codeset"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""coding system"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""controlled vocabulary"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},""http://purl.org/dc/elements/1.1/contributor"":[{""type"":[""literal""],""value"":""Alan Ruttenberg""},{""type"":[""literal""],""value"":""Clint Dowland""},{""type"":[""literal""],""value"":""Matt Diller""},{""type"":[""literal""],""value"":""Sarah Bost""},{""type"":[""literal""],""value"":""William R. Hogan""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Code sets might include non-entities/things (e.g. missing thumbs)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Does not imply absence vs. presence of any taxonomy."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Does not imply that aggregated entities denote particulars, universals, or defined classes (a.k.a. attributive collections) or even that they denote only one of these three types of entities."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Each aggregated entity is often (but not necessarily) associated with a text string—variously called a “description,” “name,” “title,” or “label”—that helps humans reach the target of denotation.\n\nWhen there is no such string, it is almost always because the entities take the form of human language words. For example, a “sex” or “gender” code set could contain “MALE” and “FEMALE,” or even “M” and “F” (by convention, we understand what these mean)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For National Drug Codes (NDCs) and similar code sets, there doesn’t even have to be a single, fully-concretized copy somewhere (for example, for NDCs there is no centralized database or repository where they all live as one instance of concretization of code set). The code set can be “distributively” concretized. This seems like an unusual exception, but it also likely applies to Universal Product Codes (UPCs) and their follow on Global Trade Item Numbers (GTINs)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For each given domain, there can potentially exist multiple code sets. The multiplicity of code sets is partially due to the different specific purposes of those code sets."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Many code sets are created for a specific purpose in addition to merely identifying or annotating core ideas of a specified domain."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The information content entities do not denote each other."",""lang"":""en""}],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""code set"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000030"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0020000"",""isObsolete"":false}],""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""code set"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0020000"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0020000"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""code map"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""code system"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""codeset"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""coding system"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""controlled vocabulary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},{""type"":[""literal""],""value"":""Alan Ruttenberg""},{""type"":[""literal""],""value"":""Clint Dowland""},{""type"":[""literal""],""value"":""Matt Diller""},{""type"":[""literal""],""value"":""Sarah Bost""},{""type"":[""literal""],""value"":""William R. Hogan""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0020020""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0020020"":{""url"":""http://purl.obolibrary.org/obo/IAO_0020020"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0020020""},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/elements/1.1/contributor"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""contributor""},""curie"":{""type"":[""literal""],""value"":""contributor""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/IAO_0020000","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/IAO_0000030|","true","","","Alan Ruttenberg|Justin Whorton|Mathias Brochhausen","","An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things.","","","","https://github.com/information-artifact-ontology/IAO/issues/237","","","","","","","1.0","code map|code system|codeset|coding system|controlled vocabulary","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","true","Code sets might include non-entities/things (e.g. missing thumbs).|Does not imply absence vs. presence of any taxonomy.|Does not imply that aggregated entities denote particulars, universals, or defined classes (a.k.a. attributive collections) or even that they denote only one of these three types of entities.|Each aggregated entity is often (but not necessarily) associated with a text string—variously called a “description,” “name,” “title,” or “label”—that helps humans reach the target of denotation. +"duo+class+http://purl.obolibrary.org/obo/IAO_0000644","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000644"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000644""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of the document used to describe the statistical methodologies employed in the work presented in the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027statistical analysis\u0027 in a typical scientific journal article, e.g. Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of the document used to describe the statistical methodologies employed in the work presented in the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000643"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000643"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000643"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027statistical analysis\u0027 in a typical scientific journal article, e.g. Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of the document used to describe the statistical methodologies employed in the work presented in the document."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000644""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000643"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""statistical analysis textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000643""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000643","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of the document used to describe the statistical methodologies employed in the work presented in the document.","","","The section labelled 'statistical analysis' in a typical scientific journal article, e.g. Mondo et al. Cardiovasc J Afr. 2013 Mar; 24(2): 28–33. (http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3734881/)","https://github.com/information-artifact-ontology/IAO/issues/183","","","statistical analysis section","","","","0.0","statistical analysis","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of the document used to describe the statistical methodologies employed in the work presented in the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000644","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","statistical analysis section","","","DUO","","IAO:0000644","IAO_0000644","","statistical analysis section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000645","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000645"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000645""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that contains one or more tables."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""tables section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027tables\u0027 in a typical scientific journal article."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that contains one or more tables."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""tables"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/183"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""tables section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000314"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000306"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""tables section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0000306"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000306"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""tables section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The section labelled \u0027tables\u0027 in a typical scientific journal article."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A part of a document that contains one or more tables."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Bill Baumgartner"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""tables"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000645""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000306"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""table"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000306""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000306","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314|","true","","","PERSON: Bill Baumgartner","","A part of a document that contains one or more tables.","","","The section labelled 'tables' in a typical scientific journal article.","https://github.com/information-artifact-ontology/IAO/issues/183","","","tables section","","","","0.0","tables","","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A part of a document that contains one or more tables.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000645","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","tables section","","","DUO","","IAO:0000645","IAO_0000645","","tables section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000646","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000646"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000646""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0020000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0020000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""postal code"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0020000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""postal code"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000646""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0020000","true","","","Mathias Brochhausen","","An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail.","","","","","","","","","","","1.0","","","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An identifier that denotes some postal delivery route, some aggregate of postal delivery routes or a geographical region and was created for the purpose of sorting and delivering mail.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0020000","","http://purl.obolibrary.org/obo/IAO_0000646","http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","postal code","","","DUO","","IAO:0000646","IAO_0000646","","postal code","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000647","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000647"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000647""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Postal delivery route"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000104"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Postal delivery route"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000647""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000104","true","","","Mathias Brochhausen","","A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region.","","","","","","","","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A plan specification that if realized, is realized by the delivery of mail to some facility or mailbox within some geographical region.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000104","","http://purl.obolibrary.org/obo/IAO_0000647","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","Postal delivery route","","","DUO","","IAO:0000647","IAO_0000647","","Postal delivery route","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000648","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000648"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000648""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000646"",""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000646"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000646"",""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000646"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ZIP code"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zone improvement plan code"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000646"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""zone improvement plan code"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ZIP code"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000648""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000646"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""postal code"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000646""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000646","true","","","Mathias Brochhausen","","A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes.","","","","","","","","","","","0.0","ZIP code","","http://purl.obolibrary.org/obo/IAO_0000646","http://purl.obolibrary.org/obo/IAO_0000646|http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A postal code that is used in the United States for the purpose of sorting and delivering mail, and that denotes some postal delivery route or some aggregate of postal delivery routes.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000646","","http://purl.obolibrary.org/obo/IAO_0000648","http://purl.obolibrary.org/obo/IAO_0000646|http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","zone improvement plan code","","","DUO","","IAO:0000648","IAO_0000648","","zone improvement plan code","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000650","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000650"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000650""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database extract, transform, and load process"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""value"":""Alan Ruttenberg 12/21/16: Maybe this definition instead: A planned process which takes as input a database and copies concretizations from the first, optionally transforms then copies the result to the second""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg 12/21/16: We don\u0027t define database in IAO, currently, as the bare word is ambiguous. Reasonable interpretations of the word might be the material entity, an information structure, an information content entity. However this definition commits, at least, to there being some material thing which bear concretizations of information entities and that there are new concretizations created during the process. We consider the ETL process in terms of information entities rather than the concretizations. No committment is made as to whether the specified output."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""value"":""PERSON:Alan Ruttenberg""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ETL"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""WEB:https://en.wikipedia.org/wiki/Extract,_transform,_load""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/187"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""https://github.com/information-artifact-ontology/IAO"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database extract, transform, and load process"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/OBI_0000011"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false}],""http://xmlns.com/foaf/0.1/page"":""https://en.wikipedia.org/wiki/Extract,_transform,_load"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database extract, transform, and load process"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/OBI_0000293"",""value"":""http://purl.obolibrary.org/obo/IAO_0000030"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000293"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/OBI_0000299"",""value"":""http://purl.obolibrary.org/obo/IAO_0000030"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0000030"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""database extract, transform, and load process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second."",""lang"":""en""},{""type"":[""literal""],""value"":""Alan Ruttenberg 12/21/16: Maybe this definition instead: A planned process which takes as input a database and copies concretizations from the first, optionally transforms then copies the result to the second""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg 12/21/16: We don\u0027t define database in IAO, currently, as the bare word is ambiguous. Reasonable interpretations of the word might be the material entity, an information structure, an information content entity. However this definition commits, at least, to there being some material thing which bear concretizations of information entities and that there are new concretizations created during the process. We consider the ETL process in terms of information entities rather than the concretizations. No committment is made as to whether the specified output."",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON:Alan Ruttenberg""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ETL"",""lang"":""en""},{""type"":[""literal""],""value"":""WEB:https://en.wikipedia.org/wiki/Extract,_transform,_load""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000650""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://xmlns.com/foaf/0.1/page"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""page""},""curie"":{""type"":[""literal""],""value"":""page""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000293"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""https://github.com/information-artifact-ontology/IAO"":{""url"":""https://github.com/information-artifact-ontology/IAO"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""github:information-artifact-ontology/IAO""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","https://en.wikipedia.org/wiki/Extract,_transform,_load","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/IAO_0000030","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011||","true","","Alan Ruttenberg 12/21/16: Maybe this definition instead: A planned process which takes as input a database and copies concretizations from the first, optionally transforms then copies the result to the second|Alan Ruttenberg 12/21/16: We don't define database in IAO, currently, as the bare word is ambiguous. Reasonable interpretations of the word might be the material entity, an information structure, an information content entity. However this definition commits, at least, to there being some material thing which bear concretizations of information entities and that there are new concretizations created during the process. We consider the ETL process in terms of information entities rather than the concretizations. No committment is made as to whether the specified output.","PERSON:Alan Ruttenberg","","A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second.","","","","https://github.com/information-artifact-ontology/IAO/issues/187","","","database extract, transform, and load process","","https://github.com/information-artifact-ontology/IAO","","0.0","ETL","WEB:https://en.wikipedia.org/wiki/Extract,_transform,_load","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A planned process which takes as input a database and fills another database by extracting concretizations of information entities from the first, transforming them, and loading the transformed concretizations into the second.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/IAO_0000650","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","database extract, transform, and load process","","","DUO","","IAO:0000650","IAO_0000650","","database extract, transform, and load process","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000701","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000701"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000701""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""descriptive data section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/prisma/""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/235"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""value"":""ONE ontology""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""descriptive data section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""descriptive data section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""descriptive data section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made."",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/prisma/""},{""type"":[""literal""],""value"":""ONE ontology""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000701""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Chen Yang|PERSON: Jie Zheng","http://purl.obolibrary.org/obo/IAO_0000120","A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made.","","","","https://github.com/information-artifact-ontology/IAO/issues/235","ONE ontology","","descriptive data section","","","","0.0","","https://www.equator-network.org/reporting-guidelines/prisma/","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A document part that lists and defines data variables, describes data characteristics (e.g. missing data information) and any assumptions and simplifications made.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000701","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","descriptive data section","","","DUO","","IAO:0000701","IAO_0000701","","descriptive data section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000702","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000702"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000702""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000318"",""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000318"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000318"",""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000318"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional results section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/consort/""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/prisma/""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/strobe/""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/235"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""value"":""ONE ontology""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional results section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000318"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional results section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""additional results section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/consort/""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/prisma/""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/strobe/""},{""type"":[""literal""],""value"":""ONE ontology""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000702""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000318"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""results section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000318""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000318","true","","","PERSON: Chen Yang|PERSON: Jie Zheng","http://purl.obolibrary.org/obo/IAO_0000120","A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)","","","","https://github.com/information-artifact-ontology/IAO/issues/235","ONE ontology","","additional results section","","","","0.0","","https://www.equator-network.org/reporting-guidelines/consort/|https://www.equator-network.org/reporting-guidelines/prisma/|https://www.equator-network.org/reporting-guidelines/strobe/","http://purl.obolibrary.org/obo/IAO_0000318","http://purl.obolibrary.org/obo/IAO_0000318|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A results section that reports analyses other than main results of the study (e.g. subgroups analyses, adjusted analyses, sensitivity analyses, etc.)","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000318","","http://purl.obolibrary.org/obo/IAO_0000702","http://purl.obolibrary.org/obo/IAO_0000318|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","additional results section","","","DUO","","IAO:0000702","IAO_0000702","","additional results section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000703","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000703"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000703""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes human subject(s) that participated in a study (e.g. inclusion \u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""research participants section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes human subject(s) that participated in a study (e.g. inclusion \u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""}],""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/consort/""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/prisma/""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/strobe-nut/""}],""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/235"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""value"":""ONE ontology""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""research participants section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""research participants section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""research participants section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes human subject(s) that participated in a study (e.g. inclusion \u0026 exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.)."",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/consort/""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/prisma/""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/strobe-nut/""},{""type"":[""literal""],""value"":""ONE ontology""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000703""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Chen Yang|PERSON: Jie Zheng","http://purl.obolibrary.org/obo/IAO_0000120","A document part that describes human subject(s) that participated in a study (e.g. inclusion & exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.).","","","","https://github.com/information-artifact-ontology/IAO/issues/235","ONE ontology","","research participants section","","","","0.0","","https://www.equator-network.org/reporting-guidelines/consort/|https://www.equator-network.org/reporting-guidelines/prisma/|https://www.equator-network.org/reporting-guidelines/strobe-nut/","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A document part that describes human subject(s) that participated in a study (e.g. inclusion & exclusion criteria, recruitment methods, reasons for non-participation, grouping and randomisation, methods of follow-up, etc.).","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000703","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","research participants section","","","DUO","","IAO:0000703","IAO_0000703","","research participants section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000704","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000704"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000704""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A methods section that describes details of data assessment methods (data measurement)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000317"",""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000317"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000317"",""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000317"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement methods section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A methods section that describes details of data assessment methods (data measurement)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/strobe/""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/235"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""value"":""ONE ontology""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement methods section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000317"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement methods section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement methods section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A methods section that describes details of data assessment methods (data measurement)."",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""},{""type"":[""literal""],""value"":""https://www.equator-network.org/reporting-guidelines/strobe/""},{""type"":[""literal""],""value"":""ONE ontology""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000704""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000317"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methods section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000317""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000317","true","","","PERSON: Chen Yang|PERSON: Jie Zheng","http://purl.obolibrary.org/obo/IAO_0000120","A methods section that describes details of data assessment methods (data measurement).","","","","https://github.com/information-artifact-ontology/IAO/issues/235","ONE ontology","","measurement methods section","","","","0.0","","https://www.equator-network.org/reporting-guidelines/strobe/","http://purl.obolibrary.org/obo/IAO_0000317","http://purl.obolibrary.org/obo/IAO_0000317|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A methods section that describes details of data assessment methods (data measurement).","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000317","","http://purl.obolibrary.org/obo/IAO_0000704","http://purl.obolibrary.org/obo/IAO_0000317|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","measurement methods section","","","DUO","","IAO:0000704","IAO_0000704","","measurement methods section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000705","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000705"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000705""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes the physical/social/cultural conditions around a research trial."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000314"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""research settings section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes the physical/social/cultural conditions around a research trial."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""https://www.ncbi.nlm.nih.gov/books/NBK262175/""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/235"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""value"":""ONE ontology""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""research settings section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000314"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""research settings section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""research settings section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A document part that describes the physical/social/cultural conditions around a research trial."",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""},{""type"":[""literal""],""value"":""https://www.ncbi.nlm.nih.gov/books/NBK262175/""},{""type"":[""literal""],""value"":""ONE ontology""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000705""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000314","true","","","PERSON: Chen Yang|PERSON: Jie Zheng","http://purl.obolibrary.org/obo/IAO_0000120","A document part that describes the physical/social/cultural conditions around a research trial.","","","","https://github.com/information-artifact-ontology/IAO/issues/235","ONE ontology","","research settings section","","","","0.0","","https://www.ncbi.nlm.nih.gov/books/NBK262175/","http://purl.obolibrary.org/obo/IAO_0000314","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A document part that describes the physical/social/cultural conditions around a research trial.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000314","","http://purl.obolibrary.org/obo/IAO_0000705","http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","research settings section","","","DUO","","IAO:0000705","IAO_0000705","","research settings section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000706","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000706"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000706""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000631"",""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000631"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000631"",""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000631"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study bias section"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""DOI: 10.1097/PRS.0b013e3181de24bc""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/235"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""value"":""ONE ontology""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study bias section"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000631"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study bias section"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study bias section"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others."",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Chen Yang""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""},{""type"":[""literal""],""value"":""DOI: 10.1097/PRS.0b013e3181de24bc""},{""type"":[""literal""],""value"":""ONE ontology""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000706""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000631"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000631""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000631","true","","","PERSON: Chen Yang|PERSON: Jie Zheng","http://purl.obolibrary.org/obo/IAO_0000120","A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others.","","","","https://github.com/information-artifact-ontology/IAO/issues/235","ONE ontology","","study bias section","","","","0.0","","DOI: 10.1097/PRS.0b013e3181de24bc","http://purl.obolibrary.org/obo/IAO_0000631","http://purl.obolibrary.org/obo/IAO_0000631|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A study limitations section that describes systematic error introduced into sampling or testing by selecting or encouraging one outcome or answer over others.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000631","","http://purl.obolibrary.org/obo/IAO_0000706","http://purl.obolibrary.org/obo/IAO_0000631|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","study bias section","","","DUO","","IAO:0000706","IAO_0000706","","study bias section","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000707","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000707"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000707""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An abstract that is pictorial summary of the main findings described in the document."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000315"",""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000315"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000315"",""http://purl.obolibrary.org/obo/IAO_0000314"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001"",""http://purl.obolibrary.org/obo/IAO_0000310""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000315"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graphical abstract"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An abstract that is pictorial summary of the main findings described in the document."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""value"":""PERSON: Jie Zheng""},{""type"":[""literal""],""value"":""PERSON: Tim Beck""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""visual abstract"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""https://www.elsevier.com/authors/journal-authors/graphical-abstract""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/234"",""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""value"":""Biomedical literature NLP project""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graphical abstract"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000315"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graphical abstract"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""graphical abstract"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An abstract that is pictorial summary of the main findings described in the document."",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Jie Zheng""},{""type"":[""literal""],""value"":""PERSON: Tim Beck""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""visual abstract"",""lang"":""en""},{""type"":[""literal""],""value"":""https://www.elsevier.com/authors/journal-authors/graphical-abstract""},{""type"":[""literal""],""value"":""Biomedical literature NLP project""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000707""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000314"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000314""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000315"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""abstract"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000315""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000310"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""document"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000310""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000315","true","","","PERSON: Jie Zheng|PERSON: Tim Beck","http://purl.obolibrary.org/obo/IAO_0000120","An abstract that is pictorial summary of the main findings described in the document.","","","","https://github.com/information-artifact-ontology/IAO/issues/234","Biomedical literature NLP project","","graphical abstract","","","","0.0","visual abstract","https://www.elsevier.com/authors/journal-authors/graphical-abstract","http://purl.obolibrary.org/obo/IAO_0000315","http://purl.obolibrary.org/obo/IAO_0000315|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An abstract that is pictorial summary of the main findings described in the document.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000315","","http://purl.obolibrary.org/obo/IAO_0000707","http://purl.obolibrary.org/obo/IAO_0000315|http://purl.obolibrary.org/obo/IAO_0000314|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001|http://purl.obolibrary.org/obo/IAO_0000310","","","false","graphical abstract","","","DUO","","IAO:0000707","IAO_0000707","","graphical abstract","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0000708","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000708"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000708""},""definition"":{""type"":[""literal""],""value"":""A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000578"",""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000578"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000578"",""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000578"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""value"":""\""You can connect your iD with your professional information — affiliations, grants, publications, peer review, and more. You can use your iD to share your information with other systems, ensuring you get recognition for all your contributions, saving you time and hassle, and reducing the risk of errors.\"" [https://orcid.org/]""},{""type"":[""literal""],""value"":""This class was originally defined in Apollo_SV (http://purl.obolibrary.org/obo/APOLLO_SV_00000496) but due to it being more in scope of IAO, it was decided to add it to IAO and deprecate its Apollo_SV equivalent. (2022-10-25)""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""value"":""http://orcid.org/0000-0002-1595-3213""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""value"":""ORCID ID""},{""type"":[""literal""],""value"":""ORCiD""},{""type"":[""literal""],""value"":""Open Researcher and Contributor ID""},{""type"":[""literal""],""value"":""Open Researcher and Contributor Identifier""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""https://orcid.org/""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""value"":""https://github.com/information-artifact-ontology/IAO/issues/259""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ORCID identifier"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000578"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ORCID identifier"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.""},{""type"":[""literal""],""value"":""\""You can connect your iD with your professional information — affiliations, grants, publications, peer review, and more. You can use your iD to share your information with other systems, ensuring you get recognition for all your contributions, saving you time and hassle, and reducing the risk of errors.\"" [https://orcid.org/]""},{""type"":[""literal""],""value"":""This class was originally defined in Apollo_SV (http://purl.obolibrary.org/obo/APOLLO_SV_00000496) but due to it being more in scope of IAO, it was decided to add it to IAO and deprecate its Apollo_SV equivalent. (2022-10-25)""},{""type"":[""literal""],""value"":""http://orcid.org/0000-0002-1595-3213""},{""type"":[""literal""],""value"":""ORCID ID""},{""type"":[""literal""],""value"":""ORCiD""},{""type"":[""literal""],""value"":""Open Researcher and Contributor ID""},{""type"":[""literal""],""value"":""Open Researcher and Contributor Identifier""},{""type"":[""literal""],""value"":""https://orcid.org/""},{""type"":[""literal""],""value"":""https://github.com/information-artifact-ontology/IAO/issues/259""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000708""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/"":{""url"":""https://orcid.org/"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000578"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""centrally registered identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000578""},""type"":[""class"",""entity""]},""https://orcid.org/)"":{""url"":""https://orcid.org/)"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:)""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000578","true","","""You can connect your iD with your professional information — affiliations, grants, publications, peer review, and more. You can use your iD to share your information with other systems, ensuring you get recognition for all your contributions, saving you time and hassle, and reducing the risk of errors."" [https://orcid.org/]|This class was originally defined in Apollo_SV (http://purl.obolibrary.org/obo/APOLLO_SV_00000496) but due to it being more in scope of IAO, it was decided to add it to IAO and deprecate its Apollo_SV equivalent. (2022-10-25)","http://orcid.org/0000-0002-1595-3213","http://purl.obolibrary.org/obo/IAO_0000125","A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.","","","","https://github.com/information-artifact-ontology/IAO/issues/259","","","","","","","0.0","ORCID ID|ORCiD|Open Researcher and Contributor ID|Open Researcher and Contributor Identifier","https://orcid.org/","http://purl.obolibrary.org/obo/IAO_0000578","http://purl.obolibrary.org/obo/IAO_0000578|http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","true","","A centrally registered identifier that is issued by ORCID (https://orcid.org/) and used to persistantly identify oneself as a human researcher or contributor.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000578","","http://purl.obolibrary.org/obo/IAO_0000708","http://purl.obolibrary.org/obo/IAO_0000578|http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","ORCID identifier","","","DUO","","IAO:0000708","IAO_0000708","","ORCID identifier","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0020000","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0020000"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Sep 29, 2016: The current definition has been amended from the previous version: \""A proper name is an information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\"" to more accuratly reflect the necessary and sufficient condition on the class. (MB)"",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""proper name"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},""http://purl.org/dc/elements/1.1/creator"":{""type"":[""literal""],""value"":""Mathias Brochhausen""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Sep 29, 2016: The current definition has been amended from the previous version: \""A proper name is an information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.\"" to more accuratly reflect the necessary and sufficient condition on the class. (MB)"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/IAO_0000030"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000219"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/BFO_0000001"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000312"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0020010"",""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""numDescendants"":7.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0020020"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0020000"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""proper name"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},{""type"":[""literal""],""value"":""Mathias Brochhausen""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_0020000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000312"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000312""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""code set"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020020""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000219"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.org/dc/elements/1.1/creator"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""creator""},""curie"":{""type"":[""literal""],""value"":""creator""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020010"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier creating process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020010""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/IAO_0000030","true","","","Justin Whorton|Mathias Brochhausen","","An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.","","","","https://github.com/information-artifact-ontology/IAO/issues/237","","","identifier","","","http://purl.obolibrary.org/obo/IAO_0020020","7.0","proper name","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","Sep 29, 2016: The current definition has been amended from the previous version: ""A proper name is an information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity."" to more accuratly reflect the necessary and sufficient condition on the class. (MB)","An information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity.|Sep 29, 2016: The current definition has been amended from the previous version: ""A proper name is an information content entity that is the outcome of a dubbing process and is used to refer to one instance of entity shared by a group of people to refer to that individual entity."" to more accuratly reflect the necessary and sufficient condition on the class. (MB)","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","identifier","","Mathias Brochhausen","DUO","","IAO:0020000","IAO_0020000","","identifier","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0020001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0020001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0020001""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a fundamental unit in a written language."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Grapheme is not about anything and hence is likely to not be an information content entity. If a new subclass of GDC for information structure entities is created it should move there."",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alphabetic letters, Chinese characters, numerical digits, punctuation marks, and the individual symbols of any of the world\u0027s writing systems"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a fundamental unit in a written language."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Grapheme""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},""http://purl.org/dc/elements/1.1/creator"":{""type"":[""literal""],""value"":""Mathias Brochhausen""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Grapheme is not about anything and hence is likely to not be an information content entity. If a new subclass of GDC for information structure entities is created it should move there."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""grapheme"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""grapheme"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alphabetic letters, Chinese characters, numerical digits, punctuation marks, and the individual symbols of any of the world\u0027s writing systems"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a fundamental unit in a written language."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Grapheme""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},{""type"":[""literal""],""value"":""Mathias Brochhausen""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0020001""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://en.wikipedia.org/wiki/Grapheme"":{""url"":""http://en.wikipedia.org/wiki/Grapheme"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Grapheme""},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.org/dc/elements/1.1/creator"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""creator""},""curie"":{""type"":[""literal""],""value"":""creator""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/IAO_0000030","true","","","Justin Whorton","","An information content entity that is a fundamental unit in a written language.","","","alphabetic letters, Chinese characters, numerical digits, punctuation marks, and the individual symbols of any of the world's writing systems","https://github.com/information-artifact-ontology/IAO/issues/237","","","","","","","0.0","","http://en.wikipedia.org/wiki/Grapheme","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","true","Grapheme is not about anything and hence is likely to not be an information content entity. If a new subclass of GDC for information structure entities is created it should move there.","An information content entity that is a fundamental unit in a written language.|Grapheme is not about anything and hence is likely to not be an information content entity. If a new subclass of GDC for information structure entities is created it should move there.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0020001","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","grapheme","","Mathias Brochhausen","DUO","","IAO:0020001","IAO_0020001","","grapheme","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0020010","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0020010"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0020010""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dubbing process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""naming"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},""http://purl.org/dc/elements/1.1/creator"":{""type"":[""literal""],""value"":""Mathias Brochhausen""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier creating process"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000011"",""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/OBI_0000011"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/OBI_0000299"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0020000"",""isObsolete"":false}]},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier creating process"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""dubbing process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""naming"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},{""type"":[""literal""],""value"":""Mathias Brochhausen""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0020010""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.org/dc/elements/1.1/creator"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""creator""},""curie"":{""type"":[""literal""],""value"":""creator""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011","true","","","Justin Whorton|Mathias Brochhausen","","A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity.","","","","https://github.com/information-artifact-ontology/IAO/issues/237","","","","","","","0.0","dubbing process|naming","","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","true","","A planned process that provides a reference to an individual entity shared by a group of subscribers to refer to that individual entity.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","","http://purl.obolibrary.org/obo/IAO_0020010","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","identifier creating process","","Mathias Brochhausen","DUO","","IAO:0020010","IAO_0020010","","identifier creating process","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0020015","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0020015"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0020015""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier referring to an individual entity that is ascribed personhood by the user of the identifier."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Personal names \""today usually comprises a given name bestowed at birth or at a young age plus a surname. It is nearly universal for a human to have a name; except in rare cases, for example feral children growing up in isolation, or infants orphaned by natural disaster for whom no written record survives.[citation needed] The Convention on the Rights of the Child specifies that a child has the right from birth to a name. Certain isolated tribes, such as the Machiguenga of the Amazon, also lack personal names.\"" (http://en.wikipedia.org/wiki/Personal_name)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Personal names to not include names of fictional characters, e.g. Sherlock Holmes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Sep 29, 2016: The comment that including the wikipedia definition of personal name is not to be interpreted in a way that restricts this class to only contain strings of letters. A numerical or alphanumerical identifier that denotes a human is being is a personal name, too. (MB)"",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0020000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0020000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier referring to an individual entity that is ascribed personhood by the user of the identifier."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Personal_name""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Personal names \""today usually comprises a given name bestowed at birth or at a young age plus a surname. It is nearly universal for a human to have a name; except in rare cases, for example feral children growing up in isolation, or infants orphaned by natural disaster for whom no written record survives.[citation needed] The Convention on the Rights of the Child specifies that a child has the right from birth to a name. Certain isolated tribes, such as the Machiguenga of the Amazon, also lack personal names.\"" (http://en.wikipedia.org/wiki/Personal_name)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Personal names to not include names of fictional characters, e.g. Sherlock Holmes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Sep 29, 2016: The comment that including the wikipedia definition of personal name is not to be interpreted in a way that restricts this class to only contain strings of letters. A numerical or alphanumerical identifier that denotes a human is being is a personal name, too. (MB)"",""lang"":""en""}],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""personal name"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0020000"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""personal name"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier referring to an individual entity that is ascribed personhood by the user of the identifier."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Personal_name""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0020015""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://en.wikipedia.org/wiki/Personal_name)"":{""url"":""http://en.wikipedia.org/wiki/Personal_name)"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Personal_name)""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://en.wikipedia.org/wiki/Personal_name"":{""url"":""http://en.wikipedia.org/wiki/Personal_name"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Personal_name""},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/IAO_0020000","true","","","Justin Whorton|Mathias Brochhausen","","An identifier referring to an individual entity that is ascribed personhood by the user of the identifier.","","","","https://github.com/information-artifact-ontology/IAO/issues/237","","","","","","","1.0","","http://en.wikipedia.org/wiki/Personal_name","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","true","Personal names ""today usually comprises a given name bestowed at birth or at a young age plus a surname. It is nearly universal for a human to have a name; except in rare cases, for example feral children growing up in isolation, or infants orphaned by natural disaster for whom no written record survives.[citation needed] The Convention on the Rights of the Child specifies that a child has the right from birth to a name. Certain isolated tribes, such as the Machiguenga of the Amazon, also lack personal names."" (http://en.wikipedia.org/wiki/Personal_name)|Personal names to not include names of fictional characters, e.g. Sherlock Holmes.|Sep 29, 2016: The comment that including the wikipedia definition of personal name is not to be interpreted in a way that restricts this class to only contain strings of letters. A numerical or alphanumerical identifier that denotes a human is being is a personal name, too. (MB)","An identifier referring to an individual entity that is ascribed personhood by the user of the identifier.|Personal names ""today usually comprises a given name bestowed at birth or at a young age plus a surname. It is nearly universal for a human to have a name; except in rare cases, for example feral children growing up in isolation, or infants orphaned by natural disaster for whom no written record survives.[citation needed] The Convention on the Rights of the Child specifies that a child has the right from birth to a name. Certain isolated tribes, such as the Machiguenga of the Amazon, also lack personal names."" (http://en.wikipedia.org/wiki/Personal_name)|Personal names to not include names of fictional characters, e.g. Sherlock Holmes.|Sep 29, 2016: The comment that including the wikipedia definition of personal name is not to be interpreted in a way that restricts this class to only contain strings of letters. A numerical or alphanumerical identifier that denotes a human is being is a personal name, too. (MB)","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0020000","","http://purl.obolibrary.org/obo/IAO_0020015","http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","personal name","","","DUO","","IAO:0020015","IAO_0020015","","personal name","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0020016","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0020016"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0020016""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\u0027s parents at or near birth, in contrast to an inherited one such as a family name"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020015"",""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0020015"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020015"",""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0020015"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\u0027s parents at or near birth, in contrast to an inherited one such as a family name"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""first name"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Given_name""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""given name"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0020015"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""given name"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child\u0027s parents at or near birth, in contrast to an inherited one such as a family name"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""first name"",""lang"":""en""},{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Given_name""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0020016""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://en.wikipedia.org/wiki/Given_name"":{""url"":""http://en.wikipedia.org/wiki/Given_name"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Given_name""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""personal name"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020015""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0020015","true","","","Justin Whorton|Mathias Brochhausen","","A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child's parents at or near birth, in contrast to an inherited one such as a family name","","","","https://github.com/information-artifact-ontology/IAO/issues/237","","","","","","","0.0","first name","http://en.wikipedia.org/wiki/Given_name","http://purl.obolibrary.org/obo/IAO_0020015","http://purl.obolibrary.org/obo/IAO_0020015|http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","true","","A personal name that specifies and differentiates between members of a group of individuals, especially in a family, all of whose members usually share the same family name (surname). A given name is purposefully given, usually by a child's parents at or near birth, in contrast to an inherited one such as a family name","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0020015","","http://purl.obolibrary.org/obo/IAO_0020016","http://purl.obolibrary.org/obo/IAO_0020015|http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","given name","","","DUO","","IAO:0020016","IAO_0020016","","given name","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0020017","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0020017"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0020017""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier that is typically a part of a person\u0027s name which has been passed, according to law or custom, from one or both parents to their children."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0020000"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0020000"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0020000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier that is typically a part of a person\u0027s name which has been passed, according to law or custom, from one or both parents to their children."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""last name"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""surname"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Family_name""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""family name"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0020000"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""family name"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An identifier that is typically a part of a person\u0027s name which has been passed, according to law or custom, from one or both parents to their children."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""last name"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""surname"",""lang"":""en""},{""type"":[""literal""],""value"":""http://en.wikipedia.org/wiki/Family_name""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0020017""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://en.wikipedia.org/wiki/Family_name"":{""url"":""http://en.wikipedia.org/wiki/Family_name"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""wikipedia.en:Family_name""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0020000","true","","","Justin Whorton|Mathias Brochhausen","","An identifier that is typically a part of a person's name which has been passed, according to law or custom, from one or both parents to their children.","","","","https://github.com/information-artifact-ontology/IAO/issues/237","","","","","","","0.0","last name|surname","http://en.wikipedia.org/wiki/Family_name","http://purl.obolibrary.org/obo/IAO_0020000","http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","true","","An identifier that is typically a part of a person's name which has been passed, according to law or custom, from one or both parents to their children.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0020000","","http://purl.obolibrary.org/obo/IAO_0020017","http://purl.obolibrary.org/obo/IAO_0020000|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","family name","","","DUO","","IAO:0020017","IAO_0020017","","family name","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_0020020","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_0020020"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0020020""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Code sets might include non-entities/things (e.g. missing thumbs)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Does not imply absence vs. presence of any taxonomy."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Does not imply that aggregated entities denote particulars, universals, or defined classes (a.k.a. attributive collections) or even that they denote only one of these three types of entities."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Each aggregated entity is often (but not necessarily) associated with a text string—variously called a “description,” “name,” “title,” or “label”—that helps humans reach the target of denotation.\n\nWhen there is no such string, it is almost always because the entities take the form of human language words. For example, a “sex” or “gender” code set could contain “MALE” and “FEMALE,” or even “M” and “F” (by convention, we understand what these mean)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For National Drug Codes (NDCs) and similar code sets, there doesn’t even have to be a single, fully-concretized copy somewhere (for example, for NDCs there is no centralized database or repository where they all live as one instance of concretization of code set). The code set can be “distributively” concretized. This seems like an unusual exception, but it also likely applies to Universal Product Codes (UPCs) and their follow on Global Trade Item Numbers (GTINs)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For each given domain, there can potentially exist multiple code sets. The multiplicity of code sets is partially due to the different specific purposes of those code sets."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Many code sets are created for a specific purpose in addition to merely identifying or annotating core ideas of a specified domain."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The information content entities do not denote each other."",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""code map"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""code system"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""codeset"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""coding system"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""controlled vocabulary"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},""http://purl.org/dc/elements/1.1/contributor"":[{""type"":[""literal""],""value"":""Alan Ruttenberg""},{""type"":[""literal""],""value"":""Clint Dowland""},{""type"":[""literal""],""value"":""Matt Diller""},{""type"":[""literal""],""value"":""Sarah Bost""},{""type"":[""literal""],""value"":""William R. Hogan""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#comment"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Code sets might include non-entities/things (e.g. missing thumbs)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Does not imply absence vs. presence of any taxonomy."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Does not imply that aggregated entities denote particulars, universals, or defined classes (a.k.a. attributive collections) or even that they denote only one of these three types of entities."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Each aggregated entity is often (but not necessarily) associated with a text string—variously called a “description,” “name,” “title,” or “label”—that helps humans reach the target of denotation.\n\nWhen there is no such string, it is almost always because the entities take the form of human language words. For example, a “sex” or “gender” code set could contain “MALE” and “FEMALE,” or even “M” and “F” (by convention, we understand what these mean)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For National Drug Codes (NDCs) and similar code sets, there doesn’t even have to be a single, fully-concretized copy somewhere (for example, for NDCs there is no centralized database or repository where they all live as one instance of concretization of code set). The code set can be “distributively” concretized. This seems like an unusual exception, but it also likely applies to Universal Product Codes (UPCs) and their follow on Global Trade Item Numbers (GTINs)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For each given domain, there can potentially exist multiple code sets. The multiplicity of code sets is partially due to the different specific purposes of those code sets."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Many code sets are created for a specific purpose in addition to merely identifying or annotating core ideas of a specified domain."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The information content entities do not denote each other."",""lang"":""en""}],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""code set"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/IAO_0000030"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0020000"",""isObsolete"":false}],""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""code set"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000051"",""value"":""http://purl.obolibrary.org/obo/IAO_0020000"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/IAO_0020000"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Justin Whorton"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Mathias Brochhausen"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""code map"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""code system"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""codeset"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""coding system"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""controlled vocabulary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/IAO/issues/237"",""lang"":""en""},{""type"":[""literal""],""value"":""Alan Ruttenberg""},{""type"":[""literal""],""value"":""Clint Dowland""},{""type"":[""literal""],""value"":""Matt Diller""},{""type"":[""literal""],""value"":""Sarah Bost""},{""type"":[""literal""],""value"":""William R. Hogan""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0020020""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0020000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""identifier"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0020000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/elements/1.1/contributor"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""contributor""},""curie"":{""type"":[""literal""],""value"":""contributor""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/IAO_0020000","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/IAO_0000030|","true","","","Alan Ruttenberg|Justin Whorton|Mathias Brochhausen","","An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things.","","","","https://github.com/information-artifact-ontology/IAO/issues/237","","","","","","","1.0","code map|code system|codeset|coding system|controlled vocabulary","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","true","Code sets might include non-entities/things (e.g. missing thumbs).|Does not imply absence vs. presence of any taxonomy.|Does not imply that aggregated entities denote particulars, universals, or defined classes (a.k.a. attributive collections) or even that they denote only one of these three types of entities.|Each aggregated entity is often (but not necessarily) associated with a text string—variously called a “description,” “name,” “title,” or “label”—that helps humans reach the target of denotation. When there is no such string, it is almost always because the entities take the form of human language words. For example, a “sex” or “gender” code set could contain “MALE” and “FEMALE,” or even “M” and “F” (by convention, we understand what these mean).|For National Drug Codes (NDCs) and similar code sets, there doesn’t even have to be a single, fully-concretized copy somewhere (for example, for NDCs there is no centralized database or repository where they all live as one instance of concretization of code set). The code set can be “distributively” concretized. This seems like an unusual exception, but it also likely applies to Universal Product Codes (UPCs) and their follow on Global Trade Item Numbers (GTINs).|For each given domain, there can potentially exist multiple code sets. The multiplicity of code sets is partially due to the different specific purposes of those code sets.|Many code sets are created for a specific purpose in addition to merely identifying or annotating core ideas of a specified domain.|The information content entities do not denote each other.","An information content entity that is a collection of other information content entities that has been created to identify or annotate things in a specified domain, and where the intention of its creators is that the collection has a one-to-one correspondence with those things.|Code sets might include non-entities/things (e.g. missing thumbs).|Does not imply absence vs. presence of any taxonomy.|Does not imply that aggregated entities denote particulars, universals, or defined classes (a.k.a. attributive collections) or even that they denote only one of these three types of entities.|Each aggregated entity is often (but not necessarily) associated with a text string—variously called a “description,” “name,” “title,” or “label”—that helps humans reach the target of denotation. When there is no such string, it is almost always because the entities take the form of human language words. For example, a “sex” or “gender” code set could contain “MALE” and “FEMALE,” or even “M” and “F” (by convention, we understand what these mean).|For National Drug Codes (NDCs) and similar code sets, there doesn’t even have to be a single, fully-concretized copy somewhere (for example, for NDCs there is no centralized database or repository where they all live as one instance of concretization of code set). The code set can be “distributively” concretized. This seems like an unusual exception, but it also likely applies to Universal Product Codes (UPCs) and their follow on Global Trade Item Numbers (GTINs).|For each given domain, there can potentially exist multiple code sets. The multiplicity of code sets is partially due to the different specific purposes of those code sets.|Many code sets are created for a specific purpose in addition to merely identifying or annotating core ideas of a specified domain.|The information content entities do not denote each other.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/IAO_0020020","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","code set","","","DUO","","IAO:0020020","IAO_0020020","","code set","duo","Alan Ruttenberg|Clint Dowland|Matt Diller|Sarah Bost|William R. Hogan" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000000","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000000"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000102"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000102"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""I have placed this under \u0027data about an ontology part\u0027, but this can be discussed. I think this is OK if \u0027part\u0027 is interpreted reflexively, as an ontology module is the whole ontology rather than part of it."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology file"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This class and it\u0027s subclasses are applied to OWL ontologies. Using an rdf:type triple will result in problems with OWL-DL. I propose that dcterms:type is instead used to connect an ontology URI with a class from this hierarchy. The class hierarchy is not disjoint, so multiple assertions can be made about a single ontology."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000102"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""numDescendants"":20.0,""numHierarchicalDescendants"":20.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""I have placed this under \u0027data about an ontology part\u0027, but this can be discussed. I think this is OK if \u0027part\u0027 is interpreted reflexively, as an ontology module is the whole ontology rather than part of it."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology file"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This class and it\u0027s subclasses are applied to OWL ontologies. Using an rdf:type triple will result in problems with OWL-DL. I propose that dcterms:type is instead used to connect an ontology URI with a class from this hierarchy. The class hierarchy is not disjoint, so multiple assertions can be made about a single ontology."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:8000000"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000000"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000000""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","20.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000102","true","","I have placed this under 'data about an ontology part', but this can be discussed. I think this is OK if 'part' is interpreted reflexively, as an ontology module is the whole ontology rather than part of it.","","","","","","","","","","ontology module","This class and it's subclasses are applied to OWL ontologies. Using an rdf:type triple will result in problems with OWL-DL. I propose that dcterms:type is instead used to connect an ontology URI with a class from this hierarchy. The class hierarchy is not disjoint, so multiple assertions can be made about a single ontology.","","","20.0","ontology file","","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000102","","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","ontology module","","","DUO","","IAO:8000000","IAO_8000000","","ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000001""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""base ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""base ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""https://github.com/INCATools/ontology-starter-kit/issues/50"",""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""base ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""base ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000001""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:8000001"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000001""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000000","true","","","","","An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies.","","","","","","","base ontology module","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","https://github.com/INCATools/ontology-starter-kit/issues/50","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000000","","http://purl.obolibrary.org/obo/IAO_8000001","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","base ontology module","","","DUO","","IAO:8000001","IAO_8000001","","base ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000002","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000002"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000002""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editors ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source ontology module"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editors ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editors ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editors ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source ontology module"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000002""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:8000002"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000002"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000002""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000000","true","","","","","An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users.","","","","","","","editors ontology module","","","","0.0","source ontology module","","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000000","","http://purl.obolibrary.org/obo/IAO_8000002","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","editors ontology module","","","DUO","","IAO:8000002","IAO_8000002","","editors ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000003","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000003""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended to be the primary release product and the one consumed by the majority of tools."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""main release ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended to be the primary release product and the one consumed by the majority of tools."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""TODO: Add logical axioms that state that a main release ontology module is derived from (directly or indirectly) an editors module"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""main release ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""main release ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""main release ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended to be the primary release product and the one consumed by the majority of tools."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""TODO: Add logical axioms that state that a main release ontology module is derived from (directly or indirectly) an editors module"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000003""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:8000003"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000003"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000003""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000000","true","","TODO: Add logical axioms that state that a main release ontology module is derived from (directly or indirectly) an editors module","","","An ontology module that is intended to be the primary release product and the one consumed by the majority of tools.","","","","","","","main release ontology module","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An ontology module that is intended to be the primary release product and the one consumed by the majority of tools.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000000","","http://purl.obolibrary.org/obo/IAO_8000003","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","main release ontology module","","","DUO","","IAO:8000003","IAO_8000003","","main release ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000004","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000004"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000004""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bridge ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bridge ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""https://github.com/obophenotype/uberon/wiki/inter-anatomy-ontology-bridge-ontologies"",""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bridge ontology module"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bridge ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000004""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:8000004"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000004"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000004""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000000","true","","","","","An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module.","","","","","","","bridge ontology module","","","","1.0","","","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","https://github.com/obophenotype/uberon/wiki/inter-anatomy-ontology-bridge-ontologies","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000000","","http://purl.obolibrary.org/obo/IAO_8000004","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","bridge ontology module","","","DUO","","IAO:8000004","IAO_8000004","","bridge ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000005","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000005"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000005""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology module that is intended to be imported from another ontology."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""import ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology module that is intended to be imported from another ontology."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""TODO: add axioms that indicate this is the output of a module extraction process."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""import file"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""import ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""http://robot.obolibrary.org/extract"",""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000006"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""import ontology module"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""import ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology module that is intended to be imported from another ontology."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""TODO: add axioms that indicate this is the output of a module extraction process."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""import file"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000005""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:8000005"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000005"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000005""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000006","true","","TODO: add axioms that indicate this is the output of a module extraction process.","","","A subset ontology module that is intended to be imported from another ontology.","","","","","","","import ontology module","","","","1.0","import file","","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","http://robot.obolibrary.org/extract","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A subset ontology module that is intended to be imported from another ontology.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000006","","http://purl.obolibrary.org/obo/IAO_8000005","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","import ontology module","","","DUO","","IAO:8000005","IAO_8000005","","import ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000006","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000006"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology slim"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":[""http://robot.obolibrary.org/filter"",""http://www.geneontology.org/page/go-slim-and-subset-guide""],""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""numDescendants"":11.0,""numHierarchicalDescendants"":11.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology slim"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000006""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:8000006"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000006"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000006""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","11.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000000","true","","","","","An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms.","","","","","","","subset ontology module","","","","11.0","ontology slim|subset ontology","","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","http://robot.obolibrary.org/filter|http://www.geneontology.org/page/go-slim-and-subset-guide","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000000","","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","subset ontology module","","","DUO","","IAO:8000006","IAO_8000006","","subset ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000007","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000007"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000007""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation subset ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation subset ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000006"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation subset ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation subset ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000007""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:8000007"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000007"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000007""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000006","true","","","","","A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation.","","","","","","","curation subset ontology module","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000006","","http://purl.obolibrary.org/obo/IAO_8000007","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","curation subset ontology module","","","DUO","","IAO:8000007","IAO_8000007","","curation subset ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000008","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000008"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000008""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended for usage in analysis or discovery applications."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""analysis ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended for usage in analysis or discovery applications."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""analysis subset ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000006"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""analysis subset ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""analysis ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended for usage in analysis or discovery applications."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000008""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:8000008"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000008"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000008""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000006","true","","","","","An ontology module that is intended for usage in analysis or discovery applications.","","","","","","","analysis ontology module","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An ontology module that is intended for usage in analysis or discovery applications.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000006","","http://purl.obolibrary.org/obo/IAO_8000008","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","analysis subset ontology module","","","DUO","","IAO:8000008","IAO_8000008","","analysis subset ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000009","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000009"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000009""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""single layer ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ribbon subset"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""single layer subset ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000006"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""single layer subset ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""single layer ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ribbon subset"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000009""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:8000009"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000009"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000009""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000006","true","","","","","A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint.","","","","","","","single layer ontology module","","","","0.0","ribbon subset","","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000006","","http://purl.obolibrary.org/obo/IAO_8000009","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","single layer subset ontology module","","","DUO","","IAO:8000009","IAO_8000009","","single layer subset ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000010","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000010"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000010""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""exclusion subset ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""antislim"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""exclusion subset ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000006"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""exclusion subset ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""exclusion subset ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""antislim"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000010""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:8000010"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000010"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000010""},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000006","true","","","","","A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes.","","","","","","","exclusion subset ontology module","","","","0.0","antislim","","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000006","","http://purl.obolibrary.org/obo/IAO_8000010","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","exclusion subset ontology module","","","DUO","","IAO:8000010","IAO_8000010","","exclusion subset ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000011","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000011"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000011""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000005"",""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000005"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000005"",""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000005"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""external import ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""external import"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""external import ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000005"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""external import ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""external import ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""external import"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000011""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:8000011"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000011"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000011""},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000005"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""import ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000005""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000005","true","","","","","An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach.","","","","","","","external import ontology module","","","","0.0","external import","","http://purl.obolibrary.org/obo/IAO_8000005","http://purl.obolibrary.org/obo/IAO_8000005|http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000005","","http://purl.obolibrary.org/obo/IAO_8000011","http://purl.obolibrary.org/obo/IAO_8000005|http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","external import ontology module","","","DUO","","IAO:8000011","IAO_8000011","","external import ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000012","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000012"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000012""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is crafted to either include or exclude a taxonomic grouping of species."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""species subset ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is crafted to either include or exclude a taxonomic grouping of species."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""taxon subset"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""species subset ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""https://github.com/obophenotype/uberon/wiki/Taxon-constraints"",""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000006"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""species subset ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""species subset ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is crafted to either include or exclude a taxonomic grouping of species."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""taxon subset"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000012""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:8000012"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000012"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000012""},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000006","true","","","","","A subset ontology that is crafted to either include or exclude a taxonomic grouping of species.","","","","","","","species subset ontology module","","","","0.0","taxon subset","","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","https://github.com/obophenotype/uberon/wiki/Taxon-constraints","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A subset ontology that is crafted to either include or exclude a taxonomic grouping of species.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000006","","http://purl.obolibrary.org/obo/IAO_8000012","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","species subset ontology module","","","DUO","","IAO:8000012","IAO_8000012","","species subset ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000013","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000013"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000013""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""reasoned ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""reasoned ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""http://robot.obolibrary.org/reason"",""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""reasoned ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""reasoned ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000013""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:8000013"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000013"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000013""},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000000","true","","","","","An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available.","","","","","","","reasoned ontology module","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","http://robot.obolibrary.org/reason","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000000","","http://purl.obolibrary.org/obo/IAO_8000013","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","reasoned ontology module","","","DUO","","IAO:8000013","IAO_8000013","","reasoned ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000014","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000014"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000014""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generated ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""TODO: Add axioms (using PROV-O?) that indicate this is the output-of some reasoning process"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generated ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generated ontology module"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generated ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""TODO: Add axioms (using PROV-O?) that indicate this is the output-of some reasoning process"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000014""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:8000014"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000014"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000014""},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000000","true","","TODO: Add axioms (using PROV-O?) that indicate this is the output-of some reasoning process","","","An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV.","","","","","","","generated ontology module","","","","1.0","","","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000000","","http://purl.obolibrary.org/obo/IAO_8000014","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","generated ontology module","","","DUO","","IAO:8000014","IAO_8000014","","generated ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000015","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000015"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000015""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is automatically generated from a template specification and fillers for slots in that template."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000014"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000014"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000014"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000014"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""template generated ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is automatically generated from a template specification and fillers for slots in that template."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""template generated ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":[""http://robot.obolibrary.org/template"",""https://doi.org/10.1186/s13326-017-0126-0"",""https://github.com/dosumis/dead_simple_owl_design_patterns/""],""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000014"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""template generated ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""template generated ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is automatically generated from a template specification and fillers for slots in that template."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000015""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""https://doi.org/10.1186/s13326-017-0126-0"":{""url"":""http://dx.doi.org/10.1186/s13326-017-0126-0"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""doi:10.1186/s13326-017-0126-0""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000014"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generated ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000014""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:8000015"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000015"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000015""},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000014","true","","","","","An ontology module that is automatically generated from a template specification and fillers for slots in that template.","","","","","","","template generated ontology module","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_8000014","http://purl.obolibrary.org/obo/IAO_8000014|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","http://robot.obolibrary.org/template|https://doi.org/10.1186/s13326-017-0126-0|https://github.com/dosumis/dead_simple_owl_design_patterns/","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An ontology module that is automatically generated from a template specification and fillers for slots in that template.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000014","","http://purl.obolibrary.org/obo/IAO_8000015","http://purl.obolibrary.org/obo/IAO_8000014|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","template generated ontology module","","","DUO","","IAO:8000015","IAO_8000015","","template generated ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000016","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000016"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000016""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000004"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000004"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000004"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000004"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""taxonomic bridge ontology module"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""taxonomic bridge ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000004"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""taxonomic bridge ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""taxonomic bridge ontology module"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000016""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:8000016"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000016"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000016""},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bridge ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_8000004","true","","","","","","","","","","","","taxonomic bridge ontology module","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_8000004","http://purl.obolibrary.org/obo/IAO_8000004|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000004","","http://purl.obolibrary.org/obo/IAO_8000016","http://purl.obolibrary.org/obo/IAO_8000004|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","taxonomic bridge ontology module","","","DUO","","IAO:8000016","IAO_8000016","","taxonomic bridge ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000017","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000017"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000017""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by expressivity"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by expressivity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000006"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by expressivity"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by expressivity"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000017""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:8000017"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000017"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000017""},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_8000006","true","","","","","","","","","","","","ontology module subsetted by expressivity","","","","3.0","","","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000006","","http://purl.obolibrary.org/obo/IAO_8000017","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","ontology module subsetted by expressivity","","","DUO","","IAO:8000017","IAO_8000017","","ontology module subsetted by expressivity","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000018","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000018"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000018""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\n\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\n\nAn ontology is OBO Basic if and only if it has the following characteristics:\nDAG\nUnidirectional\nNo Dangling Clauses\nFully Asserted\nFully Labeled\nNo equivalence axioms\nSingly labeled edges\nNo qualifier lists\nNo disjointness axioms\nNo owl-axioms header\nNo imports"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000017"",""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000017"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000017"",""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000017"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obo basic subset ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\n\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\n\nAn ontology is OBO Basic if and only if it has the following characteristics:\nDAG\nUnidirectional\nNo Dangling Clauses\nFully Asserted\nFully Labeled\nNo equivalence axioms\nSingly labeled edges\nNo qualifier lists\nNo disjointness axioms\nNo owl-axioms header\nNo imports"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obo basic subset ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""http://owlcollab.github.io/oboformat/doc/obo-syntax.html#6.2"",""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000017"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obo basic subset ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obo basic subset ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\n\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\n\nAn ontology is OBO Basic if and only if it has the following characteristics:\nDAG\nUnidirectional\nNo Dangling Clauses\nFully Asserted\nFully Labeled\nNo equivalence axioms\nSingly labeled edges\nNo qualifier lists\nNo disjointness axioms\nNo owl-axioms header\nNo imports"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000018""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by expressivity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:8000018"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000018"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000018""},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000017","true","","","","","A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools. +"duo+class+http://purl.obolibrary.org/obo/IAO_8000000","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000000"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000102"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000102"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""I have placed this under \u0027data about an ontology part\u0027, but this can be discussed. I think this is OK if \u0027part\u0027 is interpreted reflexively, as an ontology module is the whole ontology rather than part of it."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology file"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This class and it\u0027s subclasses are applied to OWL ontologies. Using an rdf:type triple will result in problems with OWL-DL. I propose that dcterms:type is instead used to connect an ontology URI with a class from this hierarchy. The class hierarchy is not disjoint, so multiple assertions can be made about a single ontology."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000102"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""numDescendants"":20.0,""numHierarchicalDescendants"":20.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""I have placed this under \u0027data about an ontology part\u0027, but this can be discussed. I think this is OK if \u0027part\u0027 is interpreted reflexively, as an ontology module is the whole ontology rather than part of it."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology file"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This class and it\u0027s subclasses are applied to OWL ontologies. Using an rdf:type triple will result in problems with OWL-DL. I propose that dcterms:type is instead used to connect an ontology URI with a class from this hierarchy. The class hierarchy is not disjoint, so multiple assertions can be made about a single ontology."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","20.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000102","true","","I have placed this under 'data about an ontology part', but this can be discussed. I think this is OK if 'part' is interpreted reflexively, as an ontology module is the whole ontology rather than part of it.","","","","","","","","","","ontology module","This class and it's subclasses are applied to OWL ontologies. Using an rdf:type triple will result in problems with OWL-DL. I propose that dcterms:type is instead used to connect an ontology URI with a class from this hierarchy. The class hierarchy is not disjoint, so multiple assertions can be made about a single ontology.","","","20.0","ontology file","","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000102","","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","ontology module","","","DUO","","IAO:8000000","IAO_8000000","","ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000001""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""base ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""base ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""https://github.com/INCATools/ontology-starter-kit/issues/50"",""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""base ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""base ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000001""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000000","true","","","","","An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies.","","","","","","","base ontology module","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","https://github.com/INCATools/ontology-starter-kit/issues/50","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An ontology module that comprises only of asserted axioms local to the ontology, excludes import directives, and excludes axioms or declarations from external ontologies.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000000","","http://purl.obolibrary.org/obo/IAO_8000001","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","base ontology module","","","DUO","","IAO:8000001","IAO_8000001","","base ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000002","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000002"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000002""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editors ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source ontology module"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editors ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editors ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editors ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""source ontology module"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000002""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000000","true","","","","","An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users.","","","","","","","editors ontology module","","","","0.0","source ontology module","","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An ontology module that is intended to be directly edited, typically managed in source control, and typically not intended for direct consumption by end-users.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000000","","http://purl.obolibrary.org/obo/IAO_8000002","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","editors ontology module","","","DUO","","IAO:8000002","IAO_8000002","","editors ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000003","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000003""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended to be the primary release product and the one consumed by the majority of tools."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""main release ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended to be the primary release product and the one consumed by the majority of tools."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""TODO: Add logical axioms that state that a main release ontology module is derived from (directly or indirectly) an editors module"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""main release ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""main release ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""main release ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended to be the primary release product and the one consumed by the majority of tools."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""TODO: Add logical axioms that state that a main release ontology module is derived from (directly or indirectly) an editors module"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000003""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000000","true","","TODO: Add logical axioms that state that a main release ontology module is derived from (directly or indirectly) an editors module","","","An ontology module that is intended to be the primary release product and the one consumed by the majority of tools.","","","","","","","main release ontology module","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An ontology module that is intended to be the primary release product and the one consumed by the majority of tools.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000000","","http://purl.obolibrary.org/obo/IAO_8000003","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","main release ontology module","","","DUO","","IAO:8000003","IAO_8000003","","main release ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000004","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000004"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000004""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bridge ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bridge ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""https://github.com/obophenotype/uberon/wiki/inter-anatomy-ontology-bridge-ontologies"",""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bridge ontology module"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bridge ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000004""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000000","true","","","","","An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module.","","","","","","","bridge ontology module","","","","1.0","","","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","https://github.com/obophenotype/uberon/wiki/inter-anatomy-ontology-bridge-ontologies","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An ontology module that consists entirely of axioms that connect or bridge two distinct ontology modules. For example, the Uberon-to-ZFA bridge module.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000000","","http://purl.obolibrary.org/obo/IAO_8000004","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","bridge ontology module","","","DUO","","IAO:8000004","IAO_8000004","","bridge ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000005","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000005"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000005""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology module that is intended to be imported from another ontology."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""import ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology module that is intended to be imported from another ontology."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""TODO: add axioms that indicate this is the output of a module extraction process."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""import file"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""import ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""http://robot.obolibrary.org/extract"",""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000006"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""import ontology module"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""import ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology module that is intended to be imported from another ontology."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""TODO: add axioms that indicate this is the output of a module extraction process."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""import file"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000005""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000006","true","","TODO: add axioms that indicate this is the output of a module extraction process.","","","A subset ontology module that is intended to be imported from another ontology.","","","","","","","import ontology module","","","","1.0","import file","","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","http://robot.obolibrary.org/extract","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A subset ontology module that is intended to be imported from another ontology.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000006","","http://purl.obolibrary.org/obo/IAO_8000005","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","import ontology module","","","DUO","","IAO:8000005","IAO_8000005","","import ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000006","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000006"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology slim"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":[""http://robot.obolibrary.org/filter"",""http://www.geneontology.org/page/go-slim-and-subset-guide""],""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""numDescendants"":11.0,""numHierarchicalDescendants"":11.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology slim"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000006""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","11.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000000","true","","","","","An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms.","","","","","","","subset ontology module","","","","11.0","ontology slim|subset ontology","","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","http://robot.obolibrary.org/filter|http://www.geneontology.org/page/go-slim-and-subset-guide","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An ontology module that is extracted from a main ontology module and includes only a subset of entities or axioms.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000000","","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","subset ontology module","","","DUO","","IAO:8000006","IAO_8000006","","subset ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000007","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000007"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000007""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation subset ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation subset ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000006"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation subset ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation subset ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000007""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000006","true","","","","","A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation.","","","","","","","curation subset ontology module","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A subset ontology that is intended as a whitelist for curators using the ontology. Such a subset will exclude classes that curators should not use for curation.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000006","","http://purl.obolibrary.org/obo/IAO_8000007","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","curation subset ontology module","","","DUO","","IAO:8000007","IAO_8000007","","curation subset ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000008","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000008"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000008""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended for usage in analysis or discovery applications."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""analysis ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended for usage in analysis or discovery applications."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""analysis subset ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000006"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""analysis subset ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""analysis ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is intended for usage in analysis or discovery applications."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000008""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000006","true","","","","","An ontology module that is intended for usage in analysis or discovery applications.","","","","","","","analysis ontology module","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An ontology module that is intended for usage in analysis or discovery applications.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000006","","http://purl.obolibrary.org/obo/IAO_8000008","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","analysis subset ontology module","","","DUO","","IAO:8000008","IAO_8000008","","analysis subset ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000009","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000009"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000009""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""single layer ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ribbon subset"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""single layer subset ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000006"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""single layer subset ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""single layer ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ribbon subset"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000009""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000006","true","","","","","A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint.","","","","","","","single layer ontology module","","","","0.0","ribbon subset","","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A subset ontology that is largely comprised of a single layer or strata in an ontology class hierarchy. The purpose is typically for rolling up for visualization. The classes in the layer need not be disjoint.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000006","","http://purl.obolibrary.org/obo/IAO_8000009","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","single layer subset ontology module","","","DUO","","IAO:8000009","IAO_8000009","","single layer subset ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000010","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000010"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000010""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""exclusion subset ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""antislim"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""exclusion subset ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000006"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""exclusion subset ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""exclusion subset ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""antislim"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000010""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000006","true","","","","","A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes.","","","","","","","exclusion subset ontology module","","","","0.0","antislim","","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A subset of an ontology that is intended to be excluded for some purpose. For example, a blacklist of classes.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000006","","http://purl.obolibrary.org/obo/IAO_8000010","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","exclusion subset ontology module","","","DUO","","IAO:8000010","IAO_8000010","","exclusion subset ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000011","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000011"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000011""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000005"",""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000005"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000005"",""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000005"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""external import ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""external import"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""external import ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000005"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""external import ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""external import ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""external import"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000011""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000005"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""import ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000005""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000005","true","","","","","An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach.","","","","","","","external import ontology module","","","","0.0","external import","","http://purl.obolibrary.org/obo/IAO_8000005","http://purl.obolibrary.org/obo/IAO_8000005|http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An imported ontology module that is derived from an external ontology. Derivation methods include the OWLAPI SLME approach.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000005","","http://purl.obolibrary.org/obo/IAO_8000011","http://purl.obolibrary.org/obo/IAO_8000005|http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","external import ontology module","","","DUO","","IAO:8000011","IAO_8000011","","external import ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000012","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000012"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000012""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is crafted to either include or exclude a taxonomic grouping of species."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""species subset ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is crafted to either include or exclude a taxonomic grouping of species."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""taxon subset"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""species subset ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""https://github.com/obophenotype/uberon/wiki/Taxon-constraints"",""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000006"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""species subset ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""species subset ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is crafted to either include or exclude a taxonomic grouping of species."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""taxon subset"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000012""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000006","true","","","","","A subset ontology that is crafted to either include or exclude a taxonomic grouping of species.","","","","","","","species subset ontology module","","","","0.0","taxon subset","","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","https://github.com/obophenotype/uberon/wiki/Taxon-constraints","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A subset ontology that is crafted to either include or exclude a taxonomic grouping of species.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000006","","http://purl.obolibrary.org/obo/IAO_8000012","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","species subset ontology module","","","DUO","","IAO:8000012","IAO_8000012","","species subset ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000013","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000013"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000013""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""reasoned ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""reasoned ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""http://robot.obolibrary.org/reason"",""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""reasoned ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""reasoned ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000013""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000000","true","","","","","An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available.","","","","","","","reasoned ontology module","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","http://robot.obolibrary.org/reason","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An ontology module that contains axioms generated by a reasoner. The generated axioms are typically direct SubClassOf axioms, but other possibilities are available.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000000","","http://purl.obolibrary.org/obo/IAO_8000013","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","reasoned ontology module","","","DUO","","IAO:8000013","IAO_8000013","","reasoned ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000014","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000014"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000014""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000000"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generated ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""TODO: Add axioms (using PROV-O?) that indicate this is the output-of some reasoning process"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generated ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000000"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generated ontology module"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generated ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""TODO: Add axioms (using PROV-O?) that indicate this is the output-of some reasoning process"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000014""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000000","true","","TODO: Add axioms (using PROV-O?) that indicate this is the output-of some reasoning process","","","An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV.","","","","","","","generated ontology module","","","","1.0","","","http://purl.obolibrary.org/obo/IAO_8000000","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","An ontology module that is automatically generated, for example via a SPARQL query or via template and a CSV.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000000","","http://purl.obolibrary.org/obo/IAO_8000014","http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","generated ontology module","","","DUO","","IAO:8000014","IAO_8000014","","generated ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000015","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000015"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000015""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is automatically generated from a template specification and fillers for slots in that template."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000014"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000014"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000014"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000014"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""template generated ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is automatically generated from a template specification and fillers for slots in that template."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""template generated ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":[""http://robot.obolibrary.org/template"",""https://doi.org/10.1186/s13326-017-0126-0"",""https://github.com/dosumis/dead_simple_owl_design_patterns/""],""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000014"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""template generated ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""template generated ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An ontology module that is automatically generated from a template specification and fillers for slots in that template."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000015""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""https://doi.org/10.1186/s13326-017-0126-0"":{""url"":""http://dx.doi.org/10.1186/s13326-017-0126-0"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""doi:10.1186/s13326-017-0126-0""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000014"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generated ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000014""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000014","true","","","","","An ontology module that is automatically generated from a template specification and fillers for slots in that template.","","","","","","","template generated ontology module","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_8000014","http://purl.obolibrary.org/obo/IAO_8000014|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","http://robot.obolibrary.org/template|https://doi.org/10.1186/s13326-017-0126-0|https://github.com/dosumis/dead_simple_owl_design_patterns/","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","An ontology module that is automatically generated from a template specification and fillers for slots in that template.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000014","","http://purl.obolibrary.org/obo/IAO_8000015","http://purl.obolibrary.org/obo/IAO_8000014|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","template generated ontology module","","","DUO","","IAO:8000015","IAO_8000015","","template generated ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000016","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000016"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000016""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000004"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000004"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000004"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000004"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""taxonomic bridge ontology module"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""taxonomic bridge ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000004"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""taxonomic bridge ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""taxonomic bridge ontology module"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000016""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bridge ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_8000004","true","","","","","","","","","","","","taxonomic bridge ontology module","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_8000004","http://purl.obolibrary.org/obo/IAO_8000004|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000004","","http://purl.obolibrary.org/obo/IAO_8000016","http://purl.obolibrary.org/obo/IAO_8000004|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","taxonomic bridge ontology module","","","DUO","","IAO:8000016","IAO_8000016","","taxonomic bridge ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000017","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000017"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000017""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000006"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by expressivity"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by expressivity"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000006"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by expressivity"",""lang"":""en""},""numDescendants"":3.0,""numHierarchicalDescendants"":3.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by expressivity"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000017""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","3.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_8000006","true","","","","","","","","","","","","ontology module subsetted by expressivity","","","","3.0","","","http://purl.obolibrary.org/obo/IAO_8000006","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000006","","http://purl.obolibrary.org/obo/IAO_8000017","http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","ontology module subsetted by expressivity","","","DUO","","IAO:8000017","IAO_8000017","","ontology module subsetted by expressivity","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000018","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000018"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000018""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\n\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\n\nAn ontology is OBO Basic if and only if it has the following characteristics:\nDAG\nUnidirectional\nNo Dangling Clauses\nFully Asserted\nFully Labeled\nNo equivalence axioms\nSingly labeled edges\nNo qualifier lists\nNo disjointness axioms\nNo owl-axioms header\nNo imports"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000017"",""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000017"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000017"",""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000017"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obo basic subset ontology module"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\n\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\n\nAn ontology is OBO Basic if and only if it has the following characteristics:\nDAG\nUnidirectional\nNo Dangling Clauses\nFully Asserted\nFully Labeled\nNo equivalence axioms\nSingly labeled edges\nNo qualifier lists\nNo disjointness axioms\nNo owl-axioms header\nNo imports"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obo basic subset ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":""http://owlcollab.github.io/oboformat/doc/obo-syntax.html#6.2"",""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000017"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obo basic subset ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obo basic subset ontology module"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools.\n\nExamples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses).\n\nAn ontology is OBO Basic if and only if it has the following characteristics:\nDAG\nUnidirectional\nNo Dangling Clauses\nFully Asserted\nFully Labeled\nNo equivalence axioms\nSingly labeled edges\nNo qualifier lists\nNo disjointness axioms\nNo owl-axioms header\nNo imports"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000018""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by expressivity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_8000017","true","","","","","A subset ontology that is designed for basic applications to continue to make certain simplifying assumptions; many of these simplifying assumptions were based on the initial version of the Gene Ontology, and have become enshrined in many popular and useful tools such as term enrichment tools. Examples of such assumptions include: traversing the ontology graph ignoring relationship types using a naive algorithm will not lead to cycles (i.e. the ontology is a DAG); every referenced term is declared in the ontology (i.e. there are no dangling clauses). @@ -447,21 +447,21 @@ No qualifier lists No disjointness axioms No owl-axioms header No imports","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000017","","http://purl.obolibrary.org/obo/IAO_8000018","http://purl.obolibrary.org/obo/IAO_8000017|http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","obo basic subset ontology module","","","DUO","","IAO:8000018","IAO_8000018","","obo basic subset ontology module","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000019","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000019"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000019""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000017"",""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000017"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000017"",""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000017"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by OWL profile"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by OWL profile"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000017"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by OWL profile"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by OWL profile"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000019""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by expressivity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:8000019"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000019"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000019""},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_8000017","true","","","","","","","","","","","","ontology module subsetted by OWL profile","","","","1.0","","","http://purl.obolibrary.org/obo/IAO_8000017","http://purl.obolibrary.org/obo/IAO_8000017|http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000017","","http://purl.obolibrary.org/obo/IAO_8000019","http://purl.obolibrary.org/obo/IAO_8000017|http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","ontology module subsetted by OWL profile","","","DUO","","IAO:8000019","IAO_8000019","","ontology module subsetted by OWL profile","duo","" -"duo+class+http://purl.obolibrary.org/obo/IAO_8000020","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000020"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000020""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000019"",""http://purl.obolibrary.org/obo/IAO_8000017"",""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000019"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000019"",""http://purl.obolibrary.org/obo/IAO_8000017"",""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000019"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""EL++ ontology module"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""EL++ ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000019"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""EL++ ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""EL++ ontology module"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000020""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:8000020"":{""url"":""http://purl.obolibrary.org/obo/IAO_8000020"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:8000020""},""http://purl.obolibrary.org/obo/IAO_8000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by OWL profile"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by expressivity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_8000019","true","","","","","","","","","","","","EL++ ontology module","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_8000019","http://purl.obolibrary.org/obo/IAO_8000019|http://purl.obolibrary.org/obo/IAO_8000017|http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000019","","http://purl.obolibrary.org/obo/IAO_8000020","http://purl.obolibrary.org/obo/IAO_8000019|http://purl.obolibrary.org/obo/IAO_8000017|http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","EL++ ontology module","","","DUO","","IAO:8000020","IAO_8000020","","EL++ ontology module","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000019","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000019"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000019""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000017"",""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000017"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000017"",""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000017"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by OWL profile"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by OWL profile"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000017"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by OWL profile"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by OWL profile"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000019""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by expressivity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_8000017","true","","","","","","","","","","","","ontology module subsetted by OWL profile","","","","1.0","","","http://purl.obolibrary.org/obo/IAO_8000017","http://purl.obolibrary.org/obo/IAO_8000017|http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000017","","http://purl.obolibrary.org/obo/IAO_8000019","http://purl.obolibrary.org/obo/IAO_8000017|http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","ontology module subsetted by OWL profile","","","DUO","","IAO:8000019","IAO_8000019","","ontology module subsetted by OWL profile","duo","" +"duo+class+http://purl.obolibrary.org/obo/IAO_8000020","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/IAO_8000020"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:8000020""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000019"",""http://purl.obolibrary.org/obo/IAO_8000017"",""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_8000019"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_8000019"",""http://purl.obolibrary.org/obo/IAO_8000017"",""http://purl.obolibrary.org/obo/IAO_8000006"",""http://purl.obolibrary.org/obo/IAO_8000000"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_8000019"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""EL++ ontology module"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""EL++ ontology module"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_8000019"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""EL++ ontology module"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""EL++ ontology module"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""IAO_8000020""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by OWL profile"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module subsetted by expressivity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000000""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_8000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""subset ontology module"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:8000006""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_8000019","true","","","","","","","","","","","","EL++ ontology module","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_8000019","http://purl.obolibrary.org/obo/IAO_8000019|http://purl.obolibrary.org/obo/IAO_8000017|http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_8000019","","http://purl.obolibrary.org/obo/IAO_8000020","http://purl.obolibrary.org/obo/IAO_8000019|http://purl.obolibrary.org/obo/IAO_8000017|http://purl.obolibrary.org/obo/IAO_8000006|http://purl.obolibrary.org/obo/IAO_8000000|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","EL++ ontology module","","","DUO","","IAO:8000020","IAO_8000020","","EL++ ontology module","duo","" "duo+class+http://purl.obolibrary.org/obo/MONDO_0000001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MONDO_0000001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MONDO:0000001""},""definition"":{""type"":[""literal""],""value"":""A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000016"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000016"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""EFO:0000408""},{""type"":[""literal""],""value"":""ICD10:N18""},{""type"":[""literal""],""value"":""ICD9:799.9""},{""type"":[""literal""],""value"":""MESH:D004194""},{""type"":[""literal""],""value"":""NCIT:C2991""},{""type"":[""literal""],""value"":""OGMS:0000031""},{""type"":[""literal""],""value"":""Orphanet:377788""},{""type"":[""literal""],""value"":""SCTID:64572001""},{""type"":[""literal""],""value"":""UMLS:C0012634""}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":[{""type"":[""literal""],""value"":""condition""},{""type"":[""literal""],""value"":""disease""},{""type"":[""literal""],""value"":""disease or disorder""},{""type"":[""literal""],""value"":""disease or disorder, non-neoplastic""},{""type"":[""literal""],""value"":""diseases""},{""type"":[""literal""],""value"":""diseases and disorders""},{""type"":[""literal""],""value"":""disorder""},{""type"":[""literal""],""value"":""disorders""},{""type"":[""literal""],""value"":""medical condition""},{""type"":[""literal""],""value"":""other disease""}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""MONDO:0000001""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disease or disorder""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000016"",""http://www.w3.org/2004/02/skos/core#exactMatch"":[""http://identifiers.org/mesh/D004194"",""http://identifiers.org/snomedct/64572001"",""http://linkedlifedata.com/resource/umls/id/C0012634"",""http://purl.obolibrary.org/obo/DOID_4"",""http://purl.obolibrary.org/obo/NCIT_C2991"",""http://www.orpha.net/ORDO/Orphanet_377788""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disease or disorder""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/DUO_0000010"",""value"":""http://purl.obolibrary.org/obo/DUO_0000007"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/DUO_0000010"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MONDO_0000001"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.""},{""type"":[""literal""],""value"":""DOID:4""},{""type"":[""literal""],""value"":""EFO:0000408""},{""type"":[""literal""],""value"":""ICD10:N18""},{""type"":[""literal""],""value"":""ICD9:799.9""},{""type"":[""literal""],""value"":""MESH:D004194""},{""type"":[""literal""],""value"":""NCIT:C2991""},{""type"":[""literal""],""value"":""OGMS:0000031""},{""type"":[""literal""],""value"":""Orphanet:377788""},{""type"":[""literal""],""value"":""SCTID:64572001""},{""type"":[""literal""],""value"":""UMLS:C0012634""},{""type"":[""literal""],""value"":""condition""},{""type"":[""literal""],""value"":""disease""},{""type"":[""literal""],""value"":""disease or disorder""},{""type"":[""literal""],""value"":""disease or disorder, non-neoplastic""},{""type"":[""literal""],""value"":""diseases""},{""type"":[""literal""],""value"":""diseases and disorders""},{""type"":[""literal""],""value"":""disorder""},{""type"":[""literal""],""value"":""disorders""},{""type"":[""literal""],""value"":""medical condition""},{""type"":[""literal""],""value"":""other disease""},{""type"":[""literal""],""value"":""MONDO:0000001""},false],""shortForm"":{""type"":[""literal""],""value"":""MONDO_0000001""},""synonym"":[{""type"":[""literal""],""value"":""condition""},{""type"":[""literal""],""value"":""disease""},{""type"":[""literal""],""value"":""disease or disorder""},{""type"":[""literal""],""value"":""disease or disorder, non-neoplastic""},{""type"":[""literal""],""value"":""diseases""},{""type"":[""literal""],""value"":""diseases and disorders""},{""type"":[""literal""],""value"":""disorder""},{""type"":[""literal""],""value"":""disorders""},{""type"":[""literal""],""value"":""medical condition""},{""type"":[""literal""],""value"":""other disease""}],""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2004/02/skos/core#exactMatch"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""exactMatch""},""curie"":{""type"":[""literal""],""value"":""exactMatch""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DOID_4"":{""url"":""http://purl.obolibrary.org/obo/DOID_4"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""doid:4""},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""SCTID:64572001"":{""url"":""http://snomed.info/id/64572001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""SCTID:64572001""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""DOID:4"":{""url"":""http://purl.obolibrary.org/obo/DOID_4"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""DOID:4""},""http://purl.obolibrary.org/obo/NCIT_C2991"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C2991"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ncit:C2991""},""http://purl.obolibrary.org/obo/DUO_0000007"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disease specific research"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000010"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""is restricted to""},""curie"":{""type"":[""literal""],""value"":""DUO:0000010""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""EFO:0000408"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0000408"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0000408""},""Orphanet:377788"":{""url"":""http://www.orpha.net/consor/cgi-bin/OC_Exp.php?Lng\u003dEN\u0026Expert\u003d377788"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""Orphanet:377788""},""NCIT:C2991"":{""url"":""http://purl.obolibrary.org/obo/NCIT_C2991"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""NCIT:C2991""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has exact synonym"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""OGMS:0000031"":{""url"":""http://purl.obolibrary.org/obo/OGMS_0000031"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OGMS:0000031""},""UMLS:C0012634"":{""url"":""https://uts.nlm.nih.gov/uts/umls/concept/C0012634"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UMLS:C0012634""},""MONDO:0000001"":{""url"":""http://purl.obolibrary.org/obo/MONDO_0000001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MONDO:0000001""},""http://www.orpha.net/ORDO/Orphanet_377788"":{""url"":""http://www.orpha.net/ORDO/Orphanet_377788"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""orphanet.ordo:377788""},""ICD10:N18"":{""url"":""https://icd.who.int/browse10/2019/en#/N18"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""ICD10:N18""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""MESH:D004194"":{""url"":""http://id.nlm.nih.gov/mesh/D004194"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""MESH:D004194""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","false","http://identifiers.org/mesh/D004194|http://identifiers.org/snomedct/64572001|http://linkedlifedata.com/resource/umls/id/C0012634|http://purl.obolibrary.org/obo/DOID_4|http://purl.obolibrary.org/obo/NCIT_C2991|http://www.orpha.net/ORDO/Orphanet_377788","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","MONDO:0000001","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000016","true","","","","","A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.","","","","","","","","","","http://purl.obolibrary.org/obo/DUO_0000007","0.0","","","http://purl.obolibrary.org/obo/BFO_0000016","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","condition|disease|disease or disorder|disease or disorder, non-neoplastic|diseases|diseases and disorders|disorder|disorders|medical condition|other disease","","DOID:4|EFO:0000408|ICD10:N18|ICD9:799.9|MESH:D004194|NCIT:C2991|OGMS:0000031|Orphanet:377788|SCTID:64572001|UMLS:C0012634","condition|disease|disease or disorder|disease or disorder, non-neoplastic|diseases|diseases and disorders|disorder|disorders|medical condition|other disease","","false","","A disease is a disposition to undergo pathological processes that exists in an organism because of one or more disorders in that organism.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000016","","http://purl.obolibrary.org/obo/MONDO_0000001","http://purl.obolibrary.org/obo/BFO_0000016|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","disease or disorder","","","DUO","","MONDO:0000001","MONDO_0000001","","disease or disorder","duo","" -"duo+class+http://purl.obolibrary.org/obo/OBI_0000011","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/OBI_0000011"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A process that realizes a plan which is the concretization of a plan specification."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000015"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000015"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A process that realizes a plan which is the concretization of a plan specification."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/obi.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000015"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""numDescendants"":25.0,""numHierarchicalDescendants"":25.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A process that realizes a plan which is the concretization of a plan specification."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""OBI_0000011""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""OBI:0000011"":{""url"":""http://purl.obolibrary.org/obo/OBI_0000011"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OBI:0000011""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","25.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000015","true","","","","","A process that realizes a plan which is the concretization of a plan specification.","","","","","","","planned process","","","","25.0","","","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A process that realizes a plan which is the concretization of a plan specification.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/obi.owl","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","planned process","","","DUO","","OBI:0000011","OBI_0000011","","planned process","duo","" -"duo+class+http://purl.obolibrary.org/obo/OBI_0000066","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/OBI_0000066"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0000066""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/obi.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000011"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},""numDescendants"":10.0,""numHierarchicalDescendants"":10.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000312"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0000066"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s)."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""OBI_0000066""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""OBI:0000066"":{""url"":""http://purl.obolibrary.org/obo/OBI_0000066"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OBI:0000066""},""http://purl.obolibrary.org/obo/IAO_0000312"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication about an investigation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000312""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","true","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","10.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011","true","","","","","a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s).","","","","","","","investigation","","","http://purl.obolibrary.org/obo/IAO_0000312","10.0","","","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s).","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/obi.owl","http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","investigation","","","DUO","","OBI:0000066","OBI_0000066","","investigation","duo","" -"duo+class+http://purl.obolibrary.org/obo/OBI_0000471","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/OBI_0000471"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0000471""},""definition"":{""type"":[""literal""],""value"":""a planned process that carries out a study design""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""study design execution""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""a planned process that carries out a study design""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/obi.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""study design execution""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000011"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""study design execution""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000318"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0000471"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""study design execution""},{""type"":[""literal""],""value"":""a planned process that carries out a study design""},false],""shortForm"":{""type"":[""literal""],""value"":""OBI_0000471""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000318"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""results section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000318""},""type"":[""class"",""entity""]},""OBI:0000471"":{""url"":""http://purl.obolibrary.org/obo/OBI_0000471"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OBI:0000471""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011","true","","","","","a planned process that carries out a study design","","","","","","","study design execution","","","http://purl.obolibrary.org/obo/IAO_0000318","0.0","","","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","a planned process that carries out a study design","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/obi.owl","http://purl.obolibrary.org/obo/OBI_0000471","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","study design execution","","","DUO","","OBI:0000471","OBI_0000471","","study design execution","duo","" -"duo+class+http://purl.obolibrary.org/obo/OBI_0200000","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/OBI_0200000"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0200000""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that produces output data from input data."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data transformation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that produces output data from input data."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/obi.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data transformation"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000011"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data transformation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data transformation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that produces output data from input data."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""OBI_0200000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""OBI:0200000"":{""url"":""http://purl.obolibrary.org/obo/OBI_0200000"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OBI:0200000""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011","true","","","","","A planned process that produces output data from input data.","","","","","","","data transformation","","","","0.0","","","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A planned process that produces output data from input data.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/obi.owl","http://purl.obolibrary.org/obo/OBI_0200000","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","data transformation","","","DUO","","OBI:0200000","OBI_0200000","","data transformation","duo","" -"duo+class+http://purl.obolibrary.org/obo/OBI_0500000","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/OBI_0500000"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0500000""},""definition"":{""type"":[""literal""],""value"":""A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study design"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/obi.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study design"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000104"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study design"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000317"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000621"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000631"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study design"",""lang"":""en""},{""type"":[""literal""],""value"":""A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.""},false],""shortForm"":{""type"":[""literal""],""value"":""OBI_0500000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000631"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000631""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000317"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methods section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000317""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""OBI:0500000"":{""url"":""http://purl.obolibrary.org/obo/OBI_0500000"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OBI:0500000""},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000621"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000621""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000104","true","","","","","A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.","","","","","","","study design","","","http://purl.obolibrary.org/obo/IAO_0000317|http://purl.obolibrary.org/obo/IAO_0000621|http://purl.obolibrary.org/obo/IAO_0000631","0.0","","","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/obi.owl","http://purl.obolibrary.org/obo/OBI_0500000","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","study design","","","DUO","","OBI:0500000","OBI_0500000","","study design","duo","" -"duo+class+http://purl.obolibrary.org/obo/PATO_0000051","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0000051"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0000051""},""definition"":{""type"":[""literal""],""value"":""A quality of a single physical entity inhering in the bearer by virtue of the bearer\u0027s size or shape or structure.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""morphology""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A quality of a single physical entity inhering in the bearer by virtue of the bearer\u0027s size or shape or structure.""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/pato.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""morphology""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001241"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""morphology""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""morphology""},{""type"":[""literal""],""value"":""A quality of a single physical entity inhering in the bearer by virtue of the bearer\u0027s size or shape or structure.""},false],""shortForm"":{""type"":[""literal""],""value"":""PATO_0000051""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""PATO:0000051"":{""url"":""http://purl.obolibrary.org/obo/PATO_0000051"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""PATO:0000051""},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/PATO_0001241","true","","","","","A quality of a single physical entity inhering in the bearer by virtue of the bearer's size or shape or structure.","","","","","","","morphology","","","","1.0","","","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A quality of a single physical entity inhering in the bearer by virtue of the bearer's size or shape or structure.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/pato.owl","http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","morphology","","","DUO","","PATO:0000051","PATO_0000051","","morphology","duo","" -"duo+class+http://purl.obolibrary.org/obo/PATO_0000122","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0000122"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0000122""},""definition"":{""type"":[""literal""],""value"":""A 1-D extent quality which is equal to the distance between two points.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000051"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0000051"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000051"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0000051"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""length""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A 1-D extent quality which is equal to the distance between two points.""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/pato.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""length""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0000051"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""length""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000221"",""value"":""http://purl.obolibrary.org/obo/IAO_0000408"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000221"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0000122"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""length""},{""type"":[""literal""],""value"":""A 1-D extent quality which is equal to the distance between two points.""},false],""shortForm"":{""type"":[""literal""],""value"":""PATO_0000122""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphology""},""curie"":{""type"":[""literal""],""value"":""PATO:0000051""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000408"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""length measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000408""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""PATO:0000122"":{""url"":""http://purl.obolibrary.org/obo/PATO_0000122"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""PATO:0000122""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000221"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measurement of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000221""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/PATO_0000051","true","","","","","A 1-D extent quality which is equal to the distance between two points.","","","","","","","length","","","http://purl.obolibrary.org/obo/IAO_0000408","0.0","","","http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0000051|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A 1-D extent quality which is equal to the distance between two points.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/pato.owl","http://purl.obolibrary.org/obo/PATO_0000122","http://purl.obolibrary.org/obo/PATO_0000051|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","length","","","DUO","","PATO:0000122","PATO_0000122","","length","duo","" -"duo+class+http://purl.obolibrary.org/obo/PATO_0000125","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0000125"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0000125""},""definition"":{""type"":[""literal""],""value"":""A physical quality that inheres in a bearer by virtue of the proportion of the bearer\u0027s amount of matter.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001018"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001018"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001018"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001018"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""mass""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A physical quality that inheres in a bearer by virtue of the proportion of the bearer\u0027s amount of matter.""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/pato.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""mass""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001018"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""mass""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""mass""},{""type"":[""literal""],""value"":""A physical quality that inheres in a bearer by virtue of the proportion of the bearer\u0027s amount of matter.""},false],""shortForm"":{""type"":[""literal""],""value"":""PATO_0000125""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""PATO:0000125"":{""url"":""http://purl.obolibrary.org/obo/PATO_0000125"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""PATO:0000125""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/PATO_0001018","true","","","","","A physical quality that inheres in a bearer by virtue of the proportion of the bearer's amount of matter.","","","","","","","mass","","","","0.0","","","http://purl.obolibrary.org/obo/PATO_0001018","http://purl.obolibrary.org/obo/PATO_0001018|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A physical quality that inheres in a bearer by virtue of the proportion of the bearer's amount of matter.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/PATO_0001018","http://purl.obolibrary.org/obo/pato.owl","http://purl.obolibrary.org/obo/PATO_0000125","http://purl.obolibrary.org/obo/PATO_0001018|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","mass","","","DUO","","PATO:0000125","PATO_0000125","","mass","duo","" -"duo+class+http://purl.obolibrary.org/obo/PATO_0001018","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0001018"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0001018""},""definition"":{""type"":[""literal""],""value"":""A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""physical quality""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/pato.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""physical quality""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001241"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""physical quality""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""physical quality""},{""type"":[""literal""],""value"":""A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.""},false],""shortForm"":{""type"":[""literal""],""value"":""PATO_0001018""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""PATO:0001018"":{""url"":""http://purl.obolibrary.org/obo/PATO_0001018"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""PATO:0001018""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/PATO_0001241","true","","","","","A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.","","","","","","","physical quality","","","","1.0","","","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/pato.owl","http://purl.obolibrary.org/obo/PATO_0001018","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","physical quality","","","DUO","","PATO:0001018","PATO_0001018","","physical quality","duo","" -"duo+class+http://purl.obolibrary.org/obo/PATO_0001241","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0001241"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""definition"":{""type"":[""literal""],""value"":""A quality which inheres in a continuant.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000019"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000019"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""physical object quality""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A quality which inheres in a continuant.""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/pato.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""physical object quality""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000019"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""physical object quality""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""physical object quality""},{""type"":[""literal""],""value"":""A quality which inheres in a continuant.""},false],""shortForm"":{""type"":[""literal""],""value"":""PATO_0001241""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""PATO:0001241"":{""url"":""http://purl.obolibrary.org/obo/PATO_0001241"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""PATO:0001241""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000019","true","","","","","A quality which inheres in a continuant.","","","","","","","physical object quality","","","","4.0","","","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A quality which inheres in a continuant.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/pato.owl","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","physical object quality","","","DUO","","PATO:0001241","PATO_0001241","","physical object quality","duo","" -"duo+class+http://purl.obolibrary.org/obo/UO_0000001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UO_0000001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UO:0000001""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000003"",""http://purl.obolibrary.org/obo/IAO_0000009"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000003"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000003"",""http://purl.obolibrary.org/obo/IAO_0000009"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""length unit""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/uo.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""length unit""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""length unit""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000039"",""value"":""http://purl.obolibrary.org/obo/IAO_0000408"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000039"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UO_0000001"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""length unit""},false],""shortForm"":{""type"":[""literal""],""value"":""UO_0000001""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""UO:0000001"":{""url"":""http://purl.obolibrary.org/obo/UO_0000001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UO:0000001""},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000039""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000408"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""length measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000408""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""datum label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000003","true","","","","","","","","","","","","length unit","","","http://purl.obolibrary.org/obo/IAO_0000408","0.0","","","http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000003|http://purl.obolibrary.org/obo/IAO_0000009|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/uo.owl","http://purl.obolibrary.org/obo/UO_0000001","http://purl.obolibrary.org/obo/IAO_0000003|http://purl.obolibrary.org/obo/IAO_0000009|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","length unit","","","DUO","","UO:0000001","UO_0000001","","length unit","duo","" -"duo+class+http://purl.obolibrary.org/obo/UO_0000002","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UO_0000002"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UO:0000002""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000003"",""http://purl.obolibrary.org/obo/IAO_0000009"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000003"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000003"",""http://purl.obolibrary.org/obo/IAO_0000009"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""mass unit""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/uo.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""mass unit""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""mass unit""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""mass unit""},false],""shortForm"":{""type"":[""literal""],""value"":""UO_0000002""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""UO:0000002"":{""url"":""http://purl.obolibrary.org/obo/UO_0000002"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UO:0000002""},""http://purl.obolibrary.org/obo/IAO_0000009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""datum label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000003""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000003","true","","","","","","","","","","","","mass unit","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000003|http://purl.obolibrary.org/obo/IAO_0000009|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/uo.owl","http://purl.obolibrary.org/obo/UO_0000002","http://purl.obolibrary.org/obo/IAO_0000003|http://purl.obolibrary.org/obo/IAO_0000009|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","mass unit","","","DUO","","UO:0000002","UO_0000002","","mass unit","duo","" -"duo+class+http://purl.obolibrary.org/obo/UO_0000003","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UO_0000003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UO:0000003""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000003"",""http://purl.obolibrary.org/obo/IAO_0000009"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000003"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000003"",""http://purl.obolibrary.org/obo/IAO_0000009"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""time unit""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/uo.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""time unit""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""time unit""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""time unit""},false],""shortForm"":{""type"":[""literal""],""value"":""UO_0000003""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""UO:0000003"":{""url"":""http://purl.obolibrary.org/obo/UO_0000003"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""UO:0000003""},""http://purl.obolibrary.org/obo/IAO_0000009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""datum label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000003""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000003","true","","","","","","","","","","","","time unit","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000003|http://purl.obolibrary.org/obo/IAO_0000009|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/uo.owl","http://purl.obolibrary.org/obo/UO_0000003","http://purl.obolibrary.org/obo/IAO_0000003|http://purl.obolibrary.org/obo/IAO_0000009|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","time unit","","","DUO","","UO:0000003","UO_0000003","","time unit","duo","" +"duo+class+http://purl.obolibrary.org/obo/OBI_0000011","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/OBI_0000011"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A process that realizes a plan which is the concretization of a plan specification."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000015"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000015"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A process that realizes a plan which is the concretization of a plan specification."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/obi.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000015"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""numDescendants"":25.0,""numHierarchicalDescendants"":25.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A process that realizes a plan which is the concretization of a plan specification."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""OBI_0000011""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","25.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000015","true","","","","","A process that realizes a plan which is the concretization of a plan specification.","","","","","","","planned process","","","","25.0","","","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A process that realizes a plan which is the concretization of a plan specification.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000015","http://purl.obolibrary.org/obo/obi.owl","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","planned process","","","DUO","","OBI:0000011","OBI_0000011","","planned process","duo","" +"duo+class+http://purl.obolibrary.org/obo/OBI_0000066","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/OBI_0000066"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0000066""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s)."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s)."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/obi.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000011"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},""numDescendants"":10.0,""numHierarchicalDescendants"":10.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000312"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0000066"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s)."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""OBI_0000066""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000312"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""publication about an investigation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000312""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","true","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","10.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011","true","","","","","a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s).","","","","","","","investigation","","","http://purl.obolibrary.org/obo/IAO_0000312","10.0","","","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s).","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/obi.owl","http://purl.obolibrary.org/obo/OBI_0000066","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","investigation","","","DUO","","OBI:0000066","OBI_0000066","","investigation","duo","" +"duo+class+http://purl.obolibrary.org/obo/OBI_0000471","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/OBI_0000471"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0000471""},""definition"":{""type"":[""literal""],""value"":""a planned process that carries out a study design""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""study design execution""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""a planned process that carries out a study design""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/obi.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""study design execution""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000011"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""study design execution""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000318"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0000471"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""study design execution""},{""type"":[""literal""],""value"":""a planned process that carries out a study design""},false],""shortForm"":{""type"":[""literal""],""value"":""OBI_0000471""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000318"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""results section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000318""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011","true","","","","","a planned process that carries out a study design","","","","","","","study design execution","","","http://purl.obolibrary.org/obo/IAO_0000318","0.0","","","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","a planned process that carries out a study design","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/obi.owl","http://purl.obolibrary.org/obo/OBI_0000471","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","study design execution","","","DUO","","OBI:0000471","OBI_0000471","","study design execution","duo","" +"duo+class+http://purl.obolibrary.org/obo/OBI_0200000","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/OBI_0200000"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0200000""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that produces output data from input data."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/OBI_0000011"",""http://purl.obolibrary.org/obo/BFO_0000015"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/OBI_0000011"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data transformation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that produces output data from input data."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/obi.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data transformation"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/OBI_0000011"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data transformation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data transformation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A planned process that produces output data from input data."",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""OBI_0200000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/OBI_0000011","true","","","","","A planned process that produces output data from input data.","","","","","","","data transformation","","","","0.0","","","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A planned process that produces output data from input data.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/OBI_0000011","http://purl.obolibrary.org/obo/obi.owl","http://purl.obolibrary.org/obo/OBI_0200000","http://purl.obolibrary.org/obo/OBI_0000011|http://purl.obolibrary.org/obo/BFO_0000015|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000001","","","false","data transformation","","","DUO","","OBI:0200000","OBI_0200000","","data transformation","duo","" +"duo+class+http://purl.obolibrary.org/obo/OBI_0500000","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/OBI_0500000"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0500000""},""definition"":{""type"":[""literal""],""value"":""A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000104"",""http://purl.obolibrary.org/obo/IAO_0000033"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000104"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study design"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/obi.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study design"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000104"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study design"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000317"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000621"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/IAO_0000136"",""value"":""http://purl.obolibrary.org/obo/IAO_0000631"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/OBI_0500000"",""isObsolete"":false}],""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study design"",""lang"":""en""},{""type"":[""literal""],""value"":""A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.""},false],""shortForm"":{""type"":[""literal""],""value"":""OBI_0500000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000631"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""study limitations section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000631""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000033"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""directive information entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000033""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000317"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""methods section"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000317""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000104"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""plan specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000104""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000621"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ethical approval textual entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000621""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000104","true","","","","","A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.","","","","","","","study design","","","http://purl.obolibrary.org/obo/IAO_0000317|http://purl.obolibrary.org/obo/IAO_0000621|http://purl.obolibrary.org/obo/IAO_0000631","0.0","","","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A plan specification comprised of protocols (which may specify how and what kinds of data will be gathered) that are executed as part of an investigation and is realized during a study design execution.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000104","http://purl.obolibrary.org/obo/obi.owl","http://purl.obolibrary.org/obo/OBI_0500000","http://purl.obolibrary.org/obo/IAO_0000104|http://purl.obolibrary.org/obo/IAO_0000033|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","study design","","","DUO","","OBI:0500000","OBI_0500000","","study design","duo","" +"duo+class+http://purl.obolibrary.org/obo/PATO_0000051","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0000051"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0000051""},""definition"":{""type"":[""literal""],""value"":""A quality of a single physical entity inhering in the bearer by virtue of the bearer\u0027s size or shape or structure.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""morphology""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A quality of a single physical entity inhering in the bearer by virtue of the bearer\u0027s size or shape or structure.""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/pato.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""morphology""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001241"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""morphology""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""morphology""},{""type"":[""literal""],""value"":""A quality of a single physical entity inhering in the bearer by virtue of the bearer\u0027s size or shape or structure.""},false],""shortForm"":{""type"":[""literal""],""value"":""PATO_0000051""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/PATO_0001241","true","","","","","A quality of a single physical entity inhering in the bearer by virtue of the bearer's size or shape or structure.","","","","","","","morphology","","","","1.0","","","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A quality of a single physical entity inhering in the bearer by virtue of the bearer's size or shape or structure.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/pato.owl","http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","morphology","","","DUO","","PATO:0000051","PATO_0000051","","morphology","duo","" +"duo+class+http://purl.obolibrary.org/obo/PATO_0000122","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0000122"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0000122""},""definition"":{""type"":[""literal""],""value"":""A 1-D extent quality which is equal to the distance between two points.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000051"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0000051"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0000051"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0000051"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""length""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A 1-D extent quality which is equal to the distance between two points.""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/pato.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""length""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0000051"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""length""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000221"",""value"":""http://purl.obolibrary.org/obo/IAO_0000408"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000221"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/PATO_0000122"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""length""},{""type"":[""literal""],""value"":""A 1-D extent quality which is equal to the distance between two points.""},false],""shortForm"":{""type"":[""literal""],""value"":""PATO_0000122""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""morphology""},""curie"":{""type"":[""literal""],""value"":""PATO:0000051""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000408"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""length measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000408""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000221"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measurement of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000221""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/PATO_0000051","true","","","","","A 1-D extent quality which is equal to the distance between two points.","","","","","","","length","","","http://purl.obolibrary.org/obo/IAO_0000408","0.0","","","http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/PATO_0000051|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A 1-D extent quality which is equal to the distance between two points.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/PATO_0000051","http://purl.obolibrary.org/obo/pato.owl","http://purl.obolibrary.org/obo/PATO_0000122","http://purl.obolibrary.org/obo/PATO_0000051|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","length","","","DUO","","PATO:0000122","PATO_0000122","","length","duo","" +"duo+class+http://purl.obolibrary.org/obo/PATO_0000125","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0000125"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0000125""},""definition"":{""type"":[""literal""],""value"":""A physical quality that inheres in a bearer by virtue of the proportion of the bearer\u0027s amount of matter.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001018"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001018"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001018"",""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001018"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""mass""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A physical quality that inheres in a bearer by virtue of the proportion of the bearer\u0027s amount of matter.""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/pato.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""mass""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001018"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""mass""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""mass""},{""type"":[""literal""],""value"":""A physical quality that inheres in a bearer by virtue of the proportion of the bearer\u0027s amount of matter.""},false],""shortForm"":{""type"":[""literal""],""value"":""PATO_0000125""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001018"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001018""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/PATO_0001018","true","","","","","A physical quality that inheres in a bearer by virtue of the proportion of the bearer's amount of matter.","","","","","","","mass","","","","0.0","","","http://purl.obolibrary.org/obo/PATO_0001018","http://purl.obolibrary.org/obo/PATO_0001018|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A physical quality that inheres in a bearer by virtue of the proportion of the bearer's amount of matter.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/PATO_0001018","http://purl.obolibrary.org/obo/pato.owl","http://purl.obolibrary.org/obo/PATO_0000125","http://purl.obolibrary.org/obo/PATO_0001018|http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","mass","","","DUO","","PATO:0000125","PATO_0000125","","mass","duo","" +"duo+class+http://purl.obolibrary.org/obo/PATO_0001018","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0001018"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0001018""},""definition"":{""type"":[""literal""],""value"":""A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/PATO_0001241"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/PATO_0001241"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""physical quality""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/pato.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""physical quality""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/PATO_0001241"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""physical quality""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""physical quality""},{""type"":[""literal""],""value"":""A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.""},false],""shortForm"":{""type"":[""literal""],""value"":""PATO_0001018""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/PATO_0001241"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""physical object quality""},""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/PATO_0001241","true","","","","","A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.","","","","","","","physical quality","","","","1.0","","","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A quality of a physical entity that exists through action of continuants at the physical level of organisation in relation to other entities.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/pato.owl","http://purl.obolibrary.org/obo/PATO_0001018","http://purl.obolibrary.org/obo/PATO_0001241|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","physical quality","","","DUO","","PATO:0001018","PATO_0001018","","physical quality","duo","" +"duo+class+http://purl.obolibrary.org/obo/PATO_0001241","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/PATO_0001241"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""PATO:0001241""},""definition"":{""type"":[""literal""],""value"":""A quality which inheres in a continuant.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/BFO_0000019"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/BFO_0000019"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""physical object quality""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A quality which inheres in a continuant.""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/pato.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""physical object quality""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/BFO_0000019"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""physical object quality""},""numDescendants"":4.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""physical object quality""},{""type"":[""literal""],""value"":""A quality which inheres in a continuant.""},false],""shortForm"":{""type"":[""literal""],""value"":""PATO_0001241""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","","","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/BFO_0000019","true","","","","","A quality which inheres in a continuant.","","","","","","","physical object quality","","","","4.0","","","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","true","true","","","","","","false","","A quality which inheres in a continuant.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/pato.owl","http://purl.obolibrary.org/obo/PATO_0001241","http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","physical object quality","","","DUO","","PATO:0001241","PATO_0001241","","physical object quality","duo","" +"duo+class+http://purl.obolibrary.org/obo/UO_0000001","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UO_0000001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UO:0000001""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000003"",""http://purl.obolibrary.org/obo/IAO_0000009"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000003"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000003"",""http://purl.obolibrary.org/obo/IAO_0000009"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""length unit""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/uo.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""length unit""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""length unit""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/IAO_0000039"",""value"":""http://purl.obolibrary.org/obo/IAO_0000408"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/IAO_0000039"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UO_0000001"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""length unit""},false],""shortForm"":{""type"":[""literal""],""value"":""UO_0000001""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000039"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000039""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000408"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""length measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000408""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""datum label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000003","true","","","","","","","","","","","","length unit","","","http://purl.obolibrary.org/obo/IAO_0000408","0.0","","","http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000003|http://purl.obolibrary.org/obo/IAO_0000009|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/uo.owl","http://purl.obolibrary.org/obo/UO_0000001","http://purl.obolibrary.org/obo/IAO_0000003|http://purl.obolibrary.org/obo/IAO_0000009|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","length unit","","","DUO","","UO:0000001","UO_0000001","","length unit","duo","" +"duo+class+http://purl.obolibrary.org/obo/UO_0000002","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UO_0000002"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UO:0000002""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000003"",""http://purl.obolibrary.org/obo/IAO_0000009"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000003"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000003"",""http://purl.obolibrary.org/obo/IAO_0000009"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""mass unit""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/uo.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""mass unit""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""mass unit""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""mass unit""},false],""shortForm"":{""type"":[""literal""],""value"":""UO_0000002""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""datum label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000003""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000003","true","","","","","","","","","","","","mass unit","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000003|http://purl.obolibrary.org/obo/IAO_0000009|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/uo.owl","http://purl.obolibrary.org/obo/UO_0000002","http://purl.obolibrary.org/obo/IAO_0000003|http://purl.obolibrary.org/obo/IAO_0000009|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","mass unit","","","DUO","","UO:0000002","UO_0000002","","mass unit","duo","" +"duo+class+http://purl.obolibrary.org/obo/UO_0000003","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UO_0000003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UO:0000003""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000003"",""http://purl.obolibrary.org/obo/IAO_0000009"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000003"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000003"",""http://purl.obolibrary.org/obo/IAO_0000009"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000003"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""value"":""time unit""},""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/uo.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""time unit""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000003"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""time unit""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""time unit""},false],""shortForm"":{""type"":[""literal""],""value"":""UO_0000003""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""datum label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000003""},""type"":[""class"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","","","http://purl.obolibrary.org/obo/IAO_0000003","true","","","","","","","","","","","","time unit","","","","0.0","","","http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/IAO_0000003|http://purl.obolibrary.org/obo/IAO_0000009|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000003","http://purl.obolibrary.org/obo/uo.owl","http://purl.obolibrary.org/obo/UO_0000003","http://purl.obolibrary.org/obo/IAO_0000003|http://purl.obolibrary.org/obo/IAO_0000009|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","time unit","","","DUO","","UO:0000003","UO_0000003","","time unit","duo","" "duo+class+http://purl.obolibrary.org/obo/topic_0003","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/topic_0003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""topic:0003""},""definition"":{""type"":[""literal""],""value"":""A category denoting a rather broad domain or field of interest, study, application, work, data, or technology. Topics have no clearly defined borders between each other.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/IAO_0000030"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A category denoting a rather broad domain or field of interest, study, application, work, data, or technology. Topics have no clearly defined borders between each other.""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""topic:0003""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""Topic""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/IAO_0000030"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""Topic""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/DUO_0000010"",""value"":""http://purl.obolibrary.org/obo/DUO_0000012"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/DUO_0000010"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/topic_0003"",""isObsolete"":false},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""A category denoting a rather broad domain or field of interest, study, application, work, data, or technology. Topics have no clearly defined borders between each other.""},{""type"":[""literal""],""value"":""topic:0003""},false],""shortForm"":{""type"":[""literal""],""value"":""topic_0003""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000010"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""is restricted to""},""curie"":{""type"":[""literal""],""value"":""DUO:0000010""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000012"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""research specific restrictions"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000012""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","","false","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","","topic:0003","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/IAO_0000030","true","","","","","A category denoting a rather broad domain or field of interest, study, application, work, data, or technology. Topics have no clearly defined borders between each other.","","","","","","","","","","http://purl.obolibrary.org/obo/DUO_0000012","0.0","","","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","","","http://www.w3.org/2002/07/owl#Class","false","true","","","","","","false","","A category denoting a rather broad domain or field of interest, study, application, work, data, or technology. Topics have no clearly defined borders between each other.","http://purl.obolibrary.org/obo/duo.owl","http://purl.obolibrary.org/obo/IAO_0000030","","http://purl.obolibrary.org/obo/topic_0003","http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","","","false","Topic","","","DUO","","topic:0003","topic_0003","","Topic","duo","" "duo+class+http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","OntologyEntity|OntologyClass","{""iri"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteClass"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""ObsoleteClass""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://www.w3.org/2002/07/owl#Thing"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""ObsoleteClass""},""numDescendants"":20.0,""numHierarchicalDescendants"":20.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""ObsoleteClass""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{}}","false","","true","","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","20.0","class|entity","","","","","http://www.w3.org/2002/07/owl#Thing","false","","","","","","","","","","","","","","","","20.0","","","","","","","","","http://www.w3.org/2002/07/owl#Class","true","false","","","","","","false","","","http://purl.obolibrary.org/obo/duo.owl","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteClass","","","","false","ObsoleteClass","","","DUO","","ObsoleteClass","ObsoleteClass","","","duo","" diff --git a/testcases_expected_output/duo/duo_individuals.csv b/testcases_expected_output/duo/duo_individuals.csv index b9c61c938..febdfbbf3 100644 --- a/testcases_expected_output/duo/duo_individuals.csv +++ b/testcases_expected_output/duo/duo_individuals.csv @@ -1,21 +1,21 @@ "id:ID",":LABEL","_json","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","numHierarchicalDescendants:string[]","type:string[]","definitionProperty:string[]","hasDirectParents:string[]","imported:string[]","http__//purl.obolibrary.org/obo/IAO_0000116:string[]","http__//purl.obolibrary.org/obo/IAO_0000117:string[]","ontologyIri:string[]","definition:string[]","http__//purl.obolibrary.org/obo/IAO_0000115:string[]","http__//purl.obolibrary.org/obo/IAO_0000233:string[]","http__//purl.obolibrary.org/obo/IAO_0000234:string[]","http__//purl.obolibrary.org/obo/IAO_0000231:string[]","http__//purl.obolibrary.org/obo/IAO_0000111:string[]","iri","numDescendants:string[]","http__//purl.obolibrary.org/obo/IAO_0000119:string[]","http__//www.w3.org/2002/07/owl#differentFrom:string[]","http__//www.w3.org/2002/07/owl#deprecated:string[]","isObsolete:string[]","label:string[]","directParent:string[]","ontologyPreferredPrefix:string[]","directAncestor:string[]","curie:string[]","shortForm:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000002","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000002"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000002""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000002""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000002"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000002"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000002""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","","true","true","","","http://purl.obolibrary.org/obo/duo.owl","","","","","","example to be eventually removed","http://purl.obolibrary.org/obo/IAO_0000002","0.0","","","","false","example to be eventually removed","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000002","IAO_0000002","example to be eventually removed","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000103","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000103"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000225"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000225"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#Thing"",""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000225""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000103""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000225"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000225""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""IAO:0000103"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000103"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000103""},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/duo.owl","The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job","The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job","","","","failed exploratory term","http://purl.obolibrary.org/obo/IAO_0000103","0.0","","","","false","failed exploratory term","http://purl.obolibrary.org/obo/IAO_0000225","DUO","http://purl.obolibrary.org/obo/IAO_0000225|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000103","IAO_0000103","failed exploratory term","duo","http://www.w3.org/2002/07/owl#Thing|http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000225" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000120","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000120"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000423"",""http://purl.obolibrary.org/obo/IAO_0000428""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000120""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000120"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000120"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000120""},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","","http://purl.obolibrary.org/obo/duo.owl","Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.","Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.","","","","metadata complete","http://purl.obolibrary.org/obo/IAO_0000120","0.0","","http://purl.obolibrary.org/obo/IAO_0000121|http://purl.obolibrary.org/obo/IAO_0000122|http://purl.obolibrary.org/obo/IAO_0000123|http://purl.obolibrary.org/obo/IAO_0000124|http://purl.obolibrary.org/obo/IAO_0000125|http://purl.obolibrary.org/obo/IAO_0000423|http://purl.obolibrary.org/obo/IAO_0000428","","false","metadata complete","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000120","IAO_0000120","metadata complete","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000121","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000121"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Term created to ease viewing/sort terms for development purpose, and will not be included in a release"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Term created to ease viewing/sort terms for development purpose, and will not be included in a release"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000423"",""http://purl.obolibrary.org/obo/IAO_0000428""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Term created to ease viewing/sort terms for development purpose, and will not be included in a release"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000121""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000121"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000121"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000121""},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","","http://purl.obolibrary.org/obo/duo.owl","Term created to ease viewing/sort terms for development purpose, and will not be included in a release","Term created to ease viewing/sort terms for development purpose, and will not be included in a release","","","","organizational term","http://purl.obolibrary.org/obo/IAO_0000121","0.0","","http://purl.obolibrary.org/obo/IAO_0000120|http://purl.obolibrary.org/obo/IAO_0000122|http://purl.obolibrary.org/obo/IAO_0000123|http://purl.obolibrary.org/obo/IAO_0000124|http://purl.obolibrary.org/obo/IAO_0000125|http://purl.obolibrary.org/obo/IAO_0000423|http://purl.obolibrary.org/obo/IAO_0000428","","false","organizational term","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000121","IAO_0000121","organizational term","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000122","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000122"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \""ready_for_release\"" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \""ready_for_release\"" will also derived from a chain of ancestor classes that are also \""ready_for_release.\"""",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \""ready_for_release\"" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \""ready_for_release\"" will also derived from a chain of ancestor classes that are also \""ready_for_release.\"""",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000423"",""http://purl.obolibrary.org/obo/IAO_0000428""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \""ready_for_release\"" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \""ready_for_release\"" will also derived from a chain of ancestor classes that are also \""ready_for_release.\"""",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000122""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000122"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000122"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000122""},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","","http://purl.obolibrary.org/obo/duo.owl","Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking ""ready_for_release"" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed ""ready_for_release"" will also derived from a chain of ancestor classes that are also ""ready_for_release.""","Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking ""ready_for_release"" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed ""ready_for_release"" will also derived from a chain of ancestor classes that are also ""ready_for_release.""","","","","ready for release","http://purl.obolibrary.org/obo/IAO_0000122","0.0","","http://purl.obolibrary.org/obo/IAO_0000120|http://purl.obolibrary.org/obo/IAO_0000121|http://purl.obolibrary.org/obo/IAO_0000123|http://purl.obolibrary.org/obo/IAO_0000124|http://purl.obolibrary.org/obo/IAO_0000125|http://purl.obolibrary.org/obo/IAO_0000423|http://purl.obolibrary.org/obo/IAO_0000428","","false","ready for release","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000122","IAO_0000122","ready for release","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000123","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000123"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000423"",""http://purl.obolibrary.org/obo/IAO_0000428""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000123""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000123"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000123"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000123""},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","","http://purl.obolibrary.org/obo/duo.owl","Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.","Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.","","","","metadata incomplete","http://purl.obolibrary.org/obo/IAO_0000123","0.0","","http://purl.obolibrary.org/obo/IAO_0000120|http://purl.obolibrary.org/obo/IAO_0000121|http://purl.obolibrary.org/obo/IAO_0000122|http://purl.obolibrary.org/obo/IAO_0000124|http://purl.obolibrary.org/obo/IAO_0000125|http://purl.obolibrary.org/obo/IAO_0000423|http://purl.obolibrary.org/obo/IAO_0000428","","false","metadata incomplete","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000123","IAO_0000123","metadata incomplete","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000124","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000124"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Nothing done yet beyond assigning a unique class ID and proposing a preferred term."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Nothing done yet beyond assigning a unique class ID and proposing a preferred term."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000423"",""http://purl.obolibrary.org/obo/IAO_0000428""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Nothing done yet beyond assigning a unique class ID and proposing a preferred term."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000124""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""IAO:0000124"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000124"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000124""},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","","http://purl.obolibrary.org/obo/duo.owl","Nothing done yet beyond assigning a unique class ID and proposing a preferred term.","Nothing done yet beyond assigning a unique class ID and proposing a preferred term.","","","","uncurated","http://purl.obolibrary.org/obo/IAO_0000124","0.0","","http://purl.obolibrary.org/obo/IAO_0000120|http://purl.obolibrary.org/obo/IAO_0000121|http://purl.obolibrary.org/obo/IAO_0000122|http://purl.obolibrary.org/obo/IAO_0000123|http://purl.obolibrary.org/obo/IAO_0000125|http://purl.obolibrary.org/obo/IAO_0000423|http://purl.obolibrary.org/obo/IAO_0000428","","false","uncurated","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000124","IAO_0000124","uncurated","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000125","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000125"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000423"",""http://purl.obolibrary.org/obo/IAO_0000428""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000125""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""IAO:0000125"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000125"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000125""},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","","http://purl.obolibrary.org/obo/duo.owl","All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.","All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.","","","","pending final vetting","http://purl.obolibrary.org/obo/IAO_0000125","0.0","","http://purl.obolibrary.org/obo/IAO_0000120|http://purl.obolibrary.org/obo/IAO_0000121|http://purl.obolibrary.org/obo/IAO_0000122|http://purl.obolibrary.org/obo/IAO_0000123|http://purl.obolibrary.org/obo/IAO_0000124|http://purl.obolibrary.org/obo/IAO_0000423|http://purl.obolibrary.org/obo/IAO_0000428","","false","pending final vetting","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000125","IAO_0000125","pending final vetting","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000224","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000224"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000224""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000226"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_core"",""lang"":""en""},""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":true,""isObsolete"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_core"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000224""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000226""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000224"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000224"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000224""}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","false","true","","PERSON: Alan Ruttenberg|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/duo.owl","Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes.","Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes.","","","http://purl.obolibrary.org/obo/IAO_0000226","","http://purl.obolibrary.org/obo/IAO_0000224","0.0","","","true","true","obsolete_core","","DUO","","IAO:0000224","IAO_0000224","obsolete_core","duo","http://www.w3.org/2002/07/owl#NamedIndividual" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000226","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000226"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000226""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000225"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000225"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#Thing"",""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000225""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000227"",""http://purl.obolibrary.org/obo/IAO_0000228"",""http://purl.obolibrary.org/obo/IAO_0000229""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000226""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000228"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term imported"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000228""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000229"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term split"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000229""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000227"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""terms merged"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000227""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000225"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000225""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""IAO:0000226"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000226"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000226""}}}","false","false","false","false","","0.0","individual|entity","","true","true","","","http://purl.obolibrary.org/obo/duo.owl","","","","","","placeholder removed","http://purl.obolibrary.org/obo/IAO_0000226","0.0","","http://purl.obolibrary.org/obo/IAO_0000227|http://purl.obolibrary.org/obo/IAO_0000228|http://purl.obolibrary.org/obo/IAO_0000229","","false","placeholder removed","http://purl.obolibrary.org/obo/IAO_0000225","DUO","http://purl.obolibrary.org/obo/IAO_0000225|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000226","IAO_0000226","placeholder removed","duo","http://www.w3.org/2002/07/owl#Thing|http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000225" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000227","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000227"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000227""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000225"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000225"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""terms merged"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An editor note should explain what were the merged terms and the reason for the merge."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000225""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""terms merged"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000226"",""http://purl.obolibrary.org/obo/IAO_0000228"",""http://purl.obolibrary.org/obo/IAO_0000229""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""terms merged"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""terms merged"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An editor note should explain what were the merged terms and the reason for the merge."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000227""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000228"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term imported"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000228""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000229"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term split"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000229""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000226""},""type"":[""individual"",""entity""]},""IAO:0000227"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000227"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000227""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000225"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000225""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","","true","true","An editor note should explain what were the merged terms and the reason for the merge.","","http://purl.obolibrary.org/obo/duo.owl","","","","","","terms merged","http://purl.obolibrary.org/obo/IAO_0000227","0.0","","http://purl.obolibrary.org/obo/IAO_0000226|http://purl.obolibrary.org/obo/IAO_0000228|http://purl.obolibrary.org/obo/IAO_0000229","","false","terms merged","http://purl.obolibrary.org/obo/IAO_0000225","DUO","http://purl.obolibrary.org/obo/IAO_0000225|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000227","IAO_0000227","terms merged","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000225" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000228","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000228"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000228""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000225"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000225"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term imported"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000225""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term imported"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000226"",""http://purl.obolibrary.org/obo/IAO_0000227"",""http://purl.obolibrary.org/obo/IAO_0000229""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term imported"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term imported"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000228""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000229"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term split"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000229""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000228"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000228"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000228""},""http://purl.obolibrary.org/obo/IAO_0000226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000226""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000227"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""terms merged"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000227""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000225"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000225""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","","true","true","This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use.","","http://purl.obolibrary.org/obo/duo.owl","","","","","","term imported","http://purl.obolibrary.org/obo/IAO_0000228","0.0","","http://purl.obolibrary.org/obo/IAO_0000226|http://purl.obolibrary.org/obo/IAO_0000227|http://purl.obolibrary.org/obo/IAO_0000229","","false","term imported","http://purl.obolibrary.org/obo/IAO_0000225","DUO","http://purl.obolibrary.org/obo/IAO_0000225|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000228","IAO_0000228","term imported","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000225" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000229","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000229"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000229""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000225"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000225"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term split"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is to be used when a term has been split in two or more new terms. An editor note should indicate the reason for the split and indicate the URIs of the new terms created."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000225""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term split"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000226"",""http://purl.obolibrary.org/obo/IAO_0000227"",""http://purl.obolibrary.org/obo/IAO_0000228""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term split"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term split"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is to be used when a term has been split in two or more new terms. An editor note should indicate the reason for the split and indicate the URIs of the new terms created."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000229""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000228"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term imported"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000228""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000226""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000227"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""terms merged"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000227""},""type"":[""individual"",""entity""]},""IAO:0000229"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000229"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000229""},""http://purl.obolibrary.org/obo/IAO_0000225"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000225""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","","true","true","This is to be used when a term has been split in two or more new terms. An editor note should indicate the reason for the split and indicate the URIs of the new terms created.","","http://purl.obolibrary.org/obo/duo.owl","","","","","","term split","http://purl.obolibrary.org/obo/IAO_0000229","0.0","","http://purl.obolibrary.org/obo/IAO_0000226|http://purl.obolibrary.org/obo/IAO_0000227|http://purl.obolibrary.org/obo/IAO_0000228","","false","term split","http://purl.obolibrary.org/obo/IAO_0000225","DUO","http://purl.obolibrary.org/obo/IAO_0000225|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000229","IAO_0000229","term split","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000225" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000230","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000230"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000230""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is to be used if none of the existing instances cover the reason for obsolescence. An editor note should indicate this new reason."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""We expect to be able to mine these new reasons and add instances as required."",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_other"",""lang"":""en""},""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":true,""isObsolete"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_other"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is to be used if none of the existing instances cover the reason for obsolescence. An editor note should indicate this new reason."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""We expect to be able to mine these new reasons and add instances as required."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000230""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000230"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000230"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000230""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","","false","true","This is to be used if none of the existing instances cover the reason for obsolescence. An editor note should indicate this new reason.|We expect to be able to mine these new reasons and add instances as required.","","http://purl.obolibrary.org/obo/duo.owl","","","","","","","http://purl.obolibrary.org/obo/IAO_0000230","0.0","","","true","true","obsolete_other","","DUO","","IAO:0000230","IAO_0000230","obsolete_other","duo","http://www.w3.org/2002/07/owl#NamedIndividual" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000410","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000410"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000410""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000409"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000409"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""universal"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Hard to give a definition for. Intuitively a \""natural kind\"" rather than a collection of any old things, which a class is able to be, formally. At the meta level, universals are defined as positives, are disjoint with their siblings, have single asserted parents."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A Formal Theory of Substances, Qualities, and Universals, http://ontology.buffalo.edu/bfo/SQU.pdf"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000409""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""universal"",""lang"":""en""},""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""universal"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""universal"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Hard to give a definition for. Intuitively a \""natural kind\"" rather than a collection of any old things, which a class is able to be, formally. At the meta level, universals are defined as positives, are disjoint with their siblings, have single asserted parents."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A Formal Theory of Substances, Qualities, and Universals, http://ontology.buffalo.edu/bfo/SQU.pdf"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000410""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000409"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotator type"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000409""},""type"":[""class"",""entity""]},""IAO:0000410"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000410"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000410""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","","true","true","Hard to give a definition for. Intuitively a ""natural kind"" rather than a collection of any old things, which a class is able to be, formally. At the meta level, universals are defined as positives, are disjoint with their siblings, have single asserted parents.","Alan Ruttenberg","http://purl.obolibrary.org/obo/duo.owl","","","","","","universal","http://purl.obolibrary.org/obo/IAO_0000410","0.0","A Formal Theory of Substances, Qualities, and Universals, http://ontology.buffalo.edu/bfo/SQU.pdf","","","false","universal","http://purl.obolibrary.org/obo/IAO_0000409","DUO","http://purl.obolibrary.org/obo/IAO_0000409|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000410","IAO_0000410","universal","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000409" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000420","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000420"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000420""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000409"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000409"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined class"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""\""definitions\"", in some readings, always are given by necessary and sufficient conditions. So one must be careful (and this is difficult sometimes) to distinguish between defined classes and universal."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000409""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined class"",""lang"":""en""},""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined class"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined class"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""\""definitions\"", in some readings, always are given by necessary and sufficient conditions. So one must be careful (and this is difficult sometimes) to distinguish between defined classes and universal."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000420""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000409"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotator type"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000409""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""IAO:0000420"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000420"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000420""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","""definitions"", in some readings, always are given by necessary and sufficient conditions. So one must be careful (and this is difficult sometimes) to distinguish between defined classes and universal.","Alan Ruttenberg","http://purl.obolibrary.org/obo/duo.owl","A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal","A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal","","","","defined class","http://purl.obolibrary.org/obo/IAO_0000420","0.0","","","","false","defined class","http://purl.obolibrary.org/obo/IAO_0000409","DUO","http://purl.obolibrary.org/obo/IAO_0000409|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000420","IAO_0000420","defined class","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000409" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000421","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000421"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000421""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A named class expression is a logical expression that is given a name. The name can be used in place of the expression."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000409"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000409"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""named class expression"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A named class expression is a logical expression that is given a name. The name can be used in place of the expression."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""named class expressions are used in order to have more concise logical definition but their extensions may not be interesting classes on their own. In languages such as OWL, with no provisions for macros, these show up as actuall classes. Tools may with to not show them as such, and to replace uses of the macros with their expansions"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000409""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""named class expression"",""lang"":""en""},""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""named class expression"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""named class expression"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A named class expression is a logical expression that is given a name. The name can be used in place of the expression."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""named class expressions are used in order to have more concise logical definition but their extensions may not be interesting classes on their own. In languages such as OWL, with no provisions for macros, these show up as actuall classes. Tools may with to not show them as such, and to replace uses of the macros with their expansions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000421""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000409"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotator type"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000409""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""IAO:0000421"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000421"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000421""},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","named class expressions are used in order to have more concise logical definition but their extensions may not be interesting classes on their own. In languages such as OWL, with no provisions for macros, these show up as actuall classes. Tools may with to not show them as such, and to replace uses of the macros with their expansions","Alan Ruttenberg","http://purl.obolibrary.org/obo/duo.owl","A named class expression is a logical expression that is given a name. The name can be used in place of the expression.","A named class expression is a logical expression that is given a name. The name can be used in place of the expression.","","","","named class expression","http://purl.obolibrary.org/obo/IAO_0000421","0.0","","","","false","named class expression","http://purl.obolibrary.org/obo/IAO_0000409","DUO","http://purl.obolibrary.org/obo/IAO_0000409|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000421","IAO_0000421","named class expression","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000409" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000423","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000423"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Terms with this status should eventually replaced with a term from another ontology."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Terms with this status should eventually replaced with a term from another ontology."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000428""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Terms with this status should eventually replaced with a term from another ontology."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000423""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]},""IAO:0000423"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000423"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000423""}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","Alan Ruttenberg","http://purl.obolibrary.org/obo/duo.owl","Terms with this status should eventually replaced with a term from another ontology.","Terms with this status should eventually replaced with a term from another ontology.","","","","to be replaced with external ontology term","http://purl.obolibrary.org/obo/IAO_0000423","0.0","group:OBI","http://purl.obolibrary.org/obo/IAO_0000120|http://purl.obolibrary.org/obo/IAO_0000121|http://purl.obolibrary.org/obo/IAO_0000122|http://purl.obolibrary.org/obo/IAO_0000123|http://purl.obolibrary.org/obo/IAO_0000124|http://purl.obolibrary.org/obo/IAO_0000125|http://purl.obolibrary.org/obo/IAO_0000428","","false","to be replaced with external ontology term","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000423","IAO_0000423","to be replaced with external ontology term","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" -"duo+individual+http://purl.obolibrary.org/obo/IAO_0000428","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000428"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000423""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000428""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000428"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000428"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000428""},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","Alan Ruttenberg","http://purl.obolibrary.org/obo/duo.owl","A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.","A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.","","","","requires discussion","http://purl.obolibrary.org/obo/IAO_0000428","0.0","group:OBI","http://purl.obolibrary.org/obo/IAO_0000120|http://purl.obolibrary.org/obo/IAO_0000121|http://purl.obolibrary.org/obo/IAO_0000122|http://purl.obolibrary.org/obo/IAO_0000123|http://purl.obolibrary.org/obo/IAO_0000124|http://purl.obolibrary.org/obo/IAO_0000125|http://purl.obolibrary.org/obo/IAO_0000423","","false","requires discussion","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000428","IAO_0000428","requires discussion","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" -"duo+individual+http://purl.obolibrary.org/obo/OMO_0001000","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/OMO_0001000"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""OMO:0001000""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000225"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000225"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This obsolesence reason should be used conservatively. Typical valid examples are: un-necessary grouping classes in disease ontologies, a phenotype term added on the assumption it was a disease."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":""http://orcid.org/0000-0001-5208-3432"",""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""value"":""https://github.com/information-artifact-ontology/ontology-metadata/issues/77""},""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000225""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""out of scope""},""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""value"":""out of scope""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This obsolesence reason should be used conservatively. Typical valid examples are: un-necessary grouping classes in disease ontologies, a phenotype term added on the assumption it was a disease."",""lang"":""en""},{""type"":[""literal""],""value"":""https://github.com/information-artifact-ontology/ontology-metadata/issues/77""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""},true],""shortForm"":{""type"":[""literal""],""value"":""OMO_0001000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""OMO:0001000"":{""url"":""http://purl.obolibrary.org/obo/OMO_0001000"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OMO:0001000""},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""https://orcid.org/0000-0001-5208-3432"":{""url"":""https://orcid.org/0000-0001-5208-3432"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0001-5208-3432""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000225"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000225""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","This obsolesence reason should be used conservatively. Typical valid examples are: un-necessary grouping classes in disease ontologies, a phenotype term added on the assumption it was a disease.","http://orcid.org/0000-0001-5208-3432","http://purl.obolibrary.org/obo/duo.owl","The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.","The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.","https://github.com/information-artifact-ontology/ontology-metadata/issues/77","https://orcid.org/0000-0001-5208-3432","","","http://purl.obolibrary.org/obo/OMO_0001000","0.0","","","","false","out of scope","http://purl.obolibrary.org/obo/IAO_0000225","DUO","http://purl.obolibrary.org/obo/IAO_0000225|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","OMO:0001000","OMO_0001000","out of scope","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000225" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000002","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000002"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000002""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example to be eventually removed"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000002""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","","true","true","","","http://purl.obolibrary.org/obo/duo.owl","","","","","","example to be eventually removed","http://purl.obolibrary.org/obo/IAO_0000002","0.0","","","","false","example to be eventually removed","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000002","IAO_0000002","example to be eventually removed","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000103","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000103"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000225"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000225"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#Thing"",""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000225""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000103""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000225"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000225""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/duo.owl","The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job","The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job","","","","failed exploratory term","http://purl.obolibrary.org/obo/IAO_0000103","0.0","","","","false","failed exploratory term","http://purl.obolibrary.org/obo/IAO_0000225","DUO","http://purl.obolibrary.org/obo/IAO_0000225|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000103","IAO_0000103","failed exploratory term","duo","http://www.w3.org/2002/07/owl#Thing|http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000225" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000120","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000120"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000423"",""http://purl.obolibrary.org/obo/IAO_0000428""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000120""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","","http://purl.obolibrary.org/obo/duo.owl","Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.","Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.","","","","metadata complete","http://purl.obolibrary.org/obo/IAO_0000120","0.0","","http://purl.obolibrary.org/obo/IAO_0000121|http://purl.obolibrary.org/obo/IAO_0000122|http://purl.obolibrary.org/obo/IAO_0000123|http://purl.obolibrary.org/obo/IAO_0000124|http://purl.obolibrary.org/obo/IAO_0000125|http://purl.obolibrary.org/obo/IAO_0000423|http://purl.obolibrary.org/obo/IAO_0000428","","false","metadata complete","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000120","IAO_0000120","metadata complete","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000121","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000121"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Term created to ease viewing/sort terms for development purpose, and will not be included in a release"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Term created to ease viewing/sort terms for development purpose, and will not be included in a release"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000423"",""http://purl.obolibrary.org/obo/IAO_0000428""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Term created to ease viewing/sort terms for development purpose, and will not be included in a release"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000121""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","","http://purl.obolibrary.org/obo/duo.owl","Term created to ease viewing/sort terms for development purpose, and will not be included in a release","Term created to ease viewing/sort terms for development purpose, and will not be included in a release","","","","organizational term","http://purl.obolibrary.org/obo/IAO_0000121","0.0","","http://purl.obolibrary.org/obo/IAO_0000120|http://purl.obolibrary.org/obo/IAO_0000122|http://purl.obolibrary.org/obo/IAO_0000123|http://purl.obolibrary.org/obo/IAO_0000124|http://purl.obolibrary.org/obo/IAO_0000125|http://purl.obolibrary.org/obo/IAO_0000423|http://purl.obolibrary.org/obo/IAO_0000428","","false","organizational term","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000121","IAO_0000121","organizational term","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000122","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000122"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \""ready_for_release\"" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \""ready_for_release\"" will also derived from a chain of ancestor classes that are also \""ready_for_release.\"""",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \""ready_for_release\"" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \""ready_for_release\"" will also derived from a chain of ancestor classes that are also \""ready_for_release.\"""",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000423"",""http://purl.obolibrary.org/obo/IAO_0000428""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \""ready_for_release\"" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \""ready_for_release\"" will also derived from a chain of ancestor classes that are also \""ready_for_release.\"""",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000122""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","","http://purl.obolibrary.org/obo/duo.owl","Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking ""ready_for_release"" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed ""ready_for_release"" will also derived from a chain of ancestor classes that are also ""ready_for_release.""","Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking ""ready_for_release"" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed ""ready_for_release"" will also derived from a chain of ancestor classes that are also ""ready_for_release.""","","","","ready for release","http://purl.obolibrary.org/obo/IAO_0000122","0.0","","http://purl.obolibrary.org/obo/IAO_0000120|http://purl.obolibrary.org/obo/IAO_0000121|http://purl.obolibrary.org/obo/IAO_0000123|http://purl.obolibrary.org/obo/IAO_0000124|http://purl.obolibrary.org/obo/IAO_0000125|http://purl.obolibrary.org/obo/IAO_0000423|http://purl.obolibrary.org/obo/IAO_0000428","","false","ready for release","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000122","IAO_0000122","ready for release","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000123","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000123"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000423"",""http://purl.obolibrary.org/obo/IAO_0000428""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000123""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","","http://purl.obolibrary.org/obo/duo.owl","Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.","Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.","","","","metadata incomplete","http://purl.obolibrary.org/obo/IAO_0000123","0.0","","http://purl.obolibrary.org/obo/IAO_0000120|http://purl.obolibrary.org/obo/IAO_0000121|http://purl.obolibrary.org/obo/IAO_0000122|http://purl.obolibrary.org/obo/IAO_0000124|http://purl.obolibrary.org/obo/IAO_0000125|http://purl.obolibrary.org/obo/IAO_0000423|http://purl.obolibrary.org/obo/IAO_0000428","","false","metadata incomplete","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000123","IAO_0000123","metadata incomplete","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000124","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000124"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Nothing done yet beyond assigning a unique class ID and proposing a preferred term."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Nothing done yet beyond assigning a unique class ID and proposing a preferred term."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000423"",""http://purl.obolibrary.org/obo/IAO_0000428""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Nothing done yet beyond assigning a unique class ID and proposing a preferred term."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000124""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","","http://purl.obolibrary.org/obo/duo.owl","Nothing done yet beyond assigning a unique class ID and proposing a preferred term.","Nothing done yet beyond assigning a unique class ID and proposing a preferred term.","","","","uncurated","http://purl.obolibrary.org/obo/IAO_0000124","0.0","","http://purl.obolibrary.org/obo/IAO_0000120|http://purl.obolibrary.org/obo/IAO_0000121|http://purl.obolibrary.org/obo/IAO_0000122|http://purl.obolibrary.org/obo/IAO_0000123|http://purl.obolibrary.org/obo/IAO_0000125|http://purl.obolibrary.org/obo/IAO_0000423|http://purl.obolibrary.org/obo/IAO_0000428","","false","uncurated","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000124","IAO_0000124","uncurated","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000125","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000125"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000423"",""http://purl.obolibrary.org/obo/IAO_0000428""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000125""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","","http://purl.obolibrary.org/obo/duo.owl","All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.","All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.","","","","pending final vetting","http://purl.obolibrary.org/obo/IAO_0000125","0.0","","http://purl.obolibrary.org/obo/IAO_0000120|http://purl.obolibrary.org/obo/IAO_0000121|http://purl.obolibrary.org/obo/IAO_0000122|http://purl.obolibrary.org/obo/IAO_0000123|http://purl.obolibrary.org/obo/IAO_0000124|http://purl.obolibrary.org/obo/IAO_0000423|http://purl.obolibrary.org/obo/IAO_0000428","","false","pending final vetting","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000125","IAO_0000125","pending final vetting","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000224","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000224"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000224""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000226"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_core"",""lang"":""en""},""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":true,""isObsolete"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_core"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Melanie Courtot"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000224""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000226""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","false","true","","PERSON: Alan Ruttenberg|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/duo.owl","Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes.","Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes.","","","http://purl.obolibrary.org/obo/IAO_0000226","","http://purl.obolibrary.org/obo/IAO_0000224","0.0","","","true","true","obsolete_core","","DUO","","IAO:0000224","IAO_0000224","obsolete_core","duo","http://www.w3.org/2002/07/owl#NamedIndividual" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000226","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000226"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000226""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000225"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000225"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#Thing"",""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000225""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000227"",""http://purl.obolibrary.org/obo/IAO_0000228"",""http://purl.obolibrary.org/obo/IAO_0000229""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000226""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000228"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term imported"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000228""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000229"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term split"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000229""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000227"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""terms merged"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000227""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000225"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000225""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","","true","true","","","http://purl.obolibrary.org/obo/duo.owl","","","","","","placeholder removed","http://purl.obolibrary.org/obo/IAO_0000226","0.0","","http://purl.obolibrary.org/obo/IAO_0000227|http://purl.obolibrary.org/obo/IAO_0000228|http://purl.obolibrary.org/obo/IAO_0000229","","false","placeholder removed","http://purl.obolibrary.org/obo/IAO_0000225","DUO","http://purl.obolibrary.org/obo/IAO_0000225|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000226","IAO_0000226","placeholder removed","duo","http://www.w3.org/2002/07/owl#Thing|http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000225" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000227","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000227"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000227""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000225"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000225"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""terms merged"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An editor note should explain what were the merged terms and the reason for the merge."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000225""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""terms merged"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000226"",""http://purl.obolibrary.org/obo/IAO_0000228"",""http://purl.obolibrary.org/obo/IAO_0000229""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""terms merged"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""terms merged"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An editor note should explain what were the merged terms and the reason for the merge."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000227""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000228"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term imported"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000228""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000229"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term split"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000229""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000226""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000225"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000225""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","","true","true","An editor note should explain what were the merged terms and the reason for the merge.","","http://purl.obolibrary.org/obo/duo.owl","","","","","","terms merged","http://purl.obolibrary.org/obo/IAO_0000227","0.0","","http://purl.obolibrary.org/obo/IAO_0000226|http://purl.obolibrary.org/obo/IAO_0000228|http://purl.obolibrary.org/obo/IAO_0000229","","false","terms merged","http://purl.obolibrary.org/obo/IAO_0000225","DUO","http://purl.obolibrary.org/obo/IAO_0000225|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000227","IAO_0000227","terms merged","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000225" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000228","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000228"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000228""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000225"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000225"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term imported"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000225""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term imported"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000226"",""http://purl.obolibrary.org/obo/IAO_0000227"",""http://purl.obolibrary.org/obo/IAO_0000229""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term imported"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term imported"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000228""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000229"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term split"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000229""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000226""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000227"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""terms merged"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000227""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000225"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000225""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","","true","true","This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use.","","http://purl.obolibrary.org/obo/duo.owl","","","","","","term imported","http://purl.obolibrary.org/obo/IAO_0000228","0.0","","http://purl.obolibrary.org/obo/IAO_0000226|http://purl.obolibrary.org/obo/IAO_0000227|http://purl.obolibrary.org/obo/IAO_0000229","","false","term imported","http://purl.obolibrary.org/obo/IAO_0000225","DUO","http://purl.obolibrary.org/obo/IAO_0000225|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000228","IAO_0000228","term imported","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000225" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000229","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000229"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000229""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000225"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000225"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term split"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is to be used when a term has been split in two or more new terms. An editor note should indicate the reason for the split and indicate the URIs of the new terms created."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000225""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term split"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000226"",""http://purl.obolibrary.org/obo/IAO_0000227"",""http://purl.obolibrary.org/obo/IAO_0000228""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term split"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term split"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is to be used when a term has been split in two or more new terms. An editor note should indicate the reason for the split and indicate the URIs of the new terms created."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000229""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000228"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term imported"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000228""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000226"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""placeholder removed"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000226""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000227"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""terms merged"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000227""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000225"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000225""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","","true","true","This is to be used when a term has been split in two or more new terms. An editor note should indicate the reason for the split and indicate the URIs of the new terms created.","","http://purl.obolibrary.org/obo/duo.owl","","","","","","term split","http://purl.obolibrary.org/obo/IAO_0000229","0.0","","http://purl.obolibrary.org/obo/IAO_0000226|http://purl.obolibrary.org/obo/IAO_0000227|http://purl.obolibrary.org/obo/IAO_0000228","","false","term split","http://purl.obolibrary.org/obo/IAO_0000225","DUO","http://purl.obolibrary.org/obo/IAO_0000225|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000229","IAO_0000229","term split","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000225" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000230","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000230"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000230""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is to be used if none of the existing instances cover the reason for obsolescence. An editor note should indicate this new reason."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""We expect to be able to mine these new reasons and add instances as required."",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_other"",""lang"":""en""},""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":true,""isObsolete"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolete_other"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is to be used if none of the existing instances cover the reason for obsolescence. An editor note should indicate this new reason."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""We expect to be able to mine these new reasons and add instances as required."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000230""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","","false","true","This is to be used if none of the existing instances cover the reason for obsolescence. An editor note should indicate this new reason.|We expect to be able to mine these new reasons and add instances as required.","","http://purl.obolibrary.org/obo/duo.owl","","","","","","","http://purl.obolibrary.org/obo/IAO_0000230","0.0","","","true","true","obsolete_other","","DUO","","IAO:0000230","IAO_0000230","obsolete_other","duo","http://www.w3.org/2002/07/owl#NamedIndividual" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000410","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000410"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000410""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000409"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000409"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""universal"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Hard to give a definition for. Intuitively a \""natural kind\"" rather than a collection of any old things, which a class is able to be, formally. At the meta level, universals are defined as positives, are disjoint with their siblings, have single asserted parents."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A Formal Theory of Substances, Qualities, and Universals, http://ontology.buffalo.edu/bfo/SQU.pdf"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000409""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""universal"",""lang"":""en""},""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""universal"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""universal"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Hard to give a definition for. Intuitively a \""natural kind\"" rather than a collection of any old things, which a class is able to be, formally. At the meta level, universals are defined as positives, are disjoint with their siblings, have single asserted parents."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A Formal Theory of Substances, Qualities, and Universals, http://ontology.buffalo.edu/bfo/SQU.pdf"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000410""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000409"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotator type"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000409""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","","true","true","Hard to give a definition for. Intuitively a ""natural kind"" rather than a collection of any old things, which a class is able to be, formally. At the meta level, universals are defined as positives, are disjoint with their siblings, have single asserted parents.","Alan Ruttenberg","http://purl.obolibrary.org/obo/duo.owl","","","","","","universal","http://purl.obolibrary.org/obo/IAO_0000410","0.0","A Formal Theory of Substances, Qualities, and Universals, http://ontology.buffalo.edu/bfo/SQU.pdf","","","false","universal","http://purl.obolibrary.org/obo/IAO_0000409","DUO","http://purl.obolibrary.org/obo/IAO_0000409|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000410","IAO_0000410","universal","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000409" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000420","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000420"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000420""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000409"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000409"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined class"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""\""definitions\"", in some readings, always are given by necessary and sufficient conditions. So one must be careful (and this is difficult sometimes) to distinguish between defined classes and universal."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000409""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined class"",""lang"":""en""},""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined class"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""defined class"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""\""definitions\"", in some readings, always are given by necessary and sufficient conditions. So one must be careful (and this is difficult sometimes) to distinguish between defined classes and universal."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000420""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000409"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotator type"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000409""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","""definitions"", in some readings, always are given by necessary and sufficient conditions. So one must be careful (and this is difficult sometimes) to distinguish between defined classes and universal.","Alan Ruttenberg","http://purl.obolibrary.org/obo/duo.owl","A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal","A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal","","","","defined class","http://purl.obolibrary.org/obo/IAO_0000420","0.0","","","","false","defined class","http://purl.obolibrary.org/obo/IAO_0000409","DUO","http://purl.obolibrary.org/obo/IAO_0000409|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000420","IAO_0000420","defined class","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000409" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000421","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000421"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000421""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A named class expression is a logical expression that is given a name. The name can be used in place of the expression."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000409"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000409"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""named class expression"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A named class expression is a logical expression that is given a name. The name can be used in place of the expression."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""named class expressions are used in order to have more concise logical definition but their extensions may not be interesting classes on their own. In languages such as OWL, with no provisions for macros, these show up as actuall classes. Tools may with to not show them as such, and to replace uses of the macros with their expansions"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000409""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""named class expression"",""lang"":""en""},""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""named class expression"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""named class expression"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A named class expression is a logical expression that is given a name. The name can be used in place of the expression."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""named class expressions are used in order to have more concise logical definition but their extensions may not be interesting classes on their own. In languages such as OWL, with no provisions for macros, these show up as actuall classes. Tools may with to not show them as such, and to replace uses of the macros with their expansions"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000421""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000409"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotator type"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000409""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","named class expressions are used in order to have more concise logical definition but their extensions may not be interesting classes on their own. In languages such as OWL, with no provisions for macros, these show up as actuall classes. Tools may with to not show them as such, and to replace uses of the macros with their expansions","Alan Ruttenberg","http://purl.obolibrary.org/obo/duo.owl","A named class expression is a logical expression that is given a name. The name can be used in place of the expression.","A named class expression is a logical expression that is given a name. The name can be used in place of the expression.","","","","named class expression","http://purl.obolibrary.org/obo/IAO_0000421","0.0","","","","false","named class expression","http://purl.obolibrary.org/obo/IAO_0000409","DUO","http://purl.obolibrary.org/obo/IAO_0000409|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000421","IAO_0000421","named class expression","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000409" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000423","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000423"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Terms with this status should eventually replaced with a term from another ontology."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Terms with this status should eventually replaced with a term from another ontology."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000428""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Terms with this status should eventually replaced with a term from another ontology."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000423""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000428"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","Alan Ruttenberg","http://purl.obolibrary.org/obo/duo.owl","Terms with this status should eventually replaced with a term from another ontology.","Terms with this status should eventually replaced with a term from another ontology.","","","","to be replaced with external ontology term","http://purl.obolibrary.org/obo/IAO_0000423","0.0","group:OBI","http://purl.obolibrary.org/obo/IAO_0000120|http://purl.obolibrary.org/obo/IAO_0000121|http://purl.obolibrary.org/obo/IAO_0000122|http://purl.obolibrary.org/obo/IAO_0000123|http://purl.obolibrary.org/obo/IAO_0000124|http://purl.obolibrary.org/obo/IAO_0000125|http://purl.obolibrary.org/obo/IAO_0000428","","false","to be replaced with external ontology term","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000423","IAO_0000423","to be replaced with external ontology term","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" +"duo+individual+http://purl.obolibrary.org/obo/IAO_0000428","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000428"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000428""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000078"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000078"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000078""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""http://www.w3.org/2002/07/owl#differentFrom"":[""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000121"",""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000124"",""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000423""],""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""requires discussion"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""group:OBI"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000428""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000078"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curation status specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000078""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000124"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""uncurated"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000124""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000121"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""organizational term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000121""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to be replaced with external ontology term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000423""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","","Alan Ruttenberg","http://purl.obolibrary.org/obo/duo.owl","A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.","A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.","","","","requires discussion","http://purl.obolibrary.org/obo/IAO_0000428","0.0","group:OBI","http://purl.obolibrary.org/obo/IAO_0000120|http://purl.obolibrary.org/obo/IAO_0000121|http://purl.obolibrary.org/obo/IAO_0000122|http://purl.obolibrary.org/obo/IAO_0000123|http://purl.obolibrary.org/obo/IAO_0000124|http://purl.obolibrary.org/obo/IAO_0000125|http://purl.obolibrary.org/obo/IAO_0000423","","false","requires discussion","http://purl.obolibrary.org/obo/IAO_0000078","DUO","http://purl.obolibrary.org/obo/IAO_0000078|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","IAO:0000428","IAO_0000428","requires discussion","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000078" +"duo+individual+http://purl.obolibrary.org/obo/OMO_0001000","OntologyEntity|OntologyIndividual","{""iri"":""http://purl.obolibrary.org/obo/OMO_0001000"",""type"":[""individual"",""entity""],""curie"":{""type"":[""literal""],""value"":""OMO:0001000""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[""http://purl.obolibrary.org/obo/IAO_0000225"",""http://purl.obolibrary.org/obo/IAO_0000102"",""http://purl.obolibrary.org/obo/IAO_0000027"",""http://purl.obolibrary.org/obo/IAO_0000030"",""http://purl.obolibrary.org/obo/BFO_0000031"",""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000001""],""directParent"":""http://purl.obolibrary.org/obo/IAO_0000225"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This obsolesence reason should be used conservatively. Typical valid examples are: un-necessary grouping classes in disease ontologies, a phenotype term added on the assumption it was a disease."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":""http://orcid.org/0000-0001-5208-3432"",""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""value"":""https://github.com/information-artifact-ontology/ontology-metadata/issues/77""},""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#NamedIndividual"",""http://purl.obolibrary.org/obo/IAO_0000225""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""out of scope""},""imported"":true,""isObsolete"":false,""label"":{""type"":[""literal""],""value"":""out of scope""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This obsolesence reason should be used conservatively. Typical valid examples are: un-necessary grouping classes in disease ontologies, a phenotype term added on the assumption it was a disease."",""lang"":""en""},{""type"":[""literal""],""value"":""https://github.com/information-artifact-ontology/ontology-metadata/issues/77""},{""type"":[""literal""],""value"":""https://orcid.org/0000-0001-5208-3432""},true],""shortForm"":{""type"":[""literal""],""value"":""OMO_0001000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""https://orcid.org/0000-0001-5208-3432"":{""url"":""https://orcid.org/0000-0001-5208-3432"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0001-5208-3432""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000225"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""obsolescence reason specification"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000225""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000027"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000027""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000102"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""data about an ontology part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000102""},""type"":[""class"",""entity""]}}}","false","false","false","false","","0.0","individual|entity","http://purl.obolibrary.org/obo/IAO_0000115","true","true","This obsolesence reason should be used conservatively. Typical valid examples are: un-necessary grouping classes in disease ontologies, a phenotype term added on the assumption it was a disease.","http://orcid.org/0000-0001-5208-3432","http://purl.obolibrary.org/obo/duo.owl","The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.","The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.","https://github.com/information-artifact-ontology/ontology-metadata/issues/77","https://orcid.org/0000-0001-5208-3432","","","http://purl.obolibrary.org/obo/OMO_0001000","0.0","","","","false","out of scope","http://purl.obolibrary.org/obo/IAO_0000225","DUO","http://purl.obolibrary.org/obo/IAO_0000225|http://purl.obolibrary.org/obo/IAO_0000102|http://purl.obolibrary.org/obo/IAO_0000027|http://purl.obolibrary.org/obo/IAO_0000030|http://purl.obolibrary.org/obo/BFO_0000031|http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000001","OMO:0001000","OMO_0001000","out of scope","duo","http://www.w3.org/2002/07/owl#NamedIndividual|http://purl.obolibrary.org/obo/IAO_0000225" diff --git a/testcases_expected_output/duo/duo_properties.csv b/testcases_expected_output/duo/duo_properties.csv index c455fb0ad..4f47561e1 100644 --- a/testcases_expected_output/duo/duo_properties.csv +++ b/testcases_expected_output/duo/duo_properties.csv @@ -1,26 +1,26 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","numHierarchicalDescendants:string[]","type:string[]","http__//www.w3.org/2002/07/owl#inverseOf:string[]","http__//www.geneontology.org/formats/oboInOwl#id:string[]","definitionProperty:string[]","hasDirectParents:string[]","http__//purl.obolibrary.org/obo/DUO_0000041:string[]","http__//purl.obolibrary.org/obo/IAO_0000116:string[]","http__//purl.obolibrary.org/obo/IAO_0000117:string[]","http__//purl.obolibrary.org/obo/IAO_0000114:string[]","http__//purl.obolibrary.org/obo/IAO_0000115:string[]","http__//purl.obolibrary.org/obo/IAO_0000112:string[]","http__//purl.obolibrary.org/obo/IAO_0000233:string[]","http__//purl.obolibrary.org/obo/IAO_0000234:string[]","http__//purl.obolibrary.org/obo/IAO_0000231:string[]","http__//purl.org/dc/elements/1.1/date:string[]","http__//purl.obolibrary.org/obo/IAO_0000111:string[]","http__//www.w3.org/2000/01/rdf-schema#range:string[]","http__//purl.obolibrary.org/obo/IAO_0000232:string[]","http__//www.w3.org/2002/07/owl#equivalentProperty:string[]","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy:string[]","numDescendants:string[]","http__//purl.obolibrary.org/obo/IAO_0000118:string[]","http__//purl.obolibrary.org/obo/IAO_0000119:string[]","http__//www.geneontology.org/formats/oboInOwl#created_by:string[]","directParent:string[]","http__//www.w3.org/2002/07/owl#propertyChainAxiom:string[]","directAncestor:string[]","http__//purl.obolibrary.org/obo/RO_0001900:string[]","http__//purl.obolibrary.org/obo/IAO_0000600:string[]","http__//www.w3.org/2000/01/rdf-schema#seeAlso:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","imported:string[]","http__//www.w3.org/2000/01/rdf-schema#comment:string[]","ontologyIri:string[]","definition:string[]","http__//purl.obolibrary.org/obo/IAO_0000412:string[]","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf:string[]","iri","http__//www.w3.org/2002/07/owl#deprecated:string[]","isObsolete:string[]","label:string[]","http__//www.w3.org/2000/01/rdf-schema#domain:string[]","ontologyPreferredPrefix:string[]","curie:string[]","shortForm:string[]","definedBy:string[]","ontologyId:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","http__//purl.org/dc/elements/1.1/contributor:string[]","http__//purl.org/dc/elements/1.1/source:string[]" "duo+property+http://protege.stanford.edu/plugins/owl/protege#defaultLanguage","OntologyEntity|OntologyProperty","{""iri"":""http://protege.stanford.edu/plugins/owl/protege#defaultLanguage"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""defaultLanguage""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""defaultLanguage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""defaultLanguage""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{}}","false","false","false","","0.0","property|annotationProperty|entity","","","","false","","","","","","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://protege.stanford.edu/plugins/owl/protege#defaultLanguage","","false","defaultLanguage","","DUO","defaultLanguage","defaultLanguage","","duo","","","" -"duo+property+http://purl.obolibrary.org/obo/BFO_0000050","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000050"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is part of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my brain is part of my body (continuant parthood, two material entities)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this day is part of this year (occurrent parthood)"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part_of"",""lang"":""en""},""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""type"":[""literal""],""value"":""http://www.obofoundry.org/ro/#OBO_REL:part_of""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is part of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my brain is part of my body (continuant parthood, two material entities)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this day is part of this year (occurrent parthood)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part_of"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000050""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000050"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000050"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000050""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000051","","http://purl.obolibrary.org/obo/IAO_0000115","false","","Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.|Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/|Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.) +"duo+property+http://purl.obolibrary.org/obo/BFO_0000050","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000050"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is part of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my brain is part of my body (continuant parthood, two material entities)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this day is part of this year (occurrent parthood)"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part_of"",""lang"":""en""},""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""type"":[""literal""],""value"":""http://www.obofoundry.org/ro/#OBO_REL:part_of""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is part of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my brain is part of my body (continuant parthood, two material entities)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this day is part of this year (occurrent parthood)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part_of"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000050""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://www.w3.org/2000/01/rdf-schema#seeAlso"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""seeAlso""},""curie"":{""type"":[""literal""],""value"":""seeAlso""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000051","","http://purl.obolibrary.org/obo/IAO_0000115","false","","Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.|Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/|Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.) A continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'.","","","a core relation that holds between a part and its whole","my brain is part of my body (continuant parthood, two material entities)|my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)|this day is part of this year (occurrent parthood)","","","","","is part of","","","","","1.0","part_of","","","","","","http://purl.obolibrary.org/obo/RO_0001901","","http://www.obofoundry.org/ro/#OBO_REL:part_of","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty","true","false","true","","http://purl.obolibrary.org/obo/duo.owl","a core relation that holds between a part and its whole","","","http://purl.obolibrary.org/obo/BFO_0000050","","false","part of","","DUO","BFO:0000050","BFO_0000050","","duo","part of","","" -"duo+property+http://purl.obolibrary.org/obo/BFO_0000051","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000051"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a whole and its part"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my body has part my brain (continuant parthood, two material entities)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this year has part this day (occurrent parthood)"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a whole and its part"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use \u0027participates in\u0027. An occurrent cannot have a continuant as part: use \u0027has participant\u0027. An immaterial entity cannot have a material entity as part: use \u0027location of\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \u0027bearer of\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \u0027inheres in\u0027."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_part"",""lang"":""en""},""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000050"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""numDescendants"":5.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my body has part my brain (continuant parthood, two material entities)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this year has part this day (occurrent parthood)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a whole and its part"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use \u0027participates in\u0027. An occurrent cannot have a continuant as part: use \u0027has participant\u0027. An immaterial entity cannot have a material entity as part: use \u0027location of\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \u0027bearer of\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \u0027inheres in\u0027."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_part"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000051""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000051"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000051"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000051""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000050","","http://purl.obolibrary.org/obo/IAO_0000115","false","","Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.|Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/|Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.) +"duo+property+http://purl.obolibrary.org/obo/BFO_0000051","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000051"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a whole and its part"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my body has part my brain (continuant parthood, two material entities)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this year has part this day (occurrent parthood)"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a whole and its part"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use \u0027participates in\u0027. An occurrent cannot have a continuant as part: use \u0027has participant\u0027. An immaterial entity cannot have a material entity as part: use \u0027location of\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \u0027bearer of\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \u0027inheres in\u0027."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_part"",""lang"":""en""},""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000050"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""numDescendants"":5.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my body has part my brain (continuant parthood, two material entities)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this year has part this day (occurrent parthood)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a whole and its part"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use \u0027participates in\u0027. An occurrent cannot have a continuant as part: use \u0027has participant\u0027. An immaterial entity cannot have a material entity as part: use \u0027location of\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \u0027bearer of\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \u0027inheres in\u0027."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_part"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000051""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000050","","http://purl.obolibrary.org/obo/IAO_0000115","false","","Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.|Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/|Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.) A continuant cannot have an occurrent as part: use 'participates in'. An occurrent cannot have a continuant as part: use 'has participant'. An immaterial entity cannot have a material entity as part: use 'location of'. An independent continuant cannot have a specifically dependent continuant as part: use 'bearer of'. A specifically dependent continuant cannot have an independent continuant as part: use 'inheres in'.","","","a core relation that holds between a whole and its part","my body has part my brain (continuant parthood, two material entities)|my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)|this year has part this day (occurrent parthood)","","","","","has part","","","","","5.0","has_part","","","","","","http://purl.obolibrary.org/obo/RO_0001901","","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty","true","false","true","","http://purl.obolibrary.org/obo/duo.owl","a core relation that holds between a whole and its part","","","http://purl.obolibrary.org/obo/BFO_0000051","","false","has part","","DUO","BFO:0000051","BFO_0000051","","duo","has part","","" -"duo+property+http://purl.obolibrary.org/obo/BFO_0000054","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000054"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000054""},""definition"":{""type"":[""literal""],""value"":""Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this disease is realized in this disease course"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this fragility is realized in this shattering"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigator role is realized in this investigation"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is realized by"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized_in"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""[copied from inverse property \u0027realizes\u0027] to say that b realizes c at t is to assert that there is some material entity d \u0026 b is a process which has participant d at t \u0026 c is a disposition or role of which d is bearer_of at t\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000017"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000055"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this disease is realized in this disease course"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this fragility is realized in this shattering"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigator role is realized in this investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is realized by"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized_in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""[copied from inverse property \u0027realizes\u0027] to say that b realizes c at t is to assert that there is some material entity d \u0026 b is a process which has participant d at t \u0026 c is a disposition or role of which d is bearer_of at t\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000054""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000055"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000055""},""type"":[""property"",""objectProperty"",""entity""]},""BFO:0000054"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000054"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000054""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000055","","http://www.w3.org/2000/01/rdf-schema#comment","false","","","","","","this disease is realized in this disease course|this fragility is realized in this shattering|this investigator role is realized in this investigation","","","","","realized in","http://purl.obolibrary.org/obo/BFO_0000015","","","http://purl.obolibrary.org/obo/bfo.owl","0.0","is realized by|realized_in","","","","","","","[copied from inverse property 'realizes'] to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","http://purl.obolibrary.org/obo/duo.owl","Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","","","http://purl.obolibrary.org/obo/BFO_0000054","","false","realized in","http://purl.obolibrary.org/obo/BFO_0000017","DUO","BFO:0000054","BFO_0000054","","duo","realized in","","" -"duo+property+http://purl.obolibrary.org/obo/BFO_0000055","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000055"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000055""},""definition"":{""type"":[""literal""],""value"":""Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizes"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this disease course realizes this disease"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigation realizes this investigator role"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this shattering realizes this fragility"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to say that b realizes c at t is to assert that there is some material entity d \u0026 b is a process which has participant d at t \u0026 c is a disposition or role of which d is bearer_of at t\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizes"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000017"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000054"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizes"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizes"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this disease course realizes this disease"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigation realizes this investigator role"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this shattering realizes this fragility"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to say that b realizes c at t is to assert that there is some material entity d \u0026 b is a process which has participant d at t \u0026 c is a disposition or role of which d is bearer_of at t\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000055""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000055"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000055"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000055""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000054"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000054""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000054","","http://www.w3.org/2000/01/rdf-schema#comment","false","","","","","","this disease course realizes this disease|this investigation realizes this investigator role|this shattering realizes this fragility","","","","","realizes","http://purl.obolibrary.org/obo/BFO_0000017","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","","","","","","","to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","http://purl.obolibrary.org/obo/duo.owl","Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","","","http://purl.obolibrary.org/obo/BFO_0000055","","false","realizes","http://purl.obolibrary.org/obo/BFO_0000015","DUO","BFO:0000055","BFO_0000055","","duo","realizes","","" -"duo+property+http://purl.obolibrary.org/obo/BFO_0000066","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000066"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000066""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},{""type"":[""literal""],""value"":""Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs_in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""unfolds in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""unfolds_in"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000067"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/BFO_0000066""],[""http://purl.obolibrary.org/obo/BFO_0000066"",""http://purl.obolibrary.org/obo/BFO_0000050""]],""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs_in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""unfolds in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""unfolds_in"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000066""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000067"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contains process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000067""},""type"":[""property"",""objectProperty"",""entity""]},""BFO:0000066"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000066"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000066""}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000067","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","","","b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t","","","","","","occurs in","http://purl.obolibrary.org/obo/BFO_0000004","","","http://purl.obolibrary.org/obo/bfo.owl","0.0","occurs_in|unfolds in|unfolds_in","","","","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/BFO_0000066|http://purl.obolibrary.org/obo/BFO_0000066|http://purl.obolibrary.org/obo/BFO_0000050","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant","http://purl.obolibrary.org/obo/duo.owl","b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t|Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant","","","http://purl.obolibrary.org/obo/BFO_0000066","","false","occurs in","http://purl.obolibrary.org/obo/BFO_0000003","DUO","BFO:0000066","BFO_0000066","","duo","occurs in","","" -"duo+property+http://purl.obolibrary.org/obo/BFO_0000067","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000067"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000067""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},{""type"":[""literal""],""value"":""Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""site of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contains process"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000066"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contains process"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""site of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000067""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000066""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000067"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000067"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000067""}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000066","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","","","[copied from inverse property 'occurs in'] b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t","","","","","","site of","","","","http://purl.obolibrary.org/obo/bfo.owl","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant","http://purl.obolibrary.org/obo/duo.owl","[copied from inverse property 'occurs in'] b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t|Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant","","","http://purl.obolibrary.org/obo/BFO_0000067","","false","contains process","","DUO","BFO:0000067","BFO_0000067","","duo","contains process","","" -"duo+property+http://purl.obolibrary.org/obo/BFO_0000179","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000179"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#label"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#label"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Really of interest to developers only"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2000/01/rdf-schema#label"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Really of interest to developers only"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000179""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""BFO:0000179"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000179"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000179""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","","","Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification.","","","","","","","","Really of interest to developers only","","","0.0","","","","http://www.w3.org/2000/01/rdf-schema#label","","http://www.w3.org/2000/01/rdf-schema#label","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification.","","http://www.w3.org/2000/01/rdf-schema#label","http://purl.obolibrary.org/obo/BFO_0000179","","false","BFO OWL specification label","","DUO","BFO:0000179","BFO_0000179","","duo","BFO OWL specification label","","" -"duo+property+http://purl.obolibrary.org/obo/BFO_0000180","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000180"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#label"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#label"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""Person:Alan Ruttenberg""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Really of interest to developers only"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2000/01/rdf-schema#label"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2"",""lang"":""en""},{""type"":[""literal""],""value"":""Person:Alan Ruttenberg""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Really of interest to developers only"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000180""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""BFO:0000180"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000180"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000180""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","","","Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2","","","","","","","","Really of interest to developers only","","","0.0","","Person:Alan Ruttenberg","","http://www.w3.org/2000/01/rdf-schema#label","","http://www.w3.org/2000/01/rdf-schema#label","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2","","http://www.w3.org/2000/01/rdf-schema#label","http://purl.obolibrary.org/obo/BFO_0000180","","false","BFO CLIF specification label","","DUO","BFO:0000180","BFO_0000180","","duo","BFO CLIF specification label","","" +"duo+property+http://purl.obolibrary.org/obo/BFO_0000054","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000054"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000054""},""definition"":{""type"":[""literal""],""value"":""Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this disease is realized in this disease course"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this fragility is realized in this shattering"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigator role is realized in this investigation"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is realized by"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized_in"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""[copied from inverse property \u0027realizes\u0027] to say that b realizes c at t is to assert that there is some material entity d \u0026 b is a process which has participant d at t \u0026 c is a disposition or role of which d is bearer_of at t\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000017"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000055"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this disease is realized in this disease course"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this fragility is realized in this shattering"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigator role is realized in this investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is realized by"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized_in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""[copied from inverse property \u0027realizes\u0027] to say that b realizes c at t is to assert that there is some material entity d \u0026 b is a process which has participant d at t \u0026 c is a disposition or role of which d is bearer_of at t\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000054""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000055"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000055""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000055","","http://www.w3.org/2000/01/rdf-schema#comment","false","","","","","","this disease is realized in this disease course|this fragility is realized in this shattering|this investigator role is realized in this investigation","","","","","realized in","http://purl.obolibrary.org/obo/BFO_0000015","","","http://purl.obolibrary.org/obo/bfo.owl","0.0","is realized by|realized_in","","","","","","","[copied from inverse property 'realizes'] to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","http://purl.obolibrary.org/obo/duo.owl","Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","","","http://purl.obolibrary.org/obo/BFO_0000054","","false","realized in","http://purl.obolibrary.org/obo/BFO_0000017","DUO","BFO:0000054","BFO_0000054","","duo","realized in","","" +"duo+property+http://purl.obolibrary.org/obo/BFO_0000055","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000055"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000055""},""definition"":{""type"":[""literal""],""value"":""Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizes"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this disease course realizes this disease"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigation realizes this investigator role"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this shattering realizes this fragility"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to say that b realizes c at t is to assert that there is some material entity d \u0026 b is a process which has participant d at t \u0026 c is a disposition or role of which d is bearer_of at t\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizes"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000017"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000054"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizes"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizes"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this disease course realizes this disease"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigation realizes this investigator role"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this shattering realizes this fragility"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""to say that b realizes c at t is to assert that there is some material entity d \u0026 b is a process which has participant d at t \u0026 c is a disposition or role of which d is bearer_of at t\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000055""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000017"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realizable entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000017""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000054"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000054""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000054","","http://www.w3.org/2000/01/rdf-schema#comment","false","","","","","","this disease course realizes this disease|this investigation realizes this investigator role|this shattering realizes this fragility","","","","","realizes","http://purl.obolibrary.org/obo/BFO_0000017","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","","","","","","","to say that b realizes c at t is to assert that there is some material entity d & b is a process which has participant d at t & c is a disposition or role of which d is bearer_of at t& the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","http://purl.obolibrary.org/obo/duo.owl","Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","","","http://purl.obolibrary.org/obo/BFO_0000055","","false","realizes","http://purl.obolibrary.org/obo/BFO_0000015","DUO","BFO:0000055","BFO_0000055","","duo","realizes","","" +"duo+property+http://purl.obolibrary.org/obo/BFO_0000066","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000066"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000066""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},{""type"":[""literal""],""value"":""Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs_in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""unfolds in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""unfolds_in"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000067"",""http://www.w3.org/2002/07/owl#propertyChainAxiom"":[[""http://purl.obolibrary.org/obo/BFO_0000050"",""http://purl.obolibrary.org/obo/BFO_0000066""],[""http://purl.obolibrary.org/obo/BFO_0000066"",""http://purl.obolibrary.org/obo/BFO_0000050""]],""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs_in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""unfolds in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""unfolds_in"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000066""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000067"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contains process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000067""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000067","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","","","b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t","","","","","","occurs in","http://purl.obolibrary.org/obo/BFO_0000004","","","http://purl.obolibrary.org/obo/bfo.owl","0.0","occurs_in|unfolds in|unfolds_in","","","","http://purl.obolibrary.org/obo/BFO_0000050|http://purl.obolibrary.org/obo/BFO_0000066|http://purl.obolibrary.org/obo/BFO_0000066|http://purl.obolibrary.org/obo/BFO_0000050","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant","http://purl.obolibrary.org/obo/duo.owl","b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t|Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant","","","http://purl.obolibrary.org/obo/BFO_0000066","","false","occurs in","http://purl.obolibrary.org/obo/BFO_0000003","DUO","BFO:0000066","BFO_0000066","","duo","occurs in","","" +"duo+property+http://purl.obolibrary.org/obo/BFO_0000067","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000067"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000067""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},{""type"":[""literal""],""value"":""Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""site of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contains process"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000066"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""contains process"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""site of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000067""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000066"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurs in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000066""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000066","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","","","[copied from inverse property 'occurs in'] b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t","","","","","","site of","","","","http://purl.obolibrary.org/obo/bfo.owl","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant","http://purl.obolibrary.org/obo/duo.owl","[copied from inverse property 'occurs in'] b occurs_in c =def b is a process and c is a material entity or immaterial entity& there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.& forall(t) if b exists_at t then c exists_at t & there exist spatial regions s and s’ where & b spatially_projects_onto s at t& c is occupies_spatial_region s’ at t& s is a proper_continuant_part_of s’ at t|Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant","","","http://purl.obolibrary.org/obo/BFO_0000067","","false","contains process","","DUO","BFO:0000067","BFO_0000067","","duo","contains process","","" +"duo+property+http://purl.obolibrary.org/obo/BFO_0000179","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000179"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000179""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#label"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#label"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Really of interest to developers only"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2000/01/rdf-schema#label"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO OWL specification label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Really of interest to developers only"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000179""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","","","Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification.","","","","","","","","Really of interest to developers only","","","0.0","","","","http://www.w3.org/2000/01/rdf-schema#label","","http://www.w3.org/2000/01/rdf-schema#label","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification.","","http://www.w3.org/2000/01/rdf-schema#label","http://purl.obolibrary.org/obo/BFO_0000179","","false","BFO OWL specification label","","DUO","BFO:0000179","BFO_0000179","","duo","BFO OWL specification label","","" +"duo+property+http://purl.obolibrary.org/obo/BFO_0000180","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000180"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000180""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.w3.org/2000/01/rdf-schema#label"",""directParent"":""http://www.w3.org/2000/01/rdf-schema#label"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""Person:Alan Ruttenberg""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Really of interest to developers only"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.w3.org/2000/01/rdf-schema#label"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""BFO CLIF specification label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2"",""lang"":""en""},{""type"":[""literal""],""value"":""Person:Alan Ruttenberg""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Really of interest to developers only"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000180""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","","","Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2","","","","","","","","Really of interest to developers only","","","0.0","","Person:Alan Ruttenberg","","http://www.w3.org/2000/01/rdf-schema#label","","http://www.w3.org/2000/01/rdf-schema#label","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2","","http://www.w3.org/2000/01/rdf-schema#label","http://purl.obolibrary.org/obo/BFO_0000180","","false","BFO CLIF specification label","","DUO","BFO:0000180","BFO_0000180","","duo","BFO CLIF specification label","","" "duo+property+http://purl.obolibrary.org/obo/DUO_0000010","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000010"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000010""},""definition"":{""type"":[""literal""],""value"":""A is restricted to B iff A is a consent code and B is an investigation and A may only participate in instances of a class C, of which B is an instance.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/DUO_0000041"":{""type"":[""literal""],""value"":""is_restricted_to""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""A is restricted to B iff A is a consent code and B is an investigation and A may only participate in instances of a class C, of which B is an instance.""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""value"":""J. Neil Otte""},""http://purl.obolibrary.org/obo/IAO_0000232"":{""type"":[""literal""],""value"":""E.g. A dataset is restricted to an instance of an investigation for a specific disease or at geographical location.""},""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""DUO:0000010""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""is restricted to""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""is restricted to""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""is_restricted_to""},{""type"":[""literal""],""value"":""A is restricted to B iff A is a consent code and B is an investigation and A may only participate in instances of a class C, of which B is an instance.""},{""type"":[""literal""],""value"":""J. Neil Otte""},{""type"":[""literal""],""value"":""E.g. A dataset is restricted to an instance of an investigation for a specific disease or at geographical location.""},{""type"":[""literal""],""value"":""DUO:0000010""},false],""shortForm"":{""type"":[""literal""],""value"":""DUO_0000010""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/DUO_0000041"":{""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DUO_preferred_label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""DUO:0000041""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000232"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""type"":[""property"",""annotationProperty"",""entity""]},""DUO:0000010"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000010"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""is restricted to""},""curie"":""DUO:0000010"",""type"":[""property"",""objectProperty"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000010"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","true","","0.0","property|objectProperty|entity","","DUO:0000010","http://purl.obolibrary.org/obo/IAO_0000115","false","is_restricted_to","","J. Neil Otte","","A is restricted to B iff A is a consent code and B is an investigation and A may only participate in instances of a class C, of which B is an instance.","","","","","","","","E.g. A dataset is restricted to an instance of an investigation for a specific disease or at geographical location.","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","false","","http://purl.obolibrary.org/obo/duo.owl","A is restricted to B iff A is a consent code and B is an investigation and A may only participate in instances of a class C, of which B is an instance.","","","http://purl.obolibrary.org/obo/DUO_0000010","","false","is restricted to","","DUO","DUO:0000010","DUO_0000010","duo","duo","is restricted to","","" -"duo+property+http://purl.obolibrary.org/obo/DUO_0000041","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000041"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000041""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DUO_preferred_label"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DUO_preferred_label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""DUO_0000041""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""DUO:0000041"":{""iri"":""http://purl.obolibrary.org/obo/DUO_0000041"",""definedBy"":[""duo""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DUO_preferred_label"",""lang"":""en""},""curie"":""DUO:0000041"",""type"":[""property"",""annotationProperty"",""entity""],""url"":""http://purl.obolibrary.org/obo/DUO_0000041"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","true","","0.0","property|annotationProperty|entity","","","","false","","","","","","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","false","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/DUO_0000041","","false","DUO_preferred_label","","DUO","DUO:0000041","DUO_0000041","duo","duo","DUO_preferred_label","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000004","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000004"",""type"":[""dataProperty"",""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000004""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#DatatypeProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000032"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement value"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#double"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement value"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000004""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000032"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scalar measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000032""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000004"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000004"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000004""}}}","false","false","false","","0.0","dataProperty|property|entity","","","","false","","","","","","","","","","","","http://www.w3.org/2001/XMLSchema#double","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#DatatypeProperty|http://www.w3.org/2002/07/owl#FunctionalProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000004","","false","has measurement value","http://purl.obolibrary.org/obo/IAO_0000032","DUO","IAO:0000004","IAO_0000004","","duo","has measurement value","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000039","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000039"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000039""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000051"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000051"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement unit label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/IAO_0000003"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement unit label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000039""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""IAO:0000039"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000039"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000039""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000003""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","","true","","","","","","","","","","","","http://purl.obolibrary.org/obo/IAO_0000003","","","","0.0","","","","http://purl.obolibrary.org/obo/BFO_0000051","","http://purl.obolibrary.org/obo/BFO_0000051","","","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#FunctionalProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/IAO_0000039","","false","has measurement unit label","","DUO","IAO:0000039","IAO_0000039","","duo","has measurement unit label","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000111","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000111"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000111""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000111"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000111"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000111""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","PERSON:Daniel Schober","http://purl.obolibrary.org/obo/IAO_0000122","The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)","","","","","","editor preferred term","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","GROUP:OBI:","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)","","","http://purl.obolibrary.org/obo/IAO_0000111","","false","editor preferred term","","DUO","IAO:0000111","IAO_0000111","","duo","editor preferred term","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000112","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000112"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000112""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000112"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000112"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000112""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","PERSON:Daniel Schober","http://purl.obolibrary.org/obo/IAO_0000122","A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold.","","","","","","example of usage","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","GROUP:OBI:","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold.","","","http://purl.obolibrary.org/obo/IAO_0000112","","false","example of usage","","DUO","IAO:0000112","IAO_0000112","","duo","example of usage","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000113","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000113"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000113""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in branch"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000277"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in branch"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in branch"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in branch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000277"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000113""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000113"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000113"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000113""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","GROUP:OBI","","An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet.","","","","","","in branch","","","","","0.0","","OBI_0000277","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet.","","","http://purl.obolibrary.org/obo/IAO_0000113","","false","in branch","","DUO","IAO:0000113","IAO_0000113","","duo","in branch","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000114","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000114"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Bill Bug"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Bill Bug"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000114""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000114"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000114"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000114""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","","false","","","PERSON:Alan Ruttenberg|PERSON:Bill Bug|PERSON:Melanie Courtot","","","","","","","","has curation status","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000114","","false","has curation status","","DUO","IAO:0000114","IAO_0000114","","duo","has curation status","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000115","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000115"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2012-04-05: \nBarry Smith\n\nThe official OBI definition, explaining the meaning of a class or property: \u0027Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions\u0027 is terrible.\n\nCan you fix to something like:\n\nA statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.\n\nAlan Ruttenberg\n\nYour proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can\u0027t be evaluated by those criteria. \n\nOn the specifics of the proposed definition:\n\nWe don\u0027t have definitions of \u0027meaning\u0027 or \u0027expression\u0027 or \u0027property\u0027. For \u0027reference\u0027 in the intended sense I think we use the term \u0027denotation\u0027. For \u0027expression\u0027, I think we you mean symbol, or identifier. For \u0027meaning\u0027 it differs for class and property. For class we want documentation that let\u0027s the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let\u0027s the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The \u0027intended reader\u0027 part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition. \n\nPersonally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable. \n\nWe also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with. "",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2012-04-05: \nBarry Smith\n\nThe official OBI definition, explaining the meaning of a class or property: \u0027Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions\u0027 is terrible.\n\nCan you fix to something like:\n\nA statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.\n\nAlan Ruttenberg\n\nYour proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can\u0027t be evaluated by those criteria. \n\nOn the specifics of the proposed definition:\n\nWe don\u0027t have definitions of \u0027meaning\u0027 or \u0027expression\u0027 or \u0027property\u0027. For \u0027reference\u0027 in the intended sense I think we use the term \u0027denotation\u0027. For \u0027expression\u0027, I think we you mean symbol, or identifier. For \u0027meaning\u0027 it differs for class and property. For class we want documentation that let\u0027s the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let\u0027s the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The \u0027intended reader\u0027 part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition. \n\nPersonally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable. \n\nWe also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with. "",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000115""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000115"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000115"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000115""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","2012-04-05: +"duo+property+http://purl.obolibrary.org/obo/DUO_0000041","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/DUO_0000041"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""DUO:0000041""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DUO_preferred_label"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DUO_preferred_label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""DUO_0000041""},""isDefiningOntology"":true,""definedBy"":[""duo""],""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","true","","0.0","property|annotationProperty|entity","","","","false","","","","","","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","false","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/DUO_0000041","","false","DUO_preferred_label","","DUO","DUO:0000041","DUO_0000041","duo","duo","DUO_preferred_label","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000004","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000004"",""type"":[""dataProperty"",""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000004""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#DatatypeProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000032"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement value"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#double"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement value"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000004""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000032"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scalar measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000032""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","dataProperty|property|entity","","","","false","","","","","","","","","","","","http://www.w3.org/2001/XMLSchema#double","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#DatatypeProperty|http://www.w3.org/2002/07/owl#FunctionalProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000004","","false","has measurement value","http://purl.obolibrary.org/obo/IAO_0000032","DUO","IAO:0000004","IAO_0000004","","duo","has measurement value","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000039","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000039"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000039""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000051"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000051"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement unit label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/IAO_0000003"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement unit label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000039""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement unit label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000003""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","","true","","","","","","","","","","","","http://purl.obolibrary.org/obo/IAO_0000003","","","","0.0","","","","http://purl.obolibrary.org/obo/BFO_0000051","","http://purl.obolibrary.org/obo/BFO_0000051","","","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#FunctionalProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/IAO_0000039","","false","has measurement unit label","","DUO","IAO:0000039","IAO_0000039","","duo","has measurement unit label","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000111","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000111"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000111""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","PERSON:Daniel Schober","http://purl.obolibrary.org/obo/IAO_0000122","The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)","","","","","","editor preferred term","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","GROUP:OBI:","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)","","","http://purl.obolibrary.org/obo/IAO_0000111","","false","editor preferred term","","DUO","IAO:0000111","IAO_0000111","","duo","editor preferred term","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000112","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000112"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000112""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","PERSON:Daniel Schober","http://purl.obolibrary.org/obo/IAO_0000122","A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold.","","","","","","example of usage","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","GROUP:OBI:","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold.","","","http://purl.obolibrary.org/obo/IAO_0000112","","false","example of usage","","DUO","IAO:0000112","IAO_0000112","","duo","example of usage","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000113","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000113"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000113""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in branch"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000277"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in branch"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in branch"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""in branch"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBI_0000277"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000113""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","GROUP:OBI","","An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet.","","","","","","in branch","","","","","0.0","","OBI_0000277","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet.","","","http://purl.obolibrary.org/obo/IAO_0000113","","false","in branch","","DUO","IAO:0000113","IAO_0000113","","duo","in branch","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000114","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000114"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Bill Bug"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Bill Bug"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000114""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","","false","","","PERSON:Alan Ruttenberg|PERSON:Bill Bug|PERSON:Melanie Courtot","","","","","","","","has curation status","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000114","","false","has curation status","","DUO","IAO:0000114","IAO_0000114","","duo","has curation status","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000115","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000115"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2012-04-05: \nBarry Smith\n\nThe official OBI definition, explaining the meaning of a class or property: \u0027Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions\u0027 is terrible.\n\nCan you fix to something like:\n\nA statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.\n\nAlan Ruttenberg\n\nYour proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can\u0027t be evaluated by those criteria. \n\nOn the specifics of the proposed definition:\n\nWe don\u0027t have definitions of \u0027meaning\u0027 or \u0027expression\u0027 or \u0027property\u0027. For \u0027reference\u0027 in the intended sense I think we use the term \u0027denotation\u0027. For \u0027expression\u0027, I think we you mean symbol, or identifier. For \u0027meaning\u0027 it differs for class and property. For class we want documentation that let\u0027s the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let\u0027s the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The \u0027intended reader\u0027 part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition. \n\nPersonally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable. \n\nWe also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with. "",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2012-04-05: \nBarry Smith\n\nThe official OBI definition, explaining the meaning of a class or property: \u0027Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions\u0027 is terrible.\n\nCan you fix to something like:\n\nA statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.\n\nAlan Ruttenberg\n\nYour proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can\u0027t be evaluated by those criteria. \n\nOn the specifics of the proposed definition:\n\nWe don\u0027t have definitions of \u0027meaning\u0027 or \u0027expression\u0027 or \u0027property\u0027. For \u0027reference\u0027 in the intended sense I think we use the term \u0027denotation\u0027. For \u0027expression\u0027, I think we you mean symbol, or identifier. For \u0027meaning\u0027 it differs for class and property. For class we want documentation that let\u0027s the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let\u0027s the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The \u0027intended reader\u0027 part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition. \n\nPersonally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable. \n\nWe also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with. "",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000115""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","2012-04-05: Barry Smith The official OBI definition, explaining the meaning of a class or property: 'Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions' is terrible. @@ -40,11 +40,11 @@ We don't have definitions of 'meaning' or 'expression' or 'property'. For 'refer Personally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable. We also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with. ","PERSON:Daniel Schober","http://purl.obolibrary.org/obo/IAO_0000122","The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.","","","","","","definition","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","GROUP:OBI:","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.","","","http://purl.obolibrary.org/obo/IAO_0000115","","false","definition","","DUO","IAO:0000115","IAO_0000115","","duo","definition","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000116","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000116"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obofoundry.org/obo/obi\u003e"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obofoundry.org/obo/obi\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000116""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000116"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000116"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000116""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","PERSON:Daniel Schober","http://purl.obolibrary.org/obo/IAO_0000122","An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology.","","","","","","editor note","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","GROUP:OBI:","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology.","","","http://purl.obolibrary.org/obo/IAO_0000116","","false","editor note","","DUO","IAO:0000116","IAO_0000116","","duo","editor note","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000117","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000117"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""20110707, MC: label update to term editor and definition modified accordingly. See https://github.com/information-artifact-ontology/IAO/issues/115."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""20110707, MC: label update to term editor and definition modified accordingly. See https://github.com/information-artifact-ontology/IAO/issues/115."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000117""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000117"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000117"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000117""},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","20110707, MC: label update to term editor and definition modified accordingly. See https://github.com/information-artifact-ontology/IAO/issues/115.","PERSON:Daniel Schober","http://purl.obolibrary.org/obo/IAO_0000122","Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people","","","","","","term editor","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","GROUP:OBI:","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people","","","http://purl.obolibrary.org/obo/IAO_0000117","","false","term editor","","DUO","IAO:0000117","IAO_0000117","","duo","term editor","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000118","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000118"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like."",""lang"":""en""},{""type"":[""literal""],""value"":""Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related).""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""value"":""OBO Operations committee""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related).""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like."",""lang"":""en""},{""type"":[""literal""],""value"":""OBO Operations committee""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000118""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000118"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000118"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000118""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","OBO Operations committee|PERSON:Daniel Schober","http://purl.obolibrary.org/obo/IAO_0000125","A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.","","","","","","alternative label","","","","","4.0","","GROUP:OBI:","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","true","false","true","Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related).","http://purl.obolibrary.org/obo/duo.owl","A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.|Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related).","","","http://purl.obolibrary.org/obo/IAO_0000118","","false","alternative label","","DUO","IAO:0000118","IAO_0000118","","duo","alternative label","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000119","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000119"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000119""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000119"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000119"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000119""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","PERSON:Daniel Schober","http://purl.obolibrary.org/obo/IAO_0000122","Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007","","","","","","definition source","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w|GROUP:OBI:","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007","","","http://purl.obolibrary.org/obo/IAO_0000119","","false","definition source","","DUO","IAO:0000119","IAO_0000119","","duo","definition source","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000135","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000135"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000135""},""definition"":{""type"":[""literal""],""value"":""c specifically denotes r \u003ddef \nr is a portion of reality\n\u0026 c is a particular quality\n\u0026 c depends specifically on some independent continuant b \n\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \n\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\n\nCase 1\nMemory trace as mark created when reading some description of some friend. The trace can denote.\n\nCase 2\nPattern of ink arrayed on paper as mark when writing down a friend\u0027s name\n\nCase 3\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""value"":""The process of creation is, for example, writing down on paper the name of a friend by deliberately creating a certain pattern using ink.\n\nHere the ink + paper is the independent continuant and the carrier is the pattern in the ink.\n\nc \u003d pattern in the ink\nb \u003d paper + ink\nr \u003d friend""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c specifically denotes r \u003ddef \nr is a portion of reality\n\u0026 c is a particular quality\n\u0026 c depends specifically on some independent continuant b \n\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \n\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\n\nCase 1\nMemory trace as mark created when reading some description of some friend. The trace can denote.\n\nCase 2\nPattern of ink arrayed on paper as mark when writing down a friend\u0027s name\n\nCase 3\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""value"":""8/6/2009 Alan Ruttenberg: The suggestions is to deprecate specific and generically denotes in favor of a single denote relationship that corresponds to the generic sense""},{""type"":[""literal""],""value"":""see https://github.com/information-artifact-ontology/IAO/issues/25\u0026q\u003ddenote""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""value"":""Alan Ruttenberg""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""Smith, Ceusters, Ruttenberg, 2000 years of philosophy""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_specifically denotes""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":true,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_specifically denotes""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The process of creation is, for example, writing down on paper the name of a friend by deliberately creating a certain pattern using ink.\n\nHere the ink + paper is the independent continuant and the carrier is the pattern in the ink.\n\nc \u003d pattern in the ink\nb \u003d paper + ink\nr \u003d friend""},{""type"":[""literal""],""value"":""c specifically denotes r \u003ddef \nr is a portion of reality\n\u0026 c is a particular quality\n\u0026 c depends specifically on some independent continuant b \n\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \n\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\n\nCase 1\nMemory trace as mark created when reading some description of some friend. The trace can denote.\n\nCase 2\nPattern of ink arrayed on paper as mark when writing down a friend\u0027s name\n\nCase 3\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.""},{""type"":[""literal""],""value"":""8/6/2009 Alan Ruttenberg: The suggestions is to deprecate specific and generically denotes in favor of a single denote relationship that corresponds to the generic sense""},{""type"":[""literal""],""value"":""see https://github.com/information-artifact-ontology/IAO/issues/25\u0026q\u003ddenote""},{""type"":[""literal""],""value"":""Alan Ruttenberg""},{""type"":[""literal""],""value"":""Smith, Ceusters, Ruttenberg, 2000 years of philosophy""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000135""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""curie"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""type"":[""property"",""objectProperty"",""entity""]},""IAO:0000135"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000135"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000135""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","8/6/2009 Alan Ruttenberg: The suggestions is to deprecate specific and generically denotes in favor of a single denote relationship that corresponds to the generic sense|see https://github.com/information-artifact-ontology/IAO/issues/25&q=denote","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000125","c specifically denotes r =def +"duo+property+http://purl.obolibrary.org/obo/IAO_0000116","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000116"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obofoundry.org/obo/obi\u003e"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obofoundry.org/obo/obi\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000116""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","PERSON:Daniel Schober","http://purl.obolibrary.org/obo/IAO_0000122","An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology.","","","","","","editor note","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","GROUP:OBI:","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology.","","","http://purl.obolibrary.org/obo/IAO_0000116","","false","editor note","","DUO","IAO:0000116","IAO_0000116","","duo","editor note","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000117","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000117"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""20110707, MC: label update to term editor and definition modified accordingly. See https://github.com/information-artifact-ontology/IAO/issues/115."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""20110707, MC: label update to term editor and definition modified accordingly. See https://github.com/information-artifact-ontology/IAO/issues/115."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000117""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","20110707, MC: label update to term editor and definition modified accordingly. See https://github.com/information-artifact-ontology/IAO/issues/115.","PERSON:Daniel Schober","http://purl.obolibrary.org/obo/IAO_0000122","Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people","","","","","","term editor","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","GROUP:OBI:","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people","","","http://purl.obolibrary.org/obo/IAO_0000117","","false","term editor","","DUO","IAO:0000117","IAO_0000117","","duo","term editor","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000118","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000118"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like."",""lang"":""en""},{""type"":[""literal""],""value"":""Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related).""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""value"":""OBO Operations committee""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related).""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like."",""lang"":""en""},{""type"":[""literal""],""value"":""OBO Operations committee""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000118""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","OBO Operations committee|PERSON:Daniel Schober","http://purl.obolibrary.org/obo/IAO_0000125","A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.","","","","","","alternative label","","","","","4.0","","GROUP:OBI:","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","true","false","true","Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related).","http://purl.obolibrary.org/obo/duo.owl","A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.|Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related).","","","http://purl.obolibrary.org/obo/IAO_0000118","","false","alternative label","","DUO","IAO:0000118","IAO_0000118","","duo","alternative label","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000119","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000119"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Daniel Schober"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000119""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","PERSON:Daniel Schober","http://purl.obolibrary.org/obo/IAO_0000122","Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007","","","","","","definition source","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w|GROUP:OBI:","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007","","","http://purl.obolibrary.org/obo/IAO_0000119","","false","definition source","","DUO","IAO:0000119","IAO_0000119","","duo","definition source","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000135","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000135"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000135""},""definition"":{""type"":[""literal""],""value"":""c specifically denotes r \u003ddef \nr is a portion of reality\n\u0026 c is a particular quality\n\u0026 c depends specifically on some independent continuant b \n\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \n\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\n\nCase 1\nMemory trace as mark created when reading some description of some friend. The trace can denote.\n\nCase 2\nPattern of ink arrayed on paper as mark when writing down a friend\u0027s name\n\nCase 3\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""value"":""The process of creation is, for example, writing down on paper the name of a friend by deliberately creating a certain pattern using ink.\n\nHere the ink + paper is the independent continuant and the carrier is the pattern in the ink.\n\nc \u003d pattern in the ink\nb \u003d paper + ink\nr \u003d friend""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""c specifically denotes r \u003ddef \nr is a portion of reality\n\u0026 c is a particular quality\n\u0026 c depends specifically on some independent continuant b \n\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \n\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\n\nCase 1\nMemory trace as mark created when reading some description of some friend. The trace can denote.\n\nCase 2\nPattern of ink arrayed on paper as mark when writing down a friend\u0027s name\n\nCase 3\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""value"":""8/6/2009 Alan Ruttenberg: The suggestions is to deprecate specific and generically denotes in favor of a single denote relationship that corresponds to the generic sense""},{""type"":[""literal""],""value"":""see https://github.com/information-artifact-ontology/IAO/issues/25\u0026q\u003ddenote""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""value"":""Alan Ruttenberg""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""Smith, Ceusters, Ruttenberg, 2000 years of philosophy""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_specifically denotes""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":true,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_specifically denotes""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The process of creation is, for example, writing down on paper the name of a friend by deliberately creating a certain pattern using ink.\n\nHere the ink + paper is the independent continuant and the carrier is the pattern in the ink.\n\nc \u003d pattern in the ink\nb \u003d paper + ink\nr \u003d friend""},{""type"":[""literal""],""value"":""c specifically denotes r \u003ddef \nr is a portion of reality\n\u0026 c is a particular quality\n\u0026 c depends specifically on some independent continuant b \n\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \n\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\n\nCase 1\nMemory trace as mark created when reading some description of some friend. The trace can denote.\n\nCase 2\nPattern of ink arrayed on paper as mark when writing down a friend\u0027s name\n\nCase 3\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.""},{""type"":[""literal""],""value"":""8/6/2009 Alan Ruttenberg: The suggestions is to deprecate specific and generically denotes in favor of a single denote relationship that corresponds to the generic sense""},{""type"":[""literal""],""value"":""see https://github.com/information-artifact-ontology/IAO/issues/25\u0026q\u003ddenote""},{""type"":[""literal""],""value"":""Alan Ruttenberg""},{""type"":[""literal""],""value"":""Smith, Ceusters, Ruttenberg, 2000 years of philosophy""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000135""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""curie"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","8/6/2009 Alan Ruttenberg: The suggestions is to deprecate specific and generically denotes in favor of a single denote relationship that corresponds to the generic sense|see https://github.com/information-artifact-ontology/IAO/issues/25&q=denote","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000125","c specifically denotes r =def r is a portion of reality & c is a particular quality & c depends specifically on some independent continuant b @@ -81,20 +81,20 @@ Pattern of ink arrayed on paper as mark when writing down a friend's name Case 3 Pattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","http://purl.obolibrary.org/obo/IAO_0000135","true","true","obsolete_specifically denotes","","DUO","IAO:0000135","IAO_0000135","","duo","obsolete_specifically denotes","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000136","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000136"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A (currently) primitive relation that relates an information artifact to an entity."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This document is about information artifacts and their representations"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A (currently) primitive relation that relates an information artifact to an entity."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of \""mentions\"" relation. Weaken the is_about relationship to be primitive. \n\nWe will try to build it back up by elaborating the various subproperties that are more precisely defined.\n\nSome currently missing phenomena that should be considered \""about\"" are predications - \""The only person who knows the answer is sitting beside me\"" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Smith, Ceusters, Ruttenberg, 2000 years of philosophy"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000030"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""numDescendants"":5.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This document is about information artifacts and their representations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A (currently) primitive relation that relates an information artifact to an entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of \""mentions\"" relation. Weaken the is_about relationship to be primitive. \n\nWe will try to build it back up by elaborating the various subproperties that are more precisely defined.\n\nSome currently missing phenomena that should be considered \""about\"" are predications - \""The only person who knows the answer is sitting beside me\"" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Smith, Ceusters, Ruttenberg, 2000 years of philosophy"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000136""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""IAO:0000136"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000136"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000136""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of ""mentions"" relation. Weaken the is_about relationship to be primitive. +"duo+property+http://purl.obolibrary.org/obo/IAO_0000136","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000136"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A (currently) primitive relation that relates an information artifact to an entity."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This document is about information artifacts and their representations"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A (currently) primitive relation that relates an information artifact to an entity."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of \""mentions\"" relation. Weaken the is_about relationship to be primitive. \n\nWe will try to build it back up by elaborating the various subproperties that are more precisely defined.\n\nSome currently missing phenomena that should be considered \""about\"" are predications - \""The only person who knows the answer is sitting beside me\"" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Smith, Ceusters, Ruttenberg, 2000 years of philosophy"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000030"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""numDescendants"":5.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This document is about information artifacts and their representations"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A (currently) primitive relation that relates an information artifact to an entity."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of \""mentions\"" relation. Weaken the is_about relationship to be primitive. \n\nWe will try to build it back up by elaborating the various subproperties that are more precisely defined.\n\nSome currently missing phenomena that should be considered \""about\"" are predications - \""The only person who knows the answer is sitting beside me\"" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Smith, Ceusters, Ruttenberg, 2000 years of philosophy"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000136""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of ""mentions"" relation. Weaken the is_about relationship to be primitive. We will try to build it back up by elaborating the various subproperties that are more precisely defined. Some currently missing phenomena that should be considered ""about"" are predications - ""The only person who knows the answer is sitting beside me"" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic.","person:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000125","A (currently) primitive relation that relates an information artifact to an entity.","This document is about information artifacts and their representations","","","","","","","","","","5.0","","Smith, Ceusters, Ruttenberg, 2000 years of philosophy","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","true","false","true","","http://purl.obolibrary.org/obo/duo.owl","A (currently) primitive relation that relates an information artifact to an entity.","","","http://purl.obolibrary.org/obo/IAO_0000136","","false","is about","http://purl.obolibrary.org/obo/IAO_0000030","DUO","IAO:0000136","IAO_0000136","","duo","is about","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000142","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000142"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000142""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information artifact IA mentions an entity E exactly when it has a component/part that denotes E"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/IAO_0000136"",""directParent"":""http://purl.obolibrary.org/obo/IAO_0000136"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information artifact IA mentions an entity E exactly when it has a component/part that denotes E"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""7/6/2009 Alan Ruttenberg. P4 RC1 munges our GCI so remove it for now: mentions some entity equivalentTo has_part some (\u0027generically denotes\u0027 some entity)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""7/6/2009 Alan Ruttenberg: Add this relation following conversation with Jonathan Rees that N\u0026S GCI for is_about was too strong. Really it was simply sufficient. To effect this change we introduce this relation, which is subproperty of is_about, and have previous GCI use this relation \""mentions\"" in it\u0027s (logical) definition"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Alan Ruttenberg"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""mentions"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/IAO_0000143"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""mentions"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information artifact IA mentions an entity E exactly when it has a component/part that denotes E"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""7/6/2009 Alan Ruttenberg. P4 RC1 munges our GCI so remove it for now: mentions some entity equivalentTo has_part some (\u0027generically denotes\u0027 some entity)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""7/6/2009 Alan Ruttenberg: Add this relation following conversation with Jonathan Rees that N\u0026S GCI for is_about was too strong. Really it was simply sufficient. To effect this change we introduce this relation, which is subproperty of is_about, and have previous GCI use this relation \""mentions\"" in it\u0027s (logical) definition"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000142""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""IAO:0000142"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000142"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000142""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000143"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""mentioned by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000143""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/IAO_0000143","","http://purl.obolibrary.org/obo/IAO_0000115","true","","7/6/2009 Alan Ruttenberg. P4 RC1 munges our GCI so remove it for now: mentions some entity equivalentTo has_part some ('generically denotes' some entity)|7/6/2009 Alan Ruttenberg: Add this relation following conversation with Jonathan Rees that N&S GCI for is_about was too strong. Really it was simply sufficient. To effect this change we introduce this relation, which is subproperty of is_about, and have previous GCI use this relation ""mentions"" in it's (logical) definition","PERSON: Jonathan Rees|Person: Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000125","An information artifact IA mentions an entity E exactly when it has a component/part that denotes E","","","","","","","","","","","0.0","","","","http://purl.obolibrary.org/obo/IAO_0000136","","http://purl.obolibrary.org/obo/IAO_0000136","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","An information artifact IA mentions an entity E exactly when it has a component/part that denotes E","","http://purl.obolibrary.org/obo/IAO_0000136","http://purl.obolibrary.org/obo/IAO_0000142","","false","mentions","","DUO","IAO:0000142","IAO_0000142","","duo","mentions","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000143","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000143"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000143""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of the relation \u0027mentions\u0027"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of the relation \u0027mentions\u0027"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":""http://orcid.org/0000-0002-8844-9165"",""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/250"",""http://purl.org/dc/elements/1.1/date"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#dateTime"",""value"":""2022-01-28T07:20:08Z""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""mentioned by"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/IAO_0000142"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""mentioned by"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of the relation \u0027mentions\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#dateTime"",""value"":""2022-01-28T07:20:08Z""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000143""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/elements/1.1/date"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""date""},""curie"":{""type"":[""literal""],""value"":""date""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000143"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000143"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000143""},""http://purl.obolibrary.org/obo/IAO_0000142"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""mentions"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000142""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/IAO_0000142","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","http://orcid.org/0000-0002-8844-9165","","Inverse of the relation 'mentions'","","https://github.com/information-artifact-ontology/IAO/issues/250","","","2022-01-28T07:20:08Z","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Inverse of the relation 'mentions'","","","http://purl.obolibrary.org/obo/IAO_0000143","","false","mentioned by","","DUO","IAO:0000143","IAO_0000143","","duo","mentioned by","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000219","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000219"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \u0027pick out\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":"""",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":""http://purl.obolibrary.org/obo/IAO_0000136"",""directParent"":""http://purl.obolibrary.org/obo/IAO_0000136"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A person\u0027s name denotes the person. A variable name in a computer program denotes some piece of memory. Lexically equivalent strings can denote different things, for instance \""Alan\"" can denote different people. In each case of use, there is a case of the denotation relation obtaining, between \""Alan\"" and the person that is being named."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \u0027pick out\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-11-10 Alan Ruttenberg. Old definition said the following to emphasize the generic nature of this relation. We no longer have \u0027specifically denotes\u0027, which would have been primitive, so make this relation primitive.\ng denotes r \u003ddef \nr is a portion of reality\nthere is some c that is a concretization of g \nevery c that is a concretization of g specifically denotes r"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Conversations with Barry Smith, Werner Ceusters, Bjoern Peters, Michel Dumontier, Melanie Courtot, James Malone, Bill Hogan"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":"""",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000030"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000001"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/IAO_0000235"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A person\u0027s name denotes the person. A variable name in a computer program denotes some piece of memory. Lexically equivalent strings can denote different things, for instance \""Alan\"" can denote different people. In each case of use, there is a case of the denotation relation obtaining, between \""Alan\"" and the person that is being named."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \u0027pick out\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-11-10 Alan Ruttenberg. Old definition said the following to emphasize the generic nature of this relation. We no longer have \u0027specifically denotes\u0027, which would have been primitive, so make this relation primitive.\ng denotes r \u003ddef \nr is a portion of reality\nthere is some c that is a concretization of g \nevery c that is a concretization of g specifically denotes r"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Conversations with Barry Smith, Werner Ceusters, Bjoern Peters, Michel Dumontier, Melanie Courtot, James Malone, Bill Hogan"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000219""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000235"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denoted by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000235""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000219"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000219"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000219""},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/IAO_0000235","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","true","","2009-11-10 Alan Ruttenberg. Old definition said the following to emphasize the generic nature of this relation. We no longer have 'specifically denotes', which would have been primitive, so make this relation primitive. +"duo+property+http://purl.obolibrary.org/obo/IAO_0000142","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000142"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000142""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information artifact IA mentions an entity E exactly when it has a component/part that denotes E"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/IAO_0000136"",""directParent"":""http://purl.obolibrary.org/obo/IAO_0000136"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information artifact IA mentions an entity E exactly when it has a component/part that denotes E"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""7/6/2009 Alan Ruttenberg. P4 RC1 munges our GCI so remove it for now: mentions some entity equivalentTo has_part some (\u0027generically denotes\u0027 some entity)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""7/6/2009 Alan Ruttenberg: Add this relation following conversation with Jonathan Rees that N\u0026S GCI for is_about was too strong. Really it was simply sufficient. To effect this change we introduce this relation, which is subproperty of is_about, and have previous GCI use this relation \""mentions\"" in it\u0027s (logical) definition"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Alan Ruttenberg"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""mentions"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/IAO_0000143"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""mentions"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An information artifact IA mentions an entity E exactly when it has a component/part that denotes E"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""7/6/2009 Alan Ruttenberg. P4 RC1 munges our GCI so remove it for now: mentions some entity equivalentTo has_part some (\u0027generically denotes\u0027 some entity)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""7/6/2009 Alan Ruttenberg: Add this relation following conversation with Jonathan Rees that N\u0026S GCI for is_about was too strong. Really it was simply sufficient. To effect this change we introduce this relation, which is subproperty of is_about, and have previous GCI use this relation \""mentions\"" in it\u0027s (logical) definition"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Jonathan Rees"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000142""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000143"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""mentioned by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000143""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/IAO_0000143","","http://purl.obolibrary.org/obo/IAO_0000115","true","","7/6/2009 Alan Ruttenberg. P4 RC1 munges our GCI so remove it for now: mentions some entity equivalentTo has_part some ('generically denotes' some entity)|7/6/2009 Alan Ruttenberg: Add this relation following conversation with Jonathan Rees that N&S GCI for is_about was too strong. Really it was simply sufficient. To effect this change we introduce this relation, which is subproperty of is_about, and have previous GCI use this relation ""mentions"" in it's (logical) definition","PERSON: Jonathan Rees|Person: Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000125","An information artifact IA mentions an entity E exactly when it has a component/part that denotes E","","","","","","","","","","","0.0","","","","http://purl.obolibrary.org/obo/IAO_0000136","","http://purl.obolibrary.org/obo/IAO_0000136","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","An information artifact IA mentions an entity E exactly when it has a component/part that denotes E","","http://purl.obolibrary.org/obo/IAO_0000136","http://purl.obolibrary.org/obo/IAO_0000142","","false","mentions","","DUO","IAO:0000142","IAO_0000142","","duo","mentions","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000143","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000143"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000143""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of the relation \u0027mentions\u0027"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of the relation \u0027mentions\u0027"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":""http://orcid.org/0000-0002-8844-9165"",""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/250"",""http://purl.org/dc/elements/1.1/date"":{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#dateTime"",""value"":""2022-01-28T07:20:08Z""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""mentioned by"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/IAO_0000142"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""mentioned by"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of the relation \u0027mentions\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/2001/XMLSchema#dateTime"",""value"":""2022-01-28T07:20:08Z""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000143""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/elements/1.1/date"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""date""},""curie"":{""type"":[""literal""],""value"":""date""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000142"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""mentions"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000142""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/IAO_0000142","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","http://orcid.org/0000-0002-8844-9165","","Inverse of the relation 'mentions'","","https://github.com/information-artifact-ontology/IAO/issues/250","","","2022-01-28T07:20:08Z","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Inverse of the relation 'mentions'","","","http://purl.obolibrary.org/obo/IAO_0000143","","false","mentioned by","","DUO","IAO:0000143","IAO_0000143","","duo","mentioned by","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000219","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000219"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \u0027pick out\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":"""",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":""http://purl.obolibrary.org/obo/IAO_0000136"",""directParent"":""http://purl.obolibrary.org/obo/IAO_0000136"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A person\u0027s name denotes the person. A variable name in a computer program denotes some piece of memory. Lexically equivalent strings can denote different things, for instance \""Alan\"" can denote different people. In each case of use, there is a case of the denotation relation obtaining, between \""Alan\"" and the person that is being named."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \u0027pick out\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-11-10 Alan Ruttenberg. Old definition said the following to emphasize the generic nature of this relation. We no longer have \u0027specifically denotes\u0027, which would have been primitive, so make this relation primitive.\ng denotes r \u003ddef \nr is a portion of reality\nthere is some c that is a concretization of g \nevery c that is a concretization of g specifically denotes r"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Conversations with Barry Smith, Werner Ceusters, Bjoern Peters, Michel Dumontier, Melanie Courtot, James Malone, Bill Hogan"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":"""",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000030"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000001"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/IAO_0000235"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A person\u0027s name denotes the person. A variable name in a computer program denotes some piece of memory. Lexically equivalent strings can denote different things, for instance \""Alan\"" can denote different people. In each case of use, there is a case of the denotation relation obtaining, between \""Alan\"" and the person that is being named."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \u0027pick out\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009-11-10 Alan Ruttenberg. Old definition said the following to emphasize the generic nature of this relation. We no longer have \u0027specifically denotes\u0027, which would have been primitive, so make this relation primitive.\ng denotes r \u003ddef \nr is a portion of reality\nthere is some c that is a concretization of g \nevery c that is a concretization of g specifically denotes r"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Conversations with Barry Smith, Werner Ceusters, Bjoern Peters, Michel Dumontier, Melanie Courtot, James Malone, Bill Hogan"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000219""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000235"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denoted by"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000235""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/IAO_0000235","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","true","","2009-11-10 Alan Ruttenberg. Old definition said the following to emphasize the generic nature of this relation. We no longer have 'specifically denotes', which would have been primitive, so make this relation primitive. g denotes r =def r is a portion of reality there is some c that is a concretization of g every c that is a concretization of g specifically denotes r","person:Alan Ruttenberg","","A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to 'pick out' the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically","A person's name denotes the person. A variable name in a computer program denotes some piece of memory. Lexically equivalent strings can denote different things, for instance ""Alan"" can denote different people. In each case of use, there is a case of the denotation relation obtaining, between ""Alan"" and the person that is being named.","","","","","","http://purl.obolibrary.org/obo/BFO_0000001","","","","0.0","","Conversations with Barry Smith, Werner Ceusters, Bjoern Peters, Michel Dumontier, Melanie Courtot, James Malone, Bill Hogan","","http://purl.obolibrary.org/obo/IAO_0000136","","http://purl.obolibrary.org/obo/IAO_0000136","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to 'pick out' the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically|","","http://purl.obolibrary.org/obo/IAO_0000136","http://purl.obolibrary.org/obo/IAO_0000219","","false","denotes","http://purl.obolibrary.org/obo/IAO_0000030","DUO","IAO:0000219","IAO_0000219","","duo","denotes","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000220","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000220"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000220""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""see https://github.com/information-artifact-ontology/IAO/issues/25\u0026q\u003ddenote""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_materially denotes""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":true,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_materially denotes""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""see https://github.com/information-artifact-ontology/IAO/issues/25\u0026q\u003ddenote""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000220""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""curie"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000220"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000220"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000220""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","","true","","see https://github.com/information-artifact-ontology/IAO/issues/25&q=denote","","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","","","","","","","0.0","","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","http://purl.obolibrary.org/obo/IAO_0000220","true","true","obsolete_materially denotes","","DUO","IAO:0000220","IAO_0000220","","duo","obsolete_materially denotes","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000221","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000221"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000221""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/IAO_0000136"",""directParent"":""http://purl.obolibrary.org/obo/IAO_0000136"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""8/6/2009 Alan Ruttenberg: The strategy is to be rather specific with this relationship. There are other kinds of measurements that are not of qualities, such as those that measure time. We will add these as separate properties for the moment and see about generalizing later"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From the second IAO workshop [Alan Ruttenberg 8/6/2009: not completely current, though bringing in comparison is probably important]\n\nThis one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \""measuring\"" the bearer \u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\n\nWerner suggests a solution based on \""Magnitudes\"" a proposal for which we are awaiting details.\n--\nFrom the second IAO workshop, various comments, [commented on by Alan Ruttenberg 8/6/2009]\n\nunit of measure is a quality, e.g. the length of a ruler.\n\n[We decided to hedge on what units of measure are, instead talking about measurement unit labels, which are the information content entities that are about whatever measurement units are. For IAO we need that information entity in any case. See the term measurement unit label]\n\n[Some struggling with the various subflavors of is_about. We subsequently removed the relation represents, and describes until and only when we have a better theory]\n\na represents b means either a denotes b or a describes\n\ndescribe:\na describes b means a is about b and a allows an inference of at least one quality of b\n\nWe have had a long discussion about denotes versus describes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From the second IAO workshop: An attempt at tieing the quality to the measurement datum more carefully.\n\na is a magnitude means a is a determinate quality particular inhering in some bearer b existing at a time t that can be represented/denoted by an information content entity e that has parts denoting a unit of measure, a number, and b. The unit of measure is an instance of the determinable quality."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From the second meeting on IAO:\n\nAn attempt at defining assay using Barry\u0027s \""reliability\"" wording\n\nassay:\nprocess and has_input some material entity\nand has_output some information content entity \nand which is such that instances of this process type reliably generate \noutputs that describes the input."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \""measuring\"" the bearer \u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\n\nWerner suggests a solution based on \""Magnitudes\"" a proposal for which we are awaiting details."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000109"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measurement of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000019"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/IAO_0000417"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measurement of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""8/6/2009 Alan Ruttenberg: The strategy is to be rather specific with this relationship. There are other kinds of measurements that are not of qualities, such as those that measure time. We will add these as separate properties for the moment and see about generalizing later"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From the second IAO workshop [Alan Ruttenberg 8/6/2009: not completely current, though bringing in comparison is probably important]\n\nThis one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \""measuring\"" the bearer \u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\n\nWerner suggests a solution based on \""Magnitudes\"" a proposal for which we are awaiting details.\n--\nFrom the second IAO workshop, various comments, [commented on by Alan Ruttenberg 8/6/2009]\n\nunit of measure is a quality, e.g. the length of a ruler.\n\n[We decided to hedge on what units of measure are, instead talking about measurement unit labels, which are the information content entities that are about whatever measurement units are. For IAO we need that information entity in any case. See the term measurement unit label]\n\n[Some struggling with the various subflavors of is_about. We subsequently removed the relation represents, and describes until and only when we have a better theory]\n\na represents b means either a denotes b or a describes\n\ndescribe:\na describes b means a is about b and a allows an inference of at least one quality of b\n\nWe have had a long discussion about denotes versus describes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From the second IAO workshop: An attempt at tieing the quality to the measurement datum more carefully.\n\na is a magnitude means a is a determinate quality particular inhering in some bearer b existing at a time t that can be represented/denoted by an information content entity e that has parts denoting a unit of measure, a number, and b. The unit of measure is an instance of the determinable quality."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From the second meeting on IAO:\n\nAn attempt at defining assay using Barry\u0027s \""reliability\"" wording\n\nassay:\nprocess and has_input some material entity\nand has_output some information content entity \nand which is such that instances of this process type reliably generate \noutputs that describes the input."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \""measuring\"" the bearer \u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\n\nWerner suggests a solution based on \""Magnitudes\"" a proposal for which we are awaiting details."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000221""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""IAO:0000221"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000221"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000221""},""http://purl.obolibrary.org/obo/IAO_0000417"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measured as"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000417""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/IAO_0000417","","http://purl.obolibrary.org/obo/IAO_0000115","true","","8/6/2009 Alan Ruttenberg: The strategy is to be rather specific with this relationship. There are other kinds of measurements that are not of qualities, such as those that measure time. We will add these as separate properties for the moment and see about generalizing later|From the second IAO workshop [Alan Ruttenberg 8/6/2009: not completely current, though bringing in comparison is probably important] +"duo+property+http://purl.obolibrary.org/obo/IAO_0000220","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000220"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000220""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""see https://github.com/information-artifact-ontology/IAO/issues/25\u0026q\u003ddenote""},""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_materially denotes""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":true,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_materially denotes""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""see https://github.com/information-artifact-ontology/IAO/issues/25\u0026q\u003ddenote""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000220""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""curie"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","","true","","see https://github.com/information-artifact-ontology/IAO/issues/25&q=denote","","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","","","","","","","0.0","","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","http://purl.obolibrary.org/obo/IAO_0000220","true","true","obsolete_materially denotes","","DUO","IAO:0000220","IAO_0000220","","duo","obsolete_materially denotes","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000221","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000221"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000221""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/IAO_0000136"",""directParent"":""http://purl.obolibrary.org/obo/IAO_0000136"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""8/6/2009 Alan Ruttenberg: The strategy is to be rather specific with this relationship. There are other kinds of measurements that are not of qualities, such as those that measure time. We will add these as separate properties for the moment and see about generalizing later"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From the second IAO workshop [Alan Ruttenberg 8/6/2009: not completely current, though bringing in comparison is probably important]\n\nThis one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \""measuring\"" the bearer \u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\n\nWerner suggests a solution based on \""Magnitudes\"" a proposal for which we are awaiting details.\n--\nFrom the second IAO workshop, various comments, [commented on by Alan Ruttenberg 8/6/2009]\n\nunit of measure is a quality, e.g. the length of a ruler.\n\n[We decided to hedge on what units of measure are, instead talking about measurement unit labels, which are the information content entities that are about whatever measurement units are. For IAO we need that information entity in any case. See the term measurement unit label]\n\n[Some struggling with the various subflavors of is_about. We subsequently removed the relation represents, and describes until and only when we have a better theory]\n\na represents b means either a denotes b or a describes\n\ndescribe:\na describes b means a is about b and a allows an inference of at least one quality of b\n\nWe have had a long discussion about denotes versus describes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From the second IAO workshop: An attempt at tieing the quality to the measurement datum more carefully.\n\na is a magnitude means a is a determinate quality particular inhering in some bearer b existing at a time t that can be represented/denoted by an information content entity e that has parts denoting a unit of measure, a number, and b. The unit of measure is an instance of the determinable quality."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From the second meeting on IAO:\n\nAn attempt at defining assay using Barry\u0027s \""reliability\"" wording\n\nassay:\nprocess and has_input some material entity\nand has_output some information content entity \nand which is such that instances of this process type reliably generate \noutputs that describes the input."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \""measuring\"" the bearer \u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\n\nWerner suggests a solution based on \""Magnitudes\"" a proposal for which we are awaiting details."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000109"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measurement of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000019"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/IAO_0000417"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measurement of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""8/6/2009 Alan Ruttenberg: The strategy is to be rather specific with this relationship. There are other kinds of measurements that are not of qualities, such as those that measure time. We will add these as separate properties for the moment and see about generalizing later"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From the second IAO workshop [Alan Ruttenberg 8/6/2009: not completely current, though bringing in comparison is probably important]\n\nThis one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \""measuring\"" the bearer \u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\n\nWerner suggests a solution based on \""Magnitudes\"" a proposal for which we are awaiting details.\n--\nFrom the second IAO workshop, various comments, [commented on by Alan Ruttenberg 8/6/2009]\n\nunit of measure is a quality, e.g. the length of a ruler.\n\n[We decided to hedge on what units of measure are, instead talking about measurement unit labels, which are the information content entities that are about whatever measurement units are. For IAO we need that information entity in any case. See the term measurement unit label]\n\n[Some struggling with the various subflavors of is_about. We subsequently removed the relation represents, and describes until and only when we have a better theory]\n\na represents b means either a denotes b or a describes\n\ndescribe:\na describes b means a is about b and a allows an inference of at least one quality of b\n\nWe have had a long discussion about denotes versus describes."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From the second IAO workshop: An attempt at tieing the quality to the measurement datum more carefully.\n\na is a magnitude means a is a determinate quality particular inhering in some bearer b existing at a time t that can be represented/denoted by an information content entity e that has parts denoting a unit of measure, a number, and b. The unit of measure is an instance of the determinable quality."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""From the second meeting on IAO:\n\nAn attempt at defining assay using Barry\u0027s \""reliability\"" wording\n\nassay:\nprocess and has_input some material entity\nand has_output some information content entity \nand which is such that instances of this process type reliably generate \noutputs that describes the input."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \""measuring\"" the bearer \u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\n\nWerner suggests a solution based on \""Magnitudes\"" a proposal for which we are awaiting details."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000221""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000417"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measured as"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000417""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/IAO_0000417","","http://purl.obolibrary.org/obo/IAO_0000115","true","","8/6/2009 Alan Ruttenberg: The strategy is to be rather specific with this relationship. There are other kinds of measurements that are not of qualities, such as those that measure time. We will add these as separate properties for the moment and see about generalizing later|From the second IAO workshop [Alan Ruttenberg 8/6/2009: not completely current, though bringing in comparison is probably important] This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it ""measuring"" the bearer = referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail. @@ -126,74 +126,74 @@ and which is such that instances of this process type reliably generate outputs that describes the input.|This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it ""measuring"" the bearer = referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail. Werner suggests a solution based on ""Magnitudes"" a proposal for which we are awaiting details.","Alan Ruttenberg","","m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q","","","","","","","http://purl.obolibrary.org/obo/BFO_0000019","","","","0.0","","","","http://purl.obolibrary.org/obo/IAO_0000136","","http://purl.obolibrary.org/obo/IAO_0000136","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q","","http://purl.obolibrary.org/obo/IAO_0000136","http://purl.obolibrary.org/obo/IAO_0000221","","false","is quality measurement of","http://purl.obolibrary.org/obo/IAO_0000109","DUO","IAO:0000221","IAO_0000221","","duo","is quality measurement of","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000222","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000222"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000222""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_describes""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":true,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_describes""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000222""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""curie"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000222"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000222"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000222""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","","true","","","","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","","","","","","","0.0","","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","http://purl.obolibrary.org/obo/IAO_0000222","true","true","obsolete_describes","","DUO","IAO:0000222","IAO_0000222","","duo","obsolete_describes","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000223","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000223"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000223""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_represents""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":true,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_represents""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000223""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""curie"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]},""IAO:0000223"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000223"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000223""}}}","false","false","false","","0.0","property|objectProperty|entity","","","","true","","","","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","","","","","","","0.0","","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","http://purl.obolibrary.org/obo/IAO_0000223","true","true","obsolete_represents","","DUO","IAO:0000223","IAO_0000223","","duo","obsolete_represents","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000231","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000231"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000231""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000231"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000231"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000231""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","PERSON:Alan Ruttenberg|PERSON:Melanie Courtot","","Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification.","","","","","","has obsolescence reason","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification.","","","http://purl.obolibrary.org/obo/IAO_0000231","","false","has obsolescence reason","","DUO","IAO:0000231","IAO_0000231","","duo","has obsolescence reason","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000232","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000232"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An administrative note of use for a curator but of no use for a user"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An administrative note of use for a curator but of no use for a user"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An administrative note of use for a curator but of no use for a user"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000232""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000232"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000232"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000232""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","PERSON:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000122","An administrative note of use for a curator but of no use for a user","","","","","","curator note","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","An administrative note of use for a curator but of no use for a user","","","http://purl.obolibrary.org/obo/IAO_0000232","","false","curator note","","DUO","IAO:0000232","IAO_0000232","","duo","curator note","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000233","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000233"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An IRI or similar locator for a request or discussion of an ontology term."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The \u0027tracker item\u0027 can associate a tracker with a specific ontology term."",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the URI for an OBI Terms ticket at sourceforge, such as https://sourceforge.net/p/obi/obi-terms/772/"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An IRI or similar locator for a request or discussion of an ontology term."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The \u0027tracker item\u0027 can associate a tracker with a specific ontology term."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the URI for an OBI Terms ticket at sourceforge, such as https://sourceforge.net/p/obi/obi-terms/772/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An IRI or similar locator for a request or discussion of an ontology term."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000233""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000233"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000233"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000233""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000125","An IRI or similar locator for a request or discussion of an ontology term.","the URI for an OBI Terms ticket at sourceforge, such as https://sourceforge.net/p/obi/obi-terms/772/","","","","","term tracker item","","","","","0.0","","Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","The 'tracker item' can associate a tracker with a specific ontology term.","http://purl.obolibrary.org/obo/duo.owl","An IRI or similar locator for a request or discussion of an ontology term.|The 'tracker item' can associate a tracker with a specific ontology term.","","","http://purl.obolibrary.org/obo/IAO_0000233","","false","term tracker item","","DUO","IAO:0000233","IAO_0000233","","duo","term tracker item","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000234","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000234"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition."",""lang"":""en""},{""type"":[""literal""],""value"":""The \u0027term requester\u0027 can credit the person, organization or project who request the ontology term.""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The \u0027term requester\u0027 can credit the person, organization or project who request the ontology term.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000234""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000234"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000234"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000234""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000125","The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition.","","","","","","ontology term requester","","","","","0.0","","Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","The 'term requester' can credit the person, organization or project who request the ontology term.","http://purl.obolibrary.org/obo/duo.owl","The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition.|The 'term requester' can credit the person, organization or project who request the ontology term.","","","http://purl.obolibrary.org/obo/IAO_0000234","","false","ontology term requester","","DUO","IAO:0000234","IAO_0000234","","duo","ontology term requester","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000235","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000235"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000235""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation \u0027denotes\u0027"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation \u0027denotes\u0027"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng, Chris Stoeckert, Mike Conlon"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/206"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000001"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denoted by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/IAO_0000030"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/IAO_0000219"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denoted by"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation \u0027denotes\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng, Chris Stoeckert, Mike Conlon"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000235""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000235"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000235"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000235""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000219"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/IAO_0000219","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Person: Jie Zheng, Chris Stoeckert, Mike Conlon","","inverse of the relation 'denotes'","","https://github.com/information-artifact-ontology/IAO/issues/206","","","","","http://purl.obolibrary.org/obo/IAO_0000030","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","inverse of the relation 'denotes'","","","http://purl.obolibrary.org/obo/IAO_0000235","","false","denoted by","http://purl.obolibrary.org/obo/BFO_0000001","DUO","IAO:0000235","IAO_0000235","","duo","denoted by","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000404","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000404"",""type"":[""dataProperty"",""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000404""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#DatatypeProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000400"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has x coordinate value"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#float"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has x coordinate value"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000404""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000404"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000404"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000404""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","dataProperty|property|entity","","","","false","","","","","","","","","","","","http://www.w3.org/2001/XMLSchema#float","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#DatatypeProperty|http://www.w3.org/2002/07/owl#FunctionalProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000404","","false","has x coordinate value","http://purl.obolibrary.org/obo/IAO_0000400","DUO","IAO:0000404","IAO_0000404","","duo","has x coordinate value","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000405","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000405"",""type"":[""dataProperty"",""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000405""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#DatatypeProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000400"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has z coordinate value"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#float"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has z coordinate value"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000405""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""type"":[""class"",""entity""]},""IAO:0000405"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000405"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000405""}}}","false","false","false","","0.0","dataProperty|property|entity","","","","false","","","","","","","","","","","","http://www.w3.org/2001/XMLSchema#float","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#DatatypeProperty|http://www.w3.org/2002/07/owl#FunctionalProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000405","","false","has z coordinate value","http://purl.obolibrary.org/obo/IAO_0000400","DUO","IAO:0000405","IAO_0000405","","duo","has z coordinate value","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000406","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000406"",""type"":[""dataProperty"",""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000406""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#DatatypeProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000400"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has y coordinate value"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#float"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has y coordinate value"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000406""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000406"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000406"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000406""},""http://purl.obolibrary.org/obo/IAO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","dataProperty|property|entity","","","","false","","","","","","","","","","","","http://www.w3.org/2001/XMLSchema#float","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#DatatypeProperty|http://www.w3.org/2002/07/owl#FunctionalProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000406","","false","has y coordinate value","http://purl.obolibrary.org/obo/IAO_0000400","DUO","IAO:0000406","IAO_0000406","","duo","has y coordinate value","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000407","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000407"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000407""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relating a cartesian spatial coordinate datum to a unit label that together with the values represent a point"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000051"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000051"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relating a cartesian spatial coordinate datum to a unit label that together with the values represent a point"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000400"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has coordinate unit label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/UO_0000001"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has coordinate unit label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000407""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""length unit""},""curie"":{""type"":[""literal""],""value"":""UO:0000001""},""type"":[""class"",""entity""]},""IAO:0000407"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000407"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000407""},""http://purl.obolibrary.org/obo/IAO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://www.w3.org/2000/01/rdf-schema#comment","true","","","","","","","","","","","","http://purl.obolibrary.org/obo/UO_0000001","","","","0.0","","","","http://purl.obolibrary.org/obo/BFO_0000051","","http://purl.obolibrary.org/obo/BFO_0000051","","","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#FunctionalProperty","false","false","true","relating a cartesian spatial coordinate datum to a unit label that together with the values represent a point","http://purl.obolibrary.org/obo/duo.owl","relating a cartesian spatial coordinate datum to a unit label that together with the values represent a point","","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/IAO_0000407","","false","has coordinate unit label","http://purl.obolibrary.org/obo/IAO_0000400","DUO","IAO:0000407","IAO_0000407","","duo","has coordinate unit label","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000411","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000411"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000411""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an class defined in an ontology, to the type of it\u0027s denotator"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is denotator type"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an class defined in an ontology, to the type of it\u0027s denotator"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""In OWL 2 add AnnotationPropertyRange(\u0027is denotator type\u0027 \u0027denotator type\u0027)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is denotator type"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is denotator type"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is denotator type"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an class defined in an ontology, to the type of it\u0027s denotator"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""In OWL 2 add AnnotationPropertyRange(\u0027is denotator type\u0027 \u0027denotator type\u0027)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000411""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000411"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000411"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000411""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","In OWL 2 add AnnotationPropertyRange('is denotator type' 'denotator type')","Alan Ruttenberg","","Relates an class defined in an ontology, to the type of it's denotator","","","","","","is denotator type","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Relates an class defined in an ontology, to the type of it's denotator","","","http://purl.obolibrary.org/obo/IAO_0000411","","false","is denotator type","","DUO","IAO:0000411","IAO_0000411","","duo","is denotator type","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000412","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000412"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For external terms/classes, the ontology from which the term was imported"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For external terms/classes, the ontology from which the term was imported"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For external terms/classes, the ontology from which the term was imported"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000412""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""IAO:0000412"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000412"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000412""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","PERSON:Alan Ruttenberg|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000125","For external terms/classes, the ontology from which the term was imported","","","","","","imported from","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","GROUP:OBI:","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","For external terms/classes, the ontology from which the term was imported","","","http://purl.obolibrary.org/obo/IAO_0000412","","false","imported from","","DUO","IAO:0000412","IAO_0000412","","duo","imported from","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000413","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000413"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000413""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a process to a time-measurement-datum that represents the duration of the process"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/IAO_0000136"",""directParent"":""http://purl.obolibrary.org/obo/IAO_0000136"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a process to a time-measurement-datum that represents the duration of the process"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000416"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is duration of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/IAO_0000136"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is duration of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a process to a time-measurement-datum that represents the duration of the process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000413""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""IAO:0000413"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000413"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000413""},""http://purl.obolibrary.org/obo/IAO_0000416"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000416""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000120","relates a process to a time-measurement-datum that represents the duration of the process","","","","","","","http://purl.obolibrary.org/obo/BFO_0000015","","","","0.0","","","","http://purl.obolibrary.org/obo/IAO_0000136","","http://purl.obolibrary.org/obo/IAO_0000136","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","relates a process to a time-measurement-datum that represents the duration of the process","","http://purl.obolibrary.org/obo/IAO_0000136","http://purl.obolibrary.org/obo/IAO_0000413","","false","is duration of","http://purl.obolibrary.org/obo/IAO_0000416","DUO","IAO:0000413","IAO_0000413","","duo","is duration of","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000417","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000417"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000417""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation of is quality measurement of"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation of is quality measurement of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/10/19 Alan Ruttenberg. Named \u0027junk\u0027 relation useful in restrictions, but not a real instance relationship"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measured as"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/IAO_0000221"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measured as"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation of is quality measurement of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/10/19 Alan Ruttenberg. Named \u0027junk\u0027 relation useful in restrictions, but not a real instance relationship"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000417""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""IAO:0000417"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000417"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000417""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000221"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measurement of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000221""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/IAO_0000221","","http://purl.obolibrary.org/obo/IAO_0000115","false","","2009/10/19 Alan Ruttenberg. Named 'junk' relation useful in restrictions, but not a real instance relationship","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000120","inverse of the relation of is quality measurement of","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","inverse of the relation of is quality measurement of","","","http://purl.obolibrary.org/obo/IAO_0000417","","false","is quality measured as","","DUO","IAO:0000417","IAO_0000417","","duo","is quality measured as","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000418","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000418"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000418""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/IAO_0000136"",""directParent"":""http://purl.obolibrary.org/obo/IAO_0000136"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Bjoern Peters"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality specification of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/IAO_0000419"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality specification of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Bjoern Peters"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000418""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""IAO:0000418"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000418"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000418""},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000419"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality is specified as"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000419""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/IAO_0000419","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","Person:Alan Ruttenberg|Person:Bjoern Peters","http://purl.obolibrary.org/obo/IAO_0000120","A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality.","","","","","","","","","","","0.0","","","","http://purl.obolibrary.org/obo/IAO_0000136","","http://purl.obolibrary.org/obo/IAO_0000136","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality.","","http://purl.obolibrary.org/obo/IAO_0000136","http://purl.obolibrary.org/obo/IAO_0000418","","false","is quality specification of","","DUO","IAO:0000418","IAO_0000418","","duo","is quality specification of","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000419","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000419"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000419""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation of is quality specification of"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation of is quality specification of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/10/19 Alan Ruttenberg. Named \u0027junk\u0027 relation useful in restrictions, but not a real instance relationship"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Bjoern Peters"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality is specified as"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/IAO_0000418"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality is specified as"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation of is quality specification of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/10/19 Alan Ruttenberg. Named \u0027junk\u0027 relation useful in restrictions, but not a real instance relationship"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Bjoern Peters"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000419""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""IAO:0000419"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000419"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000419""},""http://purl.obolibrary.org/obo/IAO_0000418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality specification of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000418""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/IAO_0000418","","http://purl.obolibrary.org/obo/IAO_0000115","false","","2009/10/19 Alan Ruttenberg. Named 'junk' relation useful in restrictions, but not a real instance relationship","Person:Alan Ruttenberg|Person:Bjoern Peters","http://purl.obolibrary.org/obo/IAO_0000120","inverse of the relation of is quality specification of","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","inverse of the relation of is quality specification of","","","http://purl.obolibrary.org/obo/IAO_0000419","","false","quality is specified as","","DUO","IAO:0000419","IAO_0000419","","duo","quality is specified as","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000424","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000424"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000424""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""expand expression to"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ObjectProperty: RO_0002104\nLabel: has plasma membrane part\nAnnotations: IAO_0000424 \""http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.org/obo/owl/GO#GO_0005886 and http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\""\n"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Chris Mungall"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""expand expression to"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""expand expression to"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""expand expression to"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ObjectProperty: RO_0002104\nLabel: has plasma membrane part\nAnnotations: IAO_0000424 \""http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.org/obo/owl/GO#GO_0005886 and http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\""\n"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Chris Mungall"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000424""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000424"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000424"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000424""}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Chris Mungall","","A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones","ObjectProperty: RO_0002104 +"duo+property+http://purl.obolibrary.org/obo/IAO_0000222","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000222"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000222""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_describes""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":true,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_describes""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000222""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""curie"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","","true","","","","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","","","","","","","0.0","","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","http://purl.obolibrary.org/obo/IAO_0000222","true","true","obsolete_describes","","DUO","IAO:0000222","IAO_0000222","","duo","obsolete_describes","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000223","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000223"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000223""},""directAncestor"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""directParent"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000231"":""http://purl.obolibrary.org/obo/IAO_0000103"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""obsolete_represents""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"",""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":true,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""obsolete_represents""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000223""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""curie"":{""type"":[""literal""],""value"":""ObsoleteProperty""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000231"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000103"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""failed exploratory term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000103""},""type"":[""individual"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","","true","","","","","","","","","http://purl.obolibrary.org/obo/IAO_0000103","","","","","","","0.0","","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","http://purl.obolibrary.org/obo/IAO_0000223","true","true","obsolete_represents","","DUO","IAO:0000223","IAO_0000223","","duo","obsolete_represents","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000231","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000231"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000231""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has obsolescence reason"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000231""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","PERSON:Alan Ruttenberg|PERSON:Melanie Courtot","","Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification.","","","","","","has obsolescence reason","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification.","","","http://purl.obolibrary.org/obo/IAO_0000231","","false","has obsolescence reason","","DUO","IAO:0000231","IAO_0000231","","duo","has obsolescence reason","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000232","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000232"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An administrative note of use for a curator but of no use for a user"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An administrative note of use for a curator but of no use for a user"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""curator note"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An administrative note of use for a curator but of no use for a user"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000232""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","PERSON:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000122","An administrative note of use for a curator but of no use for a user","","","","","","curator note","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","An administrative note of use for a curator but of no use for a user","","","http://purl.obolibrary.org/obo/IAO_0000232","","false","curator note","","DUO","IAO:0000232","IAO_0000232","","duo","curator note","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000233","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000233"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An IRI or similar locator for a request or discussion of an ontology term."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The \u0027tracker item\u0027 can associate a tracker with a specific ontology term."",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the URI for an OBI Terms ticket at sourceforge, such as https://sourceforge.net/p/obi/obi-terms/772/"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An IRI or similar locator for a request or discussion of an ontology term."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The \u0027tracker item\u0027 can associate a tracker with a specific ontology term."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the URI for an OBI Terms ticket at sourceforge, such as https://sourceforge.net/p/obi/obi-terms/772/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An IRI or similar locator for a request or discussion of an ontology term."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000233""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000125","An IRI or similar locator for a request or discussion of an ontology term.","the URI for an OBI Terms ticket at sourceforge, such as https://sourceforge.net/p/obi/obi-terms/772/","","","","","term tracker item","","","","","0.0","","Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","The 'tracker item' can associate a tracker with a specific ontology term.","http://purl.obolibrary.org/obo/duo.owl","An IRI or similar locator for a request or discussion of an ontology term.|The 'tracker item' can associate a tracker with a specific ontology term.","","","http://purl.obolibrary.org/obo/IAO_0000233","","false","term tracker item","","DUO","IAO:0000233","IAO_0000233","","duo","term tracker item","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000234","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000234"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition."",""lang"":""en""},{""type"":[""literal""],""value"":""The \u0027term requester\u0027 can credit the person, organization or project who request the ontology term.""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""The \u0027term requester\u0027 can credit the person, organization or project who request the ontology term.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000234""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000125","The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition.","","","","","","ontology term requester","","","","","0.0","","Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","The 'term requester' can credit the person, organization or project who request the ontology term.","http://purl.obolibrary.org/obo/duo.owl","The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition.|The 'term requester' can credit the person, organization or project who request the ontology term.","","","http://purl.obolibrary.org/obo/IAO_0000234","","false","ontology term requester","","DUO","IAO:0000234","IAO_0000234","","duo","ontology term requester","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000235","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000235"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000235""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation \u0027denotes\u0027"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation \u0027denotes\u0027"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng, Chris Stoeckert, Mike Conlon"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/information-artifact-ontology/IAO/issues/206"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000001"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denoted by"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/IAO_0000030"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/IAO_0000219"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denoted by"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation \u0027denotes\u0027"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person: Jie Zheng, Chris Stoeckert, Mike Conlon"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000235""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000030"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""information content entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000030""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000001""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000219"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""denotes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000219""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/IAO_0000219","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Person: Jie Zheng, Chris Stoeckert, Mike Conlon","","inverse of the relation 'denotes'","","https://github.com/information-artifact-ontology/IAO/issues/206","","","","","http://purl.obolibrary.org/obo/IAO_0000030","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","inverse of the relation 'denotes'","","","http://purl.obolibrary.org/obo/IAO_0000235","","false","denoted by","http://purl.obolibrary.org/obo/BFO_0000001","DUO","IAO:0000235","IAO_0000235","","duo","denoted by","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000404","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000404"",""type"":[""dataProperty"",""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000404""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#DatatypeProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000400"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has x coordinate value"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#float"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has x coordinate value"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000404""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","dataProperty|property|entity","","","","false","","","","","","","","","","","","http://www.w3.org/2001/XMLSchema#float","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#DatatypeProperty|http://www.w3.org/2002/07/owl#FunctionalProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000404","","false","has x coordinate value","http://purl.obolibrary.org/obo/IAO_0000400","DUO","IAO:0000404","IAO_0000404","","duo","has x coordinate value","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000405","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000405"",""type"":[""dataProperty"",""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000405""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#DatatypeProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000400"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has z coordinate value"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#float"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has z coordinate value"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000405""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","dataProperty|property|entity","","","","false","","","","","","","","","","","","http://www.w3.org/2001/XMLSchema#float","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#DatatypeProperty|http://www.w3.org/2002/07/owl#FunctionalProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000405","","false","has z coordinate value","http://purl.obolibrary.org/obo/IAO_0000400","DUO","IAO:0000405","IAO_0000405","","duo","has z coordinate value","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000406","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000406"",""type"":[""dataProperty"",""property"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000406""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#DatatypeProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000400"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has y coordinate value"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#float"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has y coordinate value"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000406""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","dataProperty|property|entity","","","","false","","","","","","","","","","","","http://www.w3.org/2001/XMLSchema#float","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#DatatypeProperty|http://www.w3.org/2002/07/owl#FunctionalProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000406","","false","has y coordinate value","http://purl.obolibrary.org/obo/IAO_0000400","DUO","IAO:0000406","IAO_0000406","","duo","has y coordinate value","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000407","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000407"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000407""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relating a cartesian spatial coordinate datum to a unit label that together with the values represent a point"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000051"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000051"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relating a cartesian spatial coordinate datum to a unit label that together with the values represent a point"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000400"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has coordinate unit label"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/UO_0000001"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has coordinate unit label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000407""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UO_0000001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""length unit""},""curie"":{""type"":[""literal""],""value"":""UO:0000001""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""cartesian spatial coordinate datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000400""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://www.w3.org/2000/01/rdf-schema#comment","true","","","","","","","","","","","","http://purl.obolibrary.org/obo/UO_0000001","","","","0.0","","","","http://purl.obolibrary.org/obo/BFO_0000051","","http://purl.obolibrary.org/obo/BFO_0000051","","","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#FunctionalProperty","false","false","true","relating a cartesian spatial coordinate datum to a unit label that together with the values represent a point","http://purl.obolibrary.org/obo/duo.owl","relating a cartesian spatial coordinate datum to a unit label that together with the values represent a point","","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/IAO_0000407","","false","has coordinate unit label","http://purl.obolibrary.org/obo/IAO_0000400","DUO","IAO:0000407","IAO_0000407","","duo","has coordinate unit label","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000411","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000411"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000411""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an class defined in an ontology, to the type of it\u0027s denotator"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is denotator type"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an class defined in an ontology, to the type of it\u0027s denotator"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""In OWL 2 add AnnotationPropertyRange(\u0027is denotator type\u0027 \u0027denotator type\u0027)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is denotator type"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is denotator type"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is denotator type"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an class defined in an ontology, to the type of it\u0027s denotator"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""In OWL 2 add AnnotationPropertyRange(\u0027is denotator type\u0027 \u0027denotator type\u0027)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000411""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","In OWL 2 add AnnotationPropertyRange('is denotator type' 'denotator type')","Alan Ruttenberg","","Relates an class defined in an ontology, to the type of it's denotator","","","","","","is denotator type","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Relates an class defined in an ontology, to the type of it's denotator","","","http://purl.obolibrary.org/obo/IAO_0000411","","false","is denotator type","","DUO","IAO:0000411","IAO_0000411","","duo","is denotator type","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000412","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000412"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For external terms/classes, the ontology from which the term was imported"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For external terms/classes, the ontology from which the term was imported"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""For external terms/classes, the ontology from which the term was imported"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000412""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","PERSON:Alan Ruttenberg|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000125","For external terms/classes, the ontology from which the term was imported","","","","","","imported from","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","GROUP:OBI:","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","For external terms/classes, the ontology from which the term was imported","","","http://purl.obolibrary.org/obo/IAO_0000412","","false","imported from","","DUO","IAO:0000412","IAO_0000412","","duo","imported from","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000413","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000413"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000413""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a process to a time-measurement-datum that represents the duration of the process"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/IAO_0000136"",""directParent"":""http://purl.obolibrary.org/obo/IAO_0000136"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a process to a time-measurement-datum that represents the duration of the process"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000416"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is duration of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000015"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/IAO_0000136"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is duration of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a process to a time-measurement-datum that represents the duration of the process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000413""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000015""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000416"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000416""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000120","relates a process to a time-measurement-datum that represents the duration of the process","","","","","","","http://purl.obolibrary.org/obo/BFO_0000015","","","","0.0","","","","http://purl.obolibrary.org/obo/IAO_0000136","","http://purl.obolibrary.org/obo/IAO_0000136","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","relates a process to a time-measurement-datum that represents the duration of the process","","http://purl.obolibrary.org/obo/IAO_0000136","http://purl.obolibrary.org/obo/IAO_0000413","","false","is duration of","http://purl.obolibrary.org/obo/IAO_0000416","DUO","IAO:0000413","IAO_0000413","","duo","is duration of","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000417","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000417"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000417""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation of is quality measurement of"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation of is quality measurement of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/10/19 Alan Ruttenberg. Named \u0027junk\u0027 relation useful in restrictions, but not a real instance relationship"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measured as"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/IAO_0000221"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measured as"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation of is quality measurement of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/10/19 Alan Ruttenberg. Named \u0027junk\u0027 relation useful in restrictions, but not a real instance relationship"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000417""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000221"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality measurement of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000221""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/IAO_0000221","","http://purl.obolibrary.org/obo/IAO_0000115","false","","2009/10/19 Alan Ruttenberg. Named 'junk' relation useful in restrictions, but not a real instance relationship","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000120","inverse of the relation of is quality measurement of","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","inverse of the relation of is quality measurement of","","","http://purl.obolibrary.org/obo/IAO_0000417","","false","is quality measured as","","DUO","IAO:0000417","IAO_0000417","","duo","is quality measured as","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000418","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000418"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000418""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/IAO_0000136"",""directParent"":""http://purl.obolibrary.org/obo/IAO_0000136"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Bjoern Peters"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality specification of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/IAO_0000136"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/IAO_0000419"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality specification of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Bjoern Peters"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000418""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000136"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is about"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000136""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000419"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality is specified as"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000419""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/IAO_0000419","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","Person:Alan Ruttenberg|Person:Bjoern Peters","http://purl.obolibrary.org/obo/IAO_0000120","A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality.","","","","","","","","","","","0.0","","","","http://purl.obolibrary.org/obo/IAO_0000136","","http://purl.obolibrary.org/obo/IAO_0000136","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality.","","http://purl.obolibrary.org/obo/IAO_0000136","http://purl.obolibrary.org/obo/IAO_0000418","","false","is quality specification of","","DUO","IAO:0000418","IAO_0000418","","duo","is quality specification of","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000419","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000419"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000419""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation of is quality specification of"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000120"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation of is quality specification of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/10/19 Alan Ruttenberg. Named \u0027junk\u0027 relation useful in restrictions, but not a real instance relationship"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Bjoern Peters"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality is specified as"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/IAO_0000418"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality is specified as"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inverse of the relation of is quality specification of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2009/10/19 Alan Ruttenberg. Named \u0027junk\u0027 relation useful in restrictions, but not a real instance relationship"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Bjoern Peters"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000419""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000418"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality specification of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000418""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000120"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata complete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000120""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/IAO_0000418","","http://purl.obolibrary.org/obo/IAO_0000115","false","","2009/10/19 Alan Ruttenberg. Named 'junk' relation useful in restrictions, but not a real instance relationship","Person:Alan Ruttenberg|Person:Bjoern Peters","http://purl.obolibrary.org/obo/IAO_0000120","inverse of the relation of is quality specification of","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","inverse of the relation of is quality specification of","","","http://purl.obolibrary.org/obo/IAO_0000419","","false","quality is specified as","","DUO","IAO:0000419","IAO_0000419","","duo","quality is specified as","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000424","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000424"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000424""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""expand expression to"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ObjectProperty: RO_0002104\nLabel: has plasma membrane part\nAnnotations: IAO_0000424 \""http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.org/obo/owl/GO#GO_0005886 and http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\""\n"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Chris Mungall"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""expand expression to"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""expand expression to"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""expand expression to"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ObjectProperty: RO_0002104\nLabel: has plasma membrane part\nAnnotations: IAO_0000424 \""http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.org/obo/owl/GO#GO_0005886 and http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\""\n"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Chris Mungall"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000424""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Chris Mungall","","A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones","ObjectProperty: RO_0002104 Label: has plasma membrane part Annotations: IAO_0000424 ""http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.org/obo/owl/GO#GO_0005886 and http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)"" ","","","","","expand expression to","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones","","","http://purl.obolibrary.org/obo/IAO_0000424","","false","expand expression to","","DUO","IAO:0000424","IAO_0000424","","duo","expand expression to","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000425","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000425"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000425""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""expand assertion to"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ObjectProperty: RO???\nLabel: spatially disjoint from\nAnnotations: expand_assertion_to \""DisjointClasses: (http://purl.obolibrary.org/obo/BFO_0000051 some ?X) (http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\""\n"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Chris Mungall"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""expand assertion to"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""expand assertion to"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""expand assertion to"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ObjectProperty: RO???\nLabel: spatially disjoint from\nAnnotations: expand_assertion_to \""DisjointClasses: (http://purl.obolibrary.org/obo/BFO_0000051 some ?X) (http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\""\n"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Chris Mungall"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000425""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000425"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000425"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000425""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Chris Mungall","","A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom.","ObjectProperty: RO??? +"duo+property+http://purl.obolibrary.org/obo/IAO_0000425","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000425"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000425""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""expand assertion to"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ObjectProperty: RO???\nLabel: spatially disjoint from\nAnnotations: expand_assertion_to \""DisjointClasses: (http://purl.obolibrary.org/obo/BFO_0000051 some ?X) (http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\""\n"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Chris Mungall"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""expand assertion to"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""expand assertion to"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""expand assertion to"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ObjectProperty: RO???\nLabel: spatially disjoint from\nAnnotations: expand_assertion_to \""DisjointClasses: (http://purl.obolibrary.org/obo/BFO_0000051 some ?X) (http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\""\n"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Chris Mungall"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000425""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Chris Mungall","","A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom.","ObjectProperty: RO??? Label: spatially disjoint from Annotations: expand_assertion_to ""DisjointClasses: (http://purl.obolibrary.org/obo/BFO_0000051 some ?X) (http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)"" ","","","","","expand assertion to","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom.","","","http://purl.obolibrary.org/obo/IAO_0000425","","false","expand assertion to","","DUO","IAO:0000425","IAO_0000425","","duo","expand assertion to","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000426","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000426"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000426""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""first order logic expression"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""first order logic expression"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""first order logic expression"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""first order logic expression"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000426""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000426"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000426"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000426""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","","false","","","PERSON:Alan Ruttenberg","","","","","","","","first order logic expression","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000426","","false","first order logic expression","","DUO","IAO:0000426","IAO_0000426","","duo","first order logic expression","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000427","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000427"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000427""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Use boolean value xsd:true to indicate that the property is an antisymmetric property"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/OMO_0001001"",""directParent"":""http://purl.obolibrary.org/obo/OMO_0001001"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""antisymmetric property"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part_of antisymmetric property xsd:true"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Use boolean value xsd:true to indicate that the property is an antisymmetric property"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""antisymmetric property"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/OMO_0001001"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""antisymmetric property"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""antisymmetric property"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part_of antisymmetric property xsd:true"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Use boolean value xsd:true to indicate that the property is an antisymmetric property"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000427""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OMO_0001001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""logical characteristic of object property""},""curie"":{""type"":[""literal""],""value"":""OMO:0001001""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000427"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000427"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000427""}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","Alan Ruttenberg","","Use boolean value xsd:true to indicate that the property is an antisymmetric property","part_of antisymmetric property xsd:true","","","","","antisymmetric property","","","","","0.0","","","","http://purl.obolibrary.org/obo/OMO_0001001","","http://purl.obolibrary.org/obo/OMO_0001001","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Use boolean value xsd:true to indicate that the property is an antisymmetric property","","http://purl.obolibrary.org/obo/OMO_0001001","http://purl.obolibrary.org/obo/IAO_0000427","","false","antisymmetric property","","DUO","IAO:0000427","IAO_0000427","","duo","antisymmetric property","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000581","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000581"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000581""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000051"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000051"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000582"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has time stamp"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/IAO_0000416"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has time stamp"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000581""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""IAO:0000581"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000581"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000581""},""http://purl.obolibrary.org/obo/IAO_0000416"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000416""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000582"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time stamped measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000582""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000123","relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken","","","","","","","http://purl.obolibrary.org/obo/IAO_0000416","","","","0.0","","","","http://purl.obolibrary.org/obo/BFO_0000051","","http://purl.obolibrary.org/obo/BFO_0000051","","","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#FunctionalProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken","","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/IAO_0000581","","false","has time stamp","http://purl.obolibrary.org/obo/IAO_0000582","DUO","IAO:0000581","IAO_0000581","","duo","has time stamp","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000583","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000583"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000583""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a time stamped measurement datum to the measurement datum that was measured"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000051"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000051"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a time stamped measurement datum to the measurement datum that was measured"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000582"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/IAO_0000109"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#complementOf"":""http://purl.obolibrary.org/obo/IAO_0000416""}]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a time stamped measurement datum to the measurement datum that was measured"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000583""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""IAO:0000583"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000583"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000583""},""http://purl.obolibrary.org/obo/IAO_0000416"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000416""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000582"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time stamped measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000582""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000123","relates a time stamped measurement datum to the measurement datum that was measured","","","","","","","","","","","0.0","","","","http://purl.obolibrary.org/obo/BFO_0000051","","http://purl.obolibrary.org/obo/BFO_0000051","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","relates a time stamped measurement datum to the measurement datum that was measured","","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/IAO_0000583","","false","has measurement datum","http://purl.obolibrary.org/obo/IAO_0000582","DUO","IAO:0000583","IAO_0000583","","duo","has measurement datum","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000589","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000589"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000589""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An alternative name for a class or property which is unique across the OBO Foundry."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBO foundry unique label"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An alternative name for a class or property which is unique across the OBO Foundry."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The intended usage of that property is as follow: OBO foundry unique labels are automatically generated based on regular expressions provided by each ontology, so that SO could specify unique label \u003d \u0027sequence \u0027 + [label], etc. , MA could specify \u0027mouse + [label]\u0027 etc. Upon importing terms, ontology developers can choose to use the \u0027OBO foundry unique label\u0027 for an imported term or not. The same applies to tools ."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Mungall"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBO Foundry \u003chttp://obofoundry.org/\u003e"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBO foundry unique label"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBO foundry unique label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBO foundry unique label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An alternative name for a class or property which is unique across the OBO Foundry."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The intended usage of that property is as follow: OBO foundry unique labels are automatically generated based on regular expressions provided by each ontology, so that SO could specify unique label \u003d \u0027sequence \u0027 + [label], etc. , MA could specify \u0027mouse + [label]\u0027 etc. Upon importing terms, ontology developers can choose to use the \u0027OBO foundry unique label\u0027 for an imported term or not. The same applies to tools ."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Mungall"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBO Foundry \u003chttp://obofoundry.org/\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000589""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000589"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000589"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000589""}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","The intended usage of that property is as follow: OBO foundry unique labels are automatically generated based on regular expressions provided by each ontology, so that SO could specify unique label = 'sequence ' + [label], etc. , MA could specify 'mouse + [label]' etc. Upon importing terms, ontology developers can choose to use the 'OBO foundry unique label' for an imported term or not. The same applies to tools .","PERSON:Alan Ruttenberg|PERSON:Bjoern Peters|PERSON:Chris Mungall|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000125","An alternative name for a class or property which is unique across the OBO Foundry.","","","","","","OBO foundry unique label","","","","","0.0","","GROUP:OBO Foundry ","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","An alternative name for a class or property which is unique across the OBO Foundry.","","","http://purl.obolibrary.org/obo/IAO_0000589","","false","OBO foundry unique label","","DUO","IAO:0000589","IAO_0000589","","duo","OBO foundry unique label","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000596","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000596"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000596""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \u0027has ID prefix\"" annotation property value concatenated with an integer in the id range (left padded with \""0\""s to make this many digits)"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID digit count"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \""http://purl.obolibrary.org/obo/RO_\""\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \""RO id policy\""\n \u0027has ID policy for\u0027: \""RO\"""",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \u0027has ID prefix\"" annotation property value concatenated with an integer in the id range (left padded with \""0\""s to make this many digits)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID digit count"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID digit count"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID digit count"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \""http://purl.obolibrary.org/obo/RO_\""\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \""RO id policy\""\n \u0027has ID policy for\u0027: \""RO\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \u0027has ID prefix\"" annotation property value concatenated with an integer in the id range (left padded with \""0\""s to make this many digits)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000596""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0000596"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000596"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000596""},""http://purl.obolibrary.org/obo/RO_\"""":{""url"":""http://purl.obolibrary.org/obo/RO_\"""",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:\""""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Person:Alan Ruttenberg","","Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the 'has ID prefix"" annotation property value concatenated with an integer in the id range (left padded with ""0""s to make this many digits)","Ontology: +"duo+property+http://purl.obolibrary.org/obo/IAO_0000426","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000426"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000426""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""first order logic expression"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""first order logic expression"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""first order logic expression"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""first order logic expression"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000426""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","","false","","","PERSON:Alan Ruttenberg","","","","","","","","first order logic expression","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000426","","false","first order logic expression","","DUO","IAO:0000426","IAO_0000426","","duo","first order logic expression","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000427","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000427"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000427""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Use boolean value xsd:true to indicate that the property is an antisymmetric property"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/OMO_0001001"",""directParent"":""http://purl.obolibrary.org/obo/OMO_0001001"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""antisymmetric property"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part_of antisymmetric property xsd:true"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Use boolean value xsd:true to indicate that the property is an antisymmetric property"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""antisymmetric property"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/OMO_0001001"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""antisymmetric property"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""antisymmetric property"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part_of antisymmetric property xsd:true"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Use boolean value xsd:true to indicate that the property is an antisymmetric property"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000427""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/OMO_0001001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""logical characteristic of object property""},""curie"":{""type"":[""literal""],""value"":""OMO:0001001""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","Alan Ruttenberg","","Use boolean value xsd:true to indicate that the property is an antisymmetric property","part_of antisymmetric property xsd:true","","","","","antisymmetric property","","","","","0.0","","","","http://purl.obolibrary.org/obo/OMO_0001001","","http://purl.obolibrary.org/obo/OMO_0001001","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Use boolean value xsd:true to indicate that the property is an antisymmetric property","","http://purl.obolibrary.org/obo/OMO_0001001","http://purl.obolibrary.org/obo/IAO_0000427","","false","antisymmetric property","","DUO","IAO:0000427","IAO_0000427","","duo","antisymmetric property","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000581","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000581"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000581""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000051"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000051"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000582"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has time stamp"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/IAO_0000416"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has time stamp"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000581""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000416"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000416""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000582"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time stamped measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000582""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000123","relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken","","","","","","","http://purl.obolibrary.org/obo/IAO_0000416","","","","0.0","","","","http://purl.obolibrary.org/obo/BFO_0000051","","http://purl.obolibrary.org/obo/BFO_0000051","","","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#FunctionalProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken","","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/IAO_0000581","","false","has time stamp","http://purl.obolibrary.org/obo/IAO_0000582","DUO","IAO:0000581","IAO_0000581","","duo","has time stamp","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000583","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000583"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000583""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a time stamped measurement datum to the measurement datum that was measured"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000051"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000051"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000123"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a time stamped measurement datum to the measurement datum that was measured"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/IAO_0000582"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement datum"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/IAO_0000109"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#complementOf"":""http://purl.obolibrary.org/obo/IAO_0000416""}]},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has measurement datum"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""relates a time stamped measurement datum to the measurement datum that was measured"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000583""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000109"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000109""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000123"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""metadata incomplete"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000123""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000416"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000416""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000582"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""time stamped measurement datum"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000582""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000123","relates a time stamped measurement datum to the measurement datum that was measured","","","","","","","","","","","0.0","","","","http://purl.obolibrary.org/obo/BFO_0000051","","http://purl.obolibrary.org/obo/BFO_0000051","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","relates a time stamped measurement datum to the measurement datum that was measured","","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/IAO_0000583","","false","has measurement datum","http://purl.obolibrary.org/obo/IAO_0000582","DUO","IAO:0000583","IAO_0000583","","duo","has measurement datum","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000589","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000589"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000589""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An alternative name for a class or property which is unique across the OBO Foundry."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBO foundry unique label"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An alternative name for a class or property which is unique across the OBO Foundry."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The intended usage of that property is as follow: OBO foundry unique labels are automatically generated based on regular expressions provided by each ontology, so that SO could specify unique label \u003d \u0027sequence \u0027 + [label], etc. , MA could specify \u0027mouse + [label]\u0027 etc. Upon importing terms, ontology developers can choose to use the \u0027OBO foundry unique label\u0027 for an imported term or not. The same applies to tools ."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Mungall"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBO Foundry \u003chttp://obofoundry.org/\u003e"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBO foundry unique label"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBO foundry unique label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""OBO foundry unique label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An alternative name for a class or property which is unique across the OBO Foundry."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The intended usage of that property is as follow: OBO foundry unique labels are automatically generated based on regular expressions provided by each ontology, so that SO could specify unique label \u003d \u0027sequence \u0027 + [label], etc. , MA could specify \u0027mouse + [label]\u0027 etc. Upon importing terms, ontology developers can choose to use the \u0027OBO foundry unique label\u0027 for an imported term or not. The same applies to tools ."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Bjoern Peters"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Chris Mungall"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Melanie Courtot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GROUP:OBO Foundry \u003chttp://obofoundry.org/\u003e"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000589""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","The intended usage of that property is as follow: OBO foundry unique labels are automatically generated based on regular expressions provided by each ontology, so that SO could specify unique label = 'sequence ' + [label], etc. , MA could specify 'mouse + [label]' etc. Upon importing terms, ontology developers can choose to use the 'OBO foundry unique label' for an imported term or not. The same applies to tools .","PERSON:Alan Ruttenberg|PERSON:Bjoern Peters|PERSON:Chris Mungall|PERSON:Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000125","An alternative name for a class or property which is unique across the OBO Foundry.","","","","","","OBO foundry unique label","","","","","0.0","","GROUP:OBO Foundry ","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","An alternative name for a class or property which is unique across the OBO Foundry.","","","http://purl.obolibrary.org/obo/IAO_0000589","","false","OBO foundry unique label","","DUO","IAO:0000589","IAO_0000589","","duo","OBO foundry unique label","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000596","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000596"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000596""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \u0027has ID prefix\"" annotation property value concatenated with an integer in the id range (left padded with \""0\""s to make this many digits)"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID digit count"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \""http://purl.obolibrary.org/obo/RO_\""\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \""RO id policy\""\n \u0027has ID policy for\u0027: \""RO\"""",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \u0027has ID prefix\"" annotation property value concatenated with an integer in the id range (left padded with \""0\""s to make this many digits)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID digit count"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID digit count"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID digit count"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \""http://purl.obolibrary.org/obo/RO_\""\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \""RO id policy\""\n \u0027has ID policy for\u0027: \""RO\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \u0027has ID prefix\"" annotation property value concatenated with an integer in the id range (left padded with \""0\""s to make this many digits)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000596""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_\"""":{""url"":""http://purl.obolibrary.org/obo/RO_\"""",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:\""""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Person:Alan Ruttenberg","","Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the 'has ID prefix"" annotation property value concatenated with an integer in the id range (left padded with ""0""s to make this many digits)","Ontology: Annotations: 'has ID prefix': ""http://purl.obolibrary.org/obo/RO_"" 'has ID digit count' : 7, rdfs:label ""RO id policy"" 'has ID policy for': ""RO""","","","","","has ID digit count","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the 'has ID prefix"" annotation property value concatenated with an integer in the id range (left padded with ""0""s to make this many digits)","","","http://purl.obolibrary.org/obo/IAO_0000596","","false","has ID digit count","","DUO","IAO:0000596","IAO_0000596","","duo","has ID digit count","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000597","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000597"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000597""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID range allocated"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Datatype: idrange:1\nAnnotations: \u0027has ID range allocated to\u0027: \""Chris Mungall\""\nEquivalentTo: xsd:integer[\u003e 2151 , \u003c\u003d 2300]\n"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID range allocated to"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID range allocated to"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID range allocated"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Datatype: idrange:1\nAnnotations: \u0027has ID range allocated to\u0027: \""Chris Mungall\""\nEquivalentTo: xsd:integer[\u003e 2151 , \u003c\u003d 2300]\n"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000597""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000597"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000597"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000597""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Person:Alan Ruttenberg","","Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms","Datatype: idrange:1 +"duo+property+http://purl.obolibrary.org/obo/IAO_0000597","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000597"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000597""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID range allocated"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Datatype: idrange:1\nAnnotations: \u0027has ID range allocated to\u0027: \""Chris Mungall\""\nEquivalentTo: xsd:integer[\u003e 2151 , \u003c\u003d 2300]\n"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID range allocated to"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID range allocated to"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID range allocated"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Datatype: idrange:1\nAnnotations: \u0027has ID range allocated to\u0027: \""Chris Mungall\""\nEquivalentTo: xsd:integer[\u003e 2151 , \u003c\u003d 2300]\n"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000597""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Person:Alan Ruttenberg","","Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms","Datatype: idrange:1 Annotations: 'has ID range allocated to': ""Chris Mungall"" EquivalentTo: xsd:integer[> 2151 , <= 2300] ","","","","","has ID range allocated","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms","","","http://purl.obolibrary.org/obo/IAO_0000597","","false","has ID range allocated to","","DUO","IAO:0000597","IAO_0000597","","duo","has ID range allocated to","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000598","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000598"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000598""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relating an ontology used to record id policy to the ontology namespace whose policy it manages"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID policy for"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \""http://purl.obolibrary.org/obo/RO_\""\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \""RO id policy\""\n \u0027has ID policy for\u0027: \""RO\"""",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relating an ontology used to record id policy to the ontology namespace whose policy it manages"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID policy for"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID policy for"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID policy for"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \""http://purl.obolibrary.org/obo/RO_\""\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \""RO id policy\""\n \u0027has ID policy for\u0027: \""RO\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relating an ontology used to record id policy to the ontology namespace whose policy it manages"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000598""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_\"""":{""url"":""http://purl.obolibrary.org/obo/RO_\"""",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:\""""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000598"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000598"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000598""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Person:Alan Ruttenberg","","Relating an ontology used to record id policy to the ontology namespace whose policy it manages","Ontology: +"duo+property+http://purl.obolibrary.org/obo/IAO_0000598","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000598"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000598""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relating an ontology used to record id policy to the ontology namespace whose policy it manages"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID policy for"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \""http://purl.obolibrary.org/obo/RO_\""\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \""RO id policy\""\n \u0027has ID policy for\u0027: \""RO\"""",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relating an ontology used to record id policy to the ontology namespace whose policy it manages"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID policy for"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID policy for"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID policy for"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \""http://purl.obolibrary.org/obo/RO_\""\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \""RO id policy\""\n \u0027has ID policy for\u0027: \""RO\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relating an ontology used to record id policy to the ontology namespace whose policy it manages"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000598""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_\"""":{""url"":""http://purl.obolibrary.org/obo/RO_\"""",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:\""""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Person:Alan Ruttenberg","","Relating an ontology used to record id policy to the ontology namespace whose policy it manages","Ontology: Annotations: 'has ID prefix': ""http://purl.obolibrary.org/obo/RO_"" 'has ID digit count' : 7, rdfs:label ""RO id policy"" 'has ID policy for': ""RO""","","","","","has ID policy for","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Relating an ontology used to record id policy to the ontology namespace whose policy it manages","","","http://purl.obolibrary.org/obo/IAO_0000598","","false","has ID policy for","","DUO","IAO:0000598","IAO_0000598","","duo","has ID policy for","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000599","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000599"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000599""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \""0\""s to make this many digits) to construct an ID for a term being created."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID prefix"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \""http://purl.obolibrary.org/obo/RO_\""\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \""RO id policy\""\n \u0027has ID policy for\u0027: \""RO\"""",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \""0\""s to make this many digits) to construct an ID for a term being created."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID prefix"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID prefix"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID prefix"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \""http://purl.obolibrary.org/obo/RO_\""\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \""RO id policy\""\n \u0027has ID policy for\u0027: \""RO\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \""0\""s to make this many digits) to construct an ID for a term being created."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000599""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_\"""":{""url"":""http://purl.obolibrary.org/obo/RO_\"""",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:\""""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000599"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000599"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000599""},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Person:Alan Ruttenberg","","Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with ""0""s to make this many digits) to construct an ID for a term being created.","Ontology: +"duo+property+http://purl.obolibrary.org/obo/IAO_0000599","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000599"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000599""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \""0\""s to make this many digits) to construct an ID for a term being created."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID prefix"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \""http://purl.obolibrary.org/obo/RO_\""\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \""RO id policy\""\n \u0027has ID policy for\u0027: \""RO\"""",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \""0\""s to make this many digits) to construct an ID for a term being created."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID prefix"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID prefix"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ID prefix"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \""http://purl.obolibrary.org/obo/RO_\""\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \""RO id policy\""\n \u0027has ID policy for\u0027: \""RO\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \""0\""s to make this many digits) to construct an ID for a term being created."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000599""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_\"""":{""url"":""http://purl.obolibrary.org/obo/RO_\"""",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:\""""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Person:Alan Ruttenberg","","Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with ""0""s to make this many digits) to construct an ID for a term being created.","Ontology: Annotations: 'has ID prefix': ""http://purl.obolibrary.org/obo/RO_"" 'has ID digit count' : 7, rdfs:label ""RO id policy"" 'has ID policy for': ""RO""","","","","","has ID prefix","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with ""0""s to make this many digits) to construct an ID for a term being created.","","","http://purl.obolibrary.org/obo/IAO_0000599","","false","has ID prefix","","DUO","IAO:0000599","IAO_0000599","","duo","has ID prefix","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000600","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000600"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Barry Smith"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Primitive terms in a highest-level ontology such as BFO are terms which are so basic to our understanding of reality that there is no way of defining them in a non-circular fashion. For these, therefore, we can provide only elucidations, supplemented by examples and by axioms"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Barry Smith"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Primitive terms in a highest-level ontology such as BFO are terms which are so basic to our understanding of reality that there is no way of defining them in a non-circular fashion. For these, therefore, we can provide only elucidations, supplemented by examples and by axioms"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000600""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000600"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000600"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000600""}}}","false","false","false","","0.0","property|annotationProperty|entity","","","","false","","","person:Alan Ruttenberg","","","","","","","","elucidation","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","Person:Barry Smith","","","","","","Primitive terms in a highest-level ontology such as BFO are terms which are so basic to our understanding of reality that there is no way of defining them in a non-circular fashion. For these, therefore, we can provide only elucidations, supplemented by examples and by axioms","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000600","","false","elucidation","","DUO","IAO:0000600","IAO_0000600","","duo","elucidation","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000601","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000601"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An axiom associated with a term expressed using natural language"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An axiom associated with a term expressed using natural language"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000601""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000601"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000601"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000601""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","","false","","","Person:Alan Ruttenberg","","","","","","","","has associated axiom(nl)","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","Person:Alan Ruttenberg","","","","","","An axiom associated with a term expressed using natural language","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000601","","false","has associated axiom(nl)","","DUO","IAO:0000601","IAO_0000601","","duo","has associated axiom(nl)","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000602","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000602"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An axiom expressed in first order logic using CLIF syntax"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An axiom expressed in first order logic using CLIF syntax"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000602""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000602"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000602"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000602""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","","false","","","Person:Alan Ruttenberg","","","","","","","","has associated axiom(fol)","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","Person:Alan Ruttenberg","","","","","","An axiom expressed in first order logic using CLIF syntax","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000602","","false","has associated axiom(fol)","","DUO","IAO:0000602","IAO_0000602","","duo","has associated axiom(fol)","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000603","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000603"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000603""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \""IAO_0020000-IAO_0020999\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Add as annotation triples in the granting ontology"",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is allocated id range"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \""IAO_0020000-IAO_0020999\"""",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Add as annotation triples in the granting ontology"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is allocated id range"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is allocated id range"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is allocated id range"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \""IAO_0020000-IAO_0020999\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000603""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000603"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000603"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000603""}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","PERSON:Alan Ruttenberg","","Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. ""IAO_0020000-IAO_0020999""","","","","","","is allocated id range","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","Add as annotation triples in the granting ontology","http://purl.obolibrary.org/obo/duo.owl","Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. ""IAO_0020000-IAO_0020999""|Add as annotation triples in the granting ontology","","","http://purl.obolibrary.org/obo/IAO_0000603","","false","is allocated id range","","DUO","IAO:0000603","IAO_0000603","","duo","is allocated id range","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000604","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000604"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000604""},""definition"":{""type"":[""literal""],""value"":""relates a class of CRID to the date after which further instances should not be made, according to the central authority""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""retired from use as of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""relates a class of CRID to the date after which further instances should not be made, according to the central authority""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""In OWL 2 add AnnotationPropertyRange xsd:dateTimeStamp"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""retired from use as of""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""retired from use as of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""retired from use as of"",""lang"":""en""},{""type"":[""literal""],""value"":""relates a class of CRID to the date after which further instances should not be made, according to the central authority""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""In OWL 2 add AnnotationPropertyRange xsd:dateTimeStamp"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000604""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000604"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000604"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000604""}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","In OWL 2 add AnnotationPropertyRange xsd:dateTimeStamp","Alan Ruttenberg","","relates a class of CRID to the date after which further instances should not be made, according to the central authority","","","","","","retired from use as of","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","relates a class of CRID to the date after which further instances should not be made, according to the central authority","","","http://purl.obolibrary.org/obo/IAO_0000604","","false","retired from use as of","","DUO","IAO:0000604","IAO_0000604","","duo","retired from use as of","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0000700","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000700"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000700""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ontology root term"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Nicolas Matentzoglu"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ontology root term"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ontology root term"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ontology root term"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Nicolas Matentzoglu"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000700""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0000700"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000700"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000700""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Nicolas Matentzoglu","","Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root.","","","","","","has ontology root term","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root.","","","http://purl.obolibrary.org/obo/IAO_0000700","","false","has ontology root term","","DUO","IAO:0000700","IAO_0000700","","duo","has ontology root term","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0006011","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0006011"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0006011""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Edges asserting this should be annotated with to record evidence supporting the assertion and its provenance."",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""may be identical to"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""David Osumi-Sutherland"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""#40"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""VFB"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Edges asserting this should be annotated with to record evidence supporting the assertion and its provenance."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""may be identical to"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""may be identical to"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""may be identical to"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""David Osumi-Sutherland"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""#40"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""VFB"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0006011""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0006011"":{""url"":""http://purl.obolibrary.org/obo/IAO_0006011"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0006011""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","David Osumi-Sutherland","","A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged.","","#40","VFB","","","may be identical to","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","Edges asserting this should be annotated with to record evidence supporting the assertion and its provenance.","http://purl.obolibrary.org/obo/duo.owl","A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged.|Edges asserting this should be annotated with to record evidence supporting the assertion and its provenance.","","","http://purl.obolibrary.org/obo/IAO_0006011","","false","may be identical to","","DUO","IAO:0006011","IAO_0006011","","duo","may be identical to","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0006012","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0006012"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0006012""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scheduled for obsoletion on or after"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Chris Mungall, Jie Zheng"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/geneontology/go-ontology/issues/15532"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/ontology-metadata/issues/32"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GO ontology"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scheduled for obsoletion on or after"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#dateTime"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scheduled for obsoletion on or after"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scheduled for obsoletion on or after"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Chris Mungall, Jie Zheng"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/geneontology/go-ontology/issues/15532"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/ontology-metadata/issues/32"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GO ontology"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0006012""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0006012"":{""url"":""http://purl.obolibrary.org/obo/IAO_0006012"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0006012""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Chris Mungall, Jie Zheng","","Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date.","","https://github.com/geneontology/go-ontology/issues/15532|https://github.com/information-artifact-ontology/ontology-metadata/issues/32","GO ontology","","","scheduled for obsoletion on or after","http://www.w3.org/2001/XMLSchema#dateTime","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date.","","","http://purl.obolibrary.org/obo/IAO_0006012","","false","scheduled for obsoletion on or after","","DUO","IAO:0006012","IAO_0006012","","duo","scheduled for obsoletion on or after","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0010000","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0010000"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom id"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A URI that is intended to be unique label for an axiom used for tracking change to the ontology. For an axiom expressed in different languages, each expression is given the same URI"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom id"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A URI that is intended to be unique label for an axiom used for tracking change to the ontology. For an axiom expressed in different languages, each expression is given the same URI"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0010000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""IAO:0010000"":{""url"":""http://purl.obolibrary.org/obo/IAO_0010000"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0010000""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","","false","","","Person:Alan Ruttenberg","","","","","","","","has axiom id","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","Person:Alan Ruttenberg","","","","","","A URI that is intended to be unique label for an axiom used for tracking change to the ontology. For an axiom expressed in different languages, each expression is given the same URI","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0010000","","false","has axiom label","","DUO","IAO:0010000","IAO_0010000","","duo","has axiom label","","" -"duo+property+http://purl.obolibrary.org/obo/IAO_0100001","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0100001"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0100001""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Use on obsolete terms, relating the term to another term that can be used as a substitute"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Add as annotation triples in the granting ontology"",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term replaced by"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Use on obsolete terms, relating the term to another term that can be used as a substitute"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Add as annotation triples in the granting ontology"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term replaced by"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term replaced by"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term replaced by"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Use on obsolete terms, relating the term to another term that can be used as a substitute"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0100001""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""IAO:0100001"":{""url"":""http://purl.obolibrary.org/obo/IAO_0100001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0100001""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000125","Use on obsolete terms, relating the term to another term that can be used as a substitute","","","","","","term replaced by","","","","","0.0","","Person:Alan Ruttenberg","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","Add as annotation triples in the granting ontology","http://purl.obolibrary.org/obo/duo.owl","Use on obsolete terms, relating the term to another term that can be used as a substitute|Add as annotation triples in the granting ontology","","","http://purl.obolibrary.org/obo/IAO_0100001","","false","term replaced by","","DUO","IAO:0100001","IAO_0100001","","duo","term replaced by","","" -"duo+property+http://purl.obolibrary.org/obo/OBI_0000293","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/OBI_0000293"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The inverse property of is_specified_input_of"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000057"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000057"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":[{""type"":[""literal""],""value"":""has_specified_input""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""see is_input_of example_of_usage"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The inverse property of is_specified_input_of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how \u0027has participant\u0027 works.""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Bjoern Peters""},{""type"":[""literal""],""value"":""PERSON: Larry Hunter""},{""type"":[""literal""],""value"":""PERSON: Melanie Coutot""}],""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/obi.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/OBI_0000011"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#equivalentProperty"":{""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/OBI_0000295"",""isObsolete"":false},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""has_specified_input""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""see is_input_of example_of_usage"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The inverse property of is_specified_input_of"",""lang"":""en""},{""type"":[""literal""],""value"":""8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how \u0027has participant\u0027 works.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Bjoern Peters""},{""type"":[""literal""],""value"":""PERSON: Larry Hunter""},{""type"":[""literal""],""value"":""PERSON: Melanie Coutot""},true],""shortForm"":{""type"":[""literal""],""value"":""OBI_0000293""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_input_of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000295""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""OBI:0000293"":{""url"":""http://purl.obolibrary.org/obo/OBI_0000293"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OBI:0000293""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how 'has participant' works.","PERSON: Alan Ruttenberg|PERSON: Bjoern Peters|PERSON: Larry Hunter|PERSON: Melanie Coutot","http://purl.obolibrary.org/obo/IAO_0000122","The inverse property of is_specified_input_of","see is_input_of example_of_usage","","","","","has_specified_input|has_specified_input","","","","","0.0","","","","http://purl.obolibrary.org/obo/RO_0000057","","http://purl.obolibrary.org/obo/RO_0000057","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","The inverse property of is_specified_input_of","http://purl.obolibrary.org/obo/obi.owl","http://purl.obolibrary.org/obo/RO_0000057","http://purl.obolibrary.org/obo/OBI_0000293","","false","has_specified_input","http://purl.obolibrary.org/obo/OBI_0000011","DUO","OBI:0000293","OBI_0000293","","duo","has_specified_input","","" -"duo+property+http://purl.obolibrary.org/obo/OBI_0000295","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/OBI_0000295"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0000295""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_input_of"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_input_of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""OBI_0000295""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""OBI:0000295"":{""url"":""http://purl.obolibrary.org/obo/OBI_0000295"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OBI:0000295""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","","false","","","","","","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/OBI_0000295","","false","is_specified_input_of","","DUO","OBI:0000295","OBI_0000295","","duo","is_specified_input_of","","" -"duo+property+http://purl.obolibrary.org/obo/OBI_0000299","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/OBI_0000299"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The inverse property of is_specified_output_of"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000057"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000057"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":[{""type"":[""literal""],""value"":""has_specified_output""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The inverse property of is_specified_output_of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Bjoern Peters""},{""type"":[""literal""],""value"":""PERSON: Larry Hunter""},{""type"":[""literal""],""value"":""PERSON: Melanie Courtot""}],""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/obi.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/OBI_0000011"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#equivalentProperty"":{""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/OBI_0000312"",""isObsolete"":false},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""has_specified_output""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The inverse property of is_specified_output_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Bjoern Peters""},{""type"":[""literal""],""value"":""PERSON: Larry Hunter""},{""type"":[""literal""],""value"":""PERSON: Melanie Courtot""},true],""shortForm"":{""type"":[""literal""],""value"":""OBI_0000299""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000312"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000312""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""OBI:0000299"":{""url"":""http://purl.obolibrary.org/obo/OBI_0000299"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OBI:0000299""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","PERSON: Alan Ruttenberg|PERSON: Bjoern Peters|PERSON: Larry Hunter|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","The inverse property of is_specified_output_of","","","","","","has_specified_output|has_specified_output","","","","","0.0","","","","http://purl.obolibrary.org/obo/RO_0000057","","http://purl.obolibrary.org/obo/RO_0000057","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","The inverse property of is_specified_output_of","http://purl.obolibrary.org/obo/obi.owl","http://purl.obolibrary.org/obo/RO_0000057","http://purl.obolibrary.org/obo/OBI_0000299","","false","has_specified_output","http://purl.obolibrary.org/obo/OBI_0000011","DUO","OBI:0000299","OBI_0000299","","duo","has_specified_output","","" -"duo+property+http://purl.obolibrary.org/obo/OBI_0000312","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/OBI_0000312"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0000312""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000056"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000056"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":[{""type"":[""literal""],""value"":""is_specified_output_of""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON:Bjoern Peters""}],""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/obi.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/OBI_0000011"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000056"",""http://www.w3.org/2002/07/owl#equivalentProperty"":{""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/OBI_0000299"",""isObsolete"":false},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""is_specified_output_of""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON:Bjoern Peters""},true],""shortForm"":{""type"":[""literal""],""value"":""OBI_0000312""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""OBI:0000312"":{""url"":""http://purl.obolibrary.org/obo/OBI_0000312"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OBI:0000312""},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000056"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000056""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","Alan Ruttenberg|PERSON:Bjoern Peters","http://purl.obolibrary.org/obo/IAO_0000122","A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.","","","","","","is_specified_output_of|is_specified_output_of","http://purl.obolibrary.org/obo/OBI_0000011","","","","0.0","","","","http://purl.obolibrary.org/obo/RO_0000056","","http://purl.obolibrary.org/obo/RO_0000056","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.","http://purl.obolibrary.org/obo/obi.owl","http://purl.obolibrary.org/obo/RO_0000056","http://purl.obolibrary.org/obo/OBI_0000312","","false","is_specified_output_of","","DUO","OBI:0000312","OBI_0000312","","duo","is_specified_output_of","","" -"duo+property+http://purl.obolibrary.org/obo/OMO_0001001","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/OMO_0001001"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OMO:0001001""},""definition"":{""type"":[""literal""],""value"":""This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""OBO Operations call""},""http://www.geneontology.org/formats/oboInOwl#created_by"":""http://orcid.org/0000-0001-5208-3432"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""logical characteristic of object property""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""logical characteristic of object property""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.""},{""type"":[""literal""],""value"":""OBO Operations call""},true],""shortForm"":{""type"":[""literal""],""value"":""OMO_0001001""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""OMO:0001001"":{""url"":""http://purl.obolibrary.org/obo/OMO_0001001"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OMO:0001001""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#created_by"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""created_by""},""curie"":{""type"":[""literal""],""value"":""created:by""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","","","This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.","","","","","","","","","","","1.0","","OBO Operations call","http://orcid.org/0000-0001-5208-3432","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","true","false","true","","http://purl.obolibrary.org/obo/duo.owl","This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.","","","http://purl.obolibrary.org/obo/OMO_0001001","","false","logical characteristic of object property","","DUO","OMO:0001001","OMO_0001001","","duo","logical characteristic of object property","","" -"duo+property+http://purl.obolibrary.org/obo/OMO_0002000","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/OMO_0002000"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OMO:0002000""},""definition"":{""type"":[""literal""],""value"":""Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""value"":""\u0027part disjoint with\u0027 \u0027defined by construct\u0027 \""\""\""\n PREFIX owl: \u003chttp://www.w3.org/2002/07/owl#\u003e\n PREFIX : \u003chttp://example.org/\n CONSTRUCT {\n [\n a owl:Restriction ;\n owl:onProperty :part_of ;\n owl:someValuesFrom ?a ;\n owl:disjointWith [\n a owl:Restriction ;\n owl:onProperty :part_of ;\n owl:someValuesFrom ?b\n ]\n ]\n }\n WHERE {\n ?a :part_disjoint_with ?b .\n }""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/ontodev/robot/issues/963"",""http://purl.org/dc/elements/1.1/contributor"":[""https://orcid.org/0000-0002-7356-1779"",""https://orcid.org/0000-0002-8688-6599""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""defined by construct""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""defined by construct""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""\u0027part disjoint with\u0027 \u0027defined by construct\u0027 \""\""\""\n PREFIX owl: \u003chttp://www.w3.org/2002/07/owl#\u003e\n PREFIX : \u003chttp://example.org/\n CONSTRUCT {\n [\n a owl:Restriction ;\n owl:onProperty :part_of ;\n owl:someValuesFrom ?a ;\n owl:disjointWith [\n a owl:Restriction ;\n owl:onProperty :part_of ;\n owl:someValuesFrom ?b\n ]\n ]\n }\n WHERE {\n ?a :part_disjoint_with ?b .\n }""},{""type"":[""literal""],""value"":""Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.""},true],""shortForm"":{""type"":[""literal""],""value"":""OMO_0002000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""https://orcid.org/0000-0002-8688-6599"":{""url"":""https://orcid.org/0000-0002-8688-6599"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-8688-6599""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0002-7356-1779"":{""url"":""https://orcid.org/0000-0002-7356-1779"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-7356-1779""},""OMO:0002000"":{""url"":""http://purl.obolibrary.org/obo/OMO_0002000"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OMO:0002000""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/elements/1.1/contributor"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""contributor""},""curie"":{""type"":[""literal""],""value"":""contributor""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","","","Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.","'part disjoint with' 'defined by construct' """""" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000600","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000600"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Barry Smith"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Primitive terms in a highest-level ontology such as BFO are terms which are so basic to our understanding of reality that there is no way of defining them in a non-circular fashion. For these, therefore, we can provide only elucidations, supplemented by examples and by axioms"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Barry Smith"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Primitive terms in a highest-level ontology such as BFO are terms which are so basic to our understanding of reality that there is no way of defining them in a non-circular fashion. For these, therefore, we can provide only elucidations, supplemented by examples and by axioms"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000600""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","","false","","","person:Alan Ruttenberg","","","","","","","","elucidation","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","Person:Barry Smith","","","","","","Primitive terms in a highest-level ontology such as BFO are terms which are so basic to our understanding of reality that there is no way of defining them in a non-circular fashion. For these, therefore, we can provide only elucidations, supplemented by examples and by axioms","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000600","","false","elucidation","","DUO","IAO:0000600","IAO_0000600","","duo","elucidation","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000601","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000601"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000601""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An axiom associated with a term expressed using natural language"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(nl)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An axiom associated with a term expressed using natural language"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000601""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","","false","","","Person:Alan Ruttenberg","","","","","","","","has associated axiom(nl)","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","Person:Alan Ruttenberg","","","","","","An axiom associated with a term expressed using natural language","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000601","","false","has associated axiom(nl)","","DUO","IAO:0000601","IAO_0000601","","duo","has associated axiom(nl)","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000602","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000602"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000602""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An axiom expressed in first order logic using CLIF syntax"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has associated axiom(fol)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An axiom expressed in first order logic using CLIF syntax"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000602""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","","false","","","Person:Alan Ruttenberg","","","","","","","","has associated axiom(fol)","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","Person:Alan Ruttenberg","","","","","","An axiom expressed in first order logic using CLIF syntax","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000602","","false","has associated axiom(fol)","","DUO","IAO:0000602","IAO_0000602","","duo","has associated axiom(fol)","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000603","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000603"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000603""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \""IAO_0020000-IAO_0020999\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Add as annotation triples in the granting ontology"",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is allocated id range"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \""IAO_0020000-IAO_0020999\"""",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Add as annotation triples in the granting ontology"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is allocated id range"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is allocated id range"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is allocated id range"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \""IAO_0020000-IAO_0020999\"""",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000603""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","PERSON:Alan Ruttenberg","","Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. ""IAO_0020000-IAO_0020999""","","","","","","is allocated id range","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","Add as annotation triples in the granting ontology","http://purl.obolibrary.org/obo/duo.owl","Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. ""IAO_0020000-IAO_0020999""|Add as annotation triples in the granting ontology","","","http://purl.obolibrary.org/obo/IAO_0000603","","false","is allocated id range","","DUO","IAO:0000603","IAO_0000603","","duo","is allocated id range","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000604","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000604"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000604""},""definition"":{""type"":[""literal""],""value"":""relates a class of CRID to the date after which further instances should not be made, according to the central authority""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""retired from use as of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""relates a class of CRID to the date after which further instances should not be made, according to the central authority""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""In OWL 2 add AnnotationPropertyRange xsd:dateTimeStamp"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""retired from use as of""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""retired from use as of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""retired from use as of"",""lang"":""en""},{""type"":[""literal""],""value"":""relates a class of CRID to the date after which further instances should not be made, according to the central authority""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""In OWL 2 add AnnotationPropertyRange xsd:dateTimeStamp"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000604""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","In OWL 2 add AnnotationPropertyRange xsd:dateTimeStamp","Alan Ruttenberg","","relates a class of CRID to the date after which further instances should not be made, according to the central authority","","","","","","retired from use as of","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","relates a class of CRID to the date after which further instances should not be made, according to the central authority","","","http://purl.obolibrary.org/obo/IAO_0000604","","false","retired from use as of","","DUO","IAO:0000604","IAO_0000604","","duo","retired from use as of","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0000700","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000700"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000700""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ontology root term"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Nicolas Matentzoglu"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ontology root term"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ontology root term"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has ontology root term"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Nicolas Matentzoglu"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0000700""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Nicolas Matentzoglu","","Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root.","","","","","","has ontology root term","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root.","","","http://purl.obolibrary.org/obo/IAO_0000700","","false","has ontology root term","","DUO","IAO:0000700","IAO_0000700","","duo","has ontology root term","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0006011","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0006011"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0006011""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Edges asserting this should be annotated with to record evidence supporting the assertion and its provenance."",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""may be identical to"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""David Osumi-Sutherland"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""#40"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""VFB"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Edges asserting this should be annotated with to record evidence supporting the assertion and its provenance."",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""may be identical to"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""may be identical to"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""may be identical to"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""David Osumi-Sutherland"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""#40"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""VFB"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0006011""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","David Osumi-Sutherland","","A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged.","","#40","VFB","","","may be identical to","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","Edges asserting this should be annotated with to record evidence supporting the assertion and its provenance.","http://purl.obolibrary.org/obo/duo.owl","A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged.|Edges asserting this should be annotated with to record evidence supporting the assertion and its provenance.","","","http://purl.obolibrary.org/obo/IAO_0006011","","false","may be identical to","","DUO","IAO:0006011","IAO_0006011","","duo","may be identical to","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0006012","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0006012"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0006012""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scheduled for obsoletion on or after"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Chris Mungall, Jie Zheng"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000233"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/geneontology/go-ontology/issues/15532"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/ontology-metadata/issues/32"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000234"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GO ontology"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scheduled for obsoletion on or after"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#dateTime"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scheduled for obsoletion on or after"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""scheduled for obsoletion on or after"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Chris Mungall, Jie Zheng"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/geneontology/go-ontology/issues/15532"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""https://github.com/information-artifact-ontology/ontology-metadata/issues/32"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""GO ontology"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0006012""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000234"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ontology term requester"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000234""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","Chris Mungall, Jie Zheng","","Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date.","","https://github.com/geneontology/go-ontology/issues/15532|https://github.com/information-artifact-ontology/ontology-metadata/issues/32","GO ontology","","","scheduled for obsoletion on or after","http://www.w3.org/2001/XMLSchema#dateTime","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date.","","","http://purl.obolibrary.org/obo/IAO_0006012","","false","scheduled for obsoletion on or after","","DUO","IAO:0006012","IAO_0006012","","duo","scheduled for obsoletion on or after","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0010000","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0010000"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0010000""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom id"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000600"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A URI that is intended to be unique label for an axiom used for tracking change to the ontology. For an axiom expressed in different languages, each expression is given the same URI"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/iao.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom label"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has axiom id"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A URI that is intended to be unique label for an axiom used for tracking change to the ontology. For an axiom expressed in different languages, each expression is given the same URI"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0010000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""isDefinedBy""},""curie"":{""type"":[""literal""],""value"":""isDefinedBy""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000600"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""elucidation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000600""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","","false","","","Person:Alan Ruttenberg","","","","","","","","has axiom id","","","","http://purl.obolibrary.org/obo/iao.owl","0.0","","Person:Alan Ruttenberg","","","","","","A URI that is intended to be unique label for an axiom used for tracking change to the ontology. For an axiom expressed in different languages, each expression is given the same URI","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/IAO_0010000","","false","has axiom label","","DUO","IAO:0010000","IAO_0010000","","duo","has axiom label","","" +"duo+property+http://purl.obolibrary.org/obo/IAO_0100001","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0100001"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0100001""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Use on obsolete terms, relating the term to another term that can be used as a substitute"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Add as annotation triples in the granting ontology"",""lang"":""en""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term replaced by"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Use on obsolete terms, relating the term to another term that can be used as a substitute"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Add as annotation triples in the granting ontology"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term replaced by"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term replaced by"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term replaced by"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Use on obsolete terms, relating the term to another term that can be used as a substitute"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Person:Alan Ruttenberg"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""IAO_0100001""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","Person:Alan Ruttenberg","http://purl.obolibrary.org/obo/IAO_0000125","Use on obsolete terms, relating the term to another term that can be used as a substitute","","","","","","term replaced by","","","","","0.0","","Person:Alan Ruttenberg","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","Add as annotation triples in the granting ontology","http://purl.obolibrary.org/obo/duo.owl","Use on obsolete terms, relating the term to another term that can be used as a substitute|Add as annotation triples in the granting ontology","","","http://purl.obolibrary.org/obo/IAO_0100001","","false","term replaced by","","DUO","IAO:0100001","IAO_0100001","","duo","term replaced by","","" +"duo+property+http://purl.obolibrary.org/obo/OBI_0000293","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/OBI_0000293"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0000293""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The inverse property of is_specified_input_of"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000057"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000057"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":[{""type"":[""literal""],""value"":""has_specified_input""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""see is_input_of example_of_usage"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The inverse property of is_specified_input_of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how \u0027has participant\u0027 works.""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Bjoern Peters""},{""type"":[""literal""],""value"":""PERSON: Larry Hunter""},{""type"":[""literal""],""value"":""PERSON: Melanie Coutot""}],""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/obi.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/OBI_0000011"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#equivalentProperty"":{""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/OBI_0000295"",""isObsolete"":false},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""has_specified_input""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_input"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""see is_input_of example_of_usage"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The inverse property of is_specified_input_of"",""lang"":""en""},{""type"":[""literal""],""value"":""8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how \u0027has participant\u0027 works.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Bjoern Peters""},{""type"":[""literal""],""value"":""PERSON: Larry Hunter""},{""type"":[""literal""],""value"":""PERSON: Melanie Coutot""},true],""shortForm"":{""type"":[""literal""],""value"":""OBI_0000293""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000295"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_input_of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000295""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how 'has participant' works.","PERSON: Alan Ruttenberg|PERSON: Bjoern Peters|PERSON: Larry Hunter|PERSON: Melanie Coutot","http://purl.obolibrary.org/obo/IAO_0000122","The inverse property of is_specified_input_of","see is_input_of example_of_usage","","","","","has_specified_input|has_specified_input","","","","","0.0","","","","http://purl.obolibrary.org/obo/RO_0000057","","http://purl.obolibrary.org/obo/RO_0000057","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","The inverse property of is_specified_input_of","http://purl.obolibrary.org/obo/obi.owl","http://purl.obolibrary.org/obo/RO_0000057","http://purl.obolibrary.org/obo/OBI_0000293","","false","has_specified_input","http://purl.obolibrary.org/obo/OBI_0000011","DUO","OBI:0000293","OBI_0000293","","duo","has_specified_input","","" +"duo+property+http://purl.obolibrary.org/obo/OBI_0000295","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/OBI_0000295"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0000295""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_input_of"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_input_of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""OBI_0000295""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","","false","","","","","","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/OBI_0000295","","false","is_specified_input_of","","DUO","OBI:0000295","OBI_0000295","","duo","is_specified_input_of","","" +"duo+property+http://purl.obolibrary.org/obo/OBI_0000299","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/OBI_0000299"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The inverse property of is_specified_output_of"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000057"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000057"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":[{""type"":[""literal""],""value"":""has_specified_output""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The inverse property of is_specified_output_of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Bjoern Peters""},{""type"":[""literal""],""value"":""PERSON: Larry Hunter""},{""type"":[""literal""],""value"":""PERSON: Melanie Courtot""}],""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/obi.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/OBI_0000011"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000057"",""http://www.w3.org/2002/07/owl#equivalentProperty"":{""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/OBI_0000312"",""isObsolete"":false},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""has_specified_output""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""The inverse property of is_specified_output_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""PERSON: Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON: Bjoern Peters""},{""type"":[""literal""],""value"":""PERSON: Larry Hunter""},{""type"":[""literal""],""value"":""PERSON: Melanie Courtot""},true],""shortForm"":{""type"":[""literal""],""value"":""OBI_0000299""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000312"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000312""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","PERSON: Alan Ruttenberg|PERSON: Bjoern Peters|PERSON: Larry Hunter|PERSON: Melanie Courtot","http://purl.obolibrary.org/obo/IAO_0000122","The inverse property of is_specified_output_of","","","","","","has_specified_output|has_specified_output","","","","","0.0","","","","http://purl.obolibrary.org/obo/RO_0000057","","http://purl.obolibrary.org/obo/RO_0000057","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","The inverse property of is_specified_output_of","http://purl.obolibrary.org/obo/obi.owl","http://purl.obolibrary.org/obo/RO_0000057","http://purl.obolibrary.org/obo/OBI_0000299","","false","has_specified_output","http://purl.obolibrary.org/obo/OBI_0000011","DUO","OBI:0000299","OBI_0000299","","duo","has_specified_output","","" +"duo+property+http://purl.obolibrary.org/obo/OBI_0000312","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/OBI_0000312"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OBI:0000312""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000056"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000056"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":[{""type"":[""literal""],""value"":""is_specified_output_of""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000122"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000117"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON:Bjoern Peters""}],""http://purl.obolibrary.org/obo/IAO_0000412"":""http://purl.obolibrary.org/obo/obi.owl"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/OBI_0000011"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000056"",""http://www.w3.org/2002/07/owl#equivalentProperty"":{""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/OBI_0000299"",""isObsolete"":false},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""is_specified_output_of""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is_specified_output_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Alan Ruttenberg"",""lang"":""en""},{""type"":[""literal""],""value"":""PERSON:Bjoern Peters""},true],""shortForm"":{""type"":[""literal""],""value"":""OBI_0000312""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000117"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term editor"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000117""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000122"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""ready for release"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000122""},""type"":[""individual"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000056"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000056""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000412"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""imported from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000412""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000011"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""planned process"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000011""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/OBI_0000299"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_specified_output"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""OBI:0000299""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","Alan Ruttenberg|PERSON:Bjoern Peters","http://purl.obolibrary.org/obo/IAO_0000122","A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.","","","","","","is_specified_output_of|is_specified_output_of","http://purl.obolibrary.org/obo/OBI_0000011","","","","0.0","","","","http://purl.obolibrary.org/obo/RO_0000056","","http://purl.obolibrary.org/obo/RO_0000056","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.","http://purl.obolibrary.org/obo/obi.owl","http://purl.obolibrary.org/obo/RO_0000056","http://purl.obolibrary.org/obo/OBI_0000312","","false","is_specified_output_of","","DUO","OBI:0000312","OBI_0000312","","duo","is_specified_output_of","","" +"duo+property+http://purl.obolibrary.org/obo/OMO_0001001","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/OMO_0001001"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OMO:0001001""},""definition"":{""type"":[""literal""],""value"":""This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""OBO Operations call""},""http://www.geneontology.org/formats/oboInOwl#created_by"":""http://orcid.org/0000-0001-5208-3432"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""logical characteristic of object property""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""logical characteristic of object property""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.""},{""type"":[""literal""],""value"":""OBO Operations call""},true],""shortForm"":{""type"":[""literal""],""value"":""OMO_0001001""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#created_by"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""created_by""},""curie"":{""type"":[""literal""],""value"":""created:by""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","","","This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.","","","","","","","","","","","1.0","","OBO Operations call","http://orcid.org/0000-0001-5208-3432","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","true","false","true","","http://purl.obolibrary.org/obo/duo.owl","This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.","","","http://purl.obolibrary.org/obo/OMO_0001001","","false","logical characteristic of object property","","DUO","OMO:0001001","OMO_0001001","","duo","logical characteristic of object property","","" +"duo+property+http://purl.obolibrary.org/obo/OMO_0002000","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/OMO_0002000"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""OMO:0002000""},""definition"":{""type"":[""literal""],""value"":""Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""value"":""\u0027part disjoint with\u0027 \u0027defined by construct\u0027 \""\""\""\n PREFIX owl: \u003chttp://www.w3.org/2002/07/owl#\u003e\n PREFIX : \u003chttp://example.org/\n CONSTRUCT {\n [\n a owl:Restriction ;\n owl:onProperty :part_of ;\n owl:someValuesFrom ?a ;\n owl:disjointWith [\n a owl:Restriction ;\n owl:onProperty :part_of ;\n owl:someValuesFrom ?b\n ]\n ]\n }\n WHERE {\n ?a :part_disjoint_with ?b .\n }""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.""},""http://purl.obolibrary.org/obo/IAO_0000233"":""https://github.com/ontodev/robot/issues/963"",""http://purl.org/dc/elements/1.1/contributor"":[""https://orcid.org/0000-0002-7356-1779"",""https://orcid.org/0000-0002-8688-6599""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""defined by construct""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""defined by construct""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""\u0027part disjoint with\u0027 \u0027defined by construct\u0027 \""\""\""\n PREFIX owl: \u003chttp://www.w3.org/2002/07/owl#\u003e\n PREFIX : \u003chttp://example.org/\n CONSTRUCT {\n [\n a owl:Restriction ;\n owl:onProperty :part_of ;\n owl:someValuesFrom ?a ;\n owl:disjointWith [\n a owl:Restriction ;\n owl:onProperty :part_of ;\n owl:someValuesFrom ?b\n ]\n ]\n }\n WHERE {\n ?a :part_disjoint_with ?b .\n }""},{""type"":[""literal""],""value"":""Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.""},true],""shortForm"":{""type"":[""literal""],""value"":""OMO_0002000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""https://orcid.org/0000-0002-8688-6599"":{""url"":""https://orcid.org/0000-0002-8688-6599"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-8688-6599""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000233"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""term tracker item"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000233""},""type"":[""property"",""annotationProperty"",""entity""]},""https://orcid.org/0000-0002-7356-1779"":{""url"":""https://orcid.org/0000-0002-7356-1779"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""orcid:0000-0002-7356-1779""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/elements/1.1/contributor"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""contributor""},""curie"":{""type"":[""literal""],""value"":""contributor""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","","","Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.","'part disjoint with' 'defined by construct' """""" PREFIX owl: PREFIX : 2151 , <= 2300] WHERE { ?a :part_disjoint_with ?b . }","https://github.com/ontodev/robot/issues/963","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.","","","http://purl.obolibrary.org/obo/OMO_0002000","","false","defined by construct","","DUO","OMO:0002000","OMO_0002000","","duo","defined by construct","https://orcid.org/0000-0002-7356-1779|https://orcid.org/0000-0002-8688-6599","" -"duo+property+http://purl.obolibrary.org/obo/RO_0000052","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000052"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence."",""lang"":""en""},{""type"":[""literal""],""value"":""Note that this relation was previously called \""inheres in\"", but was changed to be called \""characteristic of\"" because BFO2 uses \""inheres in\"" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing.""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inheres in"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this fragility is a characteristic of this vase"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this red color is a characteristic of this apple"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inheres_in"",""lang"":""en""},""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Note that this relation was previously called \""inheres in\"", but was changed to be called \""characteristic of\"" because BFO2 uses \""inheres in\"" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inheres in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this fragility is a characteristic of this vase"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this red color is a characteristic of this apple"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inheres_in"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000052""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0000052"":{""url"":""http://purl.obolibrary.org/obo/RO_0000052"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000052""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000053","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","","","a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","this fragility is a characteristic of this vase|this red color is a characteristic of this apple","","","","","inheres in","","","","","4.0","inheres_in","","","","","","http://purl.obolibrary.org/obo/RO_0001901","","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#FunctionalProperty","true","false","true","Note that this relation was previously called ""inheres in"", but was changed to be called ""characteristic of"" because BFO2 uses ""inheres in"" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing.","http://purl.obolibrary.org/obo/duo.owl","a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.|Note that this relation was previously called ""inheres in"", but was changed to be called ""characteristic of"" because BFO2 uses ""inheres in"" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing.","","","http://purl.obolibrary.org/obo/RO_0000052","","false","characteristic of","","DUO","RO:0000052","RO_0000052","","duo","characteristic of","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0000053","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000053"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of characteristic_of"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bearer of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this apple is bearer of this red color"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this vase is bearer of this fragility"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of characteristic_of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bearer_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is bearer of"",""lang"":""en""}],""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#InverseFunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000020"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bearer of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this apple is bearer of this red color"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this vase is bearer of this fragility"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of characteristic_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bearer_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is bearer of"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000053""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0000053"":{""url"":""http://purl.obolibrary.org/obo/RO_0000053"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000053""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000052","","http://purl.obolibrary.org/obo/IAO_0000115","false","","A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.","","","Inverse of characteristic_of","this apple is bearer of this red color|this vase is bearer of this fragility","","","","","bearer of","http://purl.obolibrary.org/obo/BFO_0000020","","","","4.0","bearer_of|is bearer of","","","","","","http://purl.obolibrary.org/obo/RO_0001901","","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#InverseFunctionalProperty","true","false","true","","http://purl.obolibrary.org/obo/duo.owl","Inverse of characteristic_of","","","http://purl.obolibrary.org/obo/RO_0000053","","false","has characteristic","","DUO","RO:0000053","RO_0000053","","duo","has characteristic","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0000056","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000056"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000056""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a continuant and a process, in which the continuant is somehow involved in the process"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this blood clot participates in this blood coagulation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this input material (or this output material) participates in this process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigator participates in this investigation"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a continuant and a process, in which the continuant is somehow involved in the process"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates_in"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000057"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this blood clot participates in this blood coagulation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this input material (or this output material) participates in this process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigator participates in this investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a continuant and a process, in which the continuant is somehow involved in the process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates_in"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000056""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""RO:0000056"":{""url"":""http://purl.obolibrary.org/obo/RO_0000056"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000056""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000057","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","","","a relation between a continuant and a process, in which the continuant is somehow involved in the process","this blood clot participates in this blood coagulation|this input material (or this output material) participates in this process|this investigator participates in this investigation","","","","","participates in","http://purl.obolibrary.org/obo/BFO_0000003","","","","1.0","participates_in","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","true","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between a continuant and a process, in which the continuant is somehow involved in the process","","","http://purl.obolibrary.org/obo/RO_0000056","","false","participates in","http://purl.obolibrary.org/obo/BFO_0000002","DUO","RO:0000056","RO_0000056","","duo","participates in","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0000057","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000057"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a process and a continuant, in which the continuant is somehow involved in the process"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this blood coagulation has participant this blood clot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigation has participant this investigator"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this process has participant this input material (or this output material)"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a process and a continuant, in which the continuant is somehow involved in the process"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_participant"",""lang"":""en""},""http://purl.org/dc/elements/1.1/source"":{""type"":[""literal""],""value"":""http://www.obofoundry.org/ro/#OBO_REL:has_participant""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000056"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this blood coagulation has participant this blood clot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigation has participant this investigator"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this process has participant this input material (or this output material)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a process and a continuant, in which the continuant is somehow involved in the process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_participant"",""lang"":""en""},{""type"":[""literal""],""value"":""http://www.obofoundry.org/ro/#OBO_REL:has_participant""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000057""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000056"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000056""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0000057"":{""url"":""http://purl.obolibrary.org/obo/RO_0000057"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000057""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/elements/1.1/source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000056","","http://purl.obolibrary.org/obo/IAO_0000115","false","","Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.","","","a relation between a process and a continuant, in which the continuant is somehow involved in the process","this blood coagulation has participant this blood clot|this investigation has participant this investigator|this process has participant this input material (or this output material)","","","","","has participant","http://purl.obolibrary.org/obo/BFO_0000002","","","","2.0","has_participant","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","true","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between a process and a continuant, in which the continuant is somehow involved in the process","","","http://purl.obolibrary.org/obo/RO_0000057","","false","has participant","http://purl.obolibrary.org/obo/BFO_0000003","DUO","RO:0000057","RO_0000057","","duo","has participant","","http://www.obofoundry.org/ro/#OBO_REL:has_participant" -"duo+property+http://purl.obolibrary.org/obo/RO_0000058","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000058"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000058""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000031"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is concretized as"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000020"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000059"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is concretized as"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000058""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000059"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""concretizes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000059""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""RO:0000058"":{""url"":""http://purl.obolibrary.org/obo/RO_0000058"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000058""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000059","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","","","A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants.","A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).|An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).","","","","","","http://purl.obolibrary.org/obo/BFO_0000020","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants.","","","http://purl.obolibrary.org/obo/RO_0000058","","false","is concretized as","http://purl.obolibrary.org/obo/BFO_0000031","DUO","RO:0000058","RO_0000058","","duo","is concretized as","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0000059","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000059"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000059""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000020"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""concretizes"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000031"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000058"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""concretizes"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000059""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000058"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is concretized as"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000058""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""RO:0000059"":{""url"":""http://purl.obolibrary.org/obo/RO_0000059"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000059""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000058","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","","","A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant.","A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).|An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).","","","","","","http://purl.obolibrary.org/obo/BFO_0000031","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant.","","","http://purl.obolibrary.org/obo/RO_0000059","","false","concretizes","http://purl.obolibrary.org/obo/BFO_0000020","DUO","RO:0000059","RO_0000059","","duo","concretizes","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0000079","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000079"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000079""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""value"":""This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000052"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000052"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this catalysis function is a function of this enzyme"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is function of"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000034"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000085"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this catalysis function is a function of this enzyme"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is function of"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000079""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0000079"":{""url"":""http://purl.obolibrary.org/obo/RO_0000079"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000079""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000034"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000034""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000085"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has function"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000085""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000085","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","true","","A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.","","","a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","this catalysis function is a function of this enzyme","","","","","","","","","","0.0","function_of|is function of","","","http://purl.obolibrary.org/obo/RO_0000052","","http://purl.obolibrary.org/obo/RO_0000052","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","http://purl.obolibrary.org/obo/duo.owl","a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence|This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","","http://purl.obolibrary.org/obo/RO_0000052","http://purl.obolibrary.org/obo/RO_0000079","","false","function of","http://purl.obolibrary.org/obo/BFO_0000034","DUO","RO:0000079","RO_0000079","","duo","function of","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0000080","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000080"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000080""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""value"":""This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000052"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000052"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this red color is a quality of this apple"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A quality inheres in its bearer at all times for which the quality exists."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality_of"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000086"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this red color is a quality of this apple"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A quality inheres in its bearer at all times for which the quality exists."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality_of"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000080""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0000080"":{""url"":""http://purl.obolibrary.org/obo/RO_0000080"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000080""},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000086","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","true","","A quality inheres in its bearer at all times for which the quality exists.","","","a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","this red color is a quality of this apple","","","","","","","","","","0.0","is quality of|quality_of","","","http://purl.obolibrary.org/obo/RO_0000052","","http://purl.obolibrary.org/obo/RO_0000052","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","http://purl.obolibrary.org/obo/duo.owl","a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence|This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","","http://purl.obolibrary.org/obo/RO_0000052","http://purl.obolibrary.org/obo/RO_0000080","","false","quality of","","DUO","RO:0000080","RO_0000080","","duo","quality of","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0000081","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000081"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000081""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""value"":""This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000052"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000052"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigator role is a role of this person"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is role of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role_of"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000087"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigator role is a role of this person"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is role of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role_of"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000081""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0000081"":{""url"":""http://purl.obolibrary.org/obo/RO_0000081"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000081""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000087"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has role"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000087""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000087","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","true","","A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.","","","a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","this investigator role is a role of this person","","","","","","","","","","0.0","is role of|role_of","","","http://purl.obolibrary.org/obo/RO_0000052","","http://purl.obolibrary.org/obo/RO_0000052","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","http://purl.obolibrary.org/obo/duo.owl","a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence|This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","","http://purl.obolibrary.org/obo/RO_0000052","http://purl.obolibrary.org/obo/RO_0000081","","false","role of","","DUO","RO:0000081","RO_0000081","","duo","role of","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0000085","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000085"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000085""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000053"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000053"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_function"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has function"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000034"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000079"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has function"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_function"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000085""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""RO:0000085"":{""url"":""http://purl.obolibrary.org/obo/RO_0000085"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000085""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000034"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000034""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000079"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000079""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000079","","http://purl.obolibrary.org/obo/IAO_0000115","true","","A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.","","","a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)","","","","","","http://purl.obolibrary.org/obo/BFO_0000034","","","","0.0","has_function","","","http://purl.obolibrary.org/obo/RO_0000053","","http://purl.obolibrary.org/obo/RO_0000053","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","","http://purl.obolibrary.org/obo/RO_0000053","http://purl.obolibrary.org/obo/RO_0000085","","false","has function","http://purl.obolibrary.org/obo/BFO_0000004","DUO","RO:0000085","RO_0000085","","duo","has function","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0000086","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000086"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000053"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000053"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this apple has quality this red color"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_quality"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000019"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000080"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this apple has quality this red color"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_quality"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000086""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""RO:0000086"":{""url"":""http://purl.obolibrary.org/obo/RO_0000086"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000086""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000080"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000080""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000080","","http://purl.obolibrary.org/obo/IAO_0000115","true","","A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.","","","a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","this apple has quality this red color","","","","","","http://purl.obolibrary.org/obo/BFO_0000019","","","","0.0","has_quality","","","http://purl.obolibrary.org/obo/RO_0000053","","http://purl.obolibrary.org/obo/RO_0000053","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","","http://purl.obolibrary.org/obo/RO_0000053","http://purl.obolibrary.org/obo/RO_0000086","","false","has quality","","DUO","RO:0000086","RO_0000086","","duo","has quality","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0000087","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000087"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000087""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000053"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000053"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this person has role this investigator role (more colloquially: this person has this role of investigator)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_role"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has role"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000023"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000081"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has role"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this person has role this investigator role (more colloquially: this person has this role of investigator)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_role"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000087""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""RO:0000087"":{""url"":""http://purl.obolibrary.org/obo/RO_0000087"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000087""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000081"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000081""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000023""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000081","","http://purl.obolibrary.org/obo/IAO_0000115","true","","A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.","","","a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","this person has role this investigator role (more colloquially: this person has this role of investigator)","","","","","","http://purl.obolibrary.org/obo/BFO_0000023","","","","0.0","has_role","","","http://purl.obolibrary.org/obo/RO_0000053","","http://purl.obolibrary.org/obo/RO_0000053","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","","http://purl.obolibrary.org/obo/RO_0000053","http://purl.obolibrary.org/obo/RO_0000087","","false","has role","http://purl.obolibrary.org/obo/BFO_0000004","DUO","RO:0000087","RO_0000087","","duo","has role","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0000091","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000091"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000091""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000053"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000053"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has disposition"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000016"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000092"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has disposition"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000091""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000092""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0000091"":{""url"":""http://purl.obolibrary.org/obo/RO_0000091"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000091""}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000092","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","","","a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","","","","","","","http://purl.obolibrary.org/obo/BFO_0000016","","","","0.0","","","","http://purl.obolibrary.org/obo/RO_0000053","","http://purl.obolibrary.org/obo/RO_0000053","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","","http://purl.obolibrary.org/obo/RO_0000053","http://purl.obolibrary.org/obo/RO_0000091","","false","has disposition","http://purl.obolibrary.org/obo/BFO_0000004","DUO","RO:0000091","RO_0000091","","duo","has disposition","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0000092","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000092"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000092""},""definition"":{""type"":[""literal""],""value"":""This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000052"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000052"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000091"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RO_0000092""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0000091"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000091""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0000092"":{""url"":""http://purl.obolibrary.org/obo/RO_0000092"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0000092""}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000091","","http://www.w3.org/2000/01/rdf-schema#comment","true","","","","","","","","","","","","","","","","0.0","","","","http://purl.obolibrary.org/obo/RO_0000052","","http://purl.obolibrary.org/obo/RO_0000052","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","http://purl.obolibrary.org/obo/duo.owl","This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","","http://purl.obolibrary.org/obo/RO_0000052","http://purl.obolibrary.org/obo/RO_0000092","","false","disposition of","","DUO","RO:0000092","RO_0000092","","duo","disposition of","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0001000","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0001000"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0001000""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this cell derives from this parent cell (cell division)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this nucleus derives from this parent nucleus (nuclear division)"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is a very general relation. More specific relations are preferred when applicable, such as \u0027directly develops from\u0027."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives_from"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives from"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0001001"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives from"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this cell derives from this parent cell (cell division)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this nucleus derives from this parent nucleus (nuclear division)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is a very general relation. More specific relations are preferred when applicable, such as \u0027directly develops from\u0027."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives_from"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0001000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0001001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001001""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0001000"":{""url"":""http://purl.obolibrary.org/obo/RO_0001000"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0001000""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0001001","","http://purl.obolibrary.org/obo/IAO_0000115","false","","This is a very general relation. More specific relations are preferred when applicable, such as 'directly develops from'.","","http://purl.obolibrary.org/obo/IAO_0000125","a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","this cell derives from this parent cell (cell division)|this nucleus derives from this parent nucleus (nuclear division)","","","","","","","","","","0.0","derives_from","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","","","http://purl.obolibrary.org/obo/RO_0001000","","false","derives from","","DUO","RO:0001000","RO_0001000","","duo","derives from","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0001001","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0001001"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0001001""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this parent cell derives into this cell (cell division)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this parent nucleus derives into this nucleus (nuclear division)"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is a very general relation. More specific relations are preferred when applicable, such as \u0027directly develops into\u0027. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking \u0027derives from\u0027 rather than the forward-looking \u0027derives into\u0027."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives_into"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives into"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0001000"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives into"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this parent cell derives into this cell (cell division)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this parent nucleus derives into this nucleus (nuclear division)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is a very general relation. More specific relations are preferred when applicable, such as \u0027directly develops into\u0027. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking \u0027derives from\u0027 rather than the forward-looking \u0027derives into\u0027."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives_into"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0001001""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0001000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001000""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0001001"":{""url"":""http://purl.obolibrary.org/obo/RO_0001001"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0001001""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0001000","","http://purl.obolibrary.org/obo/IAO_0000115","false","","This is a very general relation. More specific relations are preferred when applicable, such as 'directly develops into'. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking 'derives from' rather than the forward-looking 'derives into'.","","http://purl.obolibrary.org/obo/IAO_0000125","a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","this parent cell derives into this cell (cell division)|this parent nucleus derives into this nucleus (nuclear division)","","","","","","","","","","0.0","derives_into","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","","","http://purl.obolibrary.org/obo/RO_0001001","","false","derives into","","DUO","RO:0001001","RO_0001001","","duo","derives into","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0001015","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0001015"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0001015""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two independent continuants, the location and the target, in which the target is entirely within the location"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is location of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my head is the location of my brain"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this cage is the location of this rat"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two independent continuants, the location and the target, in which the target is entirely within the location"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""location_of"",""lang"":""en""},""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""location of"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0001025"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""location of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is location of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my head is the location of my brain"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this cage is the location of this rat"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two independent continuants, the location and the target, in which the target is entirely within the location"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""location_of"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0001015""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""RO:0001015"":{""url"":""http://purl.obolibrary.org/obo/RO_0001015"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0001015""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://purl.obolibrary.org/obo/RO_0001025"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""located in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001025""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0001025","","http://purl.obolibrary.org/obo/IAO_0000115","false","","Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","","","a relation between two independent continuants, the location and the target, in which the target is entirely within the location","my head is the location of my brain|this cage is the location of this rat","","","","","is location of","","","","","0.0","location_of","","","","","","http://purl.obolibrary.org/obo/RO_0001901","","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between two independent continuants, the location and the target, in which the target is entirely within the location","","","http://purl.obolibrary.org/obo/RO_0001015","","false","location of","","DUO","RO:0001015","RO_0001015","","duo","location of","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0001025","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0001025"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0001025""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two independent continuants, the target and the location, in which the target is entirely within the location"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""located in"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my brain is located in my head"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this rat is located in this cage"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two independent continuants, the target and the location, in which the target is entirely within the location"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""located_in"",""lang"":""en""},""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://purl.org/dc/elements/1.1/source"":{""type"":[""literal""],""value"":""http://www.obofoundry.org/ro/#OBO_REL:located_in""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/BFO_0000004"",""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""This is redundant with the more specific \u0027independent and not spatial region\u0027 constraint. We leave in the redundant axiom for use with reasoners that do not use negation.""}}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000004"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#complementOf"":""http://purl.obolibrary.org/obo/BFO_0000006""}]}],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""located in"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/BFO_0000004"",""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""This is redundant with the more specific \u0027independent and not spatial region\u0027 constraint. We leave in the redundant axiom for use with reasoners that do not use negation.""}}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000004"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#complementOf"":""http://purl.obolibrary.org/obo/BFO_0000006""}]}],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0001015"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""located in"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""located in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my brain is located in my head"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this rat is located in this cage"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two independent continuants, the target and the location, in which the target is entirely within the location"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""located_in"",""lang"":""en""},{""type"":[""literal""],""value"":""http://www.obofoundry.org/ro/#OBO_REL:located_in""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0001025""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000006""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://purl.obolibrary.org/obo/RO_0001015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""location of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001015""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0001025"":{""url"":""http://purl.obolibrary.org/obo/RO_0001025"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0001025""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/elements/1.1/source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0001015","","http://purl.obolibrary.org/obo/IAO_0000115","false","","Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus|Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","","","a relation between two independent continuants, the target and the location, in which the target is entirely within the location","my brain is located in my head|this rat is located in this cage","","","","","located in","http://purl.obolibrary.org/obo/BFO_0000004|","","","","0.0","located_in","","","","","","http://purl.obolibrary.org/obo/RO_0001901","","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between two independent continuants, the target and the location, in which the target is entirely within the location","","","http://purl.obolibrary.org/obo/RO_0001025","","false","located in","http://purl.obolibrary.org/obo/BFO_0000004|","DUO","RO:0001025","RO_0001025","","duo","located in","","http://www.obofoundry.org/ro/#OBO_REL:located_in" -"duo+property+http://purl.obolibrary.org/obo/RO_0001900","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0001900"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""definition"":{""type"":[""literal""],""value"":""An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0001900""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0001900"":{""url"":""http://purl.obolibrary.org/obo/RO_0001900"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0001900""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","","","An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.","","","http://purl.obolibrary.org/obo/RO_0001900","","false","temporal interpretation","","DUO","RO:0001900","RO_0001900","","duo","temporal interpretation","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0002000","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002000"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002000""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the surface of my skin is a 2D boundary of my body"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2D_boundary_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""boundary of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is 2D boundary of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is boundary of"",""lang"":""en""}],""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2D boundary of"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002002"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2D boundary of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the surface of my skin is a 2D boundary of my body"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2D_boundary_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""boundary of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is 2D boundary of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is boundary of"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0002000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has 2D boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002002""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""RO:0002000"":{""url"":""http://purl.obolibrary.org/obo/RO_0002000"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002000""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002002","","http://purl.obolibrary.org/obo/IAO_0000115","false","","A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.|Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.","","","a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","the surface of my skin is a 2D boundary of my body","","","","","","","","","","0.0","2D_boundary_of|boundary of|is 2D boundary of|is boundary of","","","","","","http://purl.obolibrary.org/obo/RO_0001901","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","","","http://purl.obolibrary.org/obo/RO_0002000","","false","2D boundary of","","DUO","RO:0002000","RO_0002000","","duo","2D boundary of","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0002002","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002002"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002002""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my body has 2D boundary the surface of my skin"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has boundary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_2D_boundary"",""lang"":""en""}],""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has 2D boundary"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000141"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002000"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has 2D boundary"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my body has 2D boundary the surface of my skin"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has boundary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_2D_boundary"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0002002""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2D boundary of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002000""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""RO:0002002"":{""url"":""http://purl.obolibrary.org/obo/RO_0002002"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002002""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002000","","http://purl.obolibrary.org/obo/IAO_0000115","false","","A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.|Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.","","","a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","my body has 2D boundary the surface of my skin","","","","","","http://purl.obolibrary.org/obo/BFO_0000141","","","","0.0","has boundary|has_2D_boundary","","","","","","http://purl.obolibrary.org/obo/RO_0001901","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","","","http://purl.obolibrary.org/obo/RO_0002002","","false","has 2D boundary","http://purl.obolibrary.org/obo/BFO_0000040","DUO","RO:0002002","RO_0002002","","duo","has 2D boundary","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0002350","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002350"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002350""},""definition"":{""type"":[""literal""],""value"":""is member of is a mereological relation between a item and a collection.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000050"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""value"":""An organism that is a member of a population of organisms""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""is member of is a mereological relation between a item and a collection.""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""value"":""is member of""},{""type"":[""literal""],""value"":""member part of""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""SIO""},""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""member of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002351"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""member of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""An organism that is a member of a population of organisms""},{""type"":[""literal""],""value"":""is member of is a mereological relation between a item and a collection.""},{""type"":[""literal""],""value"":""is member of""},{""type"":[""literal""],""value"":""member part of""},{""type"":[""literal""],""value"":""SIO""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0002350""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://purl.obolibrary.org/obo/RO_0002351"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has member"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002351""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002350"":{""url"":""http://purl.obolibrary.org/obo/RO_0002350"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002350""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002351","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","","","is member of is a mereological relation between a item and a collection.","An organism that is a member of a population of organisms","","","","","","","","","","0.0","is member of|member part of","SIO","","http://purl.obolibrary.org/obo/BFO_0000050","","http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0001901","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","is member of is a mereological relation between a item and a collection.","","http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0002350","","false","member of","","DUO","RO:0002350","RO_0002350","","duo","member of","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0002351","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002351"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002351""},""definition"":{""type"":[""literal""],""value"":""has member is a mereological relation between a collection and an item.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000051"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000051"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""has member is a mereological relation between a collection and an item.""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""SIO""},""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#IrreflexiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has member"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002350"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has member"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""has member is a mereological relation between a collection and an item.""},{""type"":[""literal""],""value"":""SIO""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0002351""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://purl.obolibrary.org/obo/RO_0002350"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""member of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002350""},""type"":[""property"",""objectProperty"",""entity""]},""RO:0002351"":{""url"":""http://purl.obolibrary.org/obo/RO_0002351"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002351""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002350","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","","","has member is a mereological relation between a collection and an item.","","","","","","","","","","","0.0","","SIO","","http://purl.obolibrary.org/obo/BFO_0000051","","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0001901","","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#IrreflexiveProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","has member is a mereological relation between a collection and an item.","","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002351","","false","has member","","DUO","RO:0002351","RO_0002351","","duo","has member","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0004096","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004096"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004096""},""definition"":{""type"":[""literal""],""value"":""DEPRECATED This relation is similar to but different in important respects to the characteristic-of relation. See comments on that relation for more information.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""DEPRECATED This relation is similar to but different in important respects to the characteristic-of relation. See comments on that relation for more information.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DEPRECATED inheres in"",""lang"":""en""},""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":true,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DEPRECATED inheres in"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RO_0004096""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""RO:0004096"":{""url"":""http://purl.obolibrary.org/obo/RO_0004096"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004096""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://www.w3.org/2000/01/rdf-schema#comment","false","","","","","","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","DEPRECATED This relation is similar to but different in important respects to the characteristic-of relation. See comments on that relation for more information.","http://purl.obolibrary.org/obo/duo.owl","DEPRECATED This relation is similar to but different in important respects to the characteristic-of relation. See comments on that relation for more information.","","","http://purl.obolibrary.org/obo/RO_0004096","true","true","DEPRECATED inheres in","","DUO","RO:0004096","RO_0004096","","duo","DEPRECATED inheres in","","" -"duo+property+http://purl.obolibrary.org/obo/RO_0004097","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004097"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004097""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DEPRECATED bearer of"",""lang"":""en""},""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":true,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DEPRECATED bearer of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RO_0004097""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""RO:0004097"":{""url"":""http://purl.obolibrary.org/obo/RO_0004097"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0004097""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","","false","","","","","","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/RO_0004097","true","true","DEPRECATED bearer of","","DUO","RO:0004097","RO_0004097","","duo","DEPRECATED bearer of","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0000052","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000052"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence."",""lang"":""en""},{""type"":[""literal""],""value"":""Note that this relation was previously called \""inheres in\"", but was changed to be called \""characteristic of\"" because BFO2 uses \""inheres in\"" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing.""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inheres in"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this fragility is a characteristic of this vase"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this red color is a characteristic of this apple"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inheres_in"",""lang"":""en""},""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#FunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Note that this relation was previously called \""inheres in\"", but was changed to be called \""characteristic of\"" because BFO2 uses \""inheres in\"" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inheres in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this fragility is a characteristic of this vase"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this red color is a characteristic of this apple"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""inheres_in"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000052""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000053","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","false","","","","","a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","this fragility is a characteristic of this vase|this red color is a characteristic of this apple","","","","","inheres in","","","","","4.0","inheres_in","","","","","","http://purl.obolibrary.org/obo/RO_0001901","","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#FunctionalProperty","true","false","true","Note that this relation was previously called ""inheres in"", but was changed to be called ""characteristic of"" because BFO2 uses ""inheres in"" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing.","http://purl.obolibrary.org/obo/duo.owl","a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.|Note that this relation was previously called ""inheres in"", but was changed to be called ""characteristic of"" because BFO2 uses ""inheres in"" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing.","","","http://purl.obolibrary.org/obo/RO_0000052","","false","characteristic of","","DUO","RO:0000052","RO_0000052","","duo","characteristic of","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0000053","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000053"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of characteristic_of"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bearer of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this apple is bearer of this red color"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this vase is bearer of this fragility"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of characteristic_of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bearer_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is bearer of"",""lang"":""en""}],""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#InverseFunctionalProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000020"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""numDescendants"":4.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bearer of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this apple is bearer of this red color"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this vase is bearer of this fragility"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Inverse of characteristic_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""bearer_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is bearer of"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000053""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000052","","http://purl.obolibrary.org/obo/IAO_0000115","false","","A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.","","","Inverse of characteristic_of","this apple is bearer of this red color|this vase is bearer of this fragility","","","","","bearer of","http://purl.obolibrary.org/obo/BFO_0000020","","","","4.0","bearer_of|is bearer of","","","","","","http://purl.obolibrary.org/obo/RO_0001901","","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#InverseFunctionalProperty","true","false","true","","http://purl.obolibrary.org/obo/duo.owl","Inverse of characteristic_of","","","http://purl.obolibrary.org/obo/RO_0000053","","false","has characteristic","","DUO","RO:0000053","RO_0000053","","duo","has characteristic","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0000056","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000056"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000056""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a continuant and a process, in which the continuant is somehow involved in the process"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this blood clot participates in this blood coagulation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this input material (or this output material) participates in this process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigator participates in this investigation"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a continuant and a process, in which the continuant is somehow involved in the process"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates_in"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000057"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""numDescendants"":1.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this blood clot participates in this blood coagulation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this input material (or this output material) participates in this process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigator participates in this investigation"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a continuant and a process, in which the continuant is somehow involved in the process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates_in"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000056""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000057"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000057","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","","","a relation between a continuant and a process, in which the continuant is somehow involved in the process","this blood clot participates in this blood coagulation|this input material (or this output material) participates in this process|this investigator participates in this investigation","","","","","participates in","http://purl.obolibrary.org/obo/BFO_0000003","","","","1.0","participates_in","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","true","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between a continuant and a process, in which the continuant is somehow involved in the process","","","http://purl.obolibrary.org/obo/RO_0000056","","false","participates in","http://purl.obolibrary.org/obo/BFO_0000002","DUO","RO:0000056","RO_0000056","","duo","participates in","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0000057","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000057"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000057""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a process and a continuant, in which the continuant is somehow involved in the process"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this blood coagulation has participant this blood clot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigation has participant this investigator"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this process has participant this input material (or this output material)"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a process and a continuant, in which the continuant is somehow involved in the process"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_participant"",""lang"":""en""},""http://purl.org/dc/elements/1.1/source"":{""type"":[""literal""],""value"":""http://www.obofoundry.org/ro/#OBO_REL:has_participant""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000003"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000002"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000056"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},""numDescendants"":2.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has participant"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this blood coagulation has participant this blood clot"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigation has participant this investigator"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this process has participant this input material (or this output material)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a process and a continuant, in which the continuant is somehow involved in the process"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_participant"",""lang"":""en""},{""type"":[""literal""],""value"":""http://www.obofoundry.org/ro/#OBO_REL:has_participant""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000057""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000002""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000003"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""occurrent"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000003""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000056"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""participates in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000056""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/elements/1.1/source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000056","","http://purl.obolibrary.org/obo/IAO_0000115","false","","Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.","","","a relation between a process and a continuant, in which the continuant is somehow involved in the process","this blood coagulation has participant this blood clot|this investigation has participant this investigator|this process has participant this input material (or this output material)","","","","","has participant","http://purl.obolibrary.org/obo/BFO_0000002","","","","2.0","has_participant","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","true","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between a process and a continuant, in which the continuant is somehow involved in the process","","","http://purl.obolibrary.org/obo/RO_0000057","","false","has participant","http://purl.obolibrary.org/obo/BFO_0000003","DUO","RO:0000057","RO_0000057","","duo","has participant","","http://www.obofoundry.org/ro/#OBO_REL:has_participant" +"duo+property+http://purl.obolibrary.org/obo/RO_0000058","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000058"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000058""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000031"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is concretized as"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000020"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000059"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is concretized as"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000058""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000059"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""concretizes"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000059""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000059","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","","","A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants.","A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).|An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).","","","","","","http://purl.obolibrary.org/obo/BFO_0000020","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants.","","","http://purl.obolibrary.org/obo/RO_0000058","","false","is concretized as","http://purl.obolibrary.org/obo/BFO_0000031","DUO","RO:0000058","RO_0000058","","duo","is concretized as","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0000059","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000059"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000059""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant."",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant."",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000020"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""concretizes"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000031"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000058"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""concretizes"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant."",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000059""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""generically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000031""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000058"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is concretized as"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000058""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000020"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""specifically dependent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000020""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000058","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","","","A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant.","A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).|An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).","","","","","","http://purl.obolibrary.org/obo/BFO_0000031","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant.","","","http://purl.obolibrary.org/obo/RO_0000059","","false","concretizes","http://purl.obolibrary.org/obo/BFO_0000020","DUO","RO:0000059","RO_0000059","","duo","concretizes","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0000079","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000079"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000079""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""value"":""This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000052"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000052"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this catalysis function is a function of this enzyme"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is function of"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.""},""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000034"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000085"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this catalysis function is a function of this enzyme"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is function of"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000079""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000034"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000034""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000085"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has function"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000085""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000085","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","true","","A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.","","","a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","this catalysis function is a function of this enzyme","","","","","","","","","","0.0","function_of|is function of","","","http://purl.obolibrary.org/obo/RO_0000052","","http://purl.obolibrary.org/obo/RO_0000052","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","http://purl.obolibrary.org/obo/duo.owl","a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence|This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","","http://purl.obolibrary.org/obo/RO_0000052","http://purl.obolibrary.org/obo/RO_0000079","","false","function of","http://purl.obolibrary.org/obo/BFO_0000034","DUO","RO:0000079","RO_0000079","","duo","function of","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0000080","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000080"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000080""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""value"":""This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000052"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000052"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this red color is a quality of this apple"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A quality inheres in its bearer at all times for which the quality exists."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality_of"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000086"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this red color is a quality of this apple"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A quality inheres in its bearer at all times for which the quality exists."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is quality of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality_of"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000080""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000086"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000086","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","true","","A quality inheres in its bearer at all times for which the quality exists.","","","a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","this red color is a quality of this apple","","","","","","","","","","0.0","is quality of|quality_of","","","http://purl.obolibrary.org/obo/RO_0000052","","http://purl.obolibrary.org/obo/RO_0000052","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","http://purl.obolibrary.org/obo/duo.owl","a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence|This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","","http://purl.obolibrary.org/obo/RO_0000052","http://purl.obolibrary.org/obo/RO_0000080","","false","quality of","","DUO","RO:0000080","RO_0000080","","duo","quality of","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0000081","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000081"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000081""},""definition"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""value"":""This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000052"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000052"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigator role is a role of this person"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is role of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role_of"",""lang"":""en""}],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000087"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this investigator role is a role of this person"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is role of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role_of"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000081""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000087"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has role"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000087""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000087","","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","true","","A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.","","","a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","this investigator role is a role of this person","","","","","","","","","","0.0","is role of|role_of","","","http://purl.obolibrary.org/obo/RO_0000052","","http://purl.obolibrary.org/obo/RO_0000052","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","http://purl.obolibrary.org/obo/duo.owl","a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence|This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","","http://purl.obolibrary.org/obo/RO_0000052","http://purl.obolibrary.org/obo/RO_0000081","","false","role of","","DUO","RO:0000081","RO_0000081","","duo","role of","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0000085","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000085"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000085""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000053"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000053"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_function"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has function"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000034"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000079"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has function"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_function"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000085""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000034"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000034""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000079"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""function of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000079""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000079","","http://purl.obolibrary.org/obo/IAO_0000115","true","","A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.","","","a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)","","","","","","http://purl.obolibrary.org/obo/BFO_0000034","","","","0.0","has_function","","","http://purl.obolibrary.org/obo/RO_0000053","","http://purl.obolibrary.org/obo/RO_0000053","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","","http://purl.obolibrary.org/obo/RO_0000053","http://purl.obolibrary.org/obo/RO_0000085","","false","has function","http://purl.obolibrary.org/obo/BFO_0000004","DUO","RO:0000085","RO_0000085","","duo","has function","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0000086","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000086"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000086""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000053"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000053"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this apple has quality this red color"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_quality"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000019"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000080"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has quality"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this apple has quality this red color"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_quality"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000086""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000019""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000080"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""quality of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000080""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000080","","http://purl.obolibrary.org/obo/IAO_0000115","true","","A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.","","","a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","this apple has quality this red color","","","","","","http://purl.obolibrary.org/obo/BFO_0000019","","","","0.0","has_quality","","","http://purl.obolibrary.org/obo/RO_0000053","","http://purl.obolibrary.org/obo/RO_0000053","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","","http://purl.obolibrary.org/obo/RO_0000053","http://purl.obolibrary.org/obo/RO_0000086","","false","has quality","","DUO","RO:0000086","RO_0000086","","duo","has quality","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0000087","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000087"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000087""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000053"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000053"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this person has role this investigator role (more colloquially: this person has this role of investigator)"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_role"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has role"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000023"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000081"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has role"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this person has role this investigator role (more colloquially: this person has this role of investigator)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_role"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000087""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000081"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000081""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000023"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""role"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000023""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000081","","http://purl.obolibrary.org/obo/IAO_0000115","true","","A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.","","","a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","this person has role this investigator role (more colloquially: this person has this role of investigator)","","","","","","http://purl.obolibrary.org/obo/BFO_0000023","","","","0.0","has_role","","","http://purl.obolibrary.org/obo/RO_0000053","","http://purl.obolibrary.org/obo/RO_0000053","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","","http://purl.obolibrary.org/obo/RO_0000053","http://purl.obolibrary.org/obo/RO_0000087","","false","has role","http://purl.obolibrary.org/obo/BFO_0000004","DUO","RO:0000087","RO_0000087","","duo","has role","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0000091","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000091"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000091""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000053"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000053"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000004"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has disposition"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000016"",""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000053"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000092"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has disposition"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0000091""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0000092"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000092""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000016"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000016""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000053"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has characteristic"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000053""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000092","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","","","a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","","","","","","","http://purl.obolibrary.org/obo/BFO_0000016","","","","0.0","","","","http://purl.obolibrary.org/obo/RO_0000053","","http://purl.obolibrary.org/obo/RO_0000053","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","","http://purl.obolibrary.org/obo/RO_0000053","http://purl.obolibrary.org/obo/RO_0000091","","false","has disposition","http://purl.obolibrary.org/obo/BFO_0000004","DUO","RO:0000091","RO_0000091","","duo","has disposition","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0000092","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0000092"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0000092""},""definition"":{""type"":[""literal""],""value"":""This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":""http://purl.obolibrary.org/obo/RO_0000052"",""directParent"":""http://purl.obolibrary.org/obo/RO_0000052"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/RO_0000052"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0000091"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""disposition of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RO_0000092""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0000091"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has disposition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000091""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0000052"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""characteristic of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0000052""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0000091","","http://www.w3.org/2000/01/rdf-schema#comment","true","","","","","","","","","","","","","","","","0.0","","","","http://purl.obolibrary.org/obo/RO_0000052","","http://purl.obolibrary.org/obo/RO_0000052","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","http://purl.obolibrary.org/obo/duo.owl","This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","","http://purl.obolibrary.org/obo/RO_0000052","http://purl.obolibrary.org/obo/RO_0000092","","false","disposition of","","DUO","RO:0000092","RO_0000092","","duo","disposition of","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0001000","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0001000"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0001000""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this cell derives from this parent cell (cell division)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this nucleus derives from this parent nucleus (nuclear division)"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is a very general relation. More specific relations are preferred when applicable, such as \u0027directly develops from\u0027."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives_from"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives from"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0001001"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives from"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this cell derives from this parent cell (cell division)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this nucleus derives from this parent nucleus (nuclear division)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is a very general relation. More specific relations are preferred when applicable, such as \u0027directly develops from\u0027."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives_from"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0001000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0001001"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives into"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001001""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0001001","","http://purl.obolibrary.org/obo/IAO_0000115","false","","This is a very general relation. More specific relations are preferred when applicable, such as 'directly develops from'.","","http://purl.obolibrary.org/obo/IAO_0000125","a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","this cell derives from this parent cell (cell division)|this nucleus derives from this parent nucleus (nuclear division)","","","","","","","","","","0.0","derives_from","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","","","http://purl.obolibrary.org/obo/RO_0001000","","false","derives from","","DUO","RO:0001000","RO_0001000","","duo","derives from","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0001001","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0001001"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0001001""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this parent cell derives into this cell (cell division)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this parent nucleus derives into this nucleus (nuclear division)"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000114"":""http://purl.obolibrary.org/obo/IAO_0000125"",""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is a very general relation. More specific relations are preferred when applicable, such as \u0027directly develops into\u0027. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking \u0027derives from\u0027 rather than the forward-looking \u0027derives into\u0027."",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives_into"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives into"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0001000"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives into"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this parent cell derives into this cell (cell division)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this parent nucleus derives into this nucleus (nuclear division)"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""This is a very general relation. More specific relations are preferred when applicable, such as \u0027directly develops into\u0027. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking \u0027derives from\u0027 rather than the forward-looking \u0027derives into\u0027."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives_into"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0001001""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0001000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""derives from"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001000""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000114"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has curation status"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000114""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000125"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""pending final vetting"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000125""},""type"":[""individual"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0001000","","http://purl.obolibrary.org/obo/IAO_0000115","false","","This is a very general relation. More specific relations are preferred when applicable, such as 'directly develops into'. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking 'derives from' rather than the forward-looking 'derives into'.","","http://purl.obolibrary.org/obo/IAO_0000125","a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","this parent cell derives into this cell (cell division)|this parent nucleus derives into this nucleus (nuclear division)","","","","","","","","","","0.0","derives_into","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","","","http://purl.obolibrary.org/obo/RO_0001001","","false","derives into","","DUO","RO:0001001","RO_0001001","","duo","derives into","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0001015","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0001015"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0001015""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two independent continuants, the location and the target, in which the target is entirely within the location"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is location of"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my head is the location of my brain"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this cage is the location of this rat"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two independent continuants, the location and the target, in which the target is entirely within the location"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""location_of"",""lang"":""en""},""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""location of"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0001025"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""location of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is location of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my head is the location of my brain"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this cage is the location of this rat"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two independent continuants, the location and the target, in which the target is entirely within the location"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""location_of"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0001015""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://purl.obolibrary.org/obo/RO_0001025"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""located in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001025""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0001025","","http://purl.obolibrary.org/obo/IAO_0000115","false","","Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","","","a relation between two independent continuants, the location and the target, in which the target is entirely within the location","my head is the location of my brain|this cage is the location of this rat","","","","","is location of","","","","","0.0","location_of","","","","","","http://purl.obolibrary.org/obo/RO_0001901","","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between two independent continuants, the location and the target, in which the target is entirely within the location","","","http://purl.obolibrary.org/obo/RO_0001015","","false","location of","","DUO","RO:0001015","RO_0001015","","duo","location of","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0001025","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0001025"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0001025""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two independent continuants, the target and the location, in which the target is entirely within the location"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""located in"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my brain is located in my head"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this rat is located in this cage"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two independent continuants, the target and the location, in which the target is entirely within the location"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""located_in"",""lang"":""en""},""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://purl.org/dc/elements/1.1/source"":{""type"":[""literal""],""value"":""http://www.obofoundry.org/ro/#OBO_REL:located_in""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#domain"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/BFO_0000004"",""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""This is redundant with the more specific \u0027independent and not spatial region\u0027 constraint. We leave in the redundant axiom for use with reasoners that do not use negation.""}}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000004"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#complementOf"":""http://purl.obolibrary.org/obo/BFO_0000006""}]}],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""located in"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/BFO_0000004"",""axioms"":[{""http://purl.obolibrary.org/obo/IAO_0000116"":{""type"":[""literal""],""value"":""This is redundant with the more specific \u0027independent and not spatial region\u0027 constraint. We leave in the redundant axiom for use with reasoners that do not use negation.""}}]},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/BFO_0000004"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#complementOf"":""http://purl.obolibrary.org/obo/BFO_0000006""}]}],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0001015"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""located in"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""located in"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my brain is located in my head"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this rat is located in this cage"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between two independent continuants, the target and the location, in which the target is entirely within the location"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""located_in"",""lang"":""en""},{""type"":[""literal""],""value"":""http://www.obofoundry.org/ro/#OBO_REL:located_in""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0001025""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor preferred term"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""independent continuant"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000004""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000006"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""spatial region"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000006""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://purl.obolibrary.org/obo/RO_0001015"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""location of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001015""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.org/dc/elements/1.1/source"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""source""},""curie"":{""type"":[""literal""],""value"":""source""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0001015","","http://purl.obolibrary.org/obo/IAO_0000115","false","","Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus|Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","","","a relation between two independent continuants, the target and the location, in which the target is entirely within the location","my brain is located in my head|this rat is located in this cage","","","","","located in","http://purl.obolibrary.org/obo/BFO_0000004|","","","","0.0","located_in","","","","","","http://purl.obolibrary.org/obo/RO_0001901","","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between two independent continuants, the target and the location, in which the target is entirely within the location","","","http://purl.obolibrary.org/obo/RO_0001025","","false","located in","http://purl.obolibrary.org/obo/BFO_0000004|","DUO","RO:0001025","RO_0001025","","duo","located in","","http://www.obofoundry.org/ro/#OBO_REL:located_in" +"duo+property+http://purl.obolibrary.org/obo/RO_0001900","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0001900"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""definition"":{""type"":[""literal""],""value"":""An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0001900""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|annotationProperty|entity","","","http://purl.obolibrary.org/obo/IAO_0000115","false","","","","","An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.","","","http://purl.obolibrary.org/obo/RO_0001900","","false","temporal interpretation","","DUO","RO:0001900","RO_0001900","","duo","temporal interpretation","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0002000","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002000"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002000""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the surface of my skin is a 2D boundary of my body"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2D_boundary_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""boundary of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is 2D boundary of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is boundary of"",""lang"":""en""}],""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2D boundary of"",""lang"":""en""},""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002002"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2D boundary of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""the surface of my skin is a 2D boundary of my body"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2D_boundary_of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""boundary of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is 2D boundary of"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is boundary of"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0002000""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002002"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has 2D boundary"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002002""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002002","","http://purl.obolibrary.org/obo/IAO_0000115","false","","A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.|Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.","","","a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","the surface of my skin is a 2D boundary of my body","","","","","","","","","","0.0","2D_boundary_of|boundary of|is 2D boundary of|is boundary of","","","","","","http://purl.obolibrary.org/obo/RO_0001901","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","","","http://purl.obolibrary.org/obo/RO_0002000","","false","2D boundary of","","DUO","RO:0002000","RO_0002000","","duo","2D boundary of","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0002002","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002002"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002002""},""definition"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity"",""lang"":""en""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my body has 2D boundary the surface of my skin"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity"",""lang"":""en""},""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has boundary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_2D_boundary"",""lang"":""en""}],""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#domain"":""http://purl.obolibrary.org/obo/BFO_0000040"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has 2D boundary"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#range"":""http://purl.obolibrary.org/obo/BFO_0000141"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002000"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has 2D boundary"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my body has 2D boundary the surface of my skin"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has boundary"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has_2D_boundary"",""lang"":""en""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0002002""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""editor note"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0002000"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2D boundary of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002000""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://purl.obolibrary.org/obo/BFO_0000040"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""material entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000040""},""type"":[""class"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000141"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""immaterial entity"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000141""},""type"":[""class"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002000","","http://purl.obolibrary.org/obo/IAO_0000115","false","","A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.|Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.","","","a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","my body has 2D boundary the surface of my skin","","","","","","http://purl.obolibrary.org/obo/BFO_0000141","","","","0.0","has boundary|has_2D_boundary","","","","","","http://purl.obolibrary.org/obo/RO_0001901","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","","","http://purl.obolibrary.org/obo/RO_0002002","","false","has 2D boundary","http://purl.obolibrary.org/obo/BFO_0000040","DUO","RO:0002002","RO_0002002","","duo","has 2D boundary","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0002350","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002350"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002350""},""definition"":{""type"":[""literal""],""value"":""is member of is a mereological relation between a item and a collection.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000050"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000112"":{""type"":[""literal""],""value"":""An organism that is a member of a population of organisms""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""is member of is a mereological relation between a item and a collection.""},""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""value"":""is member of""},{""type"":[""literal""],""value"":""member part of""}],""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""SIO""},""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""member of"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002351"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""member of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""An organism that is a member of a population of organisms""},{""type"":[""literal""],""value"":""is member of is a mereological relation between a item and a collection.""},{""type"":[""literal""],""value"":""is member of""},{""type"":[""literal""],""value"":""member part of""},{""type"":[""literal""],""value"":""SIO""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0002350""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""example of usage"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""alternative label"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://purl.obolibrary.org/obo/RO_0002351"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has member"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002351""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002351","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","","","is member of is a mereological relation between a item and a collection.","An organism that is a member of a population of organisms","","","","","","","","","","0.0","is member of|member part of","SIO","","http://purl.obolibrary.org/obo/BFO_0000050","","http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0001901","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","is member of is a mereological relation between a item and a collection.","","http://purl.obolibrary.org/obo/BFO_0000050","http://purl.obolibrary.org/obo/RO_0002350","","false","member of","","DUO","RO:0002350","RO_0002350","","duo","member of","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0002351","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002351"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002351""},""definition"":{""type"":[""literal""],""value"":""has member is a mereological relation between a collection and an item.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/BFO_0000051"",""directParent"":""http://purl.obolibrary.org/obo/BFO_0000051"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""has member is a mereological relation between a collection and an item.""},""http://purl.obolibrary.org/obo/IAO_0000119"":{""type"":[""literal""],""value"":""SIO""},""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#IrreflexiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has member"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subPropertyOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/RO_0002350"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has member"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""has member is a mereological relation between a collection and an item.""},{""type"":[""literal""],""value"":""SIO""},true],""shortForm"":{""type"":[""literal""],""value"":""RO_0002351""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""has part"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000119"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""definition source"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""IAO:0000119""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""temporal interpretation"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://purl.obolibrary.org/obo/RO_0002350"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""member of"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""RO:0002350""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/RO_0002350","","http://purl.obolibrary.org/obo/IAO_0000115","true","","","","","has member is a mereological relation between a collection and an item.","","","","","","","","","","","0.0","","SIO","","http://purl.obolibrary.org/obo/BFO_0000051","","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0001901","","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#IrreflexiveProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","has member is a mereological relation between a collection and an item.","","http://purl.obolibrary.org/obo/BFO_0000051","http://purl.obolibrary.org/obo/RO_0002351","","false","has member","","DUO","RO:0002351","RO_0002351","","duo","has member","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0004096","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004096"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004096""},""definition"":{""type"":[""literal""],""value"":""DEPRECATED This relation is similar to but different in important respects to the characteristic-of relation. See comments on that relation for more information.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""DEPRECATED This relation is similar to but different in important respects to the characteristic-of relation. See comments on that relation for more information.""},""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DEPRECATED inheres in"",""lang"":""en""},""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":true,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DEPRECATED inheres in"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RO_0004096""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#comment"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""comment""},""curie"":{""type"":[""literal""],""value"":""comment""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","http://www.w3.org/2000/01/rdf-schema#comment","false","","","","","","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","DEPRECATED This relation is similar to but different in important respects to the characteristic-of relation. See comments on that relation for more information.","http://purl.obolibrary.org/obo/duo.owl","DEPRECATED This relation is similar to but different in important respects to the characteristic-of relation. See comments on that relation for more information.","","","http://purl.obolibrary.org/obo/RO_0004096","true","true","DEPRECATED inheres in","","DUO","RO:0004096","RO_0004096","","duo","DEPRECATED inheres in","","" +"duo+property+http://purl.obolibrary.org/obo/RO_0004097","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0004097"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0004097""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DEPRECATED bearer of"",""lang"":""en""},""http://www.w3.org/2002/07/owl#deprecated"":true,""imported"":true,""isObsolete"":true,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""DEPRECATED bearer of"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""RO_0004097""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{""http://www.w3.org/2000/01/rdf-schema#label"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""label""},""curie"":{""type"":[""literal""],""value"":""label""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","","0.0","property|objectProperty|entity","","","","false","","","","","","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#ObjectProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.obolibrary.org/obo/RO_0004097","true","true","DEPRECATED bearer of","","DUO","RO:0004097","RO_0004097","","duo","DEPRECATED bearer of","","" "duo+property+http://purl.org/dc/elements/1.1/contributor","OntologyEntity|OntologyProperty","{""iri"":""http://purl.org/dc/elements/1.1/contributor"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""contributor""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""contributor""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""contributor""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{}}","false","false","false","","0.0","property|annotationProperty|entity","","","","false","","","","","","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.org/dc/elements/1.1/contributor","","false","contributor","","DUO","contributor","contributor","","duo","","","" "duo+property+http://purl.org/dc/elements/1.1/coverage","OntologyEntity|OntologyProperty","{""iri"":""http://purl.org/dc/elements/1.1/coverage"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""coverage""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""coverage""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""coverage""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{}}","false","false","false","","0.0","property|annotationProperty|entity","","","","false","","","","","","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.org/dc/elements/1.1/coverage","","false","coverage","","DUO","coverage","coverage","","duo","","","" "duo+property+http://purl.org/dc/elements/1.1/creator","OntologyEntity|OntologyProperty","{""iri"":""http://purl.org/dc/elements/1.1/creator"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""creator""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":true,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""creator""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""duo""},""ontologyIri"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/duo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""DUO""},""searchableAnnotationValues"":true,""shortForm"":{""type"":[""literal""],""value"":""creator""},""isDefiningOntology"":false,""appearsIn"":[""duo""],""linkedEntities"":{}}","false","false","false","","0.0","property|annotationProperty|entity","","","","false","","","","","","","","","","","","","","","","0.0","","","","","","","","","","http://www.w3.org/2002/07/owl#AnnotationProperty","false","false","true","","http://purl.obolibrary.org/obo/duo.owl","","","","http://purl.org/dc/elements/1.1/creator","","false","creator","","DUO","creator","creator","","duo","","","" diff --git a/testcases_expected_output/duo/individuals.jsonl b/testcases_expected_output/duo/individuals.jsonl index 8c7044c77..4ec827893 100644 --- a/testcases_expected_output/duo/individuals.jsonl +++ b/testcases_expected_output/duo/individuals.jsonl @@ -1,20 +1,20 @@ -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000002\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000002\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000002\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000002\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000002\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000002","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"example to be eventually removed","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"example to be eventually removed","id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000002","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000002","isDefiningOntology":"false","isObsolete":"false","label":"example to be eventually removed","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["example to be eventually removed","true"],"shortForm":"IAO_0000002","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000225\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000225\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#Thing\",\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000225\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000103\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000225\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000225\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000103\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000103\"},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000103","definition":"The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000225","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000225","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"failed exploratory term","http__//purl.obolibrary.org/obo/IAO_0000115":"The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#Thing","http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000225"],"http__//www.w3.org/2000/01/rdf-schema#label":"failed exploratory term","id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000103","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000103","isDefiningOntology":"false","isObsolete":"false","label":"failed exploratory term","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["failed exploratory term","The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job","Person:Alan Ruttenberg","true"],"shortForm":"IAO_0000103","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000423\",\"http://purl.obolibrary.org/obo/IAO_0000428\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000120\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000120\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000120\"},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000120","definition":"Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"metadata complete","http__//purl.obolibrary.org/obo/IAO_0000115":"Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"metadata complete","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000121","http://purl.obolibrary.org/obo/IAO_0000122","http://purl.obolibrary.org/obo/IAO_0000123","http://purl.obolibrary.org/obo/IAO_0000124","http://purl.obolibrary.org/obo/IAO_0000125","http://purl.obolibrary.org/obo/IAO_0000423","http://purl.obolibrary.org/obo/IAO_0000428"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000120","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000120","isDefiningOntology":"false","isObsolete":"false","label":"metadata complete","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["metadata complete","Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.","true"],"shortForm":"IAO_0000120","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000121\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Term created to ease viewing/sort terms for development purpose, and will not be included in a release\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Term created to ease viewing/sort terms for development purpose, and will not be included in a release\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000423\",\"http://purl.obolibrary.org/obo/IAO_0000428\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Term created to ease viewing/sort terms for development purpose, and will not be included in a release\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000121\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000121\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000121\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000121\"},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000121","definition":"Term created to ease viewing/sort terms for development purpose, and will not be included in a release","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"organizational term","http__//purl.obolibrary.org/obo/IAO_0000115":"Term created to ease viewing/sort terms for development purpose, and will not be included in a release","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"organizational term","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000120","http://purl.obolibrary.org/obo/IAO_0000122","http://purl.obolibrary.org/obo/IAO_0000123","http://purl.obolibrary.org/obo/IAO_0000124","http://purl.obolibrary.org/obo/IAO_0000125","http://purl.obolibrary.org/obo/IAO_0000423","http://purl.obolibrary.org/obo/IAO_0000428"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000121","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000121","isDefiningOntology":"false","isObsolete":"false","label":"organizational term","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["organizational term","Term created to ease viewing/sort terms for development purpose, and will not be included in a release","true"],"shortForm":"IAO_0000121","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \\\"ready_for_release\\\" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \\\"ready_for_release\\\" will also derived from a chain of ancestor classes that are also \\\"ready_for_release.\\\"\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \\\"ready_for_release\\\" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \\\"ready_for_release\\\" will also derived from a chain of ancestor classes that are also \\\"ready_for_release.\\\"\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000423\",\"http://purl.obolibrary.org/obo/IAO_0000428\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \\\"ready_for_release\\\" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \\\"ready_for_release\\\" will also derived from a chain of ancestor classes that are also \\\"ready_for_release.\\\"\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000122\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000122\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000122\"},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000122","definition":"Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \"ready_for_release\" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \"ready_for_release\" will also derived from a chain of ancestor classes that are also \"ready_for_release.\"","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"ready for release","http__//purl.obolibrary.org/obo/IAO_0000115":"Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \"ready_for_release\" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \"ready_for_release\" will also derived from a chain of ancestor classes that are also \"ready_for_release.\"","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"ready for release","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000120","http://purl.obolibrary.org/obo/IAO_0000121","http://purl.obolibrary.org/obo/IAO_0000123","http://purl.obolibrary.org/obo/IAO_0000124","http://purl.obolibrary.org/obo/IAO_0000125","http://purl.obolibrary.org/obo/IAO_0000423","http://purl.obolibrary.org/obo/IAO_0000428"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000122","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000122","isDefiningOntology":"false","isObsolete":"false","label":"ready for release","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["ready for release","Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \"ready_for_release\" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \"ready_for_release\" will also derived from a chain of ancestor classes that are also \"ready_for_release.\"","true"],"shortForm":"IAO_0000122","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000423\",\"http://purl.obolibrary.org/obo/IAO_0000428\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000123\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000123\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000123\"},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000123","definition":"Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"metadata incomplete","http__//purl.obolibrary.org/obo/IAO_0000115":"Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"metadata incomplete","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000120","http://purl.obolibrary.org/obo/IAO_0000121","http://purl.obolibrary.org/obo/IAO_0000122","http://purl.obolibrary.org/obo/IAO_0000124","http://purl.obolibrary.org/obo/IAO_0000125","http://purl.obolibrary.org/obo/IAO_0000423","http://purl.obolibrary.org/obo/IAO_0000428"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000123","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000123","isDefiningOntology":"false","isObsolete":"false","label":"metadata incomplete","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["metadata incomplete","Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.","true"],"shortForm":"IAO_0000123","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000124\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Nothing done yet beyond assigning a unique class ID and proposing a preferred term.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Nothing done yet beyond assigning a unique class ID and proposing a preferred term.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000423\",\"http://purl.obolibrary.org/obo/IAO_0000428\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Nothing done yet beyond assigning a unique class ID and proposing a preferred term.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000124\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000124\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000124\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000124\"},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000124","definition":"Nothing done yet beyond assigning a unique class ID and proposing a preferred term.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"uncurated","http__//purl.obolibrary.org/obo/IAO_0000115":"Nothing done yet beyond assigning a unique class ID and proposing a preferred term.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"uncurated","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000120","http://purl.obolibrary.org/obo/IAO_0000121","http://purl.obolibrary.org/obo/IAO_0000122","http://purl.obolibrary.org/obo/IAO_0000123","http://purl.obolibrary.org/obo/IAO_0000125","http://purl.obolibrary.org/obo/IAO_0000423","http://purl.obolibrary.org/obo/IAO_0000428"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000124","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000124","isDefiningOntology":"false","isObsolete":"false","label":"uncurated","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["uncurated","Nothing done yet beyond assigning a unique class ID and proposing a preferred term.","true"],"shortForm":"IAO_0000124","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000423\",\"http://purl.obolibrary.org/obo/IAO_0000428\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000125\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000125\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000125\"},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000125","definition":"All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"pending final vetting","http__//purl.obolibrary.org/obo/IAO_0000115":"All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"pending final vetting","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000120","http://purl.obolibrary.org/obo/IAO_0000121","http://purl.obolibrary.org/obo/IAO_0000122","http://purl.obolibrary.org/obo/IAO_0000123","http://purl.obolibrary.org/obo/IAO_0000124","http://purl.obolibrary.org/obo/IAO_0000423","http://purl.obolibrary.org/obo/IAO_0000428"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000125","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000125","isDefiningOntology":"false","isObsolete":"false","label":"pending final vetting","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["pending final vetting","All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.","true"],"shortForm":"IAO_0000125","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000224\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000224\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000226\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_core\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":true,\"isObsolete\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_core\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000224\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000226\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000224\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000224\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000224\"}}}","appearsIn":["duo"],"curie":"IAO:0000224","definition":"Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000226","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#NamedIndividual","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_core","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000224","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000224","isDefiningOntology":"false","isObsolete":"true","label":"obsolete_core","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes.","PERSON: Alan Ruttenberg","PERSON: Melanie Courtot","true"],"shortForm":"IAO_0000224","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000226\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000226\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000225\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000225\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#Thing\",\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000225\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000227\",\"http://purl.obolibrary.org/obo/IAO_0000228\",\"http://purl.obolibrary.org/obo/IAO_0000229\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000226\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000228\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term imported\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000228\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000229\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term split\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000229\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000227\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"terms merged\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000227\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000225\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000225\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000226\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000226\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000226\"}}}","appearsIn":["duo"],"curie":"IAO:0000226","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000225","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000225","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"placeholder removed","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#Thing","http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000225"],"http__//www.w3.org/2000/01/rdf-schema#label":"placeholder removed","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000227","http://purl.obolibrary.org/obo/IAO_0000228","http://purl.obolibrary.org/obo/IAO_0000229"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000226","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000226","isDefiningOntology":"false","isObsolete":"false","label":"placeholder removed","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["placeholder removed","true"],"shortForm":"IAO_0000226","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000227\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000227\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000225\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000225\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"terms merged\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An editor note should explain what were the merged terms and the reason for the merge.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000225\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"terms merged\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000226\",\"http://purl.obolibrary.org/obo/IAO_0000228\",\"http://purl.obolibrary.org/obo/IAO_0000229\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"terms merged\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"terms merged\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An editor note should explain what were the merged terms and the reason for the merge.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000227\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000228\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term imported\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000228\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000229\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term split\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000229\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000226\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000227\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000227\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000227\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000225\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000225\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000227","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000225","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000225","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"terms merged","http__//purl.obolibrary.org/obo/IAO_0000116":"An editor note should explain what were the merged terms and the reason for the merge.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000225"],"http__//www.w3.org/2000/01/rdf-schema#label":"terms merged","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000226","http://purl.obolibrary.org/obo/IAO_0000228","http://purl.obolibrary.org/obo/IAO_0000229"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000227","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000227","isDefiningOntology":"false","isObsolete":"false","label":"terms merged","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["terms merged","An editor note should explain what were the merged terms and the reason for the merge.","true"],"shortForm":"IAO_0000227","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000228\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000228\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000225\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000225\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term imported\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000225\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term imported\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000226\",\"http://purl.obolibrary.org/obo/IAO_0000227\",\"http://purl.obolibrary.org/obo/IAO_0000229\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term imported\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term imported\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000228\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000229\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term split\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000229\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000228\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000228\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000228\"},\"http://purl.obolibrary.org/obo/IAO_0000226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000226\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000227\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"terms merged\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000227\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000225\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000225\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000228","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000225","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000225","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"term imported","http__//purl.obolibrary.org/obo/IAO_0000116":"This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000225"],"http__//www.w3.org/2000/01/rdf-schema#label":"term imported","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000226","http://purl.obolibrary.org/obo/IAO_0000227","http://purl.obolibrary.org/obo/IAO_0000229"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000228","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000228","isDefiningOntology":"false","isObsolete":"false","label":"term imported","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["term imported","This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use.","true"],"shortForm":"IAO_0000228","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000229\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000229\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000225\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000225\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term split\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is to be used when a term has been split in two or more new terms. An editor note should indicate the reason for the split and indicate the URIs of the new terms created.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000225\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term split\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000226\",\"http://purl.obolibrary.org/obo/IAO_0000227\",\"http://purl.obolibrary.org/obo/IAO_0000228\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term split\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term split\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is to be used when a term has been split in two or more new terms. An editor note should indicate the reason for the split and indicate the URIs of the new terms created.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000229\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000228\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term imported\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000228\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000226\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000227\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"terms merged\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000227\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000229\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000229\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000229\"},\"http://purl.obolibrary.org/obo/IAO_0000225\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000225\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000229","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000225","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000225","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"term split","http__//purl.obolibrary.org/obo/IAO_0000116":"This is to be used when a term has been split in two or more new terms. An editor note should indicate the reason for the split and indicate the URIs of the new terms created.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000225"],"http__//www.w3.org/2000/01/rdf-schema#label":"term split","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000226","http://purl.obolibrary.org/obo/IAO_0000227","http://purl.obolibrary.org/obo/IAO_0000228"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000229","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000229","isDefiningOntology":"false","isObsolete":"false","label":"term split","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["term split","This is to be used when a term has been split in two or more new terms. An editor note should indicate the reason for the split and indicate the URIs of the new terms created.","true"],"shortForm":"IAO_0000229","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000230\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000230\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is to be used if none of the existing instances cover the reason for obsolescence. An editor note should indicate this new reason.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"We expect to be able to mine these new reasons and add instances as required.\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_other\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":true,\"isObsolete\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_other\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is to be used if none of the existing instances cover the reason for obsolescence. An editor note should indicate this new reason.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"We expect to be able to mine these new reasons and add instances as required.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000230\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000230\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000230\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000230\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000230","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000116":["This is to be used if none of the existing instances cover the reason for obsolescence. An editor note should indicate this new reason.","We expect to be able to mine these new reasons and add instances as required."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#NamedIndividual","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_other","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000230","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000230","isDefiningOntology":"false","isObsolete":"true","label":"obsolete_other","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["This is to be used if none of the existing instances cover the reason for obsolescence. An editor note should indicate this new reason.","We expect to be able to mine these new reasons and add instances as required.","true"],"shortForm":"IAO_0000230","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000410\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000410\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000409\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000409\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"universal\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Hard to give a definition for. Intuitively a \\\"natural kind\\\" rather than a collection of any old things, which a class is able to be, formally. At the meta level, universals are defined as positives, are disjoint with their siblings, have single asserted parents.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A Formal Theory of Substances, Qualities, and Universals, http://ontology.buffalo.edu/bfo/SQU.pdf\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000409\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"universal\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"universal\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"universal\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Hard to give a definition for. Intuitively a \\\"natural kind\\\" rather than a collection of any old things, which a class is able to be, formally. At the meta level, universals are defined as positives, are disjoint with their siblings, have single asserted parents.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A Formal Theory of Substances, Qualities, and Universals, http://ontology.buffalo.edu/bfo/SQU.pdf\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000410\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000409\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotator type\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000409\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000410\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000410\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000410\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000410","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000409","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000409","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"universal","http__//purl.obolibrary.org/obo/IAO_0000116":"Hard to give a definition for. Intuitively a \"natural kind\" rather than a collection of any old things, which a class is able to be, formally. At the meta level, universals are defined as positives, are disjoint with their siblings, have single asserted parents.","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"A Formal Theory of Substances, Qualities, and Universals, http://ontology.buffalo.edu/bfo/SQU.pdf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000409"],"http__//www.w3.org/2000/01/rdf-schema#label":"universal","id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000410","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000410","isDefiningOntology":"false","isObsolete":"false","label":"universal","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["universal","Hard to give a definition for. Intuitively a \"natural kind\" rather than a collection of any old things, which a class is able to be, formally. At the meta level, universals are defined as positives, are disjoint with their siblings, have single asserted parents.","Alan Ruttenberg","A Formal Theory of Substances, Qualities, and Universals, http://ontology.buffalo.edu/bfo/SQU.pdf","true"],"shortForm":"IAO_0000410","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000420\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000420\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000409\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000409\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined class\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\\\"definitions\\\", in some readings, always are given by necessary and sufficient conditions. So one must be careful (and this is difficult sometimes) to distinguish between defined classes and universal.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000409\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined class\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined class\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined class\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\\\"definitions\\\", in some readings, always are given by necessary and sufficient conditions. So one must be careful (and this is difficult sometimes) to distinguish between defined classes and universal.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000420\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000409\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotator type\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000409\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000420\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000420\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000420\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000420","definition":"A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000409","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000409","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"defined class","http__//purl.obolibrary.org/obo/IAO_0000115":"A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal","http__//purl.obolibrary.org/obo/IAO_0000116":"\"definitions\", in some readings, always are given by necessary and sufficient conditions. So one must be careful (and this is difficult sometimes) to distinguish between defined classes and universal.","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000409"],"http__//www.w3.org/2000/01/rdf-schema#label":"defined class","id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000420","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000420","isDefiningOntology":"false","isObsolete":"false","label":"defined class","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["defined class","A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal","\"definitions\", in some readings, always are given by necessary and sufficient conditions. So one must be careful (and this is difficult sometimes) to distinguish between defined classes and universal.","Alan Ruttenberg","true"],"shortForm":"IAO_0000420","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000421\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000421\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A named class expression is a logical expression that is given a name. The name can be used in place of the expression.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000409\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000409\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"named class expression\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A named class expression is a logical expression that is given a name. The name can be used in place of the expression.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"named class expressions are used in order to have more concise logical definition but their extensions may not be interesting classes on their own. In languages such as OWL, with no provisions for macros, these show up as actuall classes. Tools may with to not show them as such, and to replace uses of the macros with their expansions\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000409\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"named class expression\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"named class expression\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"named class expression\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A named class expression is a logical expression that is given a name. The name can be used in place of the expression.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"named class expressions are used in order to have more concise logical definition but their extensions may not be interesting classes on their own. In languages such as OWL, with no provisions for macros, these show up as actuall classes. Tools may with to not show them as such, and to replace uses of the macros with their expansions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000421\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000409\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotator type\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000409\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000421\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000421\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000421\"},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000421","definition":"A named class expression is a logical expression that is given a name. The name can be used in place of the expression.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000409","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000409","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"named class expression","http__//purl.obolibrary.org/obo/IAO_0000115":"A named class expression is a logical expression that is given a name. The name can be used in place of the expression.","http__//purl.obolibrary.org/obo/IAO_0000116":"named class expressions are used in order to have more concise logical definition but their extensions may not be interesting classes on their own. In languages such as OWL, with no provisions for macros, these show up as actuall classes. Tools may with to not show them as such, and to replace uses of the macros with their expansions","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000409"],"http__//www.w3.org/2000/01/rdf-schema#label":"named class expression","id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000421","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000421","isDefiningOntology":"false","isObsolete":"false","label":"named class expression","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["named class expression","A named class expression is a logical expression that is given a name. The name can be used in place of the expression.","named class expressions are used in order to have more concise logical definition but their extensions may not be interesting classes on their own. In languages such as OWL, with no provisions for macros, these show up as actuall classes. Tools may with to not show them as such, and to replace uses of the macros with their expansions","Alan Ruttenberg","true"],"shortForm":"IAO_0000421","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000423\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Terms with this status should eventually replaced with a term from another ontology.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Terms with this status should eventually replaced with a term from another ontology.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000428\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Terms with this status should eventually replaced with a term from another ontology.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000423\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000423\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000423\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000423\"}}}","appearsIn":["duo"],"curie":"IAO:0000423","definition":"Terms with this status should eventually replaced with a term from another ontology.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"to be replaced with external ontology term","http__//purl.obolibrary.org/obo/IAO_0000115":"Terms with this status should eventually replaced with a term from another ontology.","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"group:OBI","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"to be replaced with external ontology term","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000120","http://purl.obolibrary.org/obo/IAO_0000121","http://purl.obolibrary.org/obo/IAO_0000122","http://purl.obolibrary.org/obo/IAO_0000123","http://purl.obolibrary.org/obo/IAO_0000124","http://purl.obolibrary.org/obo/IAO_0000125","http://purl.obolibrary.org/obo/IAO_0000428"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000423","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000423","isDefiningOntology":"false","isObsolete":"false","label":"to be replaced with external ontology term","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["to be replaced with external ontology term","Terms with this status should eventually replaced with a term from another ontology.","Alan Ruttenberg","group:OBI","true"],"shortForm":"IAO_0000423","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000428\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000423\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000428\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000428\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000428\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000428\"},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000428","definition":"A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"requires discussion","http__//purl.obolibrary.org/obo/IAO_0000115":"A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"group:OBI","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"requires discussion","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000120","http://purl.obolibrary.org/obo/IAO_0000121","http://purl.obolibrary.org/obo/IAO_0000122","http://purl.obolibrary.org/obo/IAO_0000123","http://purl.obolibrary.org/obo/IAO_0000124","http://purl.obolibrary.org/obo/IAO_0000125","http://purl.obolibrary.org/obo/IAO_0000423"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000428","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000428","isDefiningOntology":"false","isObsolete":"false","label":"requires discussion","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["requires discussion","A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.","Alan Ruttenberg","group:OBI","true"],"shortForm":"IAO_0000428","type":["individual","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OMO_0001000\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OMO:0001000\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000225\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000225\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This obsolesence reason should be used conservatively. Typical valid examples are: un-necessary grouping classes in disease ontologies, a phenotype term added on the assumption it was a disease.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":\"http://orcid.org/0000-0001-5208-3432\",\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"value\":\"https://github.com/information-artifact-ontology/ontology-metadata/issues/77\"},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000225\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"out of scope\"},\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"out of scope\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This obsolesence reason should be used conservatively. Typical valid examples are: un-necessary grouping classes in disease ontologies, a phenotype term added on the assumption it was a disease.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/information-artifact-ontology/ontology-metadata/issues/77\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OMO_0001000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"OMO:0001000\":{\"url\":\"http://purl.obolibrary.org/obo/OMO_0001000\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OMO:0001000\"},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"https://orcid.org/0000-0001-5208-3432\":{\"url\":\"https://orcid.org/0000-0001-5208-3432\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0001-5208-3432\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000225\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000225\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OMO:0001000","definition":"The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000225","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000225","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.","http__//purl.obolibrary.org/obo/IAO_0000116":"This obsolesence reason should be used conservatively. Typical valid examples are: un-necessary grouping classes in disease ontologies, a phenotype term added on the assumption it was a disease.","http__//purl.obolibrary.org/obo/IAO_0000117":"http://orcid.org/0000-0001-5208-3432","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/ontology-metadata/issues/77","http__//purl.obolibrary.org/obo/IAO_0000234":"https://orcid.org/0000-0001-5208-3432","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000225"],"http__//www.w3.org/2000/01/rdf-schema#label":"out of scope","id":"duo+individual+http://purl.obolibrary.org/obo/OMO_0001000","imported":"true","iri":"http://purl.obolibrary.org/obo/OMO_0001000","isDefiningOntology":"false","isObsolete":"false","label":"out of scope","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.","This obsolesence reason should be used conservatively. Typical valid examples are: un-necessary grouping classes in disease ontologies, a phenotype term added on the assumption it was a disease.","https://github.com/information-artifact-ontology/ontology-metadata/issues/77","https://orcid.org/0000-0001-5208-3432","true"],"shortForm":"OMO_0001000","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000002\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000002\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example to be eventually removed\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000002","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"example to be eventually removed","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"example to be eventually removed","id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000002","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000002","isDefiningOntology":"false","isObsolete":"false","label":"example to be eventually removed","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["example to be eventually removed","true"],"shortForm":"IAO_0000002","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000225\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000225\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#Thing\",\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000225\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000103\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000225\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000225\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000103","definition":"The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000225","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000225","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"failed exploratory term","http__//purl.obolibrary.org/obo/IAO_0000115":"The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#Thing","http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000225"],"http__//www.w3.org/2000/01/rdf-schema#label":"failed exploratory term","id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000103","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000103","isDefiningOntology":"false","isObsolete":"false","label":"failed exploratory term","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["failed exploratory term","The term was used in an attempt to structure part of the ontology but in retrospect failed to do a good job","Person:Alan Ruttenberg","true"],"shortForm":"IAO_0000103","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000423\",\"http://purl.obolibrary.org/obo/IAO_0000428\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000120\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000120","definition":"Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"metadata complete","http__//purl.obolibrary.org/obo/IAO_0000115":"Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"metadata complete","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000121","http://purl.obolibrary.org/obo/IAO_0000122","http://purl.obolibrary.org/obo/IAO_0000123","http://purl.obolibrary.org/obo/IAO_0000124","http://purl.obolibrary.org/obo/IAO_0000125","http://purl.obolibrary.org/obo/IAO_0000423","http://purl.obolibrary.org/obo/IAO_0000428"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000120","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000120","isDefiningOntology":"false","isObsolete":"false","label":"metadata complete","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["metadata complete","Class has all its metadata, but is either not guaranteed to be in its final location in the asserted IS_A hierarchy or refers to another class that is not complete.","true"],"shortForm":"IAO_0000120","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000121\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Term created to ease viewing/sort terms for development purpose, and will not be included in a release\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Term created to ease viewing/sort terms for development purpose, and will not be included in a release\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000423\",\"http://purl.obolibrary.org/obo/IAO_0000428\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Term created to ease viewing/sort terms for development purpose, and will not be included in a release\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000121\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000121","definition":"Term created to ease viewing/sort terms for development purpose, and will not be included in a release","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"organizational term","http__//purl.obolibrary.org/obo/IAO_0000115":"Term created to ease viewing/sort terms for development purpose, and will not be included in a release","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"organizational term","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000120","http://purl.obolibrary.org/obo/IAO_0000122","http://purl.obolibrary.org/obo/IAO_0000123","http://purl.obolibrary.org/obo/IAO_0000124","http://purl.obolibrary.org/obo/IAO_0000125","http://purl.obolibrary.org/obo/IAO_0000423","http://purl.obolibrary.org/obo/IAO_0000428"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000121","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000121","isDefiningOntology":"false","isObsolete":"false","label":"organizational term","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["organizational term","Term created to ease viewing/sort terms for development purpose, and will not be included in a release","true"],"shortForm":"IAO_0000121","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \\\"ready_for_release\\\" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \\\"ready_for_release\\\" will also derived from a chain of ancestor classes that are also \\\"ready_for_release.\\\"\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \\\"ready_for_release\\\" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \\\"ready_for_release\\\" will also derived from a chain of ancestor classes that are also \\\"ready_for_release.\\\"\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000423\",\"http://purl.obolibrary.org/obo/IAO_0000428\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \\\"ready_for_release\\\" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \\\"ready_for_release\\\" will also derived from a chain of ancestor classes that are also \\\"ready_for_release.\\\"\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000122\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000122","definition":"Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \"ready_for_release\" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \"ready_for_release\" will also derived from a chain of ancestor classes that are also \"ready_for_release.\"","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"ready for release","http__//purl.obolibrary.org/obo/IAO_0000115":"Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \"ready_for_release\" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \"ready_for_release\" will also derived from a chain of ancestor classes that are also \"ready_for_release.\"","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"ready for release","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000120","http://purl.obolibrary.org/obo/IAO_0000121","http://purl.obolibrary.org/obo/IAO_0000123","http://purl.obolibrary.org/obo/IAO_0000124","http://purl.obolibrary.org/obo/IAO_0000125","http://purl.obolibrary.org/obo/IAO_0000423","http://purl.obolibrary.org/obo/IAO_0000428"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000122","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000122","isDefiningOntology":"false","isObsolete":"false","label":"ready for release","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["ready for release","Class has undergone final review, is ready for use, and will be included in the next release. Any class lacking \"ready_for_release\" should be considered likely to change place in hierarchy, have its definition refined, or be obsoleted in the next release. Those classes deemed \"ready_for_release\" will also derived from a chain of ancestor classes that are also \"ready_for_release.\"","true"],"shortForm":"IAO_0000122","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000423\",\"http://purl.obolibrary.org/obo/IAO_0000428\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000123\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000123","definition":"Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"metadata incomplete","http__//purl.obolibrary.org/obo/IAO_0000115":"Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"metadata incomplete","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000120","http://purl.obolibrary.org/obo/IAO_0000121","http://purl.obolibrary.org/obo/IAO_0000122","http://purl.obolibrary.org/obo/IAO_0000124","http://purl.obolibrary.org/obo/IAO_0000125","http://purl.obolibrary.org/obo/IAO_0000423","http://purl.obolibrary.org/obo/IAO_0000428"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000123","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000123","isDefiningOntology":"false","isObsolete":"false","label":"metadata incomplete","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["metadata incomplete","Class is being worked on; however, the metadata (including definition) are not complete or sufficiently clear to the branch editors.","true"],"shortForm":"IAO_0000123","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000124\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Nothing done yet beyond assigning a unique class ID and proposing a preferred term.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Nothing done yet beyond assigning a unique class ID and proposing a preferred term.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000423\",\"http://purl.obolibrary.org/obo/IAO_0000428\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Nothing done yet beyond assigning a unique class ID and proposing a preferred term.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000124\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000124","definition":"Nothing done yet beyond assigning a unique class ID and proposing a preferred term.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"uncurated","http__//purl.obolibrary.org/obo/IAO_0000115":"Nothing done yet beyond assigning a unique class ID and proposing a preferred term.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"uncurated","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000120","http://purl.obolibrary.org/obo/IAO_0000121","http://purl.obolibrary.org/obo/IAO_0000122","http://purl.obolibrary.org/obo/IAO_0000123","http://purl.obolibrary.org/obo/IAO_0000125","http://purl.obolibrary.org/obo/IAO_0000423","http://purl.obolibrary.org/obo/IAO_0000428"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000124","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000124","isDefiningOntology":"false","isObsolete":"false","label":"uncurated","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["uncurated","Nothing done yet beyond assigning a unique class ID and proposing a preferred term.","true"],"shortForm":"IAO_0000124","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000423\",\"http://purl.obolibrary.org/obo/IAO_0000428\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000125\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000125","definition":"All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"pending final vetting","http__//purl.obolibrary.org/obo/IAO_0000115":"All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"pending final vetting","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000120","http://purl.obolibrary.org/obo/IAO_0000121","http://purl.obolibrary.org/obo/IAO_0000122","http://purl.obolibrary.org/obo/IAO_0000123","http://purl.obolibrary.org/obo/IAO_0000124","http://purl.obolibrary.org/obo/IAO_0000423","http://purl.obolibrary.org/obo/IAO_0000428"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000125","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000125","isDefiningOntology":"false","isObsolete":"false","label":"pending final vetting","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["pending final vetting","All definitions, placement in the asserted IS_A hierarchy and required minimal metadata are complete. The class is awaiting a final review by someone other than the term editor.","true"],"shortForm":"IAO_0000125","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000224\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000224\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000226\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_core\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":true,\"isObsolete\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_core\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Melanie Courtot\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000224\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000226\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000224","definition":"Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000226","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#NamedIndividual","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_core","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000224","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000224","isDefiningOntology":"false","isObsolete":"true","label":"obsolete_core","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["Core is an instance of a grouping of terms from an ontology or ontologies. It is used by the ontology to identify main classes.","PERSON: Alan Ruttenberg","PERSON: Melanie Courtot","true"],"shortForm":"IAO_0000224","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000226\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000226\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000225\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000225\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#Thing\",\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000225\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000227\",\"http://purl.obolibrary.org/obo/IAO_0000228\",\"http://purl.obolibrary.org/obo/IAO_0000229\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000226\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000228\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term imported\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000228\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000229\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term split\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000229\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000227\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"terms merged\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000227\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000225\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000225\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000226","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000225","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000225","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"placeholder removed","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#Thing","http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000225"],"http__//www.w3.org/2000/01/rdf-schema#label":"placeholder removed","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000227","http://purl.obolibrary.org/obo/IAO_0000228","http://purl.obolibrary.org/obo/IAO_0000229"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000226","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000226","isDefiningOntology":"false","isObsolete":"false","label":"placeholder removed","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["placeholder removed","true"],"shortForm":"IAO_0000226","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000227\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000227\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000225\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000225\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"terms merged\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An editor note should explain what were the merged terms and the reason for the merge.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000225\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"terms merged\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000226\",\"http://purl.obolibrary.org/obo/IAO_0000228\",\"http://purl.obolibrary.org/obo/IAO_0000229\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"terms merged\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"terms merged\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An editor note should explain what were the merged terms and the reason for the merge.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000227\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000228\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term imported\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000228\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000229\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term split\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000229\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000226\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000225\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000225\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000227","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000225","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000225","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"terms merged","http__//purl.obolibrary.org/obo/IAO_0000116":"An editor note should explain what were the merged terms and the reason for the merge.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000225"],"http__//www.w3.org/2000/01/rdf-schema#label":"terms merged","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000226","http://purl.obolibrary.org/obo/IAO_0000228","http://purl.obolibrary.org/obo/IAO_0000229"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000227","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000227","isDefiningOntology":"false","isObsolete":"false","label":"terms merged","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["terms merged","An editor note should explain what were the merged terms and the reason for the merge.","true"],"shortForm":"IAO_0000227","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000228\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000228\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000225\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000225\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term imported\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000225\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term imported\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000226\",\"http://purl.obolibrary.org/obo/IAO_0000227\",\"http://purl.obolibrary.org/obo/IAO_0000229\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term imported\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term imported\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000228\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000229\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term split\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000229\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000226\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000227\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"terms merged\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000227\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000225\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000225\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000228","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000225","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000225","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"term imported","http__//purl.obolibrary.org/obo/IAO_0000116":"This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000225"],"http__//www.w3.org/2000/01/rdf-schema#label":"term imported","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000226","http://purl.obolibrary.org/obo/IAO_0000227","http://purl.obolibrary.org/obo/IAO_0000229"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000228","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000228","isDefiningOntology":"false","isObsolete":"false","label":"term imported","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["term imported","This is to be used when the original term has been replaced by a term imported from an other ontology. An editor note should indicate what is the URI of the new term to use.","true"],"shortForm":"IAO_0000228","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000229\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000229\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000225\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000225\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term split\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is to be used when a term has been split in two or more new terms. An editor note should indicate the reason for the split and indicate the URIs of the new terms created.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000225\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term split\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000226\",\"http://purl.obolibrary.org/obo/IAO_0000227\",\"http://purl.obolibrary.org/obo/IAO_0000228\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term split\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term split\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is to be used when a term has been split in two or more new terms. An editor note should indicate the reason for the split and indicate the URIs of the new terms created.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000229\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000228\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term imported\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000228\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000226\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"placeholder removed\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000226\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000227\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"terms merged\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000227\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000225\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000225\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000229","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000225","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000225","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"term split","http__//purl.obolibrary.org/obo/IAO_0000116":"This is to be used when a term has been split in two or more new terms. An editor note should indicate the reason for the split and indicate the URIs of the new terms created.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000225"],"http__//www.w3.org/2000/01/rdf-schema#label":"term split","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000226","http://purl.obolibrary.org/obo/IAO_0000227","http://purl.obolibrary.org/obo/IAO_0000228"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000229","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000229","isDefiningOntology":"false","isObsolete":"false","label":"term split","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["term split","This is to be used when a term has been split in two or more new terms. An editor note should indicate the reason for the split and indicate the URIs of the new terms created.","true"],"shortForm":"IAO_0000229","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000230\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000230\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is to be used if none of the existing instances cover the reason for obsolescence. An editor note should indicate this new reason.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"We expect to be able to mine these new reasons and add instances as required.\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_other\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":true,\"isObsolete\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolete_other\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is to be used if none of the existing instances cover the reason for obsolescence. An editor note should indicate this new reason.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"We expect to be able to mine these new reasons and add instances as required.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000230\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000230","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000116":["This is to be used if none of the existing instances cover the reason for obsolescence. An editor note should indicate this new reason.","We expect to be able to mine these new reasons and add instances as required."],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#NamedIndividual","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_other","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000230","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000230","isDefiningOntology":"false","isObsolete":"true","label":"obsolete_other","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["This is to be used if none of the existing instances cover the reason for obsolescence. An editor note should indicate this new reason.","We expect to be able to mine these new reasons and add instances as required.","true"],"shortForm":"IAO_0000230","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000410\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000410\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000409\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000409\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"universal\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Hard to give a definition for. Intuitively a \\\"natural kind\\\" rather than a collection of any old things, which a class is able to be, formally. At the meta level, universals are defined as positives, are disjoint with their siblings, have single asserted parents.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A Formal Theory of Substances, Qualities, and Universals, http://ontology.buffalo.edu/bfo/SQU.pdf\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000409\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"universal\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"universal\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"universal\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Hard to give a definition for. Intuitively a \\\"natural kind\\\" rather than a collection of any old things, which a class is able to be, formally. At the meta level, universals are defined as positives, are disjoint with their siblings, have single asserted parents.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A Formal Theory of Substances, Qualities, and Universals, http://ontology.buffalo.edu/bfo/SQU.pdf\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000410\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000409\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotator type\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000409\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000410","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000409","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000409","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"universal","http__//purl.obolibrary.org/obo/IAO_0000116":"Hard to give a definition for. Intuitively a \"natural kind\" rather than a collection of any old things, which a class is able to be, formally. At the meta level, universals are defined as positives, are disjoint with their siblings, have single asserted parents.","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"A Formal Theory of Substances, Qualities, and Universals, http://ontology.buffalo.edu/bfo/SQU.pdf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000409"],"http__//www.w3.org/2000/01/rdf-schema#label":"universal","id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000410","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000410","isDefiningOntology":"false","isObsolete":"false","label":"universal","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["universal","Hard to give a definition for. Intuitively a \"natural kind\" rather than a collection of any old things, which a class is able to be, formally. At the meta level, universals are defined as positives, are disjoint with their siblings, have single asserted parents.","Alan Ruttenberg","A Formal Theory of Substances, Qualities, and Universals, http://ontology.buffalo.edu/bfo/SQU.pdf","true"],"shortForm":"IAO_0000410","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000420\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000420\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000409\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000409\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined class\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\\\"definitions\\\", in some readings, always are given by necessary and sufficient conditions. So one must be careful (and this is difficult sometimes) to distinguish between defined classes and universal.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000409\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined class\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined class\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"defined class\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\\\"definitions\\\", in some readings, always are given by necessary and sufficient conditions. So one must be careful (and this is difficult sometimes) to distinguish between defined classes and universal.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000420\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000409\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotator type\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000409\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000420","definition":"A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000409","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000409","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"defined class","http__//purl.obolibrary.org/obo/IAO_0000115":"A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal","http__//purl.obolibrary.org/obo/IAO_0000116":"\"definitions\", in some readings, always are given by necessary and sufficient conditions. So one must be careful (and this is difficult sometimes) to distinguish between defined classes and universal.","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000409"],"http__//www.w3.org/2000/01/rdf-schema#label":"defined class","id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000420","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000420","isDefiningOntology":"false","isObsolete":"false","label":"defined class","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["defined class","A defined class is a class that is defined by a set of logically necessary and sufficient conditions but is not a universal","\"definitions\", in some readings, always are given by necessary and sufficient conditions. So one must be careful (and this is difficult sometimes) to distinguish between defined classes and universal.","Alan Ruttenberg","true"],"shortForm":"IAO_0000420","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000421\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000421\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A named class expression is a logical expression that is given a name. The name can be used in place of the expression.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000409\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000409\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"named class expression\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A named class expression is a logical expression that is given a name. The name can be used in place of the expression.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"named class expressions are used in order to have more concise logical definition but their extensions may not be interesting classes on their own. In languages such as OWL, with no provisions for macros, these show up as actuall classes. Tools may with to not show them as such, and to replace uses of the macros with their expansions\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000409\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"named class expression\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"named class expression\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"named class expression\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A named class expression is a logical expression that is given a name. The name can be used in place of the expression.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"named class expressions are used in order to have more concise logical definition but their extensions may not be interesting classes on their own. In languages such as OWL, with no provisions for macros, these show up as actuall classes. Tools may with to not show them as such, and to replace uses of the macros with their expansions\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000421\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000409\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotator type\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000409\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000421","definition":"A named class expression is a logical expression that is given a name. The name can be used in place of the expression.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000409","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000409","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"named class expression","http__//purl.obolibrary.org/obo/IAO_0000115":"A named class expression is a logical expression that is given a name. The name can be used in place of the expression.","http__//purl.obolibrary.org/obo/IAO_0000116":"named class expressions are used in order to have more concise logical definition but their extensions may not be interesting classes on their own. In languages such as OWL, with no provisions for macros, these show up as actuall classes. Tools may with to not show them as such, and to replace uses of the macros with their expansions","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000409"],"http__//www.w3.org/2000/01/rdf-schema#label":"named class expression","id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000421","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000421","isDefiningOntology":"false","isObsolete":"false","label":"named class expression","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["named class expression","A named class expression is a logical expression that is given a name. The name can be used in place of the expression.","named class expressions are used in order to have more concise logical definition but their extensions may not be interesting classes on their own. In languages such as OWL, with no provisions for macros, these show up as actuall classes. Tools may with to not show them as such, and to replace uses of the macros with their expansions","Alan Ruttenberg","true"],"shortForm":"IAO_0000421","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000423\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Terms with this status should eventually replaced with a term from another ontology.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Terms with this status should eventually replaced with a term from another ontology.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000428\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Terms with this status should eventually replaced with a term from another ontology.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000423\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000428\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000423","definition":"Terms with this status should eventually replaced with a term from another ontology.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"to be replaced with external ontology term","http__//purl.obolibrary.org/obo/IAO_0000115":"Terms with this status should eventually replaced with a term from another ontology.","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"group:OBI","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"to be replaced with external ontology term","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000120","http://purl.obolibrary.org/obo/IAO_0000121","http://purl.obolibrary.org/obo/IAO_0000122","http://purl.obolibrary.org/obo/IAO_0000123","http://purl.obolibrary.org/obo/IAO_0000124","http://purl.obolibrary.org/obo/IAO_0000125","http://purl.obolibrary.org/obo/IAO_0000428"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000423","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000423","isDefiningOntology":"false","isObsolete":"false","label":"to be replaced with external ontology term","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["to be replaced with external ontology term","Terms with this status should eventually replaced with a term from another ontology.","Alan Ruttenberg","group:OBI","true"],"shortForm":"IAO_0000423","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000428\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000428\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000078\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000078\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000078\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#differentFrom\":[\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000121\",\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000124\",\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000423\"],\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"requires discussion\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"group:OBI\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000428\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000078\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curation status specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000078\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000124\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"uncurated\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000124\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000121\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"organizational term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000121\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to be replaced with external ontology term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000423\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000428","definition":"A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000078","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000078","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"requires discussion","http__//purl.obolibrary.org/obo/IAO_0000115":"A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"group:OBI","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000078"],"http__//www.w3.org/2000/01/rdf-schema#label":"requires discussion","http__//www.w3.org/2002/07/owl#differentFrom":["http://purl.obolibrary.org/obo/IAO_0000120","http://purl.obolibrary.org/obo/IAO_0000121","http://purl.obolibrary.org/obo/IAO_0000122","http://purl.obolibrary.org/obo/IAO_0000123","http://purl.obolibrary.org/obo/IAO_0000124","http://purl.obolibrary.org/obo/IAO_0000125","http://purl.obolibrary.org/obo/IAO_0000423"],"id":"duo+individual+http://purl.obolibrary.org/obo/IAO_0000428","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000428","isDefiningOntology":"false","isObsolete":"false","label":"requires discussion","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["requires discussion","A term that is metadata complete, has been reviewed, and problems have been identified that require discussion before release. Such a term requires editor note(s) to identify the outstanding issues.","Alan Ruttenberg","group:OBI","true"],"shortForm":"IAO_0000428","type":["individual","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OMO_0001000\",\"type\":[\"individual\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OMO:0001000\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/IAO_0000225\",\"http://purl.obolibrary.org/obo/IAO_0000102\",\"http://purl.obolibrary.org/obo/IAO_0000027\",\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000001\"],\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000225\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This obsolesence reason should be used conservatively. Typical valid examples are: un-necessary grouping classes in disease ontologies, a phenotype term added on the assumption it was a disease.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":\"http://orcid.org/0000-0001-5208-3432\",\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"value\":\"https://github.com/information-artifact-ontology/ontology-metadata/issues/77\"},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#NamedIndividual\",\"http://purl.obolibrary.org/obo/IAO_0000225\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"out of scope\"},\"imported\":true,\"isObsolete\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"out of scope\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This obsolesence reason should be used conservatively. Typical valid examples are: un-necessary grouping classes in disease ontologies, a phenotype term added on the assumption it was a disease.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"https://github.com/information-artifact-ontology/ontology-metadata/issues/77\"},{\"type\":[\"literal\"],\"value\":\"https://orcid.org/0000-0001-5208-3432\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OMO_0001000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"https://orcid.org/0000-0001-5208-3432\":{\"url\":\"https://orcid.org/0000-0001-5208-3432\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0001-5208-3432\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000225\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"obsolescence reason specification\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000225\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000027\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000027\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000102\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"data about an ontology part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000102\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OMO:0001000","definition":"The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":["http://purl.obolibrary.org/obo/IAO_0000225","http://purl.obolibrary.org/obo/IAO_0000102","http://purl.obolibrary.org/obo/IAO_0000027","http://purl.obolibrary.org/obo/IAO_0000030","http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000001"],"directParent":"http://purl.obolibrary.org/obo/IAO_0000225","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.","http__//purl.obolibrary.org/obo/IAO_0000116":"This obsolesence reason should be used conservatively. Typical valid examples are: un-necessary grouping classes in disease ontologies, a phenotype term added on the assumption it was a disease.","http__//purl.obolibrary.org/obo/IAO_0000117":"http://orcid.org/0000-0001-5208-3432","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/ontology-metadata/issues/77","http__//purl.obolibrary.org/obo/IAO_0000234":"https://orcid.org/0000-0001-5208-3432","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#NamedIndividual","http://purl.obolibrary.org/obo/IAO_0000225"],"http__//www.w3.org/2000/01/rdf-schema#label":"out of scope","id":"duo+individual+http://purl.obolibrary.org/obo/OMO_0001000","imported":"true","iri":"http://purl.obolibrary.org/obo/OMO_0001000","isDefiningOntology":"false","isObsolete":"false","label":"out of scope","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["The term was added to the ontology on the assumption it was in scope, but it turned out later that it was not.","This obsolesence reason should be used conservatively. Typical valid examples are: un-necessary grouping classes in disease ontologies, a phenotype term added on the assumption it was a disease.","https://github.com/information-artifact-ontology/ontology-metadata/issues/77","https://orcid.org/0000-0001-5208-3432","true"],"shortForm":"OMO_0001000","type":["individual","entity"]} diff --git a/testcases_expected_output/duo/ontologies.json b/testcases_expected_output/duo/ontologies.json index 95f9b6e77..d7cd44510 100644 --- a/testcases_expected_output/duo/ontologies.json +++ b/testcases_expected_output/duo/ontologies.json @@ -7504,10 +7504,10 @@ }, "axioms": [ { - "http://purl.obolibrary.org/obo/IAO_0010000": "http://purl.obolibrary.org/obo/bfo/axiom/0000301" + "http://purl.obolibrary.org/obo/IAO_0010000": "http://purl.obolibrary.org/obo/bfo/axiom/0000011" }, { - "http://purl.obolibrary.org/obo/IAO_0010000": "http://purl.obolibrary.org/obo/bfo/axiom/0000011" + "http://purl.obolibrary.org/obo/IAO_0010000": "http://purl.obolibrary.org/obo/bfo/axiom/0000301" } ] }, @@ -7741,10 +7741,10 @@ }, "axioms": [ { - "http://purl.obolibrary.org/obo/IAO_0010000": "http://purl.obolibrary.org/obo/bfo/axiom/0000301" + "http://purl.obolibrary.org/obo/IAO_0010000": "http://purl.obolibrary.org/obo/bfo/axiom/0000011" }, { - "http://purl.obolibrary.org/obo/IAO_0010000": "http://purl.obolibrary.org/obo/bfo/axiom/0000011" + "http://purl.obolibrary.org/obo/IAO_0010000": "http://purl.obolibrary.org/obo/bfo/axiom/0000301" } ] }, diff --git a/testcases_expected_output/duo/ontologies_linked.json b/testcases_expected_output/duo/ontologies_linked.json index 267d7f8ab..365533fdf 100644 --- a/testcases_expected_output/duo/ontologies_linked.json +++ b/testcases_expected_output/duo/ontologies_linked.json @@ -3484,11 +3484,6 @@ "entity" ] }, - "BFO:0000001": { - "url": "http://purl.obolibrary.org/obo/BFO_0000001", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000001" - }, "http://www.w3.org/2000/01/rdf-schema#comment": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -4280,11 +4275,6 @@ "entity" ] }, - "BFO:0000002": { - "url": "http://purl.obolibrary.org/obo/BFO_0000002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000002" - }, "http://purl.obolibrary.org/obo/IAO_0000602": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -4922,11 +4912,6 @@ "entity" ] }, - "BFO:0000003": { - "url": "http://purl.obolibrary.org/obo/BFO_0000003", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000003" - }, "http://purl.obolibrary.org/obo/IAO_0000600": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -5730,11 +5715,6 @@ "entity" ] }, - "BFO:0000004": { - "url": "http://purl.obolibrary.org/obo/BFO_0000004", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000004" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -6441,11 +6421,6 @@ "entity" ] }, - "BFO:0000006": { - "url": "http://purl.obolibrary.org/obo/BFO_0000006", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000006" - }, "http://purl.obolibrary.org/obo/IAO_0000602": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -7109,11 +7084,6 @@ "entity" ] }, - "BFO:0000008": { - "url": "http://purl.obolibrary.org/obo/BFO_0000008", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000008" - }, "http://purl.obolibrary.org/obo/IAO_0000600": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -7671,11 +7641,6 @@ "entity" ] }, - "BFO:0000009": { - "url": "http://purl.obolibrary.org/obo/BFO_0000009", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000009" - }, "http://purl.obolibrary.org/obo/IAO_0000600": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -8424,11 +8389,6 @@ "entity" ] }, - "BFO:0000011": { - "url": "http://purl.obolibrary.org/obo/BFO_0000011", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000011" - }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -8989,11 +8949,6 @@ "entity" ] }, - "BFO:0000015": { - "url": "http://purl.obolibrary.org/obo/BFO_0000015", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000015" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -9602,11 +9557,6 @@ "entity" ] }, - "BFO:0000016": { - "url": "http://purl.obolibrary.org/obo/BFO_0000016", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000016" - }, "http://purl.obolibrary.org/obo/BFO_0000179": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -10298,11 +10248,6 @@ "entity" ] }, - "BFO:0000017": { - "url": "http://purl.obolibrary.org/obo/BFO_0000017", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000017" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -10916,11 +10861,6 @@ "entity" ] }, - "BFO:0000018": { - "url": "http://purl.obolibrary.org/obo/BFO_0000018", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000018" - }, "http://purl.obolibrary.org/obo/BFO_0000179": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -11717,11 +11657,6 @@ "duo" ], "linkedEntities": { - "BFO:0000019": { - "url": "http://purl.obolibrary.org/obo/BFO_0000019", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000019" - }, "http://purl.obolibrary.org/obo/BFO_0000179": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -12424,11 +12359,6 @@ "duo" ], "linkedEntities": { - "BFO:0000020": { - "url": "http://purl.obolibrary.org/obo/BFO_0000020", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000020" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -13357,11 +13287,6 @@ "entity" ] }, - "BFO:0000023": { - "url": "http://purl.obolibrary.org/obo/BFO_0000023", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000023" - }, "http://purl.obolibrary.org/obo/BFO_0000020": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -13990,11 +13915,6 @@ "annotationProperty", "entity" ] - }, - "BFO:0000024": { - "url": "http://purl.obolibrary.org/obo/BFO_0000024", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000024" } } }, @@ -14470,11 +14390,6 @@ "entity" ] }, - "BFO:0000026": { - "url": "http://purl.obolibrary.org/obo/BFO_0000026", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000026" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -14687,10 +14602,10 @@ }, "axioms": [ { - "http://purl.obolibrary.org/obo/IAO_0010000": "http://purl.obolibrary.org/obo/bfo/axiom/0000301" + "http://purl.obolibrary.org/obo/IAO_0010000": "http://purl.obolibrary.org/obo/bfo/axiom/0000011" }, { - "http://purl.obolibrary.org/obo/IAO_0010000": "http://purl.obolibrary.org/obo/bfo/axiom/0000011" + "http://purl.obolibrary.org/obo/IAO_0010000": "http://purl.obolibrary.org/obo/bfo/axiom/0000301" } ] }, @@ -14924,10 +14839,10 @@ }, "axioms": [ { - "http://purl.obolibrary.org/obo/IAO_0010000": "http://purl.obolibrary.org/obo/bfo/axiom/0000301" + "http://purl.obolibrary.org/obo/IAO_0010000": "http://purl.obolibrary.org/obo/bfo/axiom/0000011" }, { - "http://purl.obolibrary.org/obo/IAO_0010000": "http://purl.obolibrary.org/obo/bfo/axiom/0000011" + "http://purl.obolibrary.org/obo/IAO_0010000": "http://purl.obolibrary.org/obo/bfo/axiom/0000301" } ] }, @@ -15320,11 +15235,6 @@ "annotationProperty", "entity" ] - }, - "BFO:0000027": { - "url": "http://purl.obolibrary.org/obo/BFO_0000027", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000027" } } }, @@ -15816,11 +15726,6 @@ "entity" ] }, - "BFO:0000028": { - "url": "http://purl.obolibrary.org/obo/BFO_0000028", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000028" - }, "http://purl.obolibrary.org/obo/BFO_0000141": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -16496,11 +16401,6 @@ "entity" ] }, - "BFO:0000029": { - "url": "http://purl.obolibrary.org/obo/BFO_0000029", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000029" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -17182,11 +17082,6 @@ "entity" ] }, - "BFO:0000030": { - "url": "http://purl.obolibrary.org/obo/BFO_0000030", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000030" - }, "http://purl.obolibrary.org/obo/BFO_0000180": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -17667,11 +17562,6 @@ "entity" ] }, - "BFO:0000031": { - "url": "http://purl.obolibrary.org/obo/BFO_0000031", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000031" - }, "http://purl.obolibrary.org/obo/BFO_0000180": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -18222,11 +18112,6 @@ "entity" ] }, - "BFO:0000034": { - "url": "http://purl.obolibrary.org/obo/BFO_0000034", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000034" - }, "http://purl.obolibrary.org/obo/BFO_0000180": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -18788,11 +18673,6 @@ "entity" ] }, - "BFO:0000035": { - "url": "http://purl.obolibrary.org/obo/BFO_0000035", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000035" - }, "http://purl.obolibrary.org/obo/BFO_0000180": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -19279,11 +19159,6 @@ "entity" ] }, - "BFO:0000038": { - "url": "http://purl.obolibrary.org/obo/BFO_0000038", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000038" - }, "http://purl.obolibrary.org/obo/BFO_0000148": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -20197,11 +20072,6 @@ "entity" ] }, - "BFO:0000040": { - "url": "http://purl.obolibrary.org/obo/BFO_0000040", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000040" - }, "http://purl.obolibrary.org/obo/IAO_0000602": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -20587,11 +20457,6 @@ "duo" ], "linkedEntities": { - "BFO:0000140": { - "url": "http://purl.obolibrary.org/obo/BFO_0000140", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000140" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -21015,11 +20880,6 @@ "duo" ], "linkedEntities": { - "BFO:0000141": { - "url": "http://purl.obolibrary.org/obo/BFO_0000141", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000141" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -21761,11 +21621,6 @@ "entity" ] }, - "BFO:0000142": { - "url": "http://purl.obolibrary.org/obo/BFO_0000142", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000142" - }, "http://purl.obolibrary.org/obo/BFO_0000140": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -22429,11 +22284,6 @@ "annotationProperty", "entity" ] - }, - "BFO:0000144": { - "url": "http://purl.obolibrary.org/obo/BFO_0000144", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000144" } } }, @@ -22946,11 +22796,6 @@ "class", "entity" ] - }, - "BFO:0000145": { - "url": "http://purl.obolibrary.org/obo/BFO_0000145", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000145" } } }, @@ -23342,11 +23187,6 @@ "entity" ] }, - "BFO:0000146": { - "url": "http://purl.obolibrary.org/obo/BFO_0000146", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000146" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -23990,11 +23830,6 @@ "entity" ] }, - "BFO:0000147": { - "url": "http://purl.obolibrary.org/obo/BFO_0000147", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000147" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -24610,11 +24445,6 @@ "annotationProperty", "entity" ] - }, - "BFO:0000148": { - "url": "http://purl.obolibrary.org/obo/BFO_0000148", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000148" } } }, @@ -24768,11 +24598,6 @@ "duo" ], "linkedEntities": { - "BFO:0000182": { - "url": "http://purl.obolibrary.org/obo/BFO_0000182", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000182" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -26614,32 +26439,6 @@ "entity" ] }, - "DUO:00000044": { - "iri": "http://purl.obolibrary.org/obo/DUO_00000044", - "definedBy": [ - "duo" - ], - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "population origins or ancestry research prohibited", - "lang": "en" - }, - "curie": { - "type": [ - "literal" - ], - "value": "DUO:00000044" - }, - "type": [ - "class", - "entity" - ] - }, "http://purl.obolibrary.org/obo/DUO_0000017": { "definedBy": [ "duo" @@ -36904,54 +36703,54 @@ "entity" ] }, - "DUO:0000034": { - "iri": "http://purl.obolibrary.org/obo/DUO_0000034", - "definedBy": [ - "duo" - ], + "http://purl.obolibrary.org/obo/OBI_0000011": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "age category research" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "planned process", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "DUO:0000034" + "value": "OBI:0000011" }, "type": [ "class", "entity" - ], - "url": "http://purl.obolibrary.org/obo/DUO_0000034", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "DUO:0000034" + ] }, - "http://purl.obolibrary.org/obo/OBI_0000011": { + "DUO:0000034": { + "iri": "http://purl.obolibrary.org/obo/DUO_0000034", + "definedBy": [ + "duo" + ], "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "planned process", - "lang": "en" + "value": "age category research" }, "curie": { "type": [ "literal" ], - "value": "OBI:0000011" + "value": "DUO:0000034" }, "type": [ "class", "entity" - ] + ], + "url": "http://purl.obolibrary.org/obo/DUO_0000034", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "curie": "DUO:0000034" }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, @@ -41981,11 +41780,6 @@ "entity" ] }, - "IAO:0000001": { - "url": "http://purl.obolibrary.org/obo/IAO_0000001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000001" - }, "http://purl.obolibrary.org/obo/IAO_0000119": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -42570,11 +42364,6 @@ "entity" ] }, - "IAO:0000003": { - "url": "http://purl.obolibrary.org/obo/IAO_0000003", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000003" - }, "http://purl.obolibrary.org/obo/IAO_0000009": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -43305,11 +43094,6 @@ "entity" ] }, - "IAO:0000005": { - "url": "http://purl.obolibrary.org/obo/IAO_0000005", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000005" - }, "http://purl.obolibrary.org/obo/IAO_0000122": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -43909,11 +43693,6 @@ "entity" ] }, - "IAO:0000006": { - "url": "http://purl.obolibrary.org/obo/IAO_0000006", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000006" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -44324,11 +44103,6 @@ "entity" ] }, - "IAO:0000007": { - "url": "http://purl.obolibrary.org/obo/IAO_0000007", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000007" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -44582,11 +44356,6 @@ "entity" ] }, - "IAO:0000008": { - "url": "http://purl.obolibrary.org/obo/IAO_0000008", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000008" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -45018,11 +44787,6 @@ "entity" ] }, - "IAO:0000009": { - "url": "http://purl.obolibrary.org/obo/IAO_0000009", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000009" - }, "http://purl.obolibrary.org/obo/IAO_0000123": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -45578,11 +45342,6 @@ "entity" ] }, - "IAO:0000010": { - "url": "http://purl.obolibrary.org/obo/IAO_0000010", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000010" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -45979,11 +45738,6 @@ "entity" ] }, - "IAO:0000012": { - "url": "http://purl.obolibrary.org/obo/IAO_0000012", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000012" - }, "http://www.geneontology.org/formats/oboInOwl#ObsoleteClass": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -46677,11 +46431,6 @@ "entity" ] }, - "IAO:0000013": { - "url": "http://purl.obolibrary.org/obo/IAO_0000013", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000013" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -47272,11 +47021,6 @@ "entity" ] }, - "IAO:0000015": { - "url": "http://purl.obolibrary.org/obo/IAO_0000015", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000015" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -47697,11 +47441,6 @@ "entity" ] }, - "IAO:0000017": { - "url": "http://purl.obolibrary.org/obo/IAO_0000017", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000017" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -47866,11 +47605,6 @@ "entity" ] }, - "IAO:0000018": { - "url": "http://purl.obolibrary.org/obo/IAO_0000018", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000018" - }, "http://purl.obolibrary.org/obo/IAO_0000231": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -48345,11 +48079,6 @@ "entity" ] }, - "IAO:0000019": { - "url": "http://purl.obolibrary.org/obo/IAO_0000019", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000019" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -48669,11 +48398,6 @@ "entity" ] }, - "IAO:0000024": { - "url": "http://purl.obolibrary.org/obo/IAO_0000024", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000024" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -49257,11 +48981,6 @@ "class", "entity" ] - }, - "IAO:0000025": { - "url": "http://purl.obolibrary.org/obo/IAO_0000025", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000025" } } }, @@ -50017,11 +49736,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0000027": { - "url": "http://purl.obolibrary.org/obo/IAO_0000027", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000027" } } }, @@ -50588,11 +50302,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0000028": { - "url": "http://purl.obolibrary.org/obo/IAO_0000028", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000028" } } }, @@ -50976,11 +50685,6 @@ "entity" ] }, - "IAO:0000029": { - "url": "http://purl.obolibrary.org/obo/IAO_0000029", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000029" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -51298,11 +51002,6 @@ "duo" ], "linkedEntities": { - "IAO:0000030": { - "url": "http://purl.obolibrary.org/obo/IAO_0000030", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000030" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -51890,11 +51589,6 @@ "duo" ], "linkedEntities": { - "IAO:0000031": { - "url": "http://purl.obolibrary.org/obo/IAO_0000031", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000031" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -52400,11 +52094,6 @@ "duo" ], "linkedEntities": { - "IAO:0000032": { - "url": "http://purl.obolibrary.org/obo/IAO_0000032", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000032" - }, "http://purl.obolibrary.org/obo/IAO_0000109": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -52984,11 +52673,6 @@ "duo" ], "linkedEntities": { - "IAO:0000033": { - "url": "http://purl.obolibrary.org/obo/IAO_0000033", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000033" - }, "http://purl.obolibrary.org/obo/BFO_0000017": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -53387,11 +53071,6 @@ "duo" ], "linkedEntities": { - "IAO:0000034": { - "url": "http://purl.obolibrary.org/obo/IAO_0000034", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000034" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -53892,11 +53571,6 @@ "duo" ], "linkedEntities": { - "IAO:0000035": { - "url": "http://purl.obolibrary.org/obo/IAO_0000035", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000035" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -54553,11 +54227,6 @@ "entity" ] }, - "IAO:0000037": { - "url": "http://purl.obolibrary.org/obo/IAO_0000037", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000037" - }, "http://purl.obolibrary.org/obo/IAO_0000112": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -55099,11 +54768,6 @@ "entity" ] }, - "IAO:0000038": { - "url": "http://purl.obolibrary.org/obo/IAO_0000038", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000038" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -55643,11 +55307,6 @@ "entity" ] }, - "IAO:0000047": { - "url": "http://purl.obolibrary.org/obo/IAO_0000047", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000047" - }, "http://www.geneontology.org/formats/oboInOwl#ObsoleteClass": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -56222,11 +55881,6 @@ "entity" ] }, - "IAO:0000055": { - "url": "http://purl.obolibrary.org/obo/IAO_0000055", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000055" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -56778,11 +56432,6 @@ "entity" ] }, - "IAO:0000057": { - "url": "http://purl.obolibrary.org/obo/IAO_0000057", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000057" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -57259,11 +56908,6 @@ "entity" ] }, - "IAO:0000059": { - "url": "http://purl.obolibrary.org/obo/IAO_0000059", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000059" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -57805,11 +57449,6 @@ "entity" ] }, - "IAO:0000064": { - "url": "http://purl.obolibrary.org/obo/IAO_0000064", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000064" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -58392,11 +58031,6 @@ "entity" ] }, - "IAO:0000065": { - "url": "http://purl.obolibrary.org/obo/IAO_0000065", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000065" - }, "http://purl.obolibrary.org/obo/IAO_0000064": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -58687,11 +58321,6 @@ "duo" ], "linkedEntities": { - "IAO:0000078": { - "url": "http://purl.obolibrary.org/obo/IAO_0000078", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000078" - }, "http://purl.obolibrary.org/obo/IAO_0000428": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -59411,11 +59040,6 @@ "duo" ], "linkedEntities": { - "IAO:0000079": { - "url": "http://purl.obolibrary.org/obo/IAO_0000079", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000079" - }, "http://purl.obolibrary.org/obo/IAO_0000309": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -60257,11 +59881,6 @@ "entity" ] }, - "IAO:0000088": { - "url": "http://purl.obolibrary.org/obo/IAO_0000088", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000088" - }, "http://purl.obolibrary.org/obo/IAO_0000119": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -60863,11 +60482,6 @@ "entity" ] }, - "IAO:0000091": { - "url": "http://purl.obolibrary.org/obo/IAO_0000091", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000091" - }, "http://www.geneontology.org/formats/oboInOwl#ObsoleteClass": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -61262,11 +60876,6 @@ "entity" ] }, - "IAO:0000093": { - "url": "http://purl.obolibrary.org/obo/IAO_0000093", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000093" - }, "http://www.geneontology.org/formats/oboInOwl#ObsoleteClass": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -61860,11 +61469,6 @@ "entity" ] }, - "IAO:0000096": { - "url": "http://purl.obolibrary.org/obo/IAO_0000096", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000096" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -62299,11 +61903,6 @@ "entity" ] }, - "IAO:0000097": { - "url": "http://purl.obolibrary.org/obo/IAO_0000097", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000097" - }, "http://www.geneontology.org/formats/oboInOwl#ObsoleteClass": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -62841,11 +62440,6 @@ "entity" ] }, - "IAO:0000098": { - "url": "http://purl.obolibrary.org/obo/IAO_0000098", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000098" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -63416,11 +63010,6 @@ "entity" ] }, - "IAO:0000100": { - "url": "http://purl.obolibrary.org/obo/IAO_0000100", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000100" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -63937,11 +63526,6 @@ "entity" ] }, - "IAO:0000101": { - "url": "http://purl.obolibrary.org/obo/IAO_0000101", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000101" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -64319,11 +63903,6 @@ "class", "entity" ] - }, - "IAO:0000102": { - "url": "http://purl.obolibrary.org/obo/IAO_0000102", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000102" } } }, @@ -65111,11 +64690,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0000104": { - "url": "http://purl.obolibrary.org/obo/IAO_0000104", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000104" } } }, @@ -65510,11 +65084,6 @@ "individual", "entity" ] - }, - "IAO:0000105": { - "url": "http://purl.obolibrary.org/obo/IAO_0000105", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000105" } } }, @@ -66032,11 +65601,6 @@ "entity" ] }, - "IAO:0000109": { - "url": "http://purl.obolibrary.org/obo/IAO_0000109", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000109" - }, "http://purl.obolibrary.org/obo/IAO_0000027": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -66264,11 +65828,6 @@ "entity" ] }, - "IAO:0000128": { - "url": "http://purl.obolibrary.org/obo/IAO_0000128", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000128" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -66623,11 +66182,6 @@ "entity" ] }, - "IAO:0000129": { - "url": "http://purl.obolibrary.org/obo/IAO_0000129", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000129" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -67136,11 +66690,6 @@ "entity" ] }, - "IAO:0000131": { - "url": "http://purl.obolibrary.org/obo/IAO_0000131", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000131" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -67583,11 +67132,6 @@ "entity" ] }, - "IAO:0000132": { - "url": "http://purl.obolibrary.org/obo/IAO_0000132", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000132" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -67992,11 +67536,6 @@ "entity" ] }, - "IAO:0000140": { - "url": "http://purl.obolibrary.org/obo/IAO_0000140", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000140" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -68213,11 +67752,6 @@ "entity" ] }, - "IAO:0000141": { - "url": "http://purl.obolibrary.org/obo/IAO_0000141", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000141" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -68756,11 +68290,6 @@ "entity" ] }, - "IAO:0000144": { - "url": "http://purl.obolibrary.org/obo/IAO_0000144", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000144" - }, "http://purl.obolibrary.org/obo/IAO_0000615": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -69319,11 +68848,6 @@ "entity" ] }, - "IAO:0000178": { - "url": "http://purl.obolibrary.org/obo/IAO_0000178", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000178" - }, "http://purl.obolibrary.org/obo/RO_0000053": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -69849,11 +69373,6 @@ "entity" ] }, - "IAO:0000179": { - "url": "http://purl.obolibrary.org/obo/IAO_0000179", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000179" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -70400,11 +69919,6 @@ "entity" ] }, - "IAO:0000180": { - "url": "http://purl.obolibrary.org/obo/IAO_0000180", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000180" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -70934,11 +70448,6 @@ "entity" ] }, - "IAO:0000181": { - "url": "http://purl.obolibrary.org/obo/IAO_0000181", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000181" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -71338,11 +70847,6 @@ "entity" ] }, - "IAO:0000182": { - "url": "http://purl.obolibrary.org/obo/IAO_0000182", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000182" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -71928,11 +71432,6 @@ "entity" ] }, - "IAO:0000183": { - "url": "http://purl.obolibrary.org/obo/IAO_0000183", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000183" - }, "http://en.wikipedia.org/wiki/Dendrogram": { "url": "http://en.wikipedia.org/wiki/Dendrogram", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -72545,11 +72044,6 @@ "entity" ] }, - "IAO:0000184": { - "url": "http://purl.obolibrary.org/obo/IAO_0000184", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000184" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -72989,11 +72483,6 @@ "entity" ] }, - "IAO:0000185": { - "url": "http://purl.obolibrary.org/obo/IAO_0000185", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000185" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -73500,11 +72989,6 @@ "entity" ] }, - "IAO:0000186": { - "url": "http://purl.obolibrary.org/obo/IAO_0000186", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000186" - }, "http://purl.obolibrary.org/obo/IAO_0000185": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -74173,11 +73657,6 @@ "class", "entity" ] - }, - "IAO:0000225": { - "url": "http://purl.obolibrary.org/obo/IAO_0000225", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000225" } } }, @@ -74697,11 +74176,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0000300": { - "url": "http://purl.obolibrary.org/obo/IAO_0000300", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000300" } } }, @@ -75243,11 +74717,6 @@ "entity" ] }, - "IAO:0000301": { - "url": "http://purl.obolibrary.org/obo/IAO_0000301", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000301" - }, "http://purl.obolibrary.org/obo/IAO_0000300": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -75791,11 +75260,6 @@ "class", "entity" ] - }, - "IAO:0000302": { - "url": "http://purl.obolibrary.org/obo/IAO_0000302", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000302" } } }, @@ -76294,11 +75758,6 @@ "class", "entity" ] - }, - "IAO:0000303": { - "url": "http://purl.obolibrary.org/obo/IAO_0000303", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000303" } } }, @@ -76763,11 +76222,6 @@ "entity" ] }, - "IAO:0000304": { - "url": "http://purl.obolibrary.org/obo/IAO_0000304", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000304" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -77210,11 +76664,6 @@ "entity" ] }, - "IAO:0000305": { - "url": "http://purl.obolibrary.org/obo/IAO_0000305", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000305" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -77734,11 +77183,6 @@ "entity" ] }, - "IAO:0000306": { - "url": "http://purl.obolibrary.org/obo/IAO_0000306", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000306" - }, "http://purl.obolibrary.org/obo/IAO_0000300": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -78205,11 +77649,6 @@ "entity" ] }, - "IAO:0000307": { - "url": "http://purl.obolibrary.org/obo/IAO_0000307", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000307" - }, "http://purl.obolibrary.org/obo/IAO_0000300": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -78699,11 +78138,6 @@ "entity" ] }, - "IAO:0000308": { - "url": "http://purl.obolibrary.org/obo/IAO_0000308", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000308" - }, "http://purl.obolibrary.org/obo/IAO_0000622": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -79190,11 +78624,6 @@ "entity" ] }, - "IAO:0000309": { - "url": "http://purl.obolibrary.org/obo/IAO_0000309", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000309" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -79434,11 +78863,6 @@ "duo" ], "linkedEntities": { - "IAO:0000310": { - "url": "http://purl.obolibrary.org/obo/IAO_0000310", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000310" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -80264,11 +79688,6 @@ "entity" ] }, - "IAO:0000311": { - "url": "http://purl.obolibrary.org/obo/IAO_0000311", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000311" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -80814,11 +80233,6 @@ "entity" ] }, - "IAO:0000312": { - "url": "http://purl.obolibrary.org/obo/IAO_0000312", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000312" - }, "http://purl.obolibrary.org/obo/IAO_0000310": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -81374,11 +80788,6 @@ "entity" ] }, - "IAO:0000313": { - "url": "http://purl.obolibrary.org/obo/IAO_0000313", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000313" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -81910,11 +81319,6 @@ "entity" ] }, - "IAO:0000314": { - "url": "http://purl.obolibrary.org/obo/IAO_0000314", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000314" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -82347,11 +81751,6 @@ "entity" ] }, - "IAO:0000315": { - "url": "http://purl.obolibrary.org/obo/IAO_0000315", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000315" - }, "http://purl.obolibrary.org/obo/IAO_0000117": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -82934,11 +82333,6 @@ "entity" ] }, - "IAO:0000316": { - "url": "http://purl.obolibrary.org/obo/IAO_0000316", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000316" - }, "http://purl.obolibrary.org/obo/IAO_0000314": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -83697,11 +83091,6 @@ "entity" ] }, - "IAO:0000317": { - "url": "http://purl.obolibrary.org/obo/IAO_0000317", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000317" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -84270,11 +83659,6 @@ "entity" ] }, - "IAO:0000318": { - "url": "http://purl.obolibrary.org/obo/IAO_0000318", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000318" - }, "http://purl.obolibrary.org/obo/IAO_0000114": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -84796,11 +84180,6 @@ "entity" ] }, - "IAO:0000319": { - "url": "http://purl.obolibrary.org/obo/IAO_0000319", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000319" - }, "http://purl.obolibrary.org/obo/IAO_0000314": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -85580,11 +84959,6 @@ "entity" ] }, - "IAO:0000320": { - "url": "http://purl.obolibrary.org/obo/IAO_0000320", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000320" - }, "http://purl.obolibrary.org/obo/IAO_0000118": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -86137,11 +85511,6 @@ "entity" ] }, - "IAO:0000321": { - "url": "http://purl.obolibrary.org/obo/IAO_0000321", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000321" - }, "http://purl.obolibrary.org/obo/IAO_0000120": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -86737,11 +86106,6 @@ "entity" ] }, - "IAO:0000322": { - "url": "http://purl.obolibrary.org/obo/IAO_0000322", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000322" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -87374,11 +86738,6 @@ "entity" ] }, - "IAO:0000323": { - "url": "http://purl.obolibrary.org/obo/IAO_0000323", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000323" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -87957,11 +87316,6 @@ "entity" ] }, - "IAO:0000324": { - "url": "http://purl.obolibrary.org/obo/IAO_0000324", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000324" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -88527,11 +87881,6 @@ "entity" ] }, - "IAO:0000325": { - "url": "http://purl.obolibrary.org/obo/IAO_0000325", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000325" - }, "http://purl.obolibrary.org/obo/IAO_0000136": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -89226,11 +88575,6 @@ "entity" ] }, - "IAO:0000326": { - "url": "http://purl.obolibrary.org/obo/IAO_0000326", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000326" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -89614,11 +88958,6 @@ "entity" ] }, - "IAO:0000327": { - "url": "http://purl.obolibrary.org/obo/IAO_0000327", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000327" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -90112,11 +89451,6 @@ "entity" ] }, - "IAO:0000328": { - "url": "http://purl.obolibrary.org/obo/IAO_0000328", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000328" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -90500,11 +89834,6 @@ "entity" ] }, - "IAO:0000329": { - "url": "http://purl.obolibrary.org/obo/IAO_0000329", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000329" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -91036,11 +90365,6 @@ "entity" ] }, - "IAO:0000330": { - "url": "http://purl.obolibrary.org/obo/IAO_0000330", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000330" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -91518,11 +90842,6 @@ "entity" ] }, - "IAO:0000400": { - "url": "http://purl.obolibrary.org/obo/IAO_0000400", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000400" - }, "http://www.w3.org/2000/01/rdf-schema#seeAlso": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -92071,11 +91390,6 @@ "entity" ] }, - "IAO:0000401": { - "url": "http://purl.obolibrary.org/obo/IAO_0000401", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000401" - }, "http://purl.obolibrary.org/obo/IAO_0000404": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -92659,11 +91973,6 @@ "entity" ] }, - "IAO:0000402": { - "url": "http://purl.obolibrary.org/obo/IAO_0000402", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000402" - }, "http://purl.obolibrary.org/obo/IAO_0000406": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -93150,11 +92459,6 @@ "entity" ] }, - "IAO:0000403": { - "url": "http://purl.obolibrary.org/obo/IAO_0000403", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000403" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -93804,11 +93108,6 @@ "entity" ] }, - "IAO:0000408": { - "url": "http://purl.obolibrary.org/obo/IAO_0000408", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000408" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -94300,11 +93599,6 @@ "entity" ] }, - "IAO:0000409": { - "url": "http://purl.obolibrary.org/obo/IAO_0000409", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000409" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -94970,11 +94264,6 @@ "entity" ] }, - "IAO:0000414": { - "url": "http://purl.obolibrary.org/obo/IAO_0000414", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000414" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -95484,11 +94773,6 @@ "entity" ] }, - "IAO:0000415": { - "url": "http://purl.obolibrary.org/obo/IAO_0000415", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000415" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -96047,11 +95331,6 @@ "entity" ] }, - "IAO:0000416": { - "url": "http://purl.obolibrary.org/obo/IAO_0000416", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000416" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -96449,11 +95728,6 @@ "entity" ] }, - "IAO:0000422": { - "url": "http://purl.obolibrary.org/obo/IAO_0000422", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000422" - }, "http://purl.obolibrary.org/obo/IAO_0000300": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -96838,11 +96112,6 @@ "entity" ] }, - "IAO:0000429": { - "url": "http://purl.obolibrary.org/obo/IAO_0000429", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000429" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -97154,11 +96423,6 @@ "entity" ] }, - "IAO:0000442": { - "url": "http://purl.obolibrary.org/obo/IAO_0000442", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000442" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -97611,11 +96875,6 @@ "entity" ] }, - "IAO:0000443": { - "url": "http://purl.obolibrary.org/obo/IAO_0000443", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000443" - }, "http://purl.obolibrary.org/obo/IAO_0000013": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -98178,11 +97437,6 @@ "entity" ] }, - "IAO:0000444": { - "url": "http://purl.obolibrary.org/obo/IAO_0000444", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000444" - }, "http://purl.obolibrary.org/obo/IAO_0000013": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -98671,11 +97925,6 @@ "entity" ] }, - "IAO:0000445": { - "url": "http://purl.obolibrary.org/obo/IAO_0000445", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000445" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -99215,11 +98464,6 @@ "entity" ] }, - "IAO:0000572": { - "url": "http://purl.obolibrary.org/obo/IAO_0000572", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000572" - }, "http://en.wikipedia.org/wiki/Documenting": { "url": "http://en.wikipedia.org/wiki/Documenting", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -99841,11 +99085,6 @@ "entity" ] }, - "IAO:0000573": { - "url": "http://purl.obolibrary.org/obo/IAO_0000573", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000573" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -100394,11 +99633,6 @@ "entity" ] }, - "IAO:0000574": { - "url": "http://purl.obolibrary.org/obo/IAO_0000574", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000574" - }, "http://purl.obolibrary.org/obo/IAO_0000579": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -101020,11 +100254,6 @@ "entity" ] }, - "IAO:0000575": { - "url": "http://purl.obolibrary.org/obo/IAO_0000575", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000575" - }, "http://purl.obolibrary.org/obo/OBI_0000293": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -101274,11 +100503,6 @@ "entity" ] }, - "IAO:0000576": { - "url": "http://purl.obolibrary.org/obo/IAO_0000576", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000576" - }, "http://purl.obolibrary.org/obo/IAO_0000231": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -102044,11 +101268,6 @@ "entity" ] }, - "IAO:0000577": { - "url": "http://purl.obolibrary.org/obo/IAO_0000577", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000577" - }, "http://purl.obolibrary.org/obo/OBI_0000293": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -102848,11 +102067,6 @@ "entity" ] }, - "IAO:0000578": { - "url": "http://purl.obolibrary.org/obo/IAO_0000578", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000578" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -103507,11 +102721,6 @@ "entity" ] }, - "IAO:0000579": { - "url": "http://purl.obolibrary.org/obo/IAO_0000579", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000579" - }, "http://purl.obolibrary.org/obo/IAO_0020020": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -104293,11 +103502,6 @@ "entity" ] }, - "IAO:0000580": { - "url": "http://purl.obolibrary.org/obo/IAO_0000580", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000580" - }, "http://purl.obolibrary.org/obo/OBI_0000299": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -104646,11 +103850,6 @@ "entity" ] }, - "IAO:0000582": { - "url": "http://purl.obolibrary.org/obo/IAO_0000582", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000582" - }, "http://purl.obolibrary.org/obo/IAO_0000416": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -105227,11 +104426,6 @@ "entity" ] }, - "IAO:0000584": { - "url": "http://purl.obolibrary.org/obo/IAO_0000584", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000584" - }, "http://purl.obolibrary.org/obo/IAO_0000582": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -105559,11 +104753,6 @@ "duo" ], "linkedEntities": { - "IAO:0000590": { - "url": "http://purl.obolibrary.org/obo/IAO_0000590", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000590" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -106058,11 +105247,6 @@ "duo" ], "linkedEntities": { - "IAO:0000591": { - "url": "http://purl.obolibrary.org/obo/IAO_0000591", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000591" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -106532,11 +105716,6 @@ "duo" ], "linkedEntities": { - "IAO:0000592": { - "url": "http://purl.obolibrary.org/obo/IAO_0000592", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000592" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -107006,11 +106185,6 @@ "duo" ], "linkedEntities": { - "IAO:0000593": { - "url": "http://purl.obolibrary.org/obo/IAO_0000593", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000593" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -107480,11 +106654,6 @@ "duo" ], "linkedEntities": { - "IAO:0000594": { - "url": "http://purl.obolibrary.org/obo/IAO_0000594", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000594" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -107954,11 +107123,6 @@ "duo" ], "linkedEntities": { - "IAO:0000595": { - "url": "http://purl.obolibrary.org/obo/IAO_0000595", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000595" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -108593,11 +107757,6 @@ "entity" ] }, - "IAO:0000605": { - "url": "http://purl.obolibrary.org/obo/IAO_0000605", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000605" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -109347,11 +108506,6 @@ "entity" ] }, - "IAO:0000606": { - "url": "http://purl.obolibrary.org/obo/IAO_0000606", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000606" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -109951,11 +109105,6 @@ "entity" ] }, - "IAO:0000607": { - "url": "http://purl.obolibrary.org/obo/IAO_0000607", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000607" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -110410,11 +109559,6 @@ "entity" ] }, - "IAO:0000608": { - "url": "http://purl.obolibrary.org/obo/IAO_0000608", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000608" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -111056,11 +110200,6 @@ "entity" ] }, - "IAO:0000609": { - "url": "http://purl.obolibrary.org/obo/IAO_0000609", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000609" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -111642,11 +110781,6 @@ "entity" ] }, - "IAO:0000610": { - "url": "http://purl.obolibrary.org/obo/IAO_0000610", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000610" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -112278,11 +111412,6 @@ "entity" ] }, - "IAO:0000611": { - "url": "http://purl.obolibrary.org/obo/IAO_0000611", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000611" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -112737,11 +111866,6 @@ "entity" ] }, - "IAO:0000612": { - "url": "http://purl.obolibrary.org/obo/IAO_0000612", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000612" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -113306,11 +112430,6 @@ "entity" ] }, - "IAO:0000613": { - "url": "http://purl.obolibrary.org/obo/IAO_0000613", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000613" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -113765,11 +112884,6 @@ "entity" ] }, - "IAO:0000614": { - "url": "http://purl.obolibrary.org/obo/IAO_0000614", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000614" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -114404,11 +113518,6 @@ "entity" ] }, - "IAO:0000615": { - "url": "http://purl.obolibrary.org/obo/IAO_0000615", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000615" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -115184,11 +114293,6 @@ "entity" ] }, - "IAO:0000616": { - "url": "http://purl.obolibrary.org/obo/IAO_0000616", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000616" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -115643,11 +114747,6 @@ "entity" ] }, - "IAO:0000617": { - "url": "http://purl.obolibrary.org/obo/IAO_0000617", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000617" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -116216,11 +115315,6 @@ "entity" ] }, - "IAO:0000618": { - "url": "http://purl.obolibrary.org/obo/IAO_0000618", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000618" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -116675,11 +115769,6 @@ "entity" ] }, - "IAO:0000619": { - "url": "http://purl.obolibrary.org/obo/IAO_0000619", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000619" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -117365,11 +116454,6 @@ "class", "entity" ] - }, - "IAO:0000620": { - "url": "http://purl.obolibrary.org/obo/IAO_0000620", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000620" } } }, @@ -117910,11 +116994,6 @@ "class", "entity" ] - }, - "IAO:0000621": { - "url": "http://purl.obolibrary.org/obo/IAO_0000621", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000621" } } }, @@ -118461,11 +117540,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0000622": { - "url": "http://purl.obolibrary.org/obo/IAO_0000622", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000622" } } }, @@ -119157,11 +118231,6 @@ "entity" ] }, - "IAO:0000623": { - "url": "http://purl.obolibrary.org/obo/IAO_0000623", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000623" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -119594,11 +118663,6 @@ "entity" ] }, - "IAO:0000624": { - "url": "http://purl.obolibrary.org/obo/IAO_0000624", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000624" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -120406,11 +119470,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0000625": { - "url": "http://purl.obolibrary.org/obo/IAO_0000625", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000625" } } }, @@ -120866,11 +119925,6 @@ "entity" ] }, - "IAO:0000626": { - "url": "http://purl.obolibrary.org/obo/IAO_0000626", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000626" - }, "http://purl.obolibrary.org/obo/IAO_0000300": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -121418,11 +120472,6 @@ "entity" ] }, - "IAO:0000627": { - "url": "http://purl.obolibrary.org/obo/IAO_0000627", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000627" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -121877,11 +120926,6 @@ "entity" ] }, - "IAO:0000628": { - "url": "http://purl.obolibrary.org/obo/IAO_0000628", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000628" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -122358,11 +121402,6 @@ "entity" ] }, - "IAO:0000629": { - "url": "http://purl.obolibrary.org/obo/IAO_0000629", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000629" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -122819,11 +121858,6 @@ "entity" ] }, - "IAO:0000630": { - "url": "http://purl.obolibrary.org/obo/IAO_0000630", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000630" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -123332,11 +122366,6 @@ "entity" ] }, - "IAO:0000631": { - "url": "http://purl.obolibrary.org/obo/IAO_0000631", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000631" - }, "http://purl.obolibrary.org/obo/IAO_0000310": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -123989,11 +123018,6 @@ "entity" ] }, - "IAO:0000632": { - "url": "http://purl.obolibrary.org/obo/IAO_0000632", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000632" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -124498,11 +123522,6 @@ "entity" ] }, - "IAO:0000633": { - "url": "http://purl.obolibrary.org/obo/IAO_0000633", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000633" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -124871,11 +123890,6 @@ "entity" ] }, - "IAO:0000634": { - "url": "http://purl.obolibrary.org/obo/IAO_0000634", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000634" - }, "http://purl.obolibrary.org/obo/IAO_0000117": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -125339,11 +124353,6 @@ "entity" ] }, - "IAO:0000635": { - "url": "http://purl.obolibrary.org/obo/IAO_0000635", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000635" - }, "http://purl.obolibrary.org/obo/IAO_0000314": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -125865,11 +124874,6 @@ "entity" ] }, - "IAO:0000636": { - "url": "http://purl.obolibrary.org/obo/IAO_0000636", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000636" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -126411,11 +125415,6 @@ "entity" ] }, - "IAO:0000637": { - "url": "http://purl.obolibrary.org/obo/IAO_0000637", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000637" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -126892,11 +125891,6 @@ "entity" ] }, - "IAO:0000638": { - "url": "http://purl.obolibrary.org/obo/IAO_0000638", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000638" - }, "http://purl.obolibrary.org/obo/IAO_0000117": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -127416,11 +126410,6 @@ "entity" ] }, - "IAO:0000639": { - "url": "http://purl.obolibrary.org/obo/IAO_0000639", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000639" - }, "http://purl.obolibrary.org/obo/IAO_0000314": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -128080,11 +127069,6 @@ "entity" ] }, - "IAO:0000640": { - "url": "http://purl.obolibrary.org/obo/IAO_0000640", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000640" - }, "http://purl.obolibrary.org/obo/IAO_0000639": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -128719,11 +127703,6 @@ "entity" ] }, - "IAO:0000641": { - "url": "http://purl.obolibrary.org/obo/IAO_0000641", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000641" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -129156,11 +128135,6 @@ "entity" ] }, - "IAO:0000642": { - "url": "http://purl.obolibrary.org/obo/IAO_0000642", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000642" - }, "http://purl.obolibrary.org/obo/IAO_0000641": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -129659,11 +128633,6 @@ "entity" ] }, - "IAO:0000643": { - "url": "http://purl.obolibrary.org/obo/IAO_0000643", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000643" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -130232,11 +129201,6 @@ "entity" ] }, - "IAO:0000644": { - "url": "http://purl.obolibrary.org/obo/IAO_0000644", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000644" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -130739,11 +129703,6 @@ "entity" ] }, - "IAO:0000645": { - "url": "http://purl.obolibrary.org/obo/IAO_0000645", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000645" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -131062,11 +130021,6 @@ "entity" ] }, - "IAO:0000646": { - "url": "http://purl.obolibrary.org/obo/IAO_0000646", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000646" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -131431,11 +130385,6 @@ "entity" ] }, - "IAO:0000647": { - "url": "http://purl.obolibrary.org/obo/IAO_0000647", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000647" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -131795,11 +130744,6 @@ "entity" ] }, - "IAO:0000648": { - "url": "http://purl.obolibrary.org/obo/IAO_0000648", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000648" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -132428,11 +131372,6 @@ "entity" ] }, - "IAO:0000650": { - "url": "http://purl.obolibrary.org/obo/IAO_0000650", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000650" - }, "http://purl.obolibrary.org/obo/OBI_0000293": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -133036,11 +131975,6 @@ "entity" ] }, - "IAO:0000701": { - "url": "http://purl.obolibrary.org/obo/IAO_0000701", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000701" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -133641,11 +132575,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0000702": { - "url": "http://purl.obolibrary.org/obo/IAO_0000702", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000702" } } }, @@ -134202,11 +133131,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0000703": { - "url": "http://purl.obolibrary.org/obo/IAO_0000703", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000703" } } }, @@ -134741,11 +133665,6 @@ "entity" ] }, - "IAO:0000704": { - "url": "http://purl.obolibrary.org/obo/IAO_0000704", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000704" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -135276,11 +134195,6 @@ "entity" ] }, - "IAO:0000705": { - "url": "http://purl.obolibrary.org/obo/IAO_0000705", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000705" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -135835,11 +134749,6 @@ "entity" ] }, - "IAO:0000706": { - "url": "http://purl.obolibrary.org/obo/IAO_0000706", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000706" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -136433,11 +135342,6 @@ "entity" ] }, - "IAO:0000707": { - "url": "http://purl.obolibrary.org/obo/IAO_0000707", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000707" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -137018,11 +135922,6 @@ "entity" ] }, - "IAO:0000708": { - "url": "http://purl.obolibrary.org/obo/IAO_0000708", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000708" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -137316,11 +136215,6 @@ "duo" ], "linkedEntities": { - "IAO:0020000": { - "url": "http://purl.obolibrary.org/obo/IAO_0020000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0020000" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -137943,11 +136837,6 @@ "entity" ] }, - "IAO:0020001": { - "url": "http://purl.obolibrary.org/obo/IAO_0020001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0020001" - }, "http://purl.obolibrary.org/obo/IAO_0000117": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -138630,11 +137519,6 @@ "entity" ] }, - "IAO:0020010": { - "url": "http://purl.obolibrary.org/obo/IAO_0020010", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0020010" - }, "http://purl.obolibrary.org/obo/OBI_0000299": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -139200,11 +138084,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0020015": { - "url": "http://purl.obolibrary.org/obo/IAO_0020015", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0020015" } } }, @@ -139683,11 +138562,6 @@ "class", "entity" ] - }, - "IAO:0020016": { - "url": "http://purl.obolibrary.org/obo/IAO_0020016", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0020016" } } }, @@ -140160,11 +139034,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0020017": { - "url": "http://purl.obolibrary.org/obo/IAO_0020017", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0020017" } } }, @@ -140861,11 +139730,6 @@ "entity" ] }, - "IAO:0020020": { - "url": "http://purl.obolibrary.org/obo/IAO_0020020", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0020020" - }, "http://www.w3.org/2000/01/rdf-schema#comment": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -141112,11 +139976,6 @@ "duo" ], "linkedEntities": { - "IAO:8000000": { - "url": "http://purl.obolibrary.org/obo/IAO_8000000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000000" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -141508,11 +140367,6 @@ "duo" ], "linkedEntities": { - "IAO:8000001": { - "url": "http://purl.obolibrary.org/obo/IAO_8000001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000001" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -141916,11 +140770,6 @@ "duo" ], "linkedEntities": { - "IAO:8000002": { - "url": "http://purl.obolibrary.org/obo/IAO_8000002", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000002" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -142326,11 +141175,6 @@ "duo" ], "linkedEntities": { - "IAO:8000003": { - "url": "http://purl.obolibrary.org/obo/IAO_8000003", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000003" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -142721,11 +141565,6 @@ "duo" ], "linkedEntities": { - "IAO:8000004": { - "url": "http://purl.obolibrary.org/obo/IAO_8000004", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000004" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -143148,11 +141987,6 @@ "duo" ], "linkedEntities": { - "IAO:8000005": { - "url": "http://purl.obolibrary.org/obo/IAO_8000005", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000005" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -143646,11 +142480,6 @@ "duo" ], "linkedEntities": { - "IAO:8000006": { - "url": "http://purl.obolibrary.org/obo/IAO_8000006", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000006" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -144063,11 +142892,6 @@ "duo" ], "linkedEntities": { - "IAO:8000007": { - "url": "http://purl.obolibrary.org/obo/IAO_8000007", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000007" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -144458,11 +143282,6 @@ "duo" ], "linkedEntities": { - "IAO:8000008": { - "url": "http://purl.obolibrary.org/obo/IAO_8000008", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000008" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -144869,11 +143688,6 @@ "duo" ], "linkedEntities": { - "IAO:8000009": { - "url": "http://purl.obolibrary.org/obo/IAO_8000009", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000009" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -145460,11 +144274,6 @@ "entity" ] }, - "IAO:8000010": { - "url": "http://purl.obolibrary.org/obo/IAO_8000010", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000010" - }, "http://purl.obolibrary.org/obo/IAO_8000000": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -145896,11 +144705,6 @@ "entity" ] }, - "IAO:8000011": { - "url": "http://purl.obolibrary.org/obo/IAO_8000011", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000011" - }, "http://purl.obolibrary.org/obo/IAO_8000000": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -146374,11 +145178,6 @@ "entity" ] }, - "IAO:8000012": { - "url": "http://purl.obolibrary.org/obo/IAO_8000012", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000012" - }, "http://purl.obolibrary.org/obo/IAO_8000000": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -146789,11 +145588,6 @@ "entity" ] }, - "IAO:8000013": { - "url": "http://purl.obolibrary.org/obo/IAO_8000013", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000013" - }, "http://purl.obolibrary.org/obo/IAO_8000000": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -147199,11 +145993,6 @@ "entity" ] }, - "IAO:8000014": { - "url": "http://purl.obolibrary.org/obo/IAO_8000014", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000014" - }, "http://purl.obolibrary.org/obo/IAO_8000000": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -147625,11 +146414,6 @@ "entity" ] }, - "IAO:8000015": { - "url": "http://purl.obolibrary.org/obo/IAO_8000015", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000015" - }, "http://purl.obolibrary.org/obo/IAO_8000000": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -147856,7 +146640,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000111": { + "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -147864,22 +146648,21 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "editor preferred term", + "value": "generically dependent continuant", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000111" + "value": "BFO:0000031" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000001": { + "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -147887,21 +146670,22 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "entity", + "value": "editor preferred term", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000001" + "value": "IAO:0000111" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000002": { + "http://purl.obolibrary.org/obo/IAO_8000000": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -147909,21 +146693,21 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "continuant", + "value": "ontology module", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000002" + "value": "IAO:8000000" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000031": { + "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -147931,65 +146715,60 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "generically dependent continuant", + "value": "entity", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000031" + "value": "BFO:0000001" }, "type": [ "class", "entity" ] }, - "IAO:8000016": { - "url": "http://purl.obolibrary.org/obo/IAO_8000016", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000016" - }, - "http://purl.obolibrary.org/obo/IAO_8000000": { + "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "ontology module", - "lang": "en" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "IAO:8000000" + "value": "label" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#label": { + "http://purl.obolibrary.org/obo/BFO_0000002": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "label" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "continuant", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "label" + "value": "BFO:0000002" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] }, @@ -148198,7 +146977,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000111": { + "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -148206,22 +146985,21 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "editor preferred term", + "value": "generically dependent continuant", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000111" + "value": "BFO:0000031" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000001": { + "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -148229,21 +147007,22 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "entity", + "value": "editor preferred term", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000001" + "value": "IAO:0000111" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000002": { + "http://purl.obolibrary.org/obo/IAO_8000000": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -148251,21 +147030,21 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "continuant", + "value": "ontology module", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000002" + "value": "IAO:8000000" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000031": { + "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -148273,65 +147052,60 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "generically dependent continuant", + "value": "entity", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000031" + "value": "BFO:0000001" }, "type": [ "class", "entity" ] }, - "IAO:8000017": { - "url": "http://purl.obolibrary.org/obo/IAO_8000017", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000017" - }, - "http://purl.obolibrary.org/obo/IAO_8000000": { + "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "ontology module", - "lang": "en" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "IAO:8000000" + "value": "label" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#label": { + "http://purl.obolibrary.org/obo/BFO_0000002": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "label" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "continuant", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "label" + "value": "BFO:0000002" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] }, @@ -148728,11 +147502,6 @@ "entity" ] }, - "IAO:8000018": { - "url": "http://purl.obolibrary.org/obo/IAO_8000018", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000018" - }, "http://purl.obolibrary.org/obo/IAO_8000000": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -149094,11 +147863,6 @@ "entity" ] }, - "IAO:8000019": { - "url": "http://purl.obolibrary.org/obo/IAO_8000019", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000019" - }, "http://purl.obolibrary.org/obo/IAO_8000000": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -149418,11 +148182,6 @@ "entity" ] }, - "IAO:8000020": { - "url": "http://purl.obolibrary.org/obo/IAO_8000020", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:8000020" - }, "http://purl.obolibrary.org/obo/IAO_8000019": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -150683,11 +149442,6 @@ "entity" ] }, - "OBI:0000011": { - "url": "http://purl.obolibrary.org/obo/OBI_0000011", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "OBI:0000011" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -150882,11 +149636,6 @@ "entity" ] }, - "OBI:0000066": { - "url": "http://purl.obolibrary.org/obo/OBI_0000066", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "OBI:0000066" - }, "http://purl.obolibrary.org/obo/IAO_0000312": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -151315,11 +150064,6 @@ "entity" ] }, - "OBI:0000471": { - "url": "http://purl.obolibrary.org/obo/OBI_0000471", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "OBI:0000471" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -151615,11 +150359,6 @@ "entity" ] }, - "OBI:0200000": { - "url": "http://purl.obolibrary.org/obo/OBI_0200000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "OBI:0200000" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -152127,11 +150866,6 @@ "entity" ] }, - "OBI:0500000": { - "url": "http://purl.obolibrary.org/obo/OBI_0500000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "OBI:0500000" - }, "http://purl.obolibrary.org/obo/IAO_0000136": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -152438,7 +151172,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000111": { + "http://purl.obolibrary.org/obo/IAO_0000412": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -152446,14 +151180,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "editor preferred term", + "value": "imported from", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000111" + "value": "IAO:0000412" }, "type": [ "property", @@ -152461,7 +151195,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000001": { + "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -152469,43 +151203,42 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "entity", + "value": "editor preferred term", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000001" + "value": "IAO:0000111" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000002": { + "http://purl.obolibrary.org/obo/PATO_0001241": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "continuant", - "lang": "en" + "value": "physical object quality" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000002" + "value": "PATO:0001241" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000412": { + "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -152513,64 +151246,60 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "imported from", + "value": "entity", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000412" + "value": "BFO:0000001" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] }, - "PATO:0000051": { - "url": "http://purl.obolibrary.org/obo/PATO_0000051", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "PATO:0000051" - }, - "http://purl.obolibrary.org/obo/PATO_0001241": { + "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "physical object quality" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "PATO:0001241" + "value": "label" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#label": { + "http://purl.obolibrary.org/obo/BFO_0000002": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "label" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "continuant", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "label" + "value": "BFO:0000002" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] }, @@ -152955,11 +151684,6 @@ "entity" ] }, - "PATO:0000122": { - "url": "http://purl.obolibrary.org/obo/PATO_0000122", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "PATO:0000122" - }, "http://purl.obolibrary.org/obo/BFO_0000020": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -153200,7 +151924,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000111": { + "http://purl.obolibrary.org/obo/IAO_0000412": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -153208,14 +151932,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "editor preferred term", + "value": "imported from", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000111" + "value": "IAO:0000412" }, "type": [ "property", @@ -153223,7 +151947,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000001": { + "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -153231,43 +151955,42 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "entity", + "value": "editor preferred term", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000001" + "value": "IAO:0000111" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000002": { + "http://purl.obolibrary.org/obo/PATO_0001241": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "continuant", - "lang": "en" + "value": "physical object quality" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000002" + "value": "PATO:0001241" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000412": { + "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -153275,64 +151998,60 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "imported from", + "value": "entity", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000412" + "value": "BFO:0000001" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] }, - "http://purl.obolibrary.org/obo/PATO_0001241": { + "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "physical object quality" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "PATO:0001241" + "value": "label" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, - "PATO:0000125": { - "url": "http://purl.obolibrary.org/obo/PATO_0000125", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "PATO:0000125" - }, - "http://www.w3.org/2000/01/rdf-schema#label": { + "http://purl.obolibrary.org/obo/BFO_0000002": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "label" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "continuant", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "label" + "value": "BFO:0000002" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] }, @@ -153531,7 +152250,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000111": { + "http://purl.obolibrary.org/obo/IAO_0000412": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -153539,14 +152258,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "editor preferred term", + "value": "imported from", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000111" + "value": "IAO:0000412" }, "type": [ "property", @@ -153554,7 +152273,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000001": { + "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -153562,43 +152281,42 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "entity", + "value": "editor preferred term", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000001" + "value": "IAO:0000111" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000002": { + "http://purl.obolibrary.org/obo/PATO_0001241": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "continuant", - "lang": "en" + "value": "physical object quality" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000002" + "value": "PATO:0001241" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000412": { + "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -153606,64 +152324,60 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "imported from", + "value": "entity", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000412" + "value": "BFO:0000001" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] }, - "http://purl.obolibrary.org/obo/PATO_0001241": { + "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "physical object quality" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "PATO:0001241" + "value": "label" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, - "PATO:0001018": { - "url": "http://purl.obolibrary.org/obo/PATO_0001018", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "PATO:0001018" - }, - "http://www.w3.org/2000/01/rdf-schema#label": { + "http://purl.obolibrary.org/obo/BFO_0000002": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "label" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "continuant", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "label" + "value": "BFO:0000002" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] }, @@ -153883,11 +152597,6 @@ "entity" ] }, - "PATO:0001241": { - "url": "http://purl.obolibrary.org/obo/PATO_0001241", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "PATO:0001241" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -154115,11 +152824,6 @@ "duo" ], "linkedEntities": { - "UO:0000001": { - "url": "http://purl.obolibrary.org/obo/UO_0000001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "UO:0000001" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -154470,11 +153174,6 @@ "duo" ], "linkedEntities": { - "UO:0000002": { - "url": "http://purl.obolibrary.org/obo/UO_0000002", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "UO:0000002" - }, "http://purl.obolibrary.org/obo/IAO_0000009": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -154780,11 +153479,6 @@ "duo" ], "linkedEntities": { - "UO:0000003": { - "url": "http://purl.obolibrary.org/obo/UO_0000003", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "UO:0000003" - }, "http://purl.obolibrary.org/obo/IAO_0000009": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -155815,11 +154509,6 @@ "entity" ] }, - "BFO:0000050": { - "url": "http://purl.obolibrary.org/obo/BFO_0000050", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000050" - }, "http://purl.obolibrary.org/obo/IAO_0000118": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -156269,11 +154958,6 @@ "entity" ] }, - "BFO:0000051": { - "url": "http://purl.obolibrary.org/obo/BFO_0000051", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000051" - }, "http://purl.obolibrary.org/obo/IAO_0000118": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -156625,11 +155309,6 @@ "entity" ] }, - "BFO:0000054": { - "url": "http://purl.obolibrary.org/obo/BFO_0000054", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000054" - }, "http://purl.obolibrary.org/obo/IAO_0000112": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -157030,11 +155709,6 @@ "entity" ] }, - "BFO:0000055": { - "url": "http://purl.obolibrary.org/obo/BFO_0000055", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000055" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -157594,11 +156268,6 @@ "objectProperty", "entity" ] - }, - "BFO:0000066": { - "url": "http://purl.obolibrary.org/obo/BFO_0000066", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000066" } } }, @@ -157744,22 +156413,20 @@ "duo" ], "linkedEntities": { - "http://purl.obolibrary.org/obo/IAO_0000115": { + "http://www.w3.org/2000/01/rdf-schema#comment": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "definition", - "lang": "en" + "value": "comment" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000115" + "value": "comment" }, "type": [ "property", @@ -157767,7 +156434,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000111": { + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -157775,14 +156442,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "editor preferred term", + "value": "definition", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000111" + "value": "IAO:0000115" }, "type": [ "property", @@ -157790,20 +156457,22 @@ "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { + "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "isDefinedBy" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "editor preferred term", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "isDefinedBy" + "value": "IAO:0000111" }, "type": [ "property", @@ -157811,20 +156480,20 @@ "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#comment": { + "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "comment" + "value": "isDefinedBy" }, "curie": { "type": [ "literal" ], - "value": "comment" + "value": "isDefinedBy" }, "type": [ "property", @@ -157875,11 +156544,6 @@ "annotationProperty", "entity" ] - }, - "BFO:0000067": { - "url": "http://purl.obolibrary.org/obo/BFO_0000067", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000067" } } }, @@ -158003,11 +156667,6 @@ "duo" ], "linkedEntities": { - "BFO:0000179": { - "url": "http://purl.obolibrary.org/obo/BFO_0000179", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000179" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -158209,11 +156868,6 @@ "duo" ], "linkedEntities": { - "BFO:0000180": { - "url": "http://purl.obolibrary.org/obo/BFO_0000180", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000180" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -158689,36 +157343,6 @@ "duo" ], "linkedEntities": { - "DUO:0000041": { - "iri": "http://purl.obolibrary.org/obo/DUO_0000041", - "definedBy": [ - "duo" - ], - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "DUO_preferred_label", - "lang": "en" - }, - "curie": { - "type": [ - "literal" - ], - "value": "DUO:0000041" - }, - "type": [ - "property", - "annotationProperty", - "entity" - ], - "url": "http://purl.obolibrary.org/obo/DUO_0000041", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "DUO:0000041" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -158859,11 +157483,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0000004": { - "url": "http://purl.obolibrary.org/obo/IAO_0000004", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000004" } } }, @@ -158966,11 +157585,6 @@ "entity" ] }, - "IAO:0000039": { - "url": "http://purl.obolibrary.org/obo/IAO_0000039", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000039" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -159168,11 +157782,6 @@ "duo" ], "linkedEntities": { - "IAO:0000111": { - "url": "http://purl.obolibrary.org/obo/IAO_0000111", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000111" - }, "http://purl.obolibrary.org/obo/IAO_0000117": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -159483,11 +158092,6 @@ "duo" ], "linkedEntities": { - "IAO:0000112": { - "url": "http://purl.obolibrary.org/obo/IAO_0000112", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000112" - }, "http://purl.obolibrary.org/obo/IAO_0000117": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -159865,11 +158469,6 @@ "entity" ] }, - "IAO:0000113": { - "url": "http://purl.obolibrary.org/obo/IAO_0000113", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000113" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -160100,11 +158699,6 @@ "entity" ] }, - "IAO:0000114": { - "url": "http://purl.obolibrary.org/obo/IAO_0000114", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000114" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -160388,11 +158982,6 @@ "entity" ] }, - "IAO:0000115": { - "url": "http://purl.obolibrary.org/obo/IAO_0000115", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000115" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -160726,11 +159315,6 @@ "entity" ] }, - "IAO:0000116": { - "url": "http://purl.obolibrary.org/obo/IAO_0000116", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000116" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -161034,11 +159618,6 @@ "entity" ] }, - "IAO:0000117": { - "url": "http://purl.obolibrary.org/obo/IAO_0000117", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000117" - }, "http://purl.obolibrary.org/obo/IAO_0000114": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -161384,11 +159963,6 @@ "duo" ], "linkedEntities": { - "IAO:0000118": { - "url": "http://purl.obolibrary.org/obo/IAO_0000118", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000118" - }, "http://purl.obolibrary.org/obo/IAO_0000117": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -161786,11 +160360,6 @@ "entity" ] }, - "IAO:0000119": { - "url": "http://purl.obolibrary.org/obo/IAO_0000119", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000119" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -162266,11 +160835,6 @@ "entity" ] }, - "IAO:0000135": { - "url": "http://purl.obolibrary.org/obo/IAO_0000135", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000135" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -162666,11 +161230,6 @@ "entity" ] }, - "IAO:0000136": { - "url": "http://purl.obolibrary.org/obo/IAO_0000136", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000136" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -163005,11 +161564,6 @@ "entity" ] }, - "IAO:0000142": { - "url": "http://purl.obolibrary.org/obo/IAO_0000142", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000142" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -163265,11 +161819,6 @@ "entity" ] }, - "IAO:0000143": { - "url": "http://purl.obolibrary.org/obo/IAO_0000143", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000143" - }, "http://purl.obolibrary.org/obo/IAO_0000142": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -163716,11 +162265,6 @@ "entity" ] }, - "IAO:0000219": { - "url": "http://purl.obolibrary.org/obo/IAO_0000219", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000219" - }, "http://purl.obolibrary.org/obo/IAO_0000136": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -163918,11 +162462,6 @@ "entity" ] }, - "IAO:0000220": { - "url": "http://purl.obolibrary.org/obo/IAO_0000220", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000220" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -164309,11 +162848,6 @@ "entity" ] }, - "IAO:0000221": { - "url": "http://purl.obolibrary.org/obo/IAO_0000221", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000221" - }, "http://purl.obolibrary.org/obo/IAO_0000417": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -164474,11 +163008,6 @@ "entity" ] }, - "IAO:0000222": { - "url": "http://purl.obolibrary.org/obo/IAO_0000222", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000222" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -164680,11 +163209,6 @@ "individual", "entity" ] - }, - "IAO:0000223": { - "url": "http://purl.obolibrary.org/obo/IAO_0000223", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000223" } } }, @@ -164840,11 +163364,6 @@ "duo" ], "linkedEntities": { - "IAO:0000231": { - "url": "http://purl.obolibrary.org/obo/IAO_0000231", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000231" - }, "http://purl.obolibrary.org/obo/IAO_0000117": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -165073,11 +163592,6 @@ "duo" ], "linkedEntities": { - "IAO:0000232": { - "url": "http://purl.obolibrary.org/obo/IAO_0000232", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000232" - }, "http://purl.obolibrary.org/obo/IAO_0000117": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -165191,46 +163705,46 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000122": { + "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "ready for release", - "lang": "en" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000122" + "value": "label" }, "type": [ - "individual", + "property", + "annotationProperty", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#label": { + "http://purl.obolibrary.org/obo/IAO_0000122": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "label" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "ready for release", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "label" + "value": "IAO:0000122" }, "type": [ - "property", - "annotationProperty", + "individual", "entity" ] } @@ -165421,11 +163935,6 @@ "duo" ], "linkedEntities": { - "IAO:0000233": { - "url": "http://purl.obolibrary.org/obo/IAO_0000233", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000233" - }, "http://purl.obolibrary.org/obo/IAO_0000117": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -165795,22 +164304,20 @@ "duo" ], "linkedEntities": { - "http://purl.obolibrary.org/obo/IAO_0000117": { + "http://www.w3.org/2000/01/rdf-schema#comment": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "term editor", - "lang": "en" + "value": "comment" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000117" + "value": "comment" }, "type": [ "property", @@ -165818,7 +164325,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000114": { + "http://purl.obolibrary.org/obo/IAO_0000117": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -165826,14 +164333,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "has curation status", + "value": "term editor", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000114" + "value": "IAO:0000117" }, "type": [ "property", @@ -165841,7 +164348,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000115": { + "http://purl.obolibrary.org/obo/IAO_0000114": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -165849,14 +164356,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "definition", + "value": "has curation status", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000115" + "value": "IAO:0000114" }, "type": [ "property", @@ -165864,12 +164371,7 @@ "entity" ] }, - "IAO:0000234": { - "url": "http://purl.obolibrary.org/obo/IAO_0000234", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000234" - }, - "http://purl.obolibrary.org/obo/IAO_0000111": { + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -165877,14 +164379,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "editor preferred term", + "value": "definition", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000111" + "value": "IAO:0000115" }, "type": [ "property", @@ -165892,7 +164394,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000119": { + "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -165900,14 +164402,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "definition source", + "value": "editor preferred term", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000119" + "value": "IAO:0000111" }, "type": [ "property", @@ -165915,7 +164417,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000125": { + "http://purl.obolibrary.org/obo/IAO_0000119": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -165923,34 +164425,35 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "pending final vetting", + "value": "definition source", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000125" + "value": "IAO:0000119" }, "type": [ - "individual", + "property", + "annotationProperty", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#comment": { + "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "comment" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "comment" + "value": "label" }, "type": [ "property", @@ -165958,24 +164461,25 @@ "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#label": { + "http://purl.obolibrary.org/obo/IAO_0000125": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "label" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "pending final vetting", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "label" + "value": "IAO:0000125" }, "type": [ - "property", - "annotationProperty", + "individual", "entity" ] } @@ -166171,11 +164675,6 @@ "entity" ] }, - "IAO:0000235": { - "url": "http://purl.obolibrary.org/obo/IAO_0000235", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000235" - }, "http://purl.obolibrary.org/obo/IAO_0000233": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -166342,11 +164841,6 @@ "duo" ], "linkedEntities": { - "IAO:0000404": { - "url": "http://purl.obolibrary.org/obo/IAO_0000404", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000404" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -166509,11 +165003,6 @@ "class", "entity" ] - }, - "IAO:0000405": { - "url": "http://purl.obolibrary.org/obo/IAO_0000405", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000405" } } }, @@ -166613,11 +165102,6 @@ "entity" ] }, - "IAO:0000406": { - "url": "http://purl.obolibrary.org/obo/IAO_0000406", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000406" - }, "http://purl.obolibrary.org/obo/IAO_0000400": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -166741,90 +165225,84 @@ "duo" ], "linkedEntities": { - "http://purl.obolibrary.org/obo/BFO_0000051": { + "http://www.w3.org/2000/01/rdf-schema#comment": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "has part", - "lang": "en" + "value": "comment" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000051" + "value": "comment" }, "type": [ "property", - "objectProperty", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/UO_0000001": { + "http://purl.obolibrary.org/obo/BFO_0000051": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "length unit" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "has part", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "UO:0000001" + "value": "BFO:0000051" }, "type": [ - "class", + "property", + "objectProperty", "entity" ] }, - "IAO:0000407": { - "url": "http://purl.obolibrary.org/obo/IAO_0000407", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000407" - }, - "http://purl.obolibrary.org/obo/IAO_0000400": { + "http://purl.obolibrary.org/obo/UO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "cartesian spatial coordinate datum", - "lang": "en" + "value": "length unit" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000400" + "value": "UO:0000001" }, "type": [ "class", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#comment": { + "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "comment" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "comment" + "value": "label" }, "type": [ "property", @@ -166832,24 +165310,25 @@ "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#label": { + "http://purl.obolibrary.org/obo/IAO_0000400": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "label" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "cartesian spatial coordinate datum", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "label" + "value": "IAO:0000400" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] } @@ -167074,11 +165553,6 @@ "entity" ] }, - "IAO:0000411": { - "url": "http://purl.obolibrary.org/obo/IAO_0000411", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000411" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -167453,11 +165927,6 @@ "entity" ] }, - "IAO:0000412": { - "url": "http://purl.obolibrary.org/obo/IAO_0000412", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000412" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -167740,11 +166209,6 @@ "entity" ] }, - "IAO:0000413": { - "url": "http://purl.obolibrary.org/obo/IAO_0000413", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000413" - }, "http://purl.obolibrary.org/obo/IAO_0000416": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -168040,11 +166504,6 @@ "entity" ] }, - "IAO:0000417": { - "url": "http://purl.obolibrary.org/obo/IAO_0000417", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000417" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -168322,11 +166781,6 @@ "entity" ] }, - "IAO:0000418": { - "url": "http://purl.obolibrary.org/obo/IAO_0000418", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000418" - }, "http://purl.obolibrary.org/obo/IAO_0000136": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -168642,7 +167096,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000120": { + "http://purl.obolibrary.org/obo/IAO_0000418": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -168650,26 +167104,22 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "metadata complete", + "value": "is quality specification of", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000120" + "value": "IAO:0000418" }, "type": [ - "individual", + "property", + "objectProperty", "entity" ] }, - "IAO:0000419": { - "url": "http://purl.obolibrary.org/obo/IAO_0000419", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000419" - }, - "http://purl.obolibrary.org/obo/IAO_0000418": { + "http://purl.obolibrary.org/obo/IAO_0000120": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -168677,18 +167127,17 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "is quality specification of", + "value": "metadata complete", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000418" + "value": "IAO:0000120" }, "type": [ - "property", - "objectProperty", + "individual", "entity" ] }, @@ -169000,11 +167449,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0000424": { - "url": "http://purl.obolibrary.org/obo/IAO_0000424", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000424" } } }, @@ -169273,11 +167717,6 @@ "entity" ] }, - "IAO:0000425": { - "url": "http://purl.obolibrary.org/obo/IAO_0000425", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000425" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -169451,11 +167890,6 @@ "entity" ] }, - "IAO:0000426": { - "url": "http://purl.obolibrary.org/obo/IAO_0000426", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000426" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -169631,22 +168065,20 @@ "duo" ], "linkedEntities": { - "http://purl.obolibrary.org/obo/IAO_0000117": { + "http://purl.obolibrary.org/obo/OMO_0001001": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "term editor", - "lang": "en" + "value": "logical characteristic of object property" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000117" + "value": "OMO:0001001" }, "type": [ "property", @@ -169654,7 +168086,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000115": { + "http://purl.obolibrary.org/obo/IAO_0000117": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -169662,14 +168094,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "definition", + "value": "term editor", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000115" + "value": "IAO:0000117" }, "type": [ "property", @@ -169677,7 +168109,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000112": { + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -169685,14 +168117,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "example of usage", + "value": "definition", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000112" + "value": "IAO:0000115" }, "type": [ "property", @@ -169700,7 +168132,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000111": { + "http://purl.obolibrary.org/obo/IAO_0000112": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -169708,14 +168140,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "editor preferred term", + "value": "example of usage", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000111" + "value": "IAO:0000112" }, "type": [ "property", @@ -169723,20 +168155,22 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/OMO_0001001": { + "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "logical characteristic of object property" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "editor preferred term", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "OMO:0001001" + "value": "IAO:0000111" }, "type": [ "property", @@ -169764,11 +168198,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0000427": { - "url": "http://purl.obolibrary.org/obo/IAO_0000427", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000427" } } }, @@ -170012,11 +168441,6 @@ "entity" ] }, - "IAO:0000581": { - "url": "http://purl.obolibrary.org/obo/IAO_0000581", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000581" - }, "http://purl.obolibrary.org/obo/IAO_0000416": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -170352,11 +168776,6 @@ "entity" ] }, - "IAO:0000583": { - "url": "http://purl.obolibrary.org/obo/IAO_0000583", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000583" - }, "http://purl.obolibrary.org/obo/IAO_0000416": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -170821,11 +169240,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0000589": { - "url": "http://purl.obolibrary.org/obo/IAO_0000589", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000589" } } }, @@ -170979,11 +169393,6 @@ "duo" ], "linkedEntities": { - "IAO:0000596": { - "url": "http://purl.obolibrary.org/obo/IAO_0000596", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000596" - }, "http://purl.obolibrary.org/obo/RO_\"": { "url": "http://purl.obolibrary.org/obo/RO_\"", "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", @@ -171323,11 +169732,6 @@ "entity" ] }, - "IAO:0000597": { - "url": "http://purl.obolibrary.org/obo/IAO_0000597", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000597" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -171575,11 +169979,6 @@ "entity" ] }, - "IAO:0000598": { - "url": "http://purl.obolibrary.org/obo/IAO_0000598", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000598" - }, "http://purl.obolibrary.org/obo/IAO_0000112": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -171873,11 +170272,6 @@ "entity" ] }, - "IAO:0000599": { - "url": "http://purl.obolibrary.org/obo/IAO_0000599", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000599" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -172171,11 +170565,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0000600": { - "url": "http://purl.obolibrary.org/obo/IAO_0000600", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000600" } } }, @@ -172421,11 +170810,6 @@ "entity" ] }, - "IAO:0000601": { - "url": "http://purl.obolibrary.org/obo/IAO_0000601", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000601" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -172668,11 +171052,6 @@ "entity" ] }, - "IAO:0000602": { - "url": "http://purl.obolibrary.org/obo/IAO_0000602", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000602" - }, "http://purl.obolibrary.org/obo/IAO_0000600": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -172989,11 +171368,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0000603": { - "url": "http://purl.obolibrary.org/obo/IAO_0000603", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000603" } } }, @@ -173249,11 +171623,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0000604": { - "url": "http://purl.obolibrary.org/obo/IAO_0000604", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000604" } } }, @@ -173460,11 +171829,6 @@ "entity" ] }, - "IAO:0000700": { - "url": "http://purl.obolibrary.org/obo/IAO_0000700", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000700" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -173680,27 +172044,20 @@ "duo" ], "linkedEntities": { - "IAO:0006011": { - "url": "http://purl.obolibrary.org/obo/IAO_0006011", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0006011" - }, - "http://purl.obolibrary.org/obo/IAO_0000117": { + "http://www.w3.org/2000/01/rdf-schema#comment": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "term editor", - "lang": "en" + "value": "comment" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000117" + "value": "comment" }, "type": [ "property", @@ -173708,7 +172065,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000115": { + "http://purl.obolibrary.org/obo/IAO_0000117": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -173716,14 +172073,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "definition", + "value": "term editor", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000115" + "value": "IAO:0000117" }, "type": [ "property", @@ -173731,7 +172088,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000233": { + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -173739,14 +172096,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "term tracker item", + "value": "definition", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000233" + "value": "IAO:0000115" }, "type": [ "property", @@ -173754,7 +172111,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000234": { + "http://purl.obolibrary.org/obo/IAO_0000233": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -173762,14 +172119,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "ontology term requester", + "value": "term tracker item", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000234" + "value": "IAO:0000233" }, "type": [ "property", @@ -173777,7 +172134,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000111": { + "http://purl.obolibrary.org/obo/IAO_0000234": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -173785,14 +172142,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "editor preferred term", + "value": "ontology term requester", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000111" + "value": "IAO:0000234" }, "type": [ "property", @@ -173800,20 +172157,22 @@ "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#comment": { + "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "comment" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "editor preferred term", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "comment" + "value": "IAO:0000111" }, "type": [ "property", @@ -174029,11 +172388,6 @@ "duo" ], "linkedEntities": { - "IAO:0006012": { - "url": "http://purl.obolibrary.org/obo/IAO_0006012", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0006012" - }, "http://purl.obolibrary.org/obo/IAO_0000117": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -174391,11 +172745,6 @@ "entity" ] }, - "IAO:0010000": { - "url": "http://purl.obolibrary.org/obo/IAO_0010000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0010000" - }, "http://purl.obolibrary.org/obo/IAO_0000600": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -174611,27 +172960,20 @@ "duo" ], "linkedEntities": { - "IAO:0100001": { - "url": "http://purl.obolibrary.org/obo/IAO_0100001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0100001" - }, - "http://purl.obolibrary.org/obo/IAO_0000117": { + "http://www.w3.org/2000/01/rdf-schema#comment": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "term editor", - "lang": "en" + "value": "comment" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000117" + "value": "comment" }, "type": [ "property", @@ -174639,7 +172981,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000114": { + "http://purl.obolibrary.org/obo/IAO_0000117": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -174647,14 +172989,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "has curation status", + "value": "term editor", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000114" + "value": "IAO:0000117" }, "type": [ "property", @@ -174662,7 +173004,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000115": { + "http://purl.obolibrary.org/obo/IAO_0000114": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -174670,14 +173012,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "definition", + "value": "has curation status", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000115" + "value": "IAO:0000114" }, "type": [ "property", @@ -174685,7 +173027,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000111": { + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -174693,14 +173035,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "editor preferred term", + "value": "definition", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000111" + "value": "IAO:0000115" }, "type": [ "property", @@ -174708,7 +173050,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000119": { + "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -174716,14 +173058,14 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "definition source", + "value": "editor preferred term", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000119" + "value": "IAO:0000111" }, "type": [ "property", @@ -174731,7 +173073,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000125": { + "http://purl.obolibrary.org/obo/IAO_0000119": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -174739,34 +173081,35 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "pending final vetting", + "value": "definition source", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000125" + "value": "IAO:0000119" }, "type": [ - "individual", + "property", + "annotationProperty", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#comment": { + "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "comment" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "comment" + "value": "label" }, "type": [ "property", @@ -174774,24 +173117,25 @@ "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#label": { + "http://purl.obolibrary.org/obo/IAO_0000125": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "label" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "pending final vetting", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "label" + "value": "IAO:0000125" }, "type": [ - "property", - "annotationProperty", + "individual", "entity" ] } @@ -175271,11 +173615,6 @@ "entity" ] }, - "OBI:0000293": { - "url": "http://purl.obolibrary.org/obo/OBI_0000293", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "OBI:0000293" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -175369,11 +173708,6 @@ "duo" ], "linkedEntities": { - "OBI:0000295": { - "url": "http://purl.obolibrary.org/obo/OBI_0000295", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "OBI:0000295" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -175797,11 +174131,6 @@ "entity" ] }, - "OBI:0000299": { - "url": "http://purl.obolibrary.org/obo/OBI_0000299", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "OBI:0000299" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -176088,11 +174417,6 @@ "entity" ] }, - "OBI:0000312": { - "url": "http://purl.obolibrary.org/obo/OBI_0000312", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "OBI:0000312" - }, "http://purl.obolibrary.org/obo/IAO_0000122": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -176357,11 +174681,6 @@ "entity" ] }, - "OMO:0001001": { - "url": "http://purl.obolibrary.org/obo/OMO_0001001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "OMO:0001001" - }, "http://purl.obolibrary.org/obo/IAO_0000119": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -176617,11 +174936,6 @@ "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", "curie": "orcid:0000-0002-7356-1779" }, - "OMO:0002000": { - "url": "http://purl.obolibrary.org/obo/OMO_0002000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "OMO:0002000" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -177025,11 +175339,6 @@ "entity" ] }, - "RO:0000052": { - "url": "http://purl.obolibrary.org/obo/RO_0000052", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000052" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -177427,11 +175736,6 @@ "entity" ] }, - "RO:0000053": { - "url": "http://purl.obolibrary.org/obo/RO_0000053", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000053" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -177823,11 +176127,6 @@ "entity" ] }, - "RO:0000056": { - "url": "http://purl.obolibrary.org/obo/RO_0000056", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000056" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -178248,11 +176547,6 @@ "entity" ] }, - "RO:0000057": { - "url": "http://purl.obolibrary.org/obo/RO_0000057", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000057" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -178482,7 +176776,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0000059": { + "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -178490,22 +176784,21 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "concretizes", + "value": "generically dependent continuant", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0000059" + "value": "BFO:0000031" }, "type": [ - "property", - "objectProperty", + "class", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000031": { + "http://purl.obolibrary.org/obo/RO_0000059": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -178513,25 +176806,21 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "generically dependent continuant", + "value": "concretizes", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000031" + "value": "RO:0000059" }, "type": [ - "class", + "property", + "objectProperty", "entity" ] }, - "RO:0000058": { - "url": "http://purl.obolibrary.org/obo/RO_0000058", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000058" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -178762,7 +177051,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0000058": { + "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -178770,22 +177059,21 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "is concretized as", + "value": "generically dependent continuant", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0000058" + "value": "BFO:0000031" }, "type": [ - "property", - "objectProperty", + "class", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000031": { + "http://purl.obolibrary.org/obo/RO_0000058": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -178793,25 +177081,21 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "generically dependent continuant", + "value": "is concretized as", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000031" + "value": "RO:0000058" }, "type": [ - "class", + "property", + "objectProperty", "entity" ] }, - "RO:0000059": { - "url": "http://purl.obolibrary.org/obo/RO_0000059", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000059" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -179120,11 +177404,6 @@ "entity" ] }, - "RO:0000079": { - "url": "http://purl.obolibrary.org/obo/RO_0000079", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000079" - }, "http://purl.obolibrary.org/obo/IAO_0000118": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -179499,11 +177778,6 @@ "entity" ] }, - "RO:0000080": { - "url": "http://purl.obolibrary.org/obo/RO_0000080", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000080" - }, "http://purl.obolibrary.org/obo/IAO_0000112": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -179856,11 +178130,6 @@ "entity" ] }, - "RO:0000081": { - "url": "http://purl.obolibrary.org/obo/RO_0000081", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000081" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -180175,11 +178444,6 @@ "duo" ], "linkedEntities": { - "RO:0000085": { - "url": "http://purl.obolibrary.org/obo/RO_0000085", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000085" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -180561,11 +178825,6 @@ "entity" ] }, - "RO:0000086": { - "url": "http://purl.obolibrary.org/obo/RO_0000086", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000086" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -180882,11 +179141,6 @@ "duo" ], "linkedEntities": { - "RO:0000087": { - "url": "http://purl.obolibrary.org/obo/RO_0000087", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000087" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -181199,7 +179453,7 @@ "duo" ], "linkedEntities": { - "http://purl.obolibrary.org/obo/BFO_0000016": { + "http://purl.obolibrary.org/obo/RO_0000092": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -181207,21 +179461,22 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "disposition", + "value": "disposition of", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000016" + "value": "RO:0000092" }, "type": [ - "class", + "property", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000115": { + "http://purl.obolibrary.org/obo/BFO_0000016": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -181229,22 +179484,21 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "definition", + "value": "disposition", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000115" + "value": "BFO:0000016" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000004": { + "http://purl.obolibrary.org/obo/RO_0000053": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -181252,21 +179506,22 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "independent continuant", + "value": "has characteristic", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000004" + "value": "RO:0000053" }, "type": [ - "class", + "property", + "objectProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0000092": { + "http://purl.obolibrary.org/obo/IAO_0000115": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -181274,22 +179529,22 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "disposition of", + "value": "definition", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0000092" + "value": "IAO:0000115" }, "type": [ "property", - "objectProperty", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/RO_0000053": { + "http://purl.obolibrary.org/obo/BFO_0000004": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -181297,18 +179552,17 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "has characteristic", + "value": "independent continuant", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "RO:0000053" + "value": "BFO:0000004" }, "type": [ - "property", - "objectProperty", + "class", "entity" ] }, @@ -181332,11 +179586,6 @@ "annotationProperty", "entity" ] - }, - "RO:0000091": { - "url": "http://purl.obolibrary.org/obo/RO_0000091", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000091" } } }, @@ -181518,11 +179767,6 @@ "annotationProperty", "entity" ] - }, - "RO:0000092": { - "url": "http://purl.obolibrary.org/obo/RO_0000092", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0000092" } } }, @@ -181811,11 +180055,6 @@ "entity" ] }, - "RO:0001000": { - "url": "http://purl.obolibrary.org/obo/RO_0001000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0001000" - }, "http://purl.obolibrary.org/obo/IAO_0000118": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -182169,11 +180408,6 @@ "entity" ] }, - "RO:0001001": { - "url": "http://purl.obolibrary.org/obo/RO_0001001", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0001001" - }, "http://purl.obolibrary.org/obo/IAO_0000118": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -182431,11 +180665,6 @@ "duo" ], "linkedEntities": { - "RO:0001015": { - "url": "http://purl.obolibrary.org/obo/RO_0001015", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0001015" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -183110,11 +181339,6 @@ "entity" ] }, - "RO:0001025": { - "url": "http://purl.obolibrary.org/obo/RO_0001025", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0001025" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -183278,11 +181502,6 @@ "entity" ] }, - "RO:0001900": { - "url": "http://purl.obolibrary.org/obo/RO_0001900", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0001900" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -183669,11 +181888,6 @@ "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", "curie": "ro:0001901" }, - "RO:0002000": { - "url": "http://purl.obolibrary.org/obo/RO_0002000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002000" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -184052,11 +182266,6 @@ "entity" ] }, - "RO:0002002": { - "url": "http://purl.obolibrary.org/obo/RO_0002002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002002" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -184418,11 +182627,6 @@ "entity" ] }, - "RO:0002350": { - "url": "http://purl.obolibrary.org/obo/RO_0002350", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002350" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -184681,11 +182885,6 @@ "entity" ] }, - "RO:0002351": { - "url": "http://purl.obolibrary.org/obo/RO_0002351", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002351" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -184819,11 +183018,6 @@ "entity" ] }, - "RO:0004096": { - "url": "http://purl.obolibrary.org/obo/RO_0004096", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0004096" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -184918,11 +183112,6 @@ "duo" ], "linkedEntities": { - "RO:0004097": { - "url": "http://purl.obolibrary.org/obo/RO_0004097", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0004097" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -188038,11 +186227,6 @@ "entity" ] }, - "IAO:0000002": { - "url": "http://purl.obolibrary.org/obo/IAO_0000002", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000002" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -188521,11 +186705,6 @@ "entity" ] }, - "IAO:0000103": { - "url": "http://purl.obolibrary.org/obo/IAO_0000103", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000103" - }, "http://purl.obolibrary.org/obo/IAO_0000102": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -188799,11 +186978,6 @@ "entity" ] }, - "IAO:0000120": { - "url": "http://purl.obolibrary.org/obo/IAO_0000120", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000120" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -189318,11 +187492,6 @@ "entity" ] }, - "IAO:0000121": { - "url": "http://purl.obolibrary.org/obo/IAO_0000121", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000121" - }, "http://purl.obolibrary.org/obo/IAO_0000120": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -189837,11 +188006,6 @@ "entity" ] }, - "IAO:0000122": { - "url": "http://purl.obolibrary.org/obo/IAO_0000122", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000122" - }, "http://purl.obolibrary.org/obo/IAO_0000120": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -190356,11 +188520,6 @@ "entity" ] }, - "IAO:0000123": { - "url": "http://purl.obolibrary.org/obo/IAO_0000123", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000123" - }, "http://purl.obolibrary.org/obo/IAO_0000120": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -190985,11 +189144,6 @@ "entity" ] }, - "IAO:0000124": { - "url": "http://purl.obolibrary.org/obo/IAO_0000124", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000124" - }, "http://purl.obolibrary.org/obo/IAO_0000121": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -191460,11 +189614,6 @@ "entity" ] }, - "IAO:0000125": { - "url": "http://purl.obolibrary.org/obo/IAO_0000125", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000125" - }, "http://purl.obolibrary.org/obo/IAO_0000123": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -191911,11 +190060,6 @@ "annotationProperty", "entity" ] - }, - "IAO:0000224": { - "url": "http://purl.obolibrary.org/obo/IAO_0000224", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000224" } } }, @@ -192089,7 +190233,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000111": { + "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -192097,22 +190241,21 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "editor preferred term", + "value": "generically dependent continuant", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000111" + "value": "BFO:0000031" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000001": { + "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -192120,21 +190263,22 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "entity", + "value": "editor preferred term", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000001" + "value": "IAO:0000111" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000002": { + "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -192142,64 +190286,64 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "continuant", + "value": "entity", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000002" + "value": "BFO:0000001" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000031": { + "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "generically dependent continuant", - "lang": "en" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000031" + "value": "label" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#label": { + "http://purl.obolibrary.org/obo/IAO_0000227": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "label" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "terms merged", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "label" + "value": "IAO:0000227" }, "type": [ - "property", - "annotationProperty", + "individual", "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000227": { + "http://purl.obolibrary.org/obo/BFO_0000002": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -192207,17 +190351,17 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "terms merged", + "value": "continuant", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000227" + "value": "BFO:0000002" }, "type": [ - "individual", + "class", "entity" ] }, @@ -192286,11 +190430,6 @@ "class", "entity" ] - }, - "IAO:0000226": { - "url": "http://purl.obolibrary.org/obo/IAO_0000226", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000226" } } }, @@ -192502,7 +190641,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000111": { + "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -192510,22 +190649,21 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "editor preferred term", + "value": "generically dependent continuant", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000111" + "value": "BFO:0000031" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000001": { + "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -192533,21 +190671,22 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "entity", + "value": "editor preferred term", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000001" + "value": "IAO:0000111" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000002": { + "http://purl.obolibrary.org/obo/IAO_0000226": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -192555,21 +190694,21 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "continuant", + "value": "placeholder removed", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000002" + "value": "IAO:0000226" }, "type": [ - "class", + "individual", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000031": { + "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -192577,65 +190716,60 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "generically dependent continuant", + "value": "entity", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000031" + "value": "BFO:0000001" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000226": { + "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "placeholder removed", - "lang": "en" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000226" + "value": "label" }, "type": [ - "individual", + "property", + "annotationProperty", "entity" ] }, - "IAO:0000227": { - "url": "http://purl.obolibrary.org/obo/IAO_0000227", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000227" - }, - "http://www.w3.org/2000/01/rdf-schema#label": { + "http://purl.obolibrary.org/obo/BFO_0000002": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "label" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "continuant", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "label" + "value": "BFO:0000002" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] }, @@ -192893,7 +191027,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000111": { + "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -192901,22 +191035,21 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "editor preferred term", + "value": "generically dependent continuant", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000111" + "value": "BFO:0000031" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000001": { + "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -192924,21 +191057,22 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "entity", + "value": "editor preferred term", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000001" + "value": "IAO:0000111" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000002": { + "http://purl.obolibrary.org/obo/IAO_0000226": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -192946,21 +191080,21 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "continuant", + "value": "placeholder removed", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000002" + "value": "IAO:0000226" }, "type": [ - "class", + "individual", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000031": { + "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -192968,69 +191102,64 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "generically dependent continuant", + "value": "entity", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000031" + "value": "BFO:0000001" }, "type": [ "class", "entity" ] }, - "IAO:0000228": { - "url": "http://purl.obolibrary.org/obo/IAO_0000228", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000228" - }, - "http://purl.obolibrary.org/obo/IAO_0000226": { + "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "placeholder removed", - "lang": "en" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000226" + "value": "label" }, "type": [ - "individual", + "property", + "annotationProperty", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#label": { + "http://purl.obolibrary.org/obo/IAO_0000227": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "label" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "terms merged", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "label" + "value": "IAO:0000227" }, "type": [ - "property", - "annotationProperty", + "individual", "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000227": { + "http://purl.obolibrary.org/obo/BFO_0000002": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -193038,17 +191167,17 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "terms merged", + "value": "continuant", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000227" + "value": "BFO:0000002" }, "type": [ - "individual", + "class", "entity" ] }, @@ -193306,7 +191435,7 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000111": { + "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -193314,22 +191443,21 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "editor preferred term", + "value": "generically dependent continuant", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000111" + "value": "BFO:0000031" }, "type": [ - "property", - "annotationProperty", + "class", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000001": { + "http://purl.obolibrary.org/obo/IAO_0000111": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -193337,21 +191465,22 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "entity", + "value": "editor preferred term", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000001" + "value": "IAO:0000111" }, "type": [ - "class", + "property", + "annotationProperty", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000002": { + "http://purl.obolibrary.org/obo/IAO_0000226": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -193359,21 +191488,21 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "continuant", + "value": "placeholder removed", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000002" + "value": "IAO:0000226" }, "type": [ - "class", + "individual", "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000031": { + "http://purl.obolibrary.org/obo/BFO_0000001": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -193381,64 +191510,64 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "generically dependent continuant", + "value": "entity", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "BFO:0000031" + "value": "BFO:0000001" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000226": { + "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "placeholder removed", - "lang": "en" + "value": "label" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000226" + "value": "label" }, "type": [ - "individual", + "property", + "annotationProperty", "entity" ] }, - "http://www.w3.org/2000/01/rdf-schema#label": { + "http://purl.obolibrary.org/obo/IAO_0000227": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "label" + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "terms merged", + "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "label" + "value": "IAO:0000227" }, "type": [ - "property", - "annotationProperty", + "individual", "entity" ] }, - "http://purl.obolibrary.org/obo/IAO_0000227": { + "http://purl.obolibrary.org/obo/BFO_0000002": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { @@ -193446,25 +191575,20 @@ "literal" ], "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "terms merged", + "value": "continuant", "lang": "en" }, "curie": { "type": [ "literal" ], - "value": "IAO:0000227" + "value": "BFO:0000002" }, "type": [ - "individual", + "class", "entity" ] }, - "IAO:0000229": { - "url": "http://purl.obolibrary.org/obo/IAO_0000229", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000229" - }, "http://purl.obolibrary.org/obo/IAO_0000225": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -193638,11 +191762,6 @@ "duo" ], "linkedEntities": { - "IAO:0000230": { - "url": "http://purl.obolibrary.org/obo/IAO_0000230", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000230" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -194015,11 +192134,6 @@ "entity" ] }, - "IAO:0000410": { - "url": "http://purl.obolibrary.org/obo/IAO_0000410", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000410" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -194471,11 +192585,6 @@ "entity" ] }, - "IAO:0000420": { - "url": "http://purl.obolibrary.org/obo/IAO_0000420", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000420" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -194948,11 +193057,6 @@ "entity" ] }, - "IAO:0000421": { - "url": "http://purl.obolibrary.org/obo/IAO_0000421", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000421" - }, "http://purl.obolibrary.org/obo/IAO_0000102": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -195566,11 +193670,6 @@ "class", "entity" ] - }, - "IAO:0000423": { - "url": "http://purl.obolibrary.org/obo/IAO_0000423", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000423" } } }, @@ -196098,11 +194197,6 @@ "entity" ] }, - "IAO:0000428": { - "url": "http://purl.obolibrary.org/obo/IAO_0000428", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000428" - }, "http://purl.obolibrary.org/obo/IAO_0000027": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -196501,11 +194595,6 @@ "entity" ] }, - "OMO:0001000": { - "url": "http://purl.obolibrary.org/obo/OMO_0001000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "OMO:0001000" - }, "http://purl.obolibrary.org/obo/BFO_0000031": { "numAppearsIn": 1, "hasLocalDefinition": true, diff --git a/testcases_expected_output/duo/properties.jsonl b/testcases_expected_output/duo/properties.jsonl index 527537094..9fb9edd13 100644 --- a/testcases_expected_output/duo/properties.jsonl +++ b/testcases_expected_output/duo/properties.jsonl @@ -1,101 +1,101 @@ {"_json":"{\"iri\":\"http://protege.stanford.edu/plugins/owl/protege#defaultLanguage\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"defaultLanguage\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"defaultLanguage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"defaultLanguage\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{}}","appearsIn":["duo"],"curie":"defaultLanguage","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"duo+property+http://protege.stanford.edu/plugins/owl/protege#defaultLanguage","imported":"true","iri":"http://protege.stanford.edu/plugins/owl/protege#defaultLanguage","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"defaultLanguage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"defaultLanguage","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is part of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my brain is part of my body (continuant parthood, two material entities)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this day is part of this year (occurrent parthood)\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\\n\\nA continuant cannot be part of an occurrent: use \\u0027participates in\\u0027. An occurrent cannot be part of a continuant: use \\u0027has participant\\u0027. A material entity cannot be part of an immaterial entity: use \\u0027has location\\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \\u0027inheres in\\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \\u0027bearer of\\u0027.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part_of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"type\":[\"literal\"],\"value\":\"http://www.obofoundry.org/ro/#OBO_REL:part_of\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my brain is part of my body (continuant parthood, two material entities)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this day is part of this year (occurrent parthood)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\\n\\nA continuant cannot be part of an occurrent: use \\u0027participates in\\u0027. An occurrent cannot be part of a continuant: use \\u0027has participant\\u0027. A material entity cannot be part of an immaterial entity: use \\u0027has location\\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \\u0027inheres in\\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \\u0027bearer of\\u0027.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part_of\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000050\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000050\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000050\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000050","definition":"a core relation that holds between a part and its whole","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"is part of","http__//purl.obolibrary.org/obo/IAO_0000112":["my brain is part of my body (continuant parthood, two material entities)","my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)","this day is part of this year (occurrent parthood)"],"http__//purl.obolibrary.org/obo/IAO_0000115":"a core relation that holds between a part and its whole","http__//purl.obolibrary.org/obo/IAO_0000116":["Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."],"http__//purl.obolibrary.org/obo/IAO_0000118":"part_of","http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"part of","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"http://www.obofoundry.org/ro/#OBO_REL:part_of","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"duo+property+http://purl.obolibrary.org/obo/BFO_0000050","imported":"true","iri":"http://purl.obolibrary.org/obo/BFO_0000050","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"part of","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["is part of","my brain is part of my body (continuant parthood, two material entities)","my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)","this day is part of this year (occurrent parthood)","a core relation that holds between a part and its whole","Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027.","part_of","true"],"shortForm":"BFO_0000050","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a whole and its part\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my body has part my brain (continuant parthood, two material entities)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this year has part this day (occurrent parthood)\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a whole and its part\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\\n\\nA continuant cannot have an occurrent as part: use \\u0027participates in\\u0027. An occurrent cannot have a continuant as part: use \\u0027has participant\\u0027. An immaterial entity cannot have a material entity as part: use \\u0027location of\\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \\u0027bearer of\\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \\u0027inheres in\\u0027.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_part\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my body has part my brain (continuant parthood, two material entities)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this year has part this day (occurrent parthood)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a whole and its part\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\\n\\nA continuant cannot have an occurrent as part: use \\u0027participates in\\u0027. An occurrent cannot have a continuant as part: use \\u0027has participant\\u0027. An immaterial entity cannot have a material entity as part: use \\u0027location of\\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \\u0027bearer of\\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \\u0027inheres in\\u0027.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_part\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000051\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000051\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000051\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000051","definition":"a core relation that holds between a whole and its part","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has part","http__//purl.obolibrary.org/obo/IAO_0000112":["my body has part my brain (continuant parthood, two material entities)","my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)","this year has part this day (occurrent parthood)"],"http__//purl.obolibrary.org/obo/IAO_0000115":"a core relation that holds between a whole and its part","http__//purl.obolibrary.org/obo/IAO_0000116":["Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use \u0027participates in\u0027. An occurrent cannot have a continuant as part: use \u0027has participant\u0027. An immaterial entity cannot have a material entity as part: use \u0027location of\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \u0027bearer of\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \u0027inheres in\u0027."],"http__//purl.obolibrary.org/obo/IAO_0000118":"has_part","http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"has part","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000050","id":"duo+property+http://purl.obolibrary.org/obo/BFO_0000051","imported":"true","iri":"http://purl.obolibrary.org/obo/BFO_0000051","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has part","numDescendants":"5.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has part","my body has part my brain (continuant parthood, two material entities)","my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)","this year has part this day (occurrent parthood)","a core relation that holds between a whole and its part","Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use \u0027participates in\u0027. An occurrent cannot have a continuant as part: use \u0027has participant\u0027. An immaterial entity cannot have a material entity as part: use \u0027location of\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \u0027bearer of\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \u0027inheres in\u0027.","has_part","true"],"shortForm":"BFO_0000051","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000054\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000054\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this disease is realized in this disease course\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this fragility is realized in this shattering\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigator role is realized in this investigation\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is realized by\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized_in\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"[copied from inverse property \\u0027realizes\\u0027] to say that b realizes c at t is to assert that there is some material entity d \\u0026 b is a process which has participant d at t \\u0026 c is a disposition or role of which d is bearer_of at t\\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000055\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this disease is realized in this disease course\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this fragility is realized in this shattering\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigator role is realized in this investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is realized by\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized_in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"[copied from inverse property \\u0027realizes\\u0027] to say that b realizes c at t is to assert that there is some material entity d \\u0026 b is a process which has participant d at t \\u0026 c is a disposition or role of which d is bearer_of at t\\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000054\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000055\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000055\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"BFO:0000054\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000054\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000054\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000054","definition":"Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"realized in","http__//purl.obolibrary.org/obo/IAO_0000112":["this disease is realized in this disease course","this fragility is realized in this shattering","this investigator role is realized in this investigation"],"http__//purl.obolibrary.org/obo/IAO_0000118":["is realized by","realized_in"],"http__//purl.obolibrary.org/obo/IAO_0000600":"[copied from inverse property \u0027realizes\u0027] to say that b realizes c at t is to assert that there is some material entity d \u0026 b is a process which has participant d at t \u0026 c is a disposition or role of which d is bearer_of at t\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000017","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"realized in","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000055","id":"duo+property+http://purl.obolibrary.org/obo/BFO_0000054","imported":"true","iri":"http://purl.obolibrary.org/obo/BFO_0000054","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"realized in","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["realized in","this disease is realized in this disease course","this fragility is realized in this shattering","this investigator role is realized in this investigation","is realized by","realized_in","[copied from inverse property \u0027realizes\u0027] to say that b realizes c at t is to assert that there is some material entity d \u0026 b is a process which has participant d at t \u0026 c is a disposition or role of which d is bearer_of at t\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])","true"],"shortForm":"BFO_0000054","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000055\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000055\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizes\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this disease course realizes this disease\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigation realizes this investigator role\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this shattering realizes this fragility\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to say that b realizes c at t is to assert that there is some material entity d \\u0026 b is a process which has participant d at t \\u0026 c is a disposition or role of which d is bearer_of at t\\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizes\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000054\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizes\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizes\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this disease course realizes this disease\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigation realizes this investigator role\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this shattering realizes this fragility\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to say that b realizes c at t is to assert that there is some material entity d \\u0026 b is a process which has participant d at t \\u0026 c is a disposition or role of which d is bearer_of at t\\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000055\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000055\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000055\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000055\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000054\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000054\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000055","definition":"Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"realizes","http__//purl.obolibrary.org/obo/IAO_0000112":["this disease course realizes this disease","this investigation realizes this investigator role","this shattering realizes this fragility"],"http__//purl.obolibrary.org/obo/IAO_0000600":"to say that b realizes c at t is to assert that there is some material entity d \u0026 b is a process which has participant d at t \u0026 c is a disposition or role of which d is bearer_of at t\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"realizes","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000017","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000054","id":"duo+property+http://purl.obolibrary.org/obo/BFO_0000055","imported":"true","iri":"http://purl.obolibrary.org/obo/BFO_0000055","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"realizes","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["realizes","this disease course realizes this disease","this investigation realizes this investigator role","this shattering realizes this fragility","to say that b realizes c at t is to assert that there is some material entity d \u0026 b is a process which has participant d at t \u0026 c is a disposition or role of which d is bearer_of at t\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])","true"],"shortForm":"BFO_0000055","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000066\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs_in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"unfolds in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"unfolds_in\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/BFO_0000066\"],[\"http://purl.obolibrary.org/obo/BFO_0000066\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]],\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs_in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"unfolds in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"unfolds_in\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000066\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000067\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contains process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000067\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"BFO:0000066\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000066\"}}}","appearsIn":["duo"],"curie":"BFO:0000066","definition":["b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"occurs in","http__//purl.obolibrary.org/obo/IAO_0000115":"b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","http__//purl.obolibrary.org/obo/IAO_0000118":["occurs_in","unfolds in","unfolds_in"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"occurs in","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000067","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/BFO_0000066\"]","[\"http://purl.obolibrary.org/obo/BFO_0000066\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]"],"id":"duo+property+http://purl.obolibrary.org/obo/BFO_0000066","imported":"true","iri":"http://purl.obolibrary.org/obo/BFO_0000066","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"occurs in","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["occurs in","b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","occurs_in","unfolds in","unfolds_in","true"],"shortForm":"BFO_0000066","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000067\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"[copied from inverse property \\u0027occurs in\\u0027] b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"site of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"[copied from inverse property \\u0027occurs in\\u0027] b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contains process\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contains process\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"site of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"[copied from inverse property \\u0027occurs in\\u0027] b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000067\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000066\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000067\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000067\"}}}","appearsIn":["duo"],"curie":"BFO:0000067","definition":["[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"site of","http__//purl.obolibrary.org/obo/IAO_0000115":"[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"contains process","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000066","id":"duo+property+http://purl.obolibrary.org/obo/BFO_0000067","imported":"true","iri":"http://purl.obolibrary.org/obo/BFO_0000067","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"contains process","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["site of","[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","true"],"shortForm":"BFO_0000067","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000179\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Really of interest to developers only\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Really of interest to developers only\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000179\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"BFO:0000179\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000179\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000179\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000179","definition":"Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.w3.org/2000/01/rdf-schema#label","directParent":"http://www.w3.org/2000/01/rdf-schema#label","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification.","http__//purl.obolibrary.org/obo/IAO_0000232":"Really of interest to developers only","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"BFO OWL specification label","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2000/01/rdf-schema#label","id":"duo+property+http://purl.obolibrary.org/obo/BFO_0000179","imported":"true","iri":"http://purl.obolibrary.org/obo/BFO_0000179","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"BFO OWL specification label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification.","Really of interest to developers only","true"],"shortForm":"BFO_0000179","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000180\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"Person:Alan Ruttenberg\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Really of interest to developers only\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Person:Alan Ruttenberg\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Really of interest to developers only\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000180\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"BFO:0000180\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000180\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000180\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000180","definition":"Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.w3.org/2000/01/rdf-schema#label","directParent":"http://www.w3.org/2000/01/rdf-schema#label","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2","http__//purl.obolibrary.org/obo/IAO_0000119":"Person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000232":"Really of interest to developers only","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"BFO CLIF specification label","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2000/01/rdf-schema#label","id":"duo+property+http://purl.obolibrary.org/obo/BFO_0000180","imported":"true","iri":"http://purl.obolibrary.org/obo/BFO_0000180","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"BFO CLIF specification label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2","Person:Alan Ruttenberg","Really of interest to developers only","true"],"shortForm":"BFO_0000180","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is part of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my brain is part of my body (continuant parthood, two material entities)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this day is part of this year (occurrent parthood)\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\\n\\nA continuant cannot be part of an occurrent: use \\u0027participates in\\u0027. An occurrent cannot be part of a continuant: use \\u0027has participant\\u0027. A material entity cannot be part of an immaterial entity: use \\u0027has location\\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \\u0027inheres in\\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \\u0027bearer of\\u0027.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part_of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"type\":[\"literal\"],\"value\":\"http://www.obofoundry.org/ro/#OBO_REL:part_of\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my brain is part of my body (continuant parthood, two material entities)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this day is part of this year (occurrent parthood)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\\n\\nA continuant cannot be part of an occurrent: use \\u0027participates in\\u0027. An occurrent cannot be part of a continuant: use \\u0027has participant\\u0027. A material entity cannot be part of an immaterial entity: use \\u0027has location\\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \\u0027inheres in\\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \\u0027bearer of\\u0027.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part_of\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000050\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"seeAlso\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000050","definition":"a core relation that holds between a part and its whole","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"is part of","http__//purl.obolibrary.org/obo/IAO_0000112":["my brain is part of my body (continuant parthood, two material entities)","my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)","this day is part of this year (occurrent parthood)"],"http__//purl.obolibrary.org/obo/IAO_0000115":"a core relation that holds between a part and its whole","http__//purl.obolibrary.org/obo/IAO_0000116":["Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."],"http__//purl.obolibrary.org/obo/IAO_0000118":"part_of","http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"part of","http__//www.w3.org/2000/01/rdf-schema#seeAlso":"http://www.obofoundry.org/ro/#OBO_REL:part_of","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"duo+property+http://purl.obolibrary.org/obo/BFO_0000050","imported":"true","iri":"http://purl.obolibrary.org/obo/BFO_0000050","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"part of","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["is part of","my brain is part of my body (continuant parthood, two material entities)","my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)","this day is part of this year (occurrent parthood)","a core relation that holds between a part and its whole","Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027.","part_of","true"],"shortForm":"BFO_0000050","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a whole and its part\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my body has part my brain (continuant parthood, two material entities)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this year has part this day (occurrent parthood)\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a whole and its part\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\\n\\nA continuant cannot have an occurrent as part: use \\u0027participates in\\u0027. An occurrent cannot have a continuant as part: use \\u0027has participant\\u0027. An immaterial entity cannot have a material entity as part: use \\u0027location of\\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \\u0027bearer of\\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \\u0027inheres in\\u0027.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_part\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my body has part my brain (continuant parthood, two material entities)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this year has part this day (occurrent parthood)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a whole and its part\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\\n\\nA continuant cannot have an occurrent as part: use \\u0027participates in\\u0027. An occurrent cannot have a continuant as part: use \\u0027has participant\\u0027. An immaterial entity cannot have a material entity as part: use \\u0027location of\\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \\u0027bearer of\\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \\u0027inheres in\\u0027.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_part\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000051\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000051","definition":"a core relation that holds between a whole and its part","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has part","http__//purl.obolibrary.org/obo/IAO_0000112":["my body has part my brain (continuant parthood, two material entities)","my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)","this year has part this day (occurrent parthood)"],"http__//purl.obolibrary.org/obo/IAO_0000115":"a core relation that holds between a whole and its part","http__//purl.obolibrary.org/obo/IAO_0000116":["Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use \u0027participates in\u0027. An occurrent cannot have a continuant as part: use \u0027has participant\u0027. An immaterial entity cannot have a material entity as part: use \u0027location of\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \u0027bearer of\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \u0027inheres in\u0027."],"http__//purl.obolibrary.org/obo/IAO_0000118":"has_part","http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"has part","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000050","id":"duo+property+http://purl.obolibrary.org/obo/BFO_0000051","imported":"true","iri":"http://purl.obolibrary.org/obo/BFO_0000051","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has part","numDescendants":"5.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has part","my body has part my brain (continuant parthood, two material entities)","my stomach has part my stomach cavity (continuant parthood, material entity has part immaterial entity)","this year has part this day (occurrent parthood)","a core relation that holds between a whole and its part","Everything has itself as a part. Any part of any part of a thing is itself part of that thing. Two distinct things cannot have each other as a part.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Parthood requires the part and the whole to have compatible classes: only an occurrent have an occurrent as part; only a process can have a process as part; only a continuant can have a continuant as part; only an independent continuant can have an independent continuant as part; only a specifically dependent continuant can have a specifically dependent continuant as part; only a generically dependent continuant can have a generically dependent continuant as part. (This list is not exhaustive.)\n\nA continuant cannot have an occurrent as part: use \u0027participates in\u0027. An occurrent cannot have a continuant as part: use \u0027has participant\u0027. An immaterial entity cannot have a material entity as part: use \u0027location of\u0027. An independent continuant cannot have a specifically dependent continuant as part: use \u0027bearer of\u0027. A specifically dependent continuant cannot have an independent continuant as part: use \u0027inheres in\u0027.","has_part","true"],"shortForm":"BFO_0000051","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000054\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000054\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this disease is realized in this disease course\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this fragility is realized in this shattering\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigator role is realized in this investigation\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is realized by\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized_in\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"[copied from inverse property \\u0027realizes\\u0027] to say that b realizes c at t is to assert that there is some material entity d \\u0026 b is a process which has participant d at t \\u0026 c is a disposition or role of which d is bearer_of at t\\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000055\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this disease is realized in this disease course\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this fragility is realized in this shattering\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigator role is realized in this investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is realized by\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized_in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"[copied from inverse property \\u0027realizes\\u0027] to say that b realizes c at t is to assert that there is some material entity d \\u0026 b is a process which has participant d at t \\u0026 c is a disposition or role of which d is bearer_of at t\\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000054\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000055\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000055\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000054","definition":"Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"realized in","http__//purl.obolibrary.org/obo/IAO_0000112":["this disease is realized in this disease course","this fragility is realized in this shattering","this investigator role is realized in this investigation"],"http__//purl.obolibrary.org/obo/IAO_0000118":["is realized by","realized_in"],"http__//purl.obolibrary.org/obo/IAO_0000600":"[copied from inverse property \u0027realizes\u0027] to say that b realizes c at t is to assert that there is some material entity d \u0026 b is a process which has participant d at t \u0026 c is a disposition or role of which d is bearer_of at t\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000017","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"realized in","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000055","id":"duo+property+http://purl.obolibrary.org/obo/BFO_0000054","imported":"true","iri":"http://purl.obolibrary.org/obo/BFO_0000054","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"realized in","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["realized in","this disease is realized in this disease course","this fragility is realized in this shattering","this investigator role is realized in this investigation","is realized by","realized_in","[copied from inverse property \u0027realizes\u0027] to say that b realizes c at t is to assert that there is some material entity d \u0026 b is a process which has participant d at t \u0026 c is a disposition or role of which d is bearer_of at t\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])","true"],"shortForm":"BFO_0000054","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000055\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000055\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizes\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this disease course realizes this disease\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigation realizes this investigator role\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this shattering realizes this fragility\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to say that b realizes c at t is to assert that there is some material entity d \\u0026 b is a process which has participant d at t \\u0026 c is a disposition or role of which d is bearer_of at t\\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizes\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000054\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizes\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizes\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this disease course realizes this disease\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigation realizes this investigator role\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this shattering realizes this fragility\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"to say that b realizes c at t is to assert that there is some material entity d \\u0026 b is a process which has participant d at t \\u0026 c is a disposition or role of which d is bearer_of at t\\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000055\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realizable entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000017\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000054\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000054\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000055","definition":"Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"realizes","http__//purl.obolibrary.org/obo/IAO_0000112":["this disease course realizes this disease","this investigation realizes this investigator role","this shattering realizes this fragility"],"http__//purl.obolibrary.org/obo/IAO_0000600":"to say that b realizes c at t is to assert that there is some material entity d \u0026 b is a process which has participant d at t \u0026 c is a disposition or role of which d is bearer_of at t\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Paraphrase of elucidation: a relation between a process and a realizable entity, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"realizes","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000017","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000054","id":"duo+property+http://purl.obolibrary.org/obo/BFO_0000055","imported":"true","iri":"http://purl.obolibrary.org/obo/BFO_0000055","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"realizes","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["realizes","this disease course realizes this disease","this investigation realizes this investigator role","this shattering realizes this fragility","to say that b realizes c at t is to assert that there is some material entity d \u0026 b is a process which has participant d at t \u0026 c is a disposition or role of which d is bearer_of at t\u0026 the type instantiated by b is correlated with the type instantiated by c. (axiom label in BFO2 Reference: [059-003])","true"],"shortForm":"BFO_0000055","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000066\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs_in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"unfolds in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"unfolds_in\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"http://www.w3.org/2002/07/owl#propertyChainAxiom\":[[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/BFO_0000066\"],[\"http://purl.obolibrary.org/obo/BFO_0000066\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]],\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs_in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"unfolds in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"unfolds_in\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000066\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000067\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contains process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000067\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000066","definition":["b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"occurs in","http__//purl.obolibrary.org/obo/IAO_0000115":"b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","http__//purl.obolibrary.org/obo/IAO_0000118":["occurs_in","unfolds in","unfolds_in"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Paraphrase of definition: a relation between a process and an independent continuant, in which the process takes place entirely within the independent continuant","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"occurs in","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000067","http__//www.w3.org/2002/07/owl#propertyChainAxiom":["[\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://purl.obolibrary.org/obo/BFO_0000066\"]","[\"http://purl.obolibrary.org/obo/BFO_0000066\",\"http://purl.obolibrary.org/obo/BFO_0000050\"]"],"id":"duo+property+http://purl.obolibrary.org/obo/BFO_0000066","imported":"true","iri":"http://purl.obolibrary.org/obo/BFO_0000066","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"occurs in","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["occurs in","b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","occurs_in","unfolds in","unfolds_in","true"],"shortForm":"BFO_0000066","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000067\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000067\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"[copied from inverse property \\u0027occurs in\\u0027] b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"site of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"[copied from inverse property \\u0027occurs in\\u0027] b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contains process\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000066\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"contains process\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"site of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"[copied from inverse property \\u0027occurs in\\u0027] b occurs_in c \\u003ddef b is a process and c is a material entity or immaterial entity\\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\\u0026 forall(t) if b exists_at t then c exists_at t \\u0026 there exist spatial regions s and s’ where \\u0026 b spatially_projects_onto s at t\\u0026 c is occupies_spatial_region s’ at t\\u0026 s is a proper_continuant_part_of s’ at t\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000067\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000066\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurs in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000066\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000067","definition":["[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"site of","http__//purl.obolibrary.org/obo/IAO_0000115":"[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Paraphrase of definition: a relation between an independent continuant and a process, in which the process takes place entirely within the independent continuant","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"contains process","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000066","id":"duo+property+http://purl.obolibrary.org/obo/BFO_0000067","imported":"true","iri":"http://purl.obolibrary.org/obo/BFO_0000067","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"contains process","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["site of","[copied from inverse property \u0027occurs in\u0027] b occurs_in c \u003ddef b is a process and c is a material entity or immaterial entity\u0026 there exists a spatiotemporal region r and b occupies_spatiotemporal_region r.\u0026 forall(t) if b exists_at t then c exists_at t \u0026 there exist spatial regions s and s’ where \u0026 b spatially_projects_onto s at t\u0026 c is occupies_spatial_region s’ at t\u0026 s is a proper_continuant_part_of s’ at t","true"],"shortForm":"BFO_0000067","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000179\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000179\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Really of interest to developers only\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO OWL specification label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Really of interest to developers only\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000179\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000179","definition":"Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.w3.org/2000/01/rdf-schema#label","directParent":"http://www.w3.org/2000/01/rdf-schema#label","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification.","http__//purl.obolibrary.org/obo/IAO_0000232":"Really of interest to developers only","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"BFO OWL specification label","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2000/01/rdf-schema#label","id":"duo+property+http://purl.obolibrary.org/obo/BFO_0000179","imported":"true","iri":"http://purl.obolibrary.org/obo/BFO_0000179","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"BFO OWL specification label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["Relates an entity in the ontology to the name of the variable that is used to represent it in the code that generates the BFO OWL file from the lispy specification.","Really of interest to developers only","true"],"shortForm":"BFO_0000179","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000180\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000180\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"directParent\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"Person:Alan Ruttenberg\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Really of interest to developers only\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.w3.org/2000/01/rdf-schema#label\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"BFO CLIF specification label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Person:Alan Ruttenberg\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Really of interest to developers only\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000180\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"BFO:0000180","definition":"Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.w3.org/2000/01/rdf-schema#label","directParent":"http://www.w3.org/2000/01/rdf-schema#label","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2","http__//purl.obolibrary.org/obo/IAO_0000119":"Person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000232":"Really of interest to developers only","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"BFO CLIF specification label","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.w3.org/2000/01/rdf-schema#label","id":"duo+property+http://purl.obolibrary.org/obo/BFO_0000180","imported":"true","iri":"http://purl.obolibrary.org/obo/BFO_0000180","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"BFO CLIF specification label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["Relates an entity in the ontology to the term that is used to represent it in the the CLIF specification of BFO2","Person:Alan Ruttenberg","Really of interest to developers only","true"],"shortForm":"BFO_0000180","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000010\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000010\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"A is restricted to B iff A is a consent code and B is an investigation and A may only participate in instances of a class C, of which B is an instance.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"type\":[\"literal\"],\"value\":\"is_restricted_to\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"A is restricted to B iff A is a consent code and B is an investigation and A may only participate in instances of a class C, of which B is an instance.\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"value\":\"J. Neil Otte\"},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"type\":[\"literal\"],\"value\":\"E.g. A dataset is restricted to an instance of an investigation for a specific disease or at geographical location.\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"DUO:0000010\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"is restricted to\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"is restricted to\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"is_restricted_to\"},{\"type\":[\"literal\"],\"value\":\"A is restricted to B iff A is a consent code and B is an investigation and A may only participate in instances of a class C, of which B is an instance.\"},{\"type\":[\"literal\"],\"value\":\"J. Neil Otte\"},{\"type\":[\"literal\"],\"value\":\"E.g. A dataset is restricted to an instance of an investigation for a specific disease or at geographical location.\"},{\"type\":[\"literal\"],\"value\":\"DUO:0000010\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000010\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/DUO_0000041\":{\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DUO_preferred_label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000041\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000232\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"DUO:0000010\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000010\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"is restricted to\"},\"curie\":\"DUO:0000010\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000010\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000010","definedBy":["duo"],"definition":"A is restricted to B iff A is a consent code and B is an investigation and A may only participate in instances of a class C, of which B is an instance.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/DUO_0000041":"is_restricted_to","http__//purl.obolibrary.org/obo/IAO_0000115":"A is restricted to B iff A is a consent code and B is an investigation and A may only participate in instances of a class C, of which B is an instance.","http__//purl.obolibrary.org/obo/IAO_0000117":"J. Neil Otte","http__//purl.obolibrary.org/obo/IAO_0000232":"E.g. A dataset is restricted to an instance of an investigation for a specific disease or at geographical location.","http__//www.geneontology.org/formats/oboInOwl#id":"DUO:0000010","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"is restricted to","id":"duo+property+http://purl.obolibrary.org/obo/DUO_0000010","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000010","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"is restricted to","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["is_restricted_to","A is restricted to B iff A is a consent code and B is an investigation and A may only participate in instances of a class C, of which B is an instance.","J. Neil Otte","E.g. A dataset is restricted to an instance of an investigation for a specific disease or at geographical location.","DUO:0000010","false"],"shortForm":"DUO_0000010","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000041\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000041\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DUO_preferred_label\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DUO_preferred_label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000041\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"DUO:0000041\":{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000041\",\"definedBy\":[\"duo\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DUO_preferred_label\",\"lang\":\"en\"},\"curie\":\"DUO:0000041\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"url\":\"http://purl.obolibrary.org/obo/DUO_0000041\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000041","definedBy":["duo"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"DUO_preferred_label","id":"duo+property+http://purl.obolibrary.org/obo/DUO_0000041","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000041","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"DUO_preferred_label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"false","shortForm":"DUO_0000041","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000004\",\"type\":[\"dataProperty\",\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000004\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#DatatypeProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000032\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement value\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#double\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement value\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000004\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000032\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scalar measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000032\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000004\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000004\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000004\"}}}","appearsIn":["duo"],"curie":"IAO:0000004","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#DatatypeProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000032","http__//www.w3.org/2000/01/rdf-schema#label":"has measurement value","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#double","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000004","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000004","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has measurement value","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"IAO_0000004","type":["dataProperty","property","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000039\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement unit label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement unit label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000039\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"IAO:0000039\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000039\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000039","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000051","directParent":"http://purl.obolibrary.org/obo/BFO_0000051","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"has measurement unit label","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/IAO_0000003","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000039","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000039","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has measurement unit label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"IAO_0000039","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000111\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000111\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000111\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000111\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000111\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000111","definition":"The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"editor preferred term","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Daniel Schober","http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"editor preferred term","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000111","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000111","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"editor preferred term","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["editor preferred term","The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)","PERSON:Daniel Schober","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","true"],"shortForm":"IAO_0000111","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000112\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000112\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000112\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000112\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000112\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000112","definition":"A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"example of usage","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Daniel Schober","http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"example of usage","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000112","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000112","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"example of usage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["example of usage","A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold.","PERSON:Daniel Schober","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","true"],"shortForm":"IAO_0000112","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000113\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000113\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in branch\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000277\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in branch\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in branch\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in branch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000277\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000113\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000113\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000113\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000113\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000113","definition":"An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"in branch","http__//purl.obolibrary.org/obo/IAO_0000115":"An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet.","http__//purl.obolibrary.org/obo/IAO_0000117":"GROUP:OBI","http__//purl.obolibrary.org/obo/IAO_0000119":"OBI_0000277","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"in branch","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000113","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000113","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"in branch","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["in branch","An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet.","GROUP:OBI","OBI_0000277","true"],"shortForm":"IAO_0000113","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000114\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Bill Bug\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Bill Bug\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000114\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000114\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000114\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000114\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000114","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has curation status","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Alan Ruttenberg","PERSON:Bill Bug","PERSON:Melanie Courtot"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has curation status","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000114","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000114","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has curation status","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has curation status","PERSON:Alan Ruttenberg","PERSON:Bill Bug","PERSON:Melanie Courtot","true"],"shortForm":"IAO_0000114","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000115\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2012-04-05: \\nBarry Smith\\n\\nThe official OBI definition, explaining the meaning of a class or property: \\u0027Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions\\u0027 is terrible.\\n\\nCan you fix to something like:\\n\\nA statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.\\n\\nAlan Ruttenberg\\n\\nYour proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can\\u0027t be evaluated by those criteria. \\n\\nOn the specifics of the proposed definition:\\n\\nWe don\\u0027t have definitions of \\u0027meaning\\u0027 or \\u0027expression\\u0027 or \\u0027property\\u0027. For \\u0027reference\\u0027 in the intended sense I think we use the term \\u0027denotation\\u0027. For \\u0027expression\\u0027, I think we you mean symbol, or identifier. For \\u0027meaning\\u0027 it differs for class and property. For class we want documentation that let\\u0027s the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let\\u0027s the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The \\u0027intended reader\\u0027 part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition. \\n\\nPersonally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable. \\n\\nWe also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with. \",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2012-04-05: \\nBarry Smith\\n\\nThe official OBI definition, explaining the meaning of a class or property: \\u0027Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions\\u0027 is terrible.\\n\\nCan you fix to something like:\\n\\nA statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.\\n\\nAlan Ruttenberg\\n\\nYour proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can\\u0027t be evaluated by those criteria. \\n\\nOn the specifics of the proposed definition:\\n\\nWe don\\u0027t have definitions of \\u0027meaning\\u0027 or \\u0027expression\\u0027 or \\u0027property\\u0027. For \\u0027reference\\u0027 in the intended sense I think we use the term \\u0027denotation\\u0027. For \\u0027expression\\u0027, I think we you mean symbol, or identifier. For \\u0027meaning\\u0027 it differs for class and property. For class we want documentation that let\\u0027s the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let\\u0027s the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The \\u0027intended reader\\u0027 part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition. \\n\\nPersonally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable. \\n\\nWe also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with. \",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000115\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000115\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000115\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000115","definition":"The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"definition","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.","http__//purl.obolibrary.org/obo/IAO_0000116":"2012-04-05: \nBarry Smith\n\nThe official OBI definition, explaining the meaning of a class or property: \u0027Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions\u0027 is terrible.\n\nCan you fix to something like:\n\nA statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.\n\nAlan Ruttenberg\n\nYour proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can\u0027t be evaluated by those criteria. \n\nOn the specifics of the proposed definition:\n\nWe don\u0027t have definitions of \u0027meaning\u0027 or \u0027expression\u0027 or \u0027property\u0027. For \u0027reference\u0027 in the intended sense I think we use the term \u0027denotation\u0027. For \u0027expression\u0027, I think we you mean symbol, or identifier. For \u0027meaning\u0027 it differs for class and property. For class we want documentation that let\u0027s the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let\u0027s the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The \u0027intended reader\u0027 part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition. \n\nPersonally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable. \n\nWe also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with. ","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Daniel Schober","http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"definition","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000115","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000115","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"definition","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["definition","The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.","2012-04-05: \nBarry Smith\n\nThe official OBI definition, explaining the meaning of a class or property: \u0027Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions\u0027 is terrible.\n\nCan you fix to something like:\n\nA statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.\n\nAlan Ruttenberg\n\nYour proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can\u0027t be evaluated by those criteria. \n\nOn the specifics of the proposed definition:\n\nWe don\u0027t have definitions of \u0027meaning\u0027 or \u0027expression\u0027 or \u0027property\u0027. For \u0027reference\u0027 in the intended sense I think we use the term \u0027denotation\u0027. For \u0027expression\u0027, I think we you mean symbol, or identifier. For \u0027meaning\u0027 it differs for class and property. For class we want documentation that let\u0027s the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let\u0027s the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The \u0027intended reader\u0027 part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition. \n\nPersonally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable. \n\nWe also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with. ","PERSON:Daniel Schober","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","true"],"shortForm":"IAO_0000115","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000116\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obofoundry.org/obo/obi\\u003e\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obofoundry.org/obo/obi\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000116\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000116\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000116\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000116","definition":"An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"editor note","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Daniel Schober","http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI:\u003chttp://purl.obofoundry.org/obo/obi\u003e","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"editor note","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000116","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000116","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"editor note","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["editor note","An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology.","PERSON:Daniel Schober","GROUP:OBI:\u003chttp://purl.obofoundry.org/obo/obi\u003e","true"],"shortForm":"IAO_0000116","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000117\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"20110707, MC: label update to term editor and definition modified accordingly. See https://github.com/information-artifact-ontology/IAO/issues/115.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"20110707, MC: label update to term editor and definition modified accordingly. See https://github.com/information-artifact-ontology/IAO/issues/115.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000117\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000117\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000117\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000117\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000117","definition":"Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"term editor","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people","http__//purl.obolibrary.org/obo/IAO_0000116":"20110707, MC: label update to term editor and definition modified accordingly. See https://github.com/information-artifact-ontology/IAO/issues/115.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Daniel Schober","http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"term editor","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000117","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000117","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"term editor","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["term editor","Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people","20110707, MC: label update to term editor and definition modified accordingly. See https://github.com/information-artifact-ontology/IAO/issues/115.","PERSON:Daniel Schober","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","true"],"shortForm":"IAO_0000117","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000118\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related).\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"value\":\"OBO Operations committee\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related).\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBO Operations committee\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000118\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000118\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000118\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000118\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000118","definition":["A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.","Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related)."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"alternative label","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.","http__//purl.obolibrary.org/obo/IAO_0000117":["OBO Operations committee","PERSON:Daniel Schober"],"http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related).","http__//www.w3.org/2000/01/rdf-schema#label":"alternative label","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000118","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000118","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"alternative label","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["alternative label","A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.","OBO Operations committee","PERSON:Daniel Schober","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","true"],"shortForm":"IAO_0000118","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000119\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000119\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000119\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000119\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000119\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000119","definition":"Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"definition source","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Daniel Schober","http__//purl.obolibrary.org/obo/IAO_0000119":["Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"definition source","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000119","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000119","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"definition source","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["definition source","Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007","PERSON:Daniel Schober","Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","true"],"shortForm":"IAO_0000119","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000135\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000135\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c specifically denotes r \\u003ddef \\nr is a portion of reality\\n\\u0026 c is a particular quality\\n\\u0026 c depends specifically on some independent continuant b \\n\\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \\n\\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\\n\\nCase 1\\nMemory trace as mark created when reading some description of some friend. The trace can denote.\\n\\nCase 2\\nPattern of ink arrayed on paper as mark when writing down a friend\\u0027s name\\n\\nCase 3\\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"value\":\"The process of creation is, for example, writing down on paper the name of a friend by deliberately creating a certain pattern using ink.\\n\\nHere the ink + paper is the independent continuant and the carrier is the pattern in the ink.\\n\\nc \\u003d pattern in the ink\\nb \\u003d paper + ink\\nr \\u003d friend\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c specifically denotes r \\u003ddef \\nr is a portion of reality\\n\\u0026 c is a particular quality\\n\\u0026 c depends specifically on some independent continuant b \\n\\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \\n\\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\\n\\nCase 1\\nMemory trace as mark created when reading some description of some friend. The trace can denote.\\n\\nCase 2\\nPattern of ink arrayed on paper as mark when writing down a friend\\u0027s name\\n\\nCase 3\\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"value\":\"8/6/2009 Alan Ruttenberg: The suggestions is to deprecate specific and generically denotes in favor of a single denote relationship that corresponds to the generic sense\"},{\"type\":[\"literal\"],\"value\":\"see https://github.com/information-artifact-ontology/IAO/issues/25\\u0026q\\u003ddenote\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"value\":\"Alan Ruttenberg\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"Smith, Ceusters, Ruttenberg, 2000 years of philosophy\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_specifically denotes\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":true,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_specifically denotes\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The process of creation is, for example, writing down on paper the name of a friend by deliberately creating a certain pattern using ink.\\n\\nHere the ink + paper is the independent continuant and the carrier is the pattern in the ink.\\n\\nc \\u003d pattern in the ink\\nb \\u003d paper + ink\\nr \\u003d friend\"},{\"type\":[\"literal\"],\"value\":\"c specifically denotes r \\u003ddef \\nr is a portion of reality\\n\\u0026 c is a particular quality\\n\\u0026 c depends specifically on some independent continuant b \\n\\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \\n\\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\\n\\nCase 1\\nMemory trace as mark created when reading some description of some friend. The trace can denote.\\n\\nCase 2\\nPattern of ink arrayed on paper as mark when writing down a friend\\u0027s name\\n\\nCase 3\\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.\"},{\"type\":[\"literal\"],\"value\":\"8/6/2009 Alan Ruttenberg: The suggestions is to deprecate specific and generically denotes in favor of a single denote relationship that corresponds to the generic sense\"},{\"type\":[\"literal\"],\"value\":\"see https://github.com/information-artifact-ontology/IAO/issues/25\\u0026q\\u003ddenote\"},{\"type\":[\"literal\"],\"value\":\"Alan Ruttenberg\"},{\"type\":[\"literal\"],\"value\":\"Smith, Ceusters, Ruttenberg, 2000 years of philosophy\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000135\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"IAO:0000135\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000135\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000135\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000135","definition":"c specifically denotes r \u003ddef \nr is a portion of reality\n\u0026 c is a particular quality\n\u0026 c depends specifically on some independent continuant b \n\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \n\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\n\nCase 1\nMemory trace as mark created when reading some description of some friend. The trace can denote.\n\nCase 2\nPattern of ink arrayed on paper as mark when writing down a friend\u0027s name\n\nCase 3\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"The process of creation is, for example, writing down on paper the name of a friend by deliberately creating a certain pattern using ink.\n\nHere the ink + paper is the independent continuant and the carrier is the pattern in the ink.\n\nc \u003d pattern in the ink\nb \u003d paper + ink\nr \u003d friend","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"c specifically denotes r \u003ddef \nr is a portion of reality\n\u0026 c is a particular quality\n\u0026 c depends specifically on some independent continuant b \n\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \n\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\n\nCase 1\nMemory trace as mark created when reading some description of some friend. The trace can denote.\n\nCase 2\nPattern of ink arrayed on paper as mark when writing down a friend\u0027s name\n\nCase 3\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.","http__//purl.obolibrary.org/obo/IAO_0000116":["8/6/2009 Alan Ruttenberg: The suggestions is to deprecate specific and generically denotes in favor of a single denote relationship that corresponds to the generic sense","see https://github.com/information-artifact-ontology/IAO/issues/25\u0026q\u003ddenote"],"http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Smith, Ceusters, Ruttenberg, 2000 years of philosophy","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_specifically denotes","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000135","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000135","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_specifically denotes","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["The process of creation is, for example, writing down on paper the name of a friend by deliberately creating a certain pattern using ink.\n\nHere the ink + paper is the independent continuant and the carrier is the pattern in the ink.\n\nc \u003d pattern in the ink\nb \u003d paper + ink\nr \u003d friend","c specifically denotes r \u003ddef \nr is a portion of reality\n\u0026 c is a particular quality\n\u0026 c depends specifically on some independent continuant b \n\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \n\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\n\nCase 1\nMemory trace as mark created when reading some description of some friend. The trace can denote.\n\nCase 2\nPattern of ink arrayed on paper as mark when writing down a friend\u0027s name\n\nCase 3\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.","8/6/2009 Alan Ruttenberg: The suggestions is to deprecate specific and generically denotes in favor of a single denote relationship that corresponds to the generic sense","see https://github.com/information-artifact-ontology/IAO/issues/25\u0026q\u003ddenote","Alan Ruttenberg","Smith, Ceusters, Ruttenberg, 2000 years of philosophy","true"],"shortForm":"IAO_0000135","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A (currently) primitive relation that relates an information artifact to an entity.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This document is about information artifacts and their representations\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A (currently) primitive relation that relates an information artifact to an entity.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of \\\"mentions\\\" relation. Weaken the is_about relationship to be primitive. \\n\\nWe will try to build it back up by elaborating the various subproperties that are more precisely defined.\\n\\nSome currently missing phenomena that should be considered \\\"about\\\" are predications - \\\"The only person who knows the answer is sitting beside me\\\" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Smith, Ceusters, Ruttenberg, 2000 years of philosophy\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This document is about information artifacts and their representations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A (currently) primitive relation that relates an information artifact to an entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of \\\"mentions\\\" relation. Weaken the is_about relationship to be primitive. \\n\\nWe will try to build it back up by elaborating the various subproperties that are more precisely defined.\\n\\nSome currently missing phenomena that should be considered \\\"about\\\" are predications - \\\"The only person who knows the answer is sitting beside me\\\" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Smith, Ceusters, Ruttenberg, 2000 years of philosophy\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000136\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000136\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000136\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000136","definition":"A (currently) primitive relation that relates an information artifact to an entity.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"This document is about information artifacts and their representations","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A (currently) primitive relation that relates an information artifact to an entity.","http__//purl.obolibrary.org/obo/IAO_0000116":"7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of \"mentions\" relation. Weaken the is_about relationship to be primitive. \n\nWe will try to build it back up by elaborating the various subproperties that are more precisely defined.\n\nSome currently missing phenomena that should be considered \"about\" are predications - \"The only person who knows the answer is sitting beside me\" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic.","http__//purl.obolibrary.org/obo/IAO_0000117":"person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Smith, Ceusters, Ruttenberg, 2000 years of philosophy","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000030","http__//www.w3.org/2000/01/rdf-schema#label":"is about","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000136","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000136","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is about","numDescendants":"5.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["This document is about information artifacts and their representations","A (currently) primitive relation that relates an information artifact to an entity.","7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of \"mentions\" relation. Weaken the is_about relationship to be primitive. \n\nWe will try to build it back up by elaborating the various subproperties that are more precisely defined.\n\nSome currently missing phenomena that should be considered \"about\" are predications - \"The only person who knows the answer is sitting beside me\" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic.","person:Alan Ruttenberg","Smith, Ceusters, Ruttenberg, 2000 years of philosophy","true"],"shortForm":"IAO_0000136","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000142\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000142\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information artifact IA mentions an entity E exactly when it has a component/part that denotes E\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information artifact IA mentions an entity E exactly when it has a component/part that denotes E\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"7/6/2009 Alan Ruttenberg. P4 RC1 munges our GCI so remove it for now: mentions some entity equivalentTo has_part some (\\u0027generically denotes\\u0027 some entity)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"7/6/2009 Alan Ruttenberg: Add this relation following conversation with Jonathan Rees that N\\u0026S GCI for is_about was too strong. Really it was simply sufficient. To effect this change we introduce this relation, which is subproperty of is_about, and have previous GCI use this relation \\\"mentions\\\" in it\\u0027s (logical) definition\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Alan Ruttenberg\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"mentions\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/IAO_0000143\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"mentions\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information artifact IA mentions an entity E exactly when it has a component/part that denotes E\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"7/6/2009 Alan Ruttenberg. P4 RC1 munges our GCI so remove it for now: mentions some entity equivalentTo has_part some (\\u0027generically denotes\\u0027 some entity)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"7/6/2009 Alan Ruttenberg: Add this relation following conversation with Jonathan Rees that N\\u0026S GCI for is_about was too strong. Really it was simply sufficient. To effect this change we introduce this relation, which is subproperty of is_about, and have previous GCI use this relation \\\"mentions\\\" in it\\u0027s (logical) definition\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000142\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"IAO:0000142\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000142\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000142\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000143\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"mentioned by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000143\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000142","definition":"An information artifact IA mentions an entity E exactly when it has a component/part that denotes E","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/IAO_0000136","directParent":"http://purl.obolibrary.org/obo/IAO_0000136","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"An information artifact IA mentions an entity E exactly when it has a component/part that denotes E","http__//purl.obolibrary.org/obo/IAO_0000116":["7/6/2009 Alan Ruttenberg. P4 RC1 munges our GCI so remove it for now: mentions some entity equivalentTo has_part some (\u0027generically denotes\u0027 some entity)","7/6/2009 Alan Ruttenberg: Add this relation following conversation with Jonathan Rees that N\u0026S GCI for is_about was too strong. Really it was simply sufficient. To effect this change we introduce this relation, which is subproperty of is_about, and have previous GCI use this relation \"mentions\" in it\u0027s (logical) definition"],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Jonathan Rees","Person: Alan Ruttenberg"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"mentions","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/IAO_0000136","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/IAO_0000143","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000142","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000142","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"mentions","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["An information artifact IA mentions an entity E exactly when it has a component/part that denotes E","7/6/2009 Alan Ruttenberg. P4 RC1 munges our GCI so remove it for now: mentions some entity equivalentTo has_part some (\u0027generically denotes\u0027 some entity)","7/6/2009 Alan Ruttenberg: Add this relation following conversation with Jonathan Rees that N\u0026S GCI for is_about was too strong. Really it was simply sufficient. To effect this change we introduce this relation, which is subproperty of is_about, and have previous GCI use this relation \"mentions\" in it\u0027s (logical) definition","PERSON: Jonathan Rees","Person: Alan Ruttenberg","true"],"shortForm":"IAO_0000142","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000143\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000143\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of the relation \\u0027mentions\\u0027\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of the relation \\u0027mentions\\u0027\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":\"http://orcid.org/0000-0002-8844-9165\",\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/250\",\"http://purl.org/dc/elements/1.1/date\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#dateTime\",\"value\":\"2022-01-28T07:20:08Z\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"mentioned by\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/IAO_0000142\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"mentioned by\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of the relation \\u0027mentions\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#dateTime\",\"value\":\"2022-01-28T07:20:08Z\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000143\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/elements/1.1/date\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"date\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"date\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000143\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000143\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000143\"},\"http://purl.obolibrary.org/obo/IAO_0000142\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"mentions\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000142\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000143","definition":"Inverse of the relation \u0027mentions\u0027","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Inverse of the relation \u0027mentions\u0027","http__//purl.obolibrary.org/obo/IAO_0000117":"http://orcid.org/0000-0002-8844-9165","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/250","http__//purl.org/dc/elements/1.1/date":"2022-01-28T07:20:08Z","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"mentioned by","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/IAO_0000142","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000143","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000143","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"mentioned by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["Inverse of the relation \u0027mentions\u0027","2022-01-28T07:20:08Z","true"],"shortForm":"IAO_0000143","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \\u0027pick out\\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A person\\u0027s name denotes the person. A variable name in a computer program denotes some piece of memory. Lexically equivalent strings can denote different things, for instance \\\"Alan\\\" can denote different people. In each case of use, there is a case of the denotation relation obtaining, between \\\"Alan\\\" and the person that is being named.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \\u0027pick out\\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-11-10 Alan Ruttenberg. Old definition said the following to emphasize the generic nature of this relation. We no longer have \\u0027specifically denotes\\u0027, which would have been primitive, so make this relation primitive.\\ng denotes r \\u003ddef \\nr is a portion of reality\\nthere is some c that is a concretization of g \\nevery c that is a concretization of g specifically denotes r\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Conversations with Barry Smith, Werner Ceusters, Bjoern Peters, Michel Dumontier, Melanie Courtot, James Malone, Bill Hogan\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/IAO_0000235\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A person\\u0027s name denotes the person. A variable name in a computer program denotes some piece of memory. Lexically equivalent strings can denote different things, for instance \\\"Alan\\\" can denote different people. In each case of use, there is a case of the denotation relation obtaining, between \\\"Alan\\\" and the person that is being named.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \\u0027pick out\\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-11-10 Alan Ruttenberg. Old definition said the following to emphasize the generic nature of this relation. We no longer have \\u0027specifically denotes\\u0027, which would have been primitive, so make this relation primitive.\\ng denotes r \\u003ddef \\nr is a portion of reality\\nthere is some c that is a concretization of g \\nevery c that is a concretization of g specifically denotes r\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Conversations with Barry Smith, Werner Ceusters, Bjoern Peters, Michel Dumontier, Melanie Courtot, James Malone, Bill Hogan\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000219\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000235\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denoted by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000235\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000219\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000219\"},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000219","definition":["A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \u0027pick out\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically",""],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":"http://purl.obolibrary.org/obo/IAO_0000136","directParent":"http://purl.obolibrary.org/obo/IAO_0000136","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"A person\u0027s name denotes the person. A variable name in a computer program denotes some piece of memory. Lexically equivalent strings can denote different things, for instance \"Alan\" can denote different people. In each case of use, there is a case of the denotation relation obtaining, between \"Alan\" and the person that is being named.","http__//purl.obolibrary.org/obo/IAO_0000115":"A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \u0027pick out\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically","http__//purl.obolibrary.org/obo/IAO_0000116":"2009-11-10 Alan Ruttenberg. Old definition said the following to emphasize the generic nature of this relation. We no longer have \u0027specifically denotes\u0027, which would have been primitive, so make this relation primitive.\ng denotes r \u003ddef \nr is a portion of reality\nthere is some c that is a concretization of g \nevery c that is a concretization of g specifically denotes r","http__//purl.obolibrary.org/obo/IAO_0000117":"person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Conversations with Barry Smith, Werner Ceusters, Bjoern Peters, Michel Dumontier, Melanie Courtot, James Malone, Bill Hogan","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000030","http__//www.w3.org/2000/01/rdf-schema#label":"denotes","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000001","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/IAO_0000136","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/IAO_0000235","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000219","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000219","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"denotes","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A person\u0027s name denotes the person. A variable name in a computer program denotes some piece of memory. Lexically equivalent strings can denote different things, for instance \"Alan\" can denote different people. In each case of use, there is a case of the denotation relation obtaining, between \"Alan\" and the person that is being named.","A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \u0027pick out\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically","2009-11-10 Alan Ruttenberg. Old definition said the following to emphasize the generic nature of this relation. We no longer have \u0027specifically denotes\u0027, which would have been primitive, so make this relation primitive.\ng denotes r \u003ddef \nr is a portion of reality\nthere is some c that is a concretization of g \nevery c that is a concretization of g specifically denotes r","person:Alan Ruttenberg","Conversations with Barry Smith, Werner Ceusters, Bjoern Peters, Michel Dumontier, Melanie Courtot, James Malone, Bill Hogan","true"],"shortForm":"IAO_0000219","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000220\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000220\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"see https://github.com/information-artifact-ontology/IAO/issues/25\\u0026q\\u003ddenote\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_materially denotes\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":true,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_materially denotes\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"see https://github.com/information-artifact-ontology/IAO/issues/25\\u0026q\\u003ddenote\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000220\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000220\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000220\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000220\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000220","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000116":"see https://github.com/information-artifact-ontology/IAO/issues/25\u0026q\u003ddenote","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_materially denotes","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000220","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000220","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_materially denotes","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["see https://github.com/information-artifact-ontology/IAO/issues/25\u0026q\u003ddenote","true"],"shortForm":"IAO_0000220","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000221\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000221\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"8/6/2009 Alan Ruttenberg: The strategy is to be rather specific with this relationship. There are other kinds of measurements that are not of qualities, such as those that measure time. We will add these as separate properties for the moment and see about generalizing later\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From the second IAO workshop [Alan Ruttenberg 8/6/2009: not completely current, though bringing in comparison is probably important]\\n\\nThis one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \\\"measuring\\\" the bearer \\u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\\n\\nWerner suggests a solution based on \\\"Magnitudes\\\" a proposal for which we are awaiting details.\\n--\\nFrom the second IAO workshop, various comments, [commented on by Alan Ruttenberg 8/6/2009]\\n\\nunit of measure is a quality, e.g. the length of a ruler.\\n\\n[We decided to hedge on what units of measure are, instead talking about measurement unit labels, which are the information content entities that are about whatever measurement units are. For IAO we need that information entity in any case. See the term measurement unit label]\\n\\n[Some struggling with the various subflavors of is_about. We subsequently removed the relation represents, and describes until and only when we have a better theory]\\n\\na represents b means either a denotes b or a describes\\n\\ndescribe:\\na describes b means a is about b and a allows an inference of at least one quality of b\\n\\nWe have had a long discussion about denotes versus describes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From the second IAO workshop: An attempt at tieing the quality to the measurement datum more carefully.\\n\\na is a magnitude means a is a determinate quality particular inhering in some bearer b existing at a time t that can be represented/denoted by an information content entity e that has parts denoting a unit of measure, a number, and b. The unit of measure is an instance of the determinable quality.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From the second meeting on IAO:\\n\\nAn attempt at defining assay using Barry\\u0027s \\\"reliability\\\" wording\\n\\nassay:\\nprocess and has_input some material entity\\nand has_output some information content entity \\nand which is such that instances of this process type reliably generate \\noutputs that describes the input.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \\\"measuring\\\" the bearer \\u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\\n\\nWerner suggests a solution based on \\\"Magnitudes\\\" a proposal for which we are awaiting details.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measurement of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/IAO_0000417\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measurement of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"8/6/2009 Alan Ruttenberg: The strategy is to be rather specific with this relationship. There are other kinds of measurements that are not of qualities, such as those that measure time. We will add these as separate properties for the moment and see about generalizing later\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From the second IAO workshop [Alan Ruttenberg 8/6/2009: not completely current, though bringing in comparison is probably important]\\n\\nThis one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \\\"measuring\\\" the bearer \\u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\\n\\nWerner suggests a solution based on \\\"Magnitudes\\\" a proposal for which we are awaiting details.\\n--\\nFrom the second IAO workshop, various comments, [commented on by Alan Ruttenberg 8/6/2009]\\n\\nunit of measure is a quality, e.g. the length of a ruler.\\n\\n[We decided to hedge on what units of measure are, instead talking about measurement unit labels, which are the information content entities that are about whatever measurement units are. For IAO we need that information entity in any case. See the term measurement unit label]\\n\\n[Some struggling with the various subflavors of is_about. We subsequently removed the relation represents, and describes until and only when we have a better theory]\\n\\na represents b means either a denotes b or a describes\\n\\ndescribe:\\na describes b means a is about b and a allows an inference of at least one quality of b\\n\\nWe have had a long discussion about denotes versus describes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From the second IAO workshop: An attempt at tieing the quality to the measurement datum more carefully.\\n\\na is a magnitude means a is a determinate quality particular inhering in some bearer b existing at a time t that can be represented/denoted by an information content entity e that has parts denoting a unit of measure, a number, and b. The unit of measure is an instance of the determinable quality.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From the second meeting on IAO:\\n\\nAn attempt at defining assay using Barry\\u0027s \\\"reliability\\\" wording\\n\\nassay:\\nprocess and has_input some material entity\\nand has_output some information content entity \\nand which is such that instances of this process type reliably generate \\noutputs that describes the input.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \\\"measuring\\\" the bearer \\u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\\n\\nWerner suggests a solution based on \\\"Magnitudes\\\" a proposal for which we are awaiting details.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000221\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"IAO:0000221\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000221\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000221\"},\"http://purl.obolibrary.org/obo/IAO_0000417\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measured as\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000417\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000221","definition":"m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/IAO_0000136","directParent":"http://purl.obolibrary.org/obo/IAO_0000136","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q","http__//purl.obolibrary.org/obo/IAO_0000116":["8/6/2009 Alan Ruttenberg: The strategy is to be rather specific with this relationship. There are other kinds of measurements that are not of qualities, such as those that measure time. We will add these as separate properties for the moment and see about generalizing later","From the second IAO workshop [Alan Ruttenberg 8/6/2009: not completely current, though bringing in comparison is probably important]\n\nThis one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \"measuring\" the bearer \u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\n\nWerner suggests a solution based on \"Magnitudes\" a proposal for which we are awaiting details.\n--\nFrom the second IAO workshop, various comments, [commented on by Alan Ruttenberg 8/6/2009]\n\nunit of measure is a quality, e.g. the length of a ruler.\n\n[We decided to hedge on what units of measure are, instead talking about measurement unit labels, which are the information content entities that are about whatever measurement units are. For IAO we need that information entity in any case. See the term measurement unit label]\n\n[Some struggling with the various subflavors of is_about. We subsequently removed the relation represents, and describes until and only when we have a better theory]\n\na represents b means either a denotes b or a describes\n\ndescribe:\na describes b means a is about b and a allows an inference of at least one quality of b\n\nWe have had a long discussion about denotes versus describes.","From the second IAO workshop: An attempt at tieing the quality to the measurement datum more carefully.\n\na is a magnitude means a is a determinate quality particular inhering in some bearer b existing at a time t that can be represented/denoted by an information content entity e that has parts denoting a unit of measure, a number, and b. The unit of measure is an instance of the determinable quality.","From the second meeting on IAO:\n\nAn attempt at defining assay using Barry\u0027s \"reliability\" wording\n\nassay:\nprocess and has_input some material entity\nand has_output some information content entity \nand which is such that instances of this process type reliably generate \noutputs that describes the input.","This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \"measuring\" the bearer \u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\n\nWerner suggests a solution based on \"Magnitudes\" a proposal for which we are awaiting details."],"http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000109","http__//www.w3.org/2000/01/rdf-schema#label":"is quality measurement of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000019","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/IAO_0000136","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/IAO_0000417","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000221","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000221","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is quality measurement of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q","8/6/2009 Alan Ruttenberg: The strategy is to be rather specific with this relationship. There are other kinds of measurements that are not of qualities, such as those that measure time. We will add these as separate properties for the moment and see about generalizing later","From the second IAO workshop [Alan Ruttenberg 8/6/2009: not completely current, though bringing in comparison is probably important]\n\nThis one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \"measuring\" the bearer \u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\n\nWerner suggests a solution based on \"Magnitudes\" a proposal for which we are awaiting details.\n--\nFrom the second IAO workshop, various comments, [commented on by Alan Ruttenberg 8/6/2009]\n\nunit of measure is a quality, e.g. the length of a ruler.\n\n[We decided to hedge on what units of measure are, instead talking about measurement unit labels, which are the information content entities that are about whatever measurement units are. For IAO we need that information entity in any case. See the term measurement unit label]\n\n[Some struggling with the various subflavors of is_about. We subsequently removed the relation represents, and describes until and only when we have a better theory]\n\na represents b means either a denotes b or a describes\n\ndescribe:\na describes b means a is about b and a allows an inference of at least one quality of b\n\nWe have had a long discussion about denotes versus describes.","From the second IAO workshop: An attempt at tieing the quality to the measurement datum more carefully.\n\na is a magnitude means a is a determinate quality particular inhering in some bearer b existing at a time t that can be represented/denoted by an information content entity e that has parts denoting a unit of measure, a number, and b. The unit of measure is an instance of the determinable quality.","From the second meeting on IAO:\n\nAn attempt at defining assay using Barry\u0027s \"reliability\" wording\n\nassay:\nprocess and has_input some material entity\nand has_output some information content entity \nand which is such that instances of this process type reliably generate \noutputs that describes the input.","This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \"measuring\" the bearer \u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\n\nWerner suggests a solution based on \"Magnitudes\" a proposal for which we are awaiting details.","Alan Ruttenberg","true"],"shortForm":"IAO_0000221","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000222\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000222\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_describes\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":true,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_describes\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000222\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000222\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000222\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000222\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000222","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_describes","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000222","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000222","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_describes","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"IAO_0000222","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000223\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000223\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_represents\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":true,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_represents\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000223\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000223\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000223\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000223\"}}}","appearsIn":["duo"],"curie":"IAO:0000223","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_represents","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000223","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000223","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_represents","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"IAO_0000223","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000231\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000231\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000231\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000231\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000231\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000231","definition":"Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has obsolescence reason","http__//purl.obolibrary.org/obo/IAO_0000115":"Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Alan Ruttenberg","PERSON:Melanie Courtot"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has obsolescence reason","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000231","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000231","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has obsolescence reason","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has obsolescence reason","Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification.","PERSON:Alan Ruttenberg","PERSON:Melanie Courtot","true"],"shortForm":"IAO_0000231","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000232\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An administrative note of use for a curator but of no use for a user\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An administrative note of use for a curator but of no use for a user\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An administrative note of use for a curator but of no use for a user\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000232\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000232\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000232\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000232\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000232","definition":"An administrative note of use for a curator but of no use for a user","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"curator note","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"An administrative note of use for a curator but of no use for a user","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"curator note","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000232","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000232","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"curator note","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["curator note","An administrative note of use for a curator but of no use for a user","PERSON:Alan Ruttenberg","true"],"shortForm":"IAO_0000232","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000233\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An IRI or similar locator for a request or discussion of an ontology term.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The \\u0027tracker item\\u0027 can associate a tracker with a specific ontology term.\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the URI for an OBI Terms ticket at sourceforge, such as https://sourceforge.net/p/obi/obi-terms/772/\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An IRI or similar locator for a request or discussion of an ontology term.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The \\u0027tracker item\\u0027 can associate a tracker with a specific ontology term.\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the URI for an OBI Terms ticket at sourceforge, such as https://sourceforge.net/p/obi/obi-terms/772/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An IRI or similar locator for a request or discussion of an ontology term.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000233\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000233\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000233\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000233","definition":["An IRI or similar locator for a request or discussion of an ontology term.","The \u0027tracker item\u0027 can associate a tracker with a specific ontology term."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"term tracker item","http__//purl.obolibrary.org/obo/IAO_0000112":"the URI for an OBI Terms ticket at sourceforge, such as https://sourceforge.net/p/obi/obi-terms/772/","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"An IRI or similar locator for a request or discussion of an ontology term.","http__//purl.obolibrary.org/obo/IAO_0000117":"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"The \u0027tracker item\u0027 can associate a tracker with a specific ontology term.","http__//www.w3.org/2000/01/rdf-schema#label":"term tracker item","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000233","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000233","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"term tracker item","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["term tracker item","the URI for an OBI Terms ticket at sourceforge, such as https://sourceforge.net/p/obi/obi-terms/772/","An IRI or similar locator for a request or discussion of an ontology term.","Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","true"],"shortForm":"IAO_0000233","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000234\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"The \\u0027term requester\\u0027 can credit the person, organization or project who request the ontology term.\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The \\u0027term requester\\u0027 can credit the person, organization or project who request the ontology term.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000234\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000234\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000234\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000234\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000234","definition":["The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition.","The \u0027term requester\u0027 can credit the person, organization or project who request the ontology term."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"ontology term requester","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition.","http__//purl.obolibrary.org/obo/IAO_0000117":"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"The \u0027term requester\u0027 can credit the person, organization or project who request the ontology term.","http__//www.w3.org/2000/01/rdf-schema#label":"ontology term requester","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000234","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000234","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ontology term requester","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["ontology term requester","The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition.","Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","true"],"shortForm":"IAO_0000234","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000235\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000235\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation \\u0027denotes\\u0027\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation \\u0027denotes\\u0027\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng, Chris Stoeckert, Mike Conlon\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/206\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denoted by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denoted by\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation \\u0027denotes\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng, Chris Stoeckert, Mike Conlon\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000235\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000235\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000235\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000235\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000219\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000235","definition":"inverse of the relation \u0027denotes\u0027","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of the relation \u0027denotes\u0027","http__//purl.obolibrary.org/obo/IAO_0000117":"Person: Jie Zheng, Chris Stoeckert, Mike Conlon","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/206","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000001","http__//www.w3.org/2000/01/rdf-schema#label":"denoted by","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/IAO_0000030","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/IAO_0000219","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000235","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000235","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"denoted by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["inverse of the relation \u0027denotes\u0027","Person: Jie Zheng, Chris Stoeckert, Mike Conlon","true"],"shortForm":"IAO_0000235","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000404\",\"type\":[\"dataProperty\",\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000404\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#DatatypeProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has x coordinate value\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#float\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has x coordinate value\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000404\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000404\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000404\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000404\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000404","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#DatatypeProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000400","http__//www.w3.org/2000/01/rdf-schema#label":"has x coordinate value","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#float","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000404","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000404","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has x coordinate value","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"IAO_0000404","type":["dataProperty","property","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000405\",\"type\":[\"dataProperty\",\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000405\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#DatatypeProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has z coordinate value\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#float\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has z coordinate value\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000405\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000405\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000405\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000405\"}}}","appearsIn":["duo"],"curie":"IAO:0000405","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#DatatypeProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000400","http__//www.w3.org/2000/01/rdf-schema#label":"has z coordinate value","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#float","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000405","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000405","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has z coordinate value","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"IAO_0000405","type":["dataProperty","property","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000406\",\"type\":[\"dataProperty\",\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000406\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#DatatypeProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has y coordinate value\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#float\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has y coordinate value\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000406\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000406\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000406\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000406\"},\"http://purl.obolibrary.org/obo/IAO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000406","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#DatatypeProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000400","http__//www.w3.org/2000/01/rdf-schema#label":"has y coordinate value","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#float","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000406","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000406","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has y coordinate value","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"IAO_0000406","type":["dataProperty","property","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000407\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000407\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relating a cartesian spatial coordinate datum to a unit label that together with the values represent a point\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relating a cartesian spatial coordinate datum to a unit label that together with the values represent a point\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has coordinate unit label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/UO_0000001\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has coordinate unit label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000407\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"length unit\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UO:0000001\"},\"type\":[\"class\",\"entity\"]},\"IAO:0000407\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000407\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000407\"},\"http://purl.obolibrary.org/obo/IAO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000407","definition":"relating a cartesian spatial coordinate datum to a unit label that together with the values represent a point","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000051","directParent":"http://purl.obolibrary.org/obo/BFO_0000051","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#comment":"relating a cartesian spatial coordinate datum to a unit label that together with the values represent a point","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000400","http__//www.w3.org/2000/01/rdf-schema#label":"has coordinate unit label","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/UO_0000001","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000407","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000407","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has coordinate unit label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"IAO_0000407","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000411\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000411\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an class defined in an ontology, to the type of it\\u0027s denotator\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is denotator type\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an class defined in an ontology, to the type of it\\u0027s denotator\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"In OWL 2 add AnnotationPropertyRange(\\u0027is denotator type\\u0027 \\u0027denotator type\\u0027)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is denotator type\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is denotator type\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is denotator type\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an class defined in an ontology, to the type of it\\u0027s denotator\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"In OWL 2 add AnnotationPropertyRange(\\u0027is denotator type\\u0027 \\u0027denotator type\\u0027)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000411\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000411\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000411\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000411\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000411","definition":"Relates an class defined in an ontology, to the type of it\u0027s denotator","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"is denotator type","http__//purl.obolibrary.org/obo/IAO_0000115":"Relates an class defined in an ontology, to the type of it\u0027s denotator","http__//purl.obolibrary.org/obo/IAO_0000116":"In OWL 2 add AnnotationPropertyRange(\u0027is denotator type\u0027 \u0027denotator type\u0027)","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"is denotator type","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000411","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000411","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is denotator type","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["is denotator type","Relates an class defined in an ontology, to the type of it\u0027s denotator","In OWL 2 add AnnotationPropertyRange(\u0027is denotator type\u0027 \u0027denotator type\u0027)","Alan Ruttenberg","true"],"shortForm":"IAO_0000411","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000412\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For external terms/classes, the ontology from which the term was imported\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For external terms/classes, the ontology from which the term was imported\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For external terms/classes, the ontology from which the term was imported\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000412\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000412\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000412\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000412\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000412","definition":"For external terms/classes, the ontology from which the term was imported","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"imported from","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"For external terms/classes, the ontology from which the term was imported","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Alan Ruttenberg","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"imported from","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000412","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000412","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"imported from","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["imported from","For external terms/classes, the ontology from which the term was imported","PERSON:Alan Ruttenberg","PERSON:Melanie Courtot","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","true"],"shortForm":"IAO_0000412","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000413\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000413\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a process to a time-measurement-datum that represents the duration of the process\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a process to a time-measurement-datum that represents the duration of the process\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000416\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is duration of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is duration of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a process to a time-measurement-datum that represents the duration of the process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000413\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"IAO:0000413\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000413\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000413\"},\"http://purl.obolibrary.org/obo/IAO_0000416\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000416\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000413","definition":"relates a process to a time-measurement-datum that represents the duration of the process","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/IAO_0000136","directParent":"http://purl.obolibrary.org/obo/IAO_0000136","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"relates a process to a time-measurement-datum that represents the duration of the process","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000416","http__//www.w3.org/2000/01/rdf-schema#label":"is duration of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/IAO_0000136","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000413","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000413","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is duration of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["relates a process to a time-measurement-datum that represents the duration of the process","Person:Alan Ruttenberg","true"],"shortForm":"IAO_0000413","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000417\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000417\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation of is quality measurement of\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation of is quality measurement of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/10/19 Alan Ruttenberg. Named \\u0027junk\\u0027 relation useful in restrictions, but not a real instance relationship\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measured as\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/IAO_0000221\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measured as\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation of is quality measurement of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/10/19 Alan Ruttenberg. Named \\u0027junk\\u0027 relation useful in restrictions, but not a real instance relationship\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000417\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000417\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000417\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000417\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000221\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measurement of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000221\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000417","definition":"inverse of the relation of is quality measurement of","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of the relation of is quality measurement of","http__//purl.obolibrary.org/obo/IAO_0000116":"2009/10/19 Alan Ruttenberg. Named \u0027junk\u0027 relation useful in restrictions, but not a real instance relationship","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"is quality measured as","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/IAO_0000221","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000417","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000417","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is quality measured as","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["inverse of the relation of is quality measurement of","2009/10/19 Alan Ruttenberg. Named \u0027junk\u0027 relation useful in restrictions, but not a real instance relationship","Person:Alan Ruttenberg","true"],"shortForm":"IAO_0000417","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000418\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000418\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Bjoern Peters\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality specification of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/IAO_0000419\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality specification of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Bjoern Peters\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000418\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000418\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000418\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000418\"},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000419\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality is specified as\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000419\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000418","definition":"A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/IAO_0000136","directParent":"http://purl.obolibrary.org/obo/IAO_0000136","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality.","http__//purl.obolibrary.org/obo/IAO_0000117":["Person:Alan Ruttenberg","Person:Bjoern Peters"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"is quality specification of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/IAO_0000136","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/IAO_0000419","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000418","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000418","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is quality specification of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality.","Person:Alan Ruttenberg","Person:Bjoern Peters","true"],"shortForm":"IAO_0000418","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000419\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000419\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation of is quality specification of\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation of is quality specification of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/10/19 Alan Ruttenberg. Named \\u0027junk\\u0027 relation useful in restrictions, but not a real instance relationship\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Bjoern Peters\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality is specified as\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/IAO_0000418\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality is specified as\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation of is quality specification of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/10/19 Alan Ruttenberg. Named \\u0027junk\\u0027 relation useful in restrictions, but not a real instance relationship\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Bjoern Peters\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000419\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000419\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000419\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000419\"},\"http://purl.obolibrary.org/obo/IAO_0000418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality specification of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000419","definition":"inverse of the relation of is quality specification of","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of the relation of is quality specification of","http__//purl.obolibrary.org/obo/IAO_0000116":"2009/10/19 Alan Ruttenberg. Named \u0027junk\u0027 relation useful in restrictions, but not a real instance relationship","http__//purl.obolibrary.org/obo/IAO_0000117":["Person:Alan Ruttenberg","Person:Bjoern Peters"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"quality is specified as","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/IAO_0000418","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000419","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000419","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"quality is specified as","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["inverse of the relation of is quality specification of","2009/10/19 Alan Ruttenberg. Named \u0027junk\u0027 relation useful in restrictions, but not a real instance relationship","Person:Alan Ruttenberg","Person:Bjoern Peters","true"],"shortForm":"IAO_0000419","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000424\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000424\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"expand expression to\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ObjectProperty: RO_0002104\\nLabel: has plasma membrane part\\nAnnotations: IAO_0000424 \\\"http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.org/obo/owl/GO#GO_0005886 and http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\\\"\\n\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Chris Mungall\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"expand expression to\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"expand expression to\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"expand expression to\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ObjectProperty: RO_0002104\\nLabel: has plasma membrane part\\nAnnotations: IAO_0000424 \\\"http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.org/obo/owl/GO#GO_0005886 and http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\\\"\\n\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Chris Mungall\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000424\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000424\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000424\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000424\"}}}","appearsIn":["duo"],"curie":"IAO:0000424","definition":"A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"expand expression to","http__//purl.obolibrary.org/obo/IAO_0000112":"ObjectProperty: RO_0002104\nLabel: has plasma membrane part\nAnnotations: IAO_0000424 \"http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.org/obo/owl/GO#GO_0005886 and http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\"\n","http__//purl.obolibrary.org/obo/IAO_0000115":"A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones","http__//purl.obolibrary.org/obo/IAO_0000117":"Chris Mungall","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"expand expression to","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000424","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000424","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"expand expression to","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["expand expression to","ObjectProperty: RO_0002104\nLabel: has plasma membrane part\nAnnotations: IAO_0000424 \"http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.org/obo/owl/GO#GO_0005886 and http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\"\n","A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones","Chris Mungall","true"],"shortForm":"IAO_0000424","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000425\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000425\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"expand assertion to\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ObjectProperty: RO???\\nLabel: spatially disjoint from\\nAnnotations: expand_assertion_to \\\"DisjointClasses: (http://purl.obolibrary.org/obo/BFO_0000051 some ?X) (http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\\\"\\n\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Chris Mungall\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"expand assertion to\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"expand assertion to\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"expand assertion to\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ObjectProperty: RO???\\nLabel: spatially disjoint from\\nAnnotations: expand_assertion_to \\\"DisjointClasses: (http://purl.obolibrary.org/obo/BFO_0000051 some ?X) (http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\\\"\\n\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Chris Mungall\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000425\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000425\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000425\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000425\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000425","definition":"A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"expand assertion to","http__//purl.obolibrary.org/obo/IAO_0000112":"ObjectProperty: RO???\nLabel: spatially disjoint from\nAnnotations: expand_assertion_to \"DisjointClasses: (http://purl.obolibrary.org/obo/BFO_0000051 some ?X) (http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\"\n","http__//purl.obolibrary.org/obo/IAO_0000115":"A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom.","http__//purl.obolibrary.org/obo/IAO_0000117":"Chris Mungall","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"expand assertion to","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000425","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000425","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"expand assertion to","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["expand assertion to","ObjectProperty: RO???\nLabel: spatially disjoint from\nAnnotations: expand_assertion_to \"DisjointClasses: (http://purl.obolibrary.org/obo/BFO_0000051 some ?X) (http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\"\n","A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom.","Chris Mungall","true"],"shortForm":"IAO_0000425","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000426\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000426\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"first order logic expression\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"first order logic expression\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"first order logic expression\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"first order logic expression\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000426\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000426\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000426\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000426\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000426","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"first order logic expression","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"first order logic expression","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000426","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000426","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"first order logic expression","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["first order logic expression","PERSON:Alan Ruttenberg","true"],"shortForm":"IAO_0000426","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000427\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000427\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Use boolean value xsd:true to indicate that the property is an antisymmetric property\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/OMO_0001001\",\"directParent\":\"http://purl.obolibrary.org/obo/OMO_0001001\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"antisymmetric property\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part_of antisymmetric property xsd:true\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Use boolean value xsd:true to indicate that the property is an antisymmetric property\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"antisymmetric property\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/OMO_0001001\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"antisymmetric property\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"antisymmetric property\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part_of antisymmetric property xsd:true\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Use boolean value xsd:true to indicate that the property is an antisymmetric property\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000427\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OMO_0001001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"logical characteristic of object property\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OMO:0001001\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000427\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000427\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000427\"}}}","appearsIn":["duo"],"curie":"IAO:0000427","definition":"Use boolean value xsd:true to indicate that the property is an antisymmetric property","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/OMO_0001001","directParent":"http://purl.obolibrary.org/obo/OMO_0001001","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"antisymmetric property","http__//purl.obolibrary.org/obo/IAO_0000112":"part_of antisymmetric property xsd:true","http__//purl.obolibrary.org/obo/IAO_0000115":"Use boolean value xsd:true to indicate that the property is an antisymmetric property","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"antisymmetric property","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/OMO_0001001","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000427","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000427","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"antisymmetric property","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["antisymmetric property","part_of antisymmetric property xsd:true","Use boolean value xsd:true to indicate that the property is an antisymmetric property","Alan Ruttenberg","true"],"shortForm":"IAO_0000427","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000581\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000581\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000582\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has time stamp\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/IAO_0000416\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has time stamp\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000581\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000581\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000581\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000581\"},\"http://purl.obolibrary.org/obo/IAO_0000416\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000416\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000582\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time stamped measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000582\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000581","definition":"relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000051","directParent":"http://purl.obolibrary.org/obo/BFO_0000051","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000582","http__//www.w3.org/2000/01/rdf-schema#label":"has time stamp","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/IAO_0000416","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000581","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000581","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has time stamp","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken","Alan Ruttenberg","true"],"shortForm":"IAO_0000581","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000583\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000583\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a time stamped measurement datum to the measurement datum that was measured\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a time stamped measurement datum to the measurement datum that was measured\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000582\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/IAO_0000109\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#complementOf\":\"http://purl.obolibrary.org/obo/IAO_0000416\"}]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a time stamped measurement datum to the measurement datum that was measured\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000583\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"IAO:0000583\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000583\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000583\"},\"http://purl.obolibrary.org/obo/IAO_0000416\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000416\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000582\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time stamped measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000582\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000583","definition":"relates a time stamped measurement datum to the measurement datum that was measured","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000051","directParent":"http://purl.obolibrary.org/obo/BFO_0000051","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"relates a time stamped measurement datum to the measurement datum that was measured","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000582","http__//www.w3.org/2000/01/rdf-schema#label":"has measurement datum","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000583","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000583","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has measurement datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["relates a time stamped measurement datum to the measurement datum that was measured","Alan Ruttenberg","true"],"shortForm":"IAO_0000583","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000589\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000589\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An alternative name for a class or property which is unique across the OBO Foundry.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBO foundry unique label\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An alternative name for a class or property which is unique across the OBO Foundry.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The intended usage of that property is as follow: OBO foundry unique labels are automatically generated based on regular expressions provided by each ontology, so that SO could specify unique label \\u003d \\u0027sequence \\u0027 + [label], etc. , MA could specify \\u0027mouse + [label]\\u0027 etc. Upon importing terms, ontology developers can choose to use the \\u0027OBO foundry unique label\\u0027 for an imported term or not. The same applies to tools .\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Mungall\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBO Foundry \\u003chttp://obofoundry.org/\\u003e\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBO foundry unique label\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBO foundry unique label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBO foundry unique label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An alternative name for a class or property which is unique across the OBO Foundry.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The intended usage of that property is as follow: OBO foundry unique labels are automatically generated based on regular expressions provided by each ontology, so that SO could specify unique label \\u003d \\u0027sequence \\u0027 + [label], etc. , MA could specify \\u0027mouse + [label]\\u0027 etc. Upon importing terms, ontology developers can choose to use the \\u0027OBO foundry unique label\\u0027 for an imported term or not. The same applies to tools .\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Mungall\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBO Foundry \\u003chttp://obofoundry.org/\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000589\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000589\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000589\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000589\"}}}","appearsIn":["duo"],"curie":"IAO:0000589","definition":"An alternative name for a class or property which is unique across the OBO Foundry.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"OBO foundry unique label","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"An alternative name for a class or property which is unique across the OBO Foundry.","http__//purl.obolibrary.org/obo/IAO_0000116":"The intended usage of that property is as follow: OBO foundry unique labels are automatically generated based on regular expressions provided by each ontology, so that SO could specify unique label \u003d \u0027sequence \u0027 + [label], etc. , MA could specify \u0027mouse + [label]\u0027 etc. Upon importing terms, ontology developers can choose to use the \u0027OBO foundry unique label\u0027 for an imported term or not. The same applies to tools .","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Alan Ruttenberg","PERSON:Bjoern Peters","PERSON:Chris Mungall","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBO Foundry \u003chttp://obofoundry.org/\u003e","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"OBO foundry unique label","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000589","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000589","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"OBO foundry unique label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["OBO foundry unique label","An alternative name for a class or property which is unique across the OBO Foundry.","The intended usage of that property is as follow: OBO foundry unique labels are automatically generated based on regular expressions provided by each ontology, so that SO could specify unique label \u003d \u0027sequence \u0027 + [label], etc. , MA could specify \u0027mouse + [label]\u0027 etc. Upon importing terms, ontology developers can choose to use the \u0027OBO foundry unique label\u0027 for an imported term or not. The same applies to tools .","PERSON:Alan Ruttenberg","PERSON:Bjoern Peters","PERSON:Chris Mungall","PERSON:Melanie Courtot","GROUP:OBO Foundry \u003chttp://obofoundry.org/\u003e","true"],"shortForm":"IAO_0000589","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000596\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000596\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \\u0027has ID prefix\\\" annotation property value concatenated with an integer in the id range (left padded with \\\"0\\\"s to make this many digits)\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID digit count\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology: \\u003chttp://purl.obolibrary.org/obo/ro/idrange/\\u003e\\n Annotations: \\n \\u0027has ID prefix\\u0027: \\\"http://purl.obolibrary.org/obo/RO_\\\"\\n \\u0027has ID digit count\\u0027 : 7,\\n rdfs:label \\\"RO id policy\\\"\\n \\u0027has ID policy for\\u0027: \\\"RO\\\"\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \\u0027has ID prefix\\\" annotation property value concatenated with an integer in the id range (left padded with \\\"0\\\"s to make this many digits)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID digit count\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID digit count\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID digit count\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology: \\u003chttp://purl.obolibrary.org/obo/ro/idrange/\\u003e\\n Annotations: \\n \\u0027has ID prefix\\u0027: \\\"http://purl.obolibrary.org/obo/RO_\\\"\\n \\u0027has ID digit count\\u0027 : 7,\\n rdfs:label \\\"RO id policy\\\"\\n \\u0027has ID policy for\\u0027: \\\"RO\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \\u0027has ID prefix\\\" annotation property value concatenated with an integer in the id range (left padded with \\\"0\\\"s to make this many digits)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000596\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0000596\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000596\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000596\"},\"http://purl.obolibrary.org/obo/RO_\\\"\":{\"url\":\"http://purl.obolibrary.org/obo/RO_\\\"\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:\\\"\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000596","definition":"Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \u0027has ID prefix\" annotation property value concatenated with an integer in the id range (left padded with \"0\"s to make this many digits)","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has ID digit count","http__//purl.obolibrary.org/obo/IAO_0000112":"Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \"http://purl.obolibrary.org/obo/RO_\"\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \"RO id policy\"\n \u0027has ID policy for\u0027: \"RO\"","http__//purl.obolibrary.org/obo/IAO_0000115":"Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \u0027has ID prefix\" annotation property value concatenated with an integer in the id range (left padded with \"0\"s to make this many digits)","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has ID digit count","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000596","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000596","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has ID digit count","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has ID digit count","Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \"http://purl.obolibrary.org/obo/RO_\"\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \"RO id policy\"\n \u0027has ID policy for\u0027: \"RO\"","Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \u0027has ID prefix\" annotation property value concatenated with an integer in the id range (left padded with \"0\"s to make this many digits)","Person:Alan Ruttenberg","true"],"shortForm":"IAO_0000596","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000597\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000597\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID range allocated\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Datatype: idrange:1\\nAnnotations: \\u0027has ID range allocated to\\u0027: \\\"Chris Mungall\\\"\\nEquivalentTo: xsd:integer[\\u003e 2151 , \\u003c\\u003d 2300]\\n\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID range allocated to\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID range allocated to\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID range allocated\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Datatype: idrange:1\\nAnnotations: \\u0027has ID range allocated to\\u0027: \\\"Chris Mungall\\\"\\nEquivalentTo: xsd:integer[\\u003e 2151 , \\u003c\\u003d 2300]\\n\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000597\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000597\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000597\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000597\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000597","definition":"Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has ID range allocated","http__//purl.obolibrary.org/obo/IAO_0000112":"Datatype: idrange:1\nAnnotations: \u0027has ID range allocated to\u0027: \"Chris Mungall\"\nEquivalentTo: xsd:integer[\u003e 2151 , \u003c\u003d 2300]\n","http__//purl.obolibrary.org/obo/IAO_0000115":"Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has ID range allocated to","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000597","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000597","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has ID range allocated to","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has ID range allocated","Datatype: idrange:1\nAnnotations: \u0027has ID range allocated to\u0027: \"Chris Mungall\"\nEquivalentTo: xsd:integer[\u003e 2151 , \u003c\u003d 2300]\n","Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms","Person:Alan Ruttenberg","true"],"shortForm":"IAO_0000597","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000598\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000598\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relating an ontology used to record id policy to the ontology namespace whose policy it manages\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID policy for\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology: \\u003chttp://purl.obolibrary.org/obo/ro/idrange/\\u003e\\n Annotations: \\n \\u0027has ID prefix\\u0027: \\\"http://purl.obolibrary.org/obo/RO_\\\"\\n \\u0027has ID digit count\\u0027 : 7,\\n rdfs:label \\\"RO id policy\\\"\\n \\u0027has ID policy for\\u0027: \\\"RO\\\"\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relating an ontology used to record id policy to the ontology namespace whose policy it manages\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID policy for\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID policy for\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID policy for\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology: \\u003chttp://purl.obolibrary.org/obo/ro/idrange/\\u003e\\n Annotations: \\n \\u0027has ID prefix\\u0027: \\\"http://purl.obolibrary.org/obo/RO_\\\"\\n \\u0027has ID digit count\\u0027 : 7,\\n rdfs:label \\\"RO id policy\\\"\\n \\u0027has ID policy for\\u0027: \\\"RO\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relating an ontology used to record id policy to the ontology namespace whose policy it manages\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000598\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_\\\"\":{\"url\":\"http://purl.obolibrary.org/obo/RO_\\\"\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:\\\"\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000598\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000598\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000598\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000598","definition":"Relating an ontology used to record id policy to the ontology namespace whose policy it manages","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has ID policy for","http__//purl.obolibrary.org/obo/IAO_0000112":"Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \"http://purl.obolibrary.org/obo/RO_\"\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \"RO id policy\"\n \u0027has ID policy for\u0027: \"RO\"","http__//purl.obolibrary.org/obo/IAO_0000115":"Relating an ontology used to record id policy to the ontology namespace whose policy it manages","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has ID policy for","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000598","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000598","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has ID policy for","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has ID policy for","Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \"http://purl.obolibrary.org/obo/RO_\"\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \"RO id policy\"\n \u0027has ID policy for\u0027: \"RO\"","Relating an ontology used to record id policy to the ontology namespace whose policy it manages","Person:Alan Ruttenberg","true"],"shortForm":"IAO_0000598","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000599\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000599\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \\\"0\\\"s to make this many digits) to construct an ID for a term being created.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID prefix\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology: \\u003chttp://purl.obolibrary.org/obo/ro/idrange/\\u003e\\n Annotations: \\n \\u0027has ID prefix\\u0027: \\\"http://purl.obolibrary.org/obo/RO_\\\"\\n \\u0027has ID digit count\\u0027 : 7,\\n rdfs:label \\\"RO id policy\\\"\\n \\u0027has ID policy for\\u0027: \\\"RO\\\"\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \\\"0\\\"s to make this many digits) to construct an ID for a term being created.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID prefix\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID prefix\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID prefix\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology: \\u003chttp://purl.obolibrary.org/obo/ro/idrange/\\u003e\\n Annotations: \\n \\u0027has ID prefix\\u0027: \\\"http://purl.obolibrary.org/obo/RO_\\\"\\n \\u0027has ID digit count\\u0027 : 7,\\n rdfs:label \\\"RO id policy\\\"\\n \\u0027has ID policy for\\u0027: \\\"RO\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \\\"0\\\"s to make this many digits) to construct an ID for a term being created.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000599\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_\\\"\":{\"url\":\"http://purl.obolibrary.org/obo/RO_\\\"\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:\\\"\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000599\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000599\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000599\"},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000599","definition":"Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \"0\"s to make this many digits) to construct an ID for a term being created.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has ID prefix","http__//purl.obolibrary.org/obo/IAO_0000112":"Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \"http://purl.obolibrary.org/obo/RO_\"\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \"RO id policy\"\n \u0027has ID policy for\u0027: \"RO\"","http__//purl.obolibrary.org/obo/IAO_0000115":"Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \"0\"s to make this many digits) to construct an ID for a term being created.","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has ID prefix","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000599","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000599","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has ID prefix","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has ID prefix","Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \"http://purl.obolibrary.org/obo/RO_\"\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \"RO id policy\"\n \u0027has ID policy for\u0027: \"RO\"","Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \"0\"s to make this many digits) to construct an ID for a term being created.","Person:Alan Ruttenberg","true"],"shortForm":"IAO_0000599","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000600\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Barry Smith\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Primitive terms in a highest-level ontology such as BFO are terms which are so basic to our understanding of reality that there is no way of defining them in a non-circular fashion. For these, therefore, we can provide only elucidations, supplemented by examples and by axioms\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Barry Smith\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Primitive terms in a highest-level ontology such as BFO are terms which are so basic to our understanding of reality that there is no way of defining them in a non-circular fashion. For these, therefore, we can provide only elucidations, supplemented by examples and by axioms\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000600\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000600\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000600\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000600\"}}}","appearsIn":["duo"],"curie":"IAO:0000600","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"elucidation","http__//purl.obolibrary.org/obo/IAO_0000117":"person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Person:Barry Smith","http__//purl.obolibrary.org/obo/IAO_0000600":"Primitive terms in a highest-level ontology such as BFO are terms which are so basic to our understanding of reality that there is no way of defining them in a non-circular fashion. For these, therefore, we can provide only elucidations, supplemented by examples and by axioms","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"elucidation","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000600","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000600","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"elucidation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["elucidation","person:Alan Ruttenberg","Person:Barry Smith","Primitive terms in a highest-level ontology such as BFO are terms which are so basic to our understanding of reality that there is no way of defining them in a non-circular fashion. For these, therefore, we can provide only elucidations, supplemented by examples and by axioms","true"],"shortForm":"IAO_0000600","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000601\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An axiom associated with a term expressed using natural language\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An axiom associated with a term expressed using natural language\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000601\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000601\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000601\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000601\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000601","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has associated axiom(nl)","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000600":"An axiom associated with a term expressed using natural language","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"has associated axiom(nl)","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000601","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000601","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has associated axiom(nl)","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has associated axiom(nl)","Person:Alan Ruttenberg","An axiom associated with a term expressed using natural language","true"],"shortForm":"IAO_0000601","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000602\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An axiom expressed in first order logic using CLIF syntax\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An axiom expressed in first order logic using CLIF syntax\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000602\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000602\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000602\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000602\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000602","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has associated axiom(fol)","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000600":"An axiom expressed in first order logic using CLIF syntax","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"has associated axiom(fol)","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000602","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000602","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has associated axiom(fol)","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has associated axiom(fol)","Person:Alan Ruttenberg","An axiom expressed in first order logic using CLIF syntax","true"],"shortForm":"IAO_0000602","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000603\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000603\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \\\"IAO_0020000-IAO_0020999\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Add as annotation triples in the granting ontology\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is allocated id range\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \\\"IAO_0020000-IAO_0020999\\\"\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Add as annotation triples in the granting ontology\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is allocated id range\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is allocated id range\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is allocated id range\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \\\"IAO_0020000-IAO_0020999\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000603\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000603\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000603\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000603\"}}}","appearsIn":["duo"],"curie":"IAO:0000603","definition":["Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \"IAO_0020000-IAO_0020999\"","Add as annotation triples in the granting ontology"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"is allocated id range","http__//purl.obolibrary.org/obo/IAO_0000115":"Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \"IAO_0020000-IAO_0020999\"","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Add as annotation triples in the granting ontology","http__//www.w3.org/2000/01/rdf-schema#label":"is allocated id range","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000603","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000603","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is allocated id range","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["is allocated id range","Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \"IAO_0020000-IAO_0020999\"","PERSON:Alan Ruttenberg","true"],"shortForm":"IAO_0000603","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000604\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000604\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"relates a class of CRID to the date after which further instances should not be made, according to the central authority\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"retired from use as of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"relates a class of CRID to the date after which further instances should not be made, according to the central authority\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"In OWL 2 add AnnotationPropertyRange xsd:dateTimeStamp\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"retired from use as of\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"retired from use as of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"retired from use as of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"relates a class of CRID to the date after which further instances should not be made, according to the central authority\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"In OWL 2 add AnnotationPropertyRange xsd:dateTimeStamp\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000604\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000604\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000604\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000604\"}}}","appearsIn":["duo"],"curie":"IAO:0000604","definition":"relates a class of CRID to the date after which further instances should not be made, according to the central authority","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"retired from use as of","http__//purl.obolibrary.org/obo/IAO_0000115":"relates a class of CRID to the date after which further instances should not be made, according to the central authority","http__//purl.obolibrary.org/obo/IAO_0000116":"In OWL 2 add AnnotationPropertyRange xsd:dateTimeStamp","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"retired from use as of","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000604","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000604","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"retired from use as of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["retired from use as of","relates a class of CRID to the date after which further instances should not be made, according to the central authority","In OWL 2 add AnnotationPropertyRange xsd:dateTimeStamp","Alan Ruttenberg","true"],"shortForm":"IAO_0000604","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000700\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000700\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ontology root term\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Nicolas Matentzoglu\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ontology root term\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ontology root term\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ontology root term\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Nicolas Matentzoglu\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000700\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0000700\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000700\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000700\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000700","definition":"Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has ontology root term","http__//purl.obolibrary.org/obo/IAO_0000115":"Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root.","http__//purl.obolibrary.org/obo/IAO_0000117":"Nicolas Matentzoglu","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has ontology root term","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000700","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000700","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has ontology root term","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has ontology root term","Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root.","Nicolas Matentzoglu","true"],"shortForm":"IAO_0000700","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0006011\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0006011\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Edges asserting this should be annotated with to record evidence supporting the assertion and its provenance.\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"may be identical to\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"David Osumi-Sutherland\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"#40\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"VFB\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Edges asserting this should be annotated with to record evidence supporting the assertion and its provenance.\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"may be identical to\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"may be identical to\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"may be identical to\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"David Osumi-Sutherland\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"#40\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"VFB\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0006011\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0006011\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0006011\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0006011\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0006011","definition":["A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged.","Edges asserting this should be annotated with to record evidence supporting the assertion and its provenance."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"may be identical to","http__//purl.obolibrary.org/obo/IAO_0000115":"A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged.","http__//purl.obolibrary.org/obo/IAO_0000117":"David Osumi-Sutherland","http__//purl.obolibrary.org/obo/IAO_0000233":"#40","http__//purl.obolibrary.org/obo/IAO_0000234":"VFB","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Edges asserting this should be annotated with to record evidence supporting the assertion and its provenance.","http__//www.w3.org/2000/01/rdf-schema#label":"may be identical to","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0006011","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0006011","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"may be identical to","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["may be identical to","A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged.","David Osumi-Sutherland","#40","VFB","true"],"shortForm":"IAO_0006011","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0006012\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0006012\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scheduled for obsoletion on or after\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Chris Mungall, Jie Zheng\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/geneontology/go-ontology/issues/15532\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/ontology-metadata/issues/32\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GO ontology\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scheduled for obsoletion on or after\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#dateTime\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scheduled for obsoletion on or after\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scheduled for obsoletion on or after\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Chris Mungall, Jie Zheng\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/geneontology/go-ontology/issues/15532\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/ontology-metadata/issues/32\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GO ontology\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0006012\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0006012\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0006012\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0006012\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0006012","definition":"Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"scheduled for obsoletion on or after","http__//purl.obolibrary.org/obo/IAO_0000115":"Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date.","http__//purl.obolibrary.org/obo/IAO_0000117":"Chris Mungall, Jie Zheng","http__//purl.obolibrary.org/obo/IAO_0000233":["https://github.com/geneontology/go-ontology/issues/15532","https://github.com/information-artifact-ontology/ontology-metadata/issues/32"],"http__//purl.obolibrary.org/obo/IAO_0000234":"GO ontology","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"scheduled for obsoletion on or after","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#dateTime","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0006012","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0006012","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"scheduled for obsoletion on or after","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["scheduled for obsoletion on or after","Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date.","Chris Mungall, Jie Zheng","https://github.com/geneontology/go-ontology/issues/15532","https://github.com/information-artifact-ontology/ontology-metadata/issues/32","GO ontology","true"],"shortForm":"IAO_0006012","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0010000\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom id\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A URI that is intended to be unique label for an axiom used for tracking change to the ontology. For an axiom expressed in different languages, each expression is given the same URI\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom id\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A URI that is intended to be unique label for an axiom used for tracking change to the ontology. For an axiom expressed in different languages, each expression is given the same URI\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0010000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"IAO:0010000\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0010000\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0010000\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0010000","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has axiom id","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000600":"A URI that is intended to be unique label for an axiom used for tracking change to the ontology. For an axiom expressed in different languages, each expression is given the same URI","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"has axiom label","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0010000","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0010000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has axiom label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has axiom id","Person:Alan Ruttenberg","A URI that is intended to be unique label for an axiom used for tracking change to the ontology. For an axiom expressed in different languages, each expression is given the same URI","true"],"shortForm":"IAO_0010000","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0100001\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0100001\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Use on obsolete terms, relating the term to another term that can be used as a substitute\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Add as annotation triples in the granting ontology\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term replaced by\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Use on obsolete terms, relating the term to another term that can be used as a substitute\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Add as annotation triples in the granting ontology\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term replaced by\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term replaced by\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term replaced by\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Use on obsolete terms, relating the term to another term that can be used as a substitute\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0100001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"IAO:0100001\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0100001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0100001\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0100001","definition":["Use on obsolete terms, relating the term to another term that can be used as a substitute","Add as annotation triples in the granting ontology"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"term replaced by","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"Use on obsolete terms, relating the term to another term that can be used as a substitute","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Add as annotation triples in the granting ontology","http__//www.w3.org/2000/01/rdf-schema#label":"term replaced by","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0100001","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0100001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"term replaced by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["term replaced by","Use on obsolete terms, relating the term to another term that can be used as a substitute","Person:Alan Ruttenberg","true"],"shortForm":"IAO_0100001","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The inverse property of is_specified_input_of\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":[{\"type\":[\"literal\"],\"value\":\"has_specified_input\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"see is_input_of example_of_usage\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The inverse property of is_specified_input_of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how \\u0027has participant\\u0027 works.\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Bjoern Peters\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Larry Hunter\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Melanie Coutot\"}],\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/obi.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#equivalentProperty\":{\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/OBI_0000295\",\"isObsolete\":false},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"has_specified_input\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"see is_input_of example_of_usage\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The inverse property of is_specified_input_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how \\u0027has participant\\u0027 works.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Bjoern Peters\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Larry Hunter\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Melanie Coutot\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0000293\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_input_of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000295\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"OBI:0000293\":{\"url\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OBI:0000293\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0000293","definition":"The inverse property of is_specified_input_of","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000057","directParent":"http://purl.obolibrary.org/obo/RO_0000057","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":["has_specified_input","has_specified_input"],"http__//purl.obolibrary.org/obo/IAO_0000112":"see is_input_of example_of_usage","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"The inverse property of is_specified_input_of","http__//purl.obolibrary.org/obo/IAO_0000116":"8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how \u0027has participant\u0027 works.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Bjoern Peters","PERSON: Larry Hunter","PERSON: Melanie Coutot"],"http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/obi.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/OBI_0000011","http__//www.w3.org/2000/01/rdf-schema#label":"has_specified_input","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000057","id":"duo+property+http://purl.obolibrary.org/obo/OBI_0000293","imported":"true","iri":"http://purl.obolibrary.org/obo/OBI_0000293","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has_specified_input","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has_specified_input","has_specified_input","see is_input_of example_of_usage","The inverse property of is_specified_input_of","8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how \u0027has participant\u0027 works.","PERSON: Alan Ruttenberg","PERSON: Bjoern Peters","PERSON: Larry Hunter","PERSON: Melanie Coutot","true"],"shortForm":"OBI_0000293","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0000295\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000295\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_input_of\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_input_of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0000295\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"OBI:0000295\":{\"url\":\"http://purl.obolibrary.org/obo/OBI_0000295\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OBI:0000295\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0000295","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"is_specified_input_of","id":"duo+property+http://purl.obolibrary.org/obo/OBI_0000295","imported":"true","iri":"http://purl.obolibrary.org/obo/OBI_0000295","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is_specified_input_of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"OBI_0000295","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The inverse property of is_specified_output_of\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":[{\"type\":[\"literal\"],\"value\":\"has_specified_output\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The inverse property of is_specified_output_of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Bjoern Peters\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Larry Hunter\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Melanie Courtot\"}],\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/obi.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#equivalentProperty\":{\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"isObsolete\":false},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"has_specified_output\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The inverse property of is_specified_output_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Bjoern Peters\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Larry Hunter\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Melanie Courtot\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0000299\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000312\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000312\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"OBI:0000299\":{\"url\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OBI:0000299\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0000299","definition":"The inverse property of is_specified_output_of","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000057","directParent":"http://purl.obolibrary.org/obo/RO_0000057","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":["has_specified_output","has_specified_output"],"http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"The inverse property of is_specified_output_of","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Bjoern Peters","PERSON: Larry Hunter","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/obi.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/OBI_0000011","http__//www.w3.org/2000/01/rdf-schema#label":"has_specified_output","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000057","id":"duo+property+http://purl.obolibrary.org/obo/OBI_0000299","imported":"true","iri":"http://purl.obolibrary.org/obo/OBI_0000299","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has_specified_output","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has_specified_output","has_specified_output","The inverse property of is_specified_output_of","PERSON: Alan Ruttenberg","PERSON: Bjoern Peters","PERSON: Larry Hunter","PERSON: Melanie Courtot","true"],"shortForm":"OBI_0000299","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000312\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":[{\"type\":[\"literal\"],\"value\":\"is_specified_output_of\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON:Bjoern Peters\"}],\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/obi.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"http://www.w3.org/2002/07/owl#equivalentProperty\":{\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"isObsolete\":false},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"is_specified_output_of\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON:Bjoern Peters\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0000312\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"OBI:0000312\":{\"url\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OBI:0000312\"},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000056\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000056\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0000312","definition":"A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000056","directParent":"http://purl.obolibrary.org/obo/RO_0000056","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":["is_specified_output_of","is_specified_output_of"],"http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.","http__//purl.obolibrary.org/obo/IAO_0000117":["Alan Ruttenberg","PERSON:Bjoern Peters"],"http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/obi.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"is_specified_output_of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/OBI_0000011","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000056","id":"duo+property+http://purl.obolibrary.org/obo/OBI_0000312","imported":"true","iri":"http://purl.obolibrary.org/obo/OBI_0000312","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is_specified_output_of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["is_specified_output_of","is_specified_output_of","A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.","Alan Ruttenberg","PERSON:Bjoern Peters","true"],"shortForm":"OBI_0000312","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OMO_0001001\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OMO:0001001\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"OBO Operations call\"},\"http://www.geneontology.org/formats/oboInOwl#created_by\":\"http://orcid.org/0000-0001-5208-3432\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"logical characteristic of object property\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"logical characteristic of object property\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.\"},{\"type\":[\"literal\"],\"value\":\"OBO Operations call\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OMO_0001001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"OMO:0001001\":{\"url\":\"http://purl.obolibrary.org/obo/OMO_0001001\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OMO:0001001\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#created_by\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"created_by\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"created:by\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OMO:0001001","definition":"This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.","http__//purl.obolibrary.org/obo/IAO_0000119":"OBO Operations call","http__//www.geneontology.org/formats/oboInOwl#created_by":"http://orcid.org/0000-0001-5208-3432","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"logical characteristic of object property","id":"duo+property+http://purl.obolibrary.org/obo/OMO_0001001","imported":"true","iri":"http://purl.obolibrary.org/obo/OMO_0001001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"logical characteristic of object property","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.","OBO Operations call","true"],"shortForm":"OMO_0001001","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OMO_0002000\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OMO:0002000\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"value\":\"\\u0027part disjoint with\\u0027 \\u0027defined by construct\\u0027 \\\"\\\"\\\"\\n PREFIX owl: \\u003chttp://www.w3.org/2002/07/owl#\\u003e\\n PREFIX : \\u003chttp://example.org/\\n CONSTRUCT {\\n [\\n a owl:Restriction ;\\n owl:onProperty :part_of ;\\n owl:someValuesFrom ?a ;\\n owl:disjointWith [\\n a owl:Restriction ;\\n owl:onProperty :part_of ;\\n owl:someValuesFrom ?b\\n ]\\n ]\\n }\\n WHERE {\\n ?a :part_disjoint_with ?b .\\n }\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/ontodev/robot/issues/963\",\"http://purl.org/dc/elements/1.1/contributor\":[\"https://orcid.org/0000-0002-7356-1779\",\"https://orcid.org/0000-0002-8688-6599\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"defined by construct\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"defined by construct\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"\\u0027part disjoint with\\u0027 \\u0027defined by construct\\u0027 \\\"\\\"\\\"\\n PREFIX owl: \\u003chttp://www.w3.org/2002/07/owl#\\u003e\\n PREFIX : \\u003chttp://example.org/\\n CONSTRUCT {\\n [\\n a owl:Restriction ;\\n owl:onProperty :part_of ;\\n owl:someValuesFrom ?a ;\\n owl:disjointWith [\\n a owl:Restriction ;\\n owl:onProperty :part_of ;\\n owl:someValuesFrom ?b\\n ]\\n ]\\n }\\n WHERE {\\n ?a :part_disjoint_with ?b .\\n }\"},{\"type\":[\"literal\"],\"value\":\"Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OMO_0002000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"https://orcid.org/0000-0002-8688-6599\":{\"url\":\"https://orcid.org/0000-0002-8688-6599\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-8688-6599\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0002-7356-1779\":{\"url\":\"https://orcid.org/0000-0002-7356-1779\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-7356-1779\"},\"OMO:0002000\":{\"url\":\"http://purl.obolibrary.org/obo/OMO_0002000\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OMO:0002000\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/elements/1.1/contributor\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"contributor\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"contributor\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OMO:0002000","definition":"Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"\u0027part disjoint with\u0027 \u0027defined by construct\u0027 \"\"\"\n PREFIX owl: \u003chttp://www.w3.org/2002/07/owl#\u003e\n PREFIX : \u003chttp://example.org/\n CONSTRUCT {\n [\n a owl:Restriction ;\n owl:onProperty :part_of ;\n owl:someValuesFrom ?a ;\n owl:disjointWith [\n a owl:Restriction ;\n owl:onProperty :part_of ;\n owl:someValuesFrom ?b\n ]\n ]\n }\n WHERE {\n ?a :part_disjoint_with ?b .\n }","http__//purl.obolibrary.org/obo/IAO_0000115":"Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/ontodev/robot/issues/963","http__//purl.org/dc/elements/1.1/contributor":["https://orcid.org/0000-0002-7356-1779","https://orcid.org/0000-0002-8688-6599"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"defined by construct","id":"duo+property+http://purl.obolibrary.org/obo/OMO_0002000","imported":"true","iri":"http://purl.obolibrary.org/obo/OMO_0002000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"defined by construct","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["\u0027part disjoint with\u0027 \u0027defined by construct\u0027 \"\"\"\n PREFIX owl: \u003chttp://www.w3.org/2002/07/owl#\u003e\n PREFIX : \u003chttp://example.org/\n CONSTRUCT {\n [\n a owl:Restriction ;\n owl:onProperty :part_of ;\n owl:someValuesFrom ?a ;\n owl:disjointWith [\n a owl:Restriction ;\n owl:onProperty :part_of ;\n owl:someValuesFrom ?b\n ]\n ]\n }\n WHERE {\n ?a :part_disjoint_with ?b .\n }","Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.","true"],"shortForm":"OMO_0002000","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Note that this relation was previously called \\\"inheres in\\\", but was changed to be called \\\"characteristic of\\\" because BFO2 uses \\\"inheres in\\\" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing.\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inheres in\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this fragility is a characteristic of this vase\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this red color is a characteristic of this apple\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inheres_in\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Note that this relation was previously called \\\"inheres in\\\", but was changed to be called \\\"characteristic of\\\" because BFO2 uses \\\"inheres in\\\" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inheres in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this fragility is a characteristic of this vase\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this red color is a characteristic of this apple\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inheres_in\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000052\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0000052\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000052\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000052","definition":["a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","Note that this relation was previously called \"inheres in\", but was changed to be called \"characteristic of\" because BFO2 uses \"inheres in\" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"inheres in","http__//purl.obolibrary.org/obo/IAO_0000112":["this fragility is a characteristic of this vase","this red color is a characteristic of this apple"],"http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","http__//purl.obolibrary.org/obo/IAO_0000118":"inheres_in","http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#comment":"Note that this relation was previously called \"inheres in\", but was changed to be called \"characteristic of\" because BFO2 uses \"inheres in\" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing.","http__//www.w3.org/2000/01/rdf-schema#label":"characteristic of","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000053","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000052","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000052","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"characteristic of","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["inheres in","this fragility is a characteristic of this vase","this red color is a characteristic of this apple","a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","inheres_in","true"],"shortForm":"RO_0000052","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of characteristic_of\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bearer of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this apple is bearer of this red color\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this vase is bearer of this fragility\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of characteristic_of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bearer_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is bearer of\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#InverseFunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bearer of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this apple is bearer of this red color\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this vase is bearer of this fragility\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of characteristic_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bearer_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is bearer of\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000053\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0000053\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000053\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000053","definition":"Inverse of characteristic_of","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"bearer of","http__//purl.obolibrary.org/obo/IAO_0000112":["this apple is bearer of this red color","this vase is bearer of this fragility"],"http__//purl.obolibrary.org/obo/IAO_0000115":"Inverse of characteristic_of","http__//purl.obolibrary.org/obo/IAO_0000116":"A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.","http__//purl.obolibrary.org/obo/IAO_0000118":["bearer_of","is bearer of"],"http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#InverseFunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"has characteristic","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000020","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000052","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000053","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000053","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has characteristic","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["bearer of","this apple is bearer of this red color","this vase is bearer of this fragility","Inverse of characteristic_of","A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.","bearer_of","is bearer of","true"],"shortForm":"RO_0000053","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000056\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a continuant and a process, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this blood clot participates in this blood coagulation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this input material (or this output material) participates in this process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigator participates in this investigation\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a continuant and a process, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates_in\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this blood clot participates in this blood coagulation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this input material (or this output material) participates in this process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigator participates in this investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a continuant and a process, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates_in\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000056\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"RO:0000056\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000056\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000056","definition":"a relation between a continuant and a process, in which the continuant is somehow involved in the process","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"participates in","http__//purl.obolibrary.org/obo/IAO_0000112":["this blood clot participates in this blood coagulation","this input material (or this output material) participates in this process","this investigator participates in this investigation"],"http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a continuant and a process, in which the continuant is somehow involved in the process","http__//purl.obolibrary.org/obo/IAO_0000118":"participates_in","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2000/01/rdf-schema#label":"participates in","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000057","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000056","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000056","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"participates in","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["participates in","this blood clot participates in this blood coagulation","this input material (or this output material) participates in this process","this investigator participates in this investigation","a relation between a continuant and a process, in which the continuant is somehow involved in the process","participates_in","true"],"shortForm":"RO_0000056","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a process and a continuant, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this blood coagulation has participant this blood clot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigation has participant this investigator\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this process has participant this input material (or this output material)\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a process and a continuant, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_participant\",\"lang\":\"en\"},\"http://purl.org/dc/elements/1.1/source\":{\"type\":[\"literal\"],\"value\":\"http://www.obofoundry.org/ro/#OBO_REL:has_participant\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this blood coagulation has participant this blood clot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigation has participant this investigator\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this process has participant this input material (or this output material)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a process and a continuant, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_participant\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"http://www.obofoundry.org/ro/#OBO_REL:has_participant\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000057\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000056\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000056\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0000057\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000057\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/elements/1.1/source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000057","definition":"a relation between a process and a continuant, in which the continuant is somehow involved in the process","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has participant","http__//purl.obolibrary.org/obo/IAO_0000112":["this blood coagulation has participant this blood clot","this investigation has participant this investigator","this process has participant this input material (or this output material)"],"http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a process and a continuant, in which the continuant is somehow involved in the process","http__//purl.obolibrary.org/obo/IAO_0000116":"Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.","http__//purl.obolibrary.org/obo/IAO_0000118":"has_participant","http__//purl.org/dc/elements/1.1/source":"http://www.obofoundry.org/ro/#OBO_REL:has_participant","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#label":"has participant","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000056","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000057","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000057","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has participant","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has participant","this blood coagulation has participant this blood clot","this investigation has participant this investigator","this process has participant this input material (or this output material)","a relation between a process and a continuant, in which the continuant is somehow involved in the process","Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.","has_participant","http://www.obofoundry.org/ro/#OBO_REL:has_participant","true"],"shortForm":"RO_0000057","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000058\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000058\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is concretized as\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000059\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is concretized as\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000058\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000059\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"concretizes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000059\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"RO:0000058\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000058\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000058\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000058","definition":"A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":["A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).","An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."],"http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000031","http__//www.w3.org/2000/01/rdf-schema#label":"is concretized as","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000020","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000059","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000058","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000058","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is concretized as","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).","An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).","A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants.","true"],"shortForm":"RO_0000058","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000059\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000059\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"concretizes\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000058\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"concretizes\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000059\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000058\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is concretized as\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000058\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"RO:0000059\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000059\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000059\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000059","definition":"A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":["A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).","An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."],"http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000020","http__//www.w3.org/2000/01/rdf-schema#label":"concretizes","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000031","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000058","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000059","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000059","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"concretizes","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).","An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).","A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant.","true"],"shortForm":"RO_0000059","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000079\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000079\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this catalysis function is a function of this enzyme\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is function of\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000034\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000085\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this catalysis function is a function of this enzyme\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is function of\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000079\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0000079\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000079\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000079\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000034\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000034\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000085\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has function\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000085\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000079","definition":["a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":"http://purl.obolibrary.org/obo/RO_0000052","directParent":"http://purl.obolibrary.org/obo/RO_0000052","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"this catalysis function is a function of this enzyme","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.","http__//purl.obolibrary.org/obo/IAO_0000118":["function_of","is function of"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000034","http__//www.w3.org/2000/01/rdf-schema#label":"function of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000052","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000085","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000079","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000079","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"function of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["this catalysis function is a function of this enzyme","a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.","function_of","is function of","true"],"shortForm":"RO_0000079","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000080\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000080\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this red color is a quality of this apple\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A quality inheres in its bearer at all times for which the quality exists.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality_of\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this red color is a quality of this apple\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A quality inheres in its bearer at all times for which the quality exists.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality_of\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000080\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0000080\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000080\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000080\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000080","definition":["a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":"http://purl.obolibrary.org/obo/RO_0000052","directParent":"http://purl.obolibrary.org/obo/RO_0000052","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"this red color is a quality of this apple","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A quality inheres in its bearer at all times for which the quality exists.","http__//purl.obolibrary.org/obo/IAO_0000118":["is quality of","quality_of"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","http__//www.w3.org/2000/01/rdf-schema#label":"quality of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000052","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000086","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000080","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000080","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"quality of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["this red color is a quality of this apple","a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","A quality inheres in its bearer at all times for which the quality exists.","is quality of","quality_of","true"],"shortForm":"RO_0000080","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000081\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000081\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigator role is a role of this person\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is role of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role_of\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000087\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigator role is a role of this person\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is role of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role_of\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000081\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0000081\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000081\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000081\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000087\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has role\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000087\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000081","definition":["a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":"http://purl.obolibrary.org/obo/RO_0000052","directParent":"http://purl.obolibrary.org/obo/RO_0000052","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"this investigator role is a role of this person","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.","http__//purl.obolibrary.org/obo/IAO_0000118":["is role of","role_of"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","http__//www.w3.org/2000/01/rdf-schema#label":"role of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000052","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000087","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000081","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000081","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"role of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["this investigator role is a role of this person","a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.","is role of","role_of","true"],"shortForm":"RO_0000081","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000085\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000085\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_function\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has function\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000034\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000079\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has function\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_function\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000085\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"RO:0000085\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000085\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000085\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000034\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000034\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000079\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000079\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000085","definition":"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000053","directParent":"http://purl.obolibrary.org/obo/RO_0000053","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.","http__//purl.obolibrary.org/obo/IAO_0000118":"has_function","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"has function","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000034","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000053","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000079","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000085","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000085","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has function","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)","a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.","has_function","true"],"shortForm":"RO_0000085","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this apple has quality this red color\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_quality\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000080\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this apple has quality this red color\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_quality\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000086\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"RO:0000086\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000086\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000080\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000080\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000086","definition":"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000053","directParent":"http://purl.obolibrary.org/obo/RO_0000053","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"this apple has quality this red color","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.","http__//purl.obolibrary.org/obo/IAO_0000118":"has_quality","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has quality","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000019","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000053","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000080","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000086","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000086","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has quality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["this apple has quality this red color","a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.","has_quality","true"],"shortForm":"RO_0000086","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000087\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000087\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this person has role this investigator role (more colloquially: this person has this role of investigator)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_role\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has role\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000081\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has role\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this person has role this investigator role (more colloquially: this person has this role of investigator)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_role\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000087\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"RO:0000087\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000087\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000087\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000081\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000081\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000023\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000087","definition":"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000053","directParent":"http://purl.obolibrary.org/obo/RO_0000053","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"this person has role this investigator role (more colloquially: this person has this role of investigator)","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.","http__//purl.obolibrary.org/obo/IAO_0000118":"has_role","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"has role","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000023","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000053","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000081","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000087","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000087","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has role","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["this person has role this investigator role (more colloquially: this person has this role of investigator)","a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.","has_role","true"],"shortForm":"RO_0000087","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000091\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000091\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has disposition\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000092\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has disposition\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000091\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000092\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0000091\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000091\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000091\"}}}","appearsIn":["duo"],"curie":"RO:0000091","definition":"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000053","directParent":"http://purl.obolibrary.org/obo/RO_0000053","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"has disposition","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000016","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000053","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000092","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000091","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000091","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has disposition","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","true"],"shortForm":"RO_0000091","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000092\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000092\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000091\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000092\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0000091\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000091\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0000092\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0000092\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0000092\"}}}","appearsIn":["duo"],"curie":"RO:0000092","definition":"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://purl.obolibrary.org/obo/RO_0000052","directParent":"http://purl.obolibrary.org/obo/RO_0000052","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","http__//www.w3.org/2000/01/rdf-schema#label":"disposition of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000052","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000091","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000092","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000092","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disposition of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"RO_0000092","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0001000\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001000\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this cell derives from this parent cell (cell division)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this nucleus derives from this parent nucleus (nuclear division)\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is a very general relation. More specific relations are preferred when applicable, such as \\u0027directly develops from\\u0027.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives_from\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives from\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0001001\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives from\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this cell derives from this parent cell (cell division)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this nucleus derives from this parent nucleus (nuclear division)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is a very general relation. More specific relations are preferred when applicable, such as \\u0027directly develops from\\u0027.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives_from\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0001000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0001001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001001\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0001000\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001000\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0001000\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0001000","definition":"a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":["this cell derives from this parent cell (cell division)","this nucleus derives from this parent nucleus (nuclear division)"],"http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","http__//purl.obolibrary.org/obo/IAO_0000116":"This is a very general relation. More specific relations are preferred when applicable, such as \u0027directly develops from\u0027.","http__//purl.obolibrary.org/obo/IAO_0000118":"derives_from","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"derives from","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0001001","id":"duo+property+http://purl.obolibrary.org/obo/RO_0001000","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0001000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"derives from","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["this cell derives from this parent cell (cell division)","this nucleus derives from this parent nucleus (nuclear division)","a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","This is a very general relation. More specific relations are preferred when applicable, such as \u0027directly develops from\u0027.","derives_from","true"],"shortForm":"RO_0001000","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0001001\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001001\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this parent cell derives into this cell (cell division)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this parent nucleus derives into this nucleus (nuclear division)\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is a very general relation. More specific relations are preferred when applicable, such as \\u0027directly develops into\\u0027. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking \\u0027derives from\\u0027 rather than the forward-looking \\u0027derives into\\u0027.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives_into\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives into\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0001000\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives into\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this parent cell derives into this cell (cell division)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this parent nucleus derives into this nucleus (nuclear division)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is a very general relation. More specific relations are preferred when applicable, such as \\u0027directly develops into\\u0027. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking \\u0027derives from\\u0027 rather than the forward-looking \\u0027derives into\\u0027.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives_into\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0001001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0001000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001000\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0001001\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001001\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0001001\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0001001","definition":"a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":["this parent cell derives into this cell (cell division)","this parent nucleus derives into this nucleus (nuclear division)"],"http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","http__//purl.obolibrary.org/obo/IAO_0000116":"This is a very general relation. More specific relations are preferred when applicable, such as \u0027directly develops into\u0027. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking \u0027derives from\u0027 rather than the forward-looking \u0027derives into\u0027.","http__//purl.obolibrary.org/obo/IAO_0000118":"derives_into","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"derives into","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0001000","id":"duo+property+http://purl.obolibrary.org/obo/RO_0001001","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0001001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"derives into","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["this parent cell derives into this cell (cell division)","this parent nucleus derives into this nucleus (nuclear division)","a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","This is a very general relation. More specific relations are preferred when applicable, such as \u0027directly develops into\u0027. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking \u0027derives from\u0027 rather than the forward-looking \u0027derives into\u0027.","derives_into","true"],"shortForm":"RO_0001001","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0001015\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001015\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two independent continuants, the location and the target, in which the target is entirely within the location\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is location of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my head is the location of my brain\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this cage is the location of this rat\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two independent continuants, the location and the target, in which the target is entirely within the location\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"location_of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"location of\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0001025\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"location of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is location of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my head is the location of my brain\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this cage is the location of this rat\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two independent continuants, the location and the target, in which the target is entirely within the location\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"location_of\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0001015\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"RO:0001015\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001015\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0001015\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://purl.obolibrary.org/obo/RO_0001025\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"located in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001025\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0001015","definition":"a relation between two independent continuants, the location and the target, in which the target is entirely within the location","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"is location of","http__//purl.obolibrary.org/obo/IAO_0000112":["my head is the location of my brain","this cage is the location of this rat"],"http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between two independent continuants, the location and the target, in which the target is entirely within the location","http__//purl.obolibrary.org/obo/IAO_0000116":"Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","http__//purl.obolibrary.org/obo/IAO_0000118":"location_of","http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"location of","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0001025","id":"duo+property+http://purl.obolibrary.org/obo/RO_0001015","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0001015","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"location of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["is location of","my head is the location of my brain","this cage is the location of this rat","a relation between two independent continuants, the location and the target, in which the target is entirely within the location","Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","location_of","true"],"shortForm":"RO_0001015","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0001025\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001025\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two independent continuants, the target and the location, in which the target is entirely within the location\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"located in\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my brain is located in my head\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this rat is located in this cage\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two independent continuants, the target and the location, in which the target is entirely within the location\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"located_in\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://purl.org/dc/elements/1.1/source\":{\"type\":[\"literal\"],\"value\":\"http://www.obofoundry.org/ro/#OBO_REL:located_in\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"This is redundant with the more specific \\u0027independent and not spatial region\\u0027 constraint. We leave in the redundant axiom for use with reasoners that do not use negation.\"}}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#complementOf\":\"http://purl.obolibrary.org/obo/BFO_0000006\"}]}],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"located in\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"This is redundant with the more specific \\u0027independent and not spatial region\\u0027 constraint. We leave in the redundant axiom for use with reasoners that do not use negation.\"}}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#complementOf\":\"http://purl.obolibrary.org/obo/BFO_0000006\"}]}],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0001015\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"located in\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"located in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my brain is located in my head\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this rat is located in this cage\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two independent continuants, the target and the location, in which the target is entirely within the location\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"located_in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"http://www.obofoundry.org/ro/#OBO_REL:located_in\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0001025\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000006\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://purl.obolibrary.org/obo/RO_0001015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"location of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001015\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0001025\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001025\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0001025\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/elements/1.1/source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0001025","definition":"a relation between two independent continuants, the target and the location, in which the target is entirely within the location","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"located in","http__//purl.obolibrary.org/obo/IAO_0000112":["my brain is located in my head","this rat is located in this cage"],"http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between two independent continuants, the target and the location, in which the target is entirely within the location","http__//purl.obolibrary.org/obo/IAO_0000116":["Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus","Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"],"http__//purl.obolibrary.org/obo/IAO_0000118":"located_in","http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//purl.org/dc/elements/1.1/source":"http://www.obofoundry.org/ro/#OBO_REL:located_in","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":["http://purl.obolibrary.org/obo/BFO_0000004"],"http__//www.w3.org/2000/01/rdf-schema#label":"located in","http__//www.w3.org/2000/01/rdf-schema#range":["http://purl.obolibrary.org/obo/BFO_0000004"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0001015","id":"duo+property+http://purl.obolibrary.org/obo/RO_0001025","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0001025","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"located in","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["located in","my brain is located in my head","this rat is located in this cage","a relation between two independent continuants, the target and the location, in which the target is entirely within the location","Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus","Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","located_in","http://www.obofoundry.org/ro/#OBO_REL:located_in","true"],"shortForm":"RO_0001025","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0001900\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0001900\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0001900\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001900\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0001900\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0001900","definition":"An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"temporal interpretation","id":"duo+property+http://purl.obolibrary.org/obo/RO_0001900","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0001900","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"temporal interpretation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.","true"],"shortForm":"RO_0001900","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002000\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002000\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the surface of my skin is a 2D boundary of my body\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2D_boundary_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"boundary of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is 2D boundary of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is boundary of\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2D boundary of\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2D boundary of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the surface of my skin is a 2D boundary of my body\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2D_boundary_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"boundary of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is 2D boundary of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is boundary of\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has 2D boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002002\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"RO:0002000\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002000\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002000\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0002000","definition":"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"the surface of my skin is a 2D boundary of my body","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","http__//purl.obolibrary.org/obo/IAO_0000116":["A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.","Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."],"http__//purl.obolibrary.org/obo/IAO_0000118":["2D_boundary_of","boundary of","is 2D boundary of","is boundary of"],"http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"2D boundary of","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002002","id":"duo+property+http://purl.obolibrary.org/obo/RO_0002000","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0002000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"2D boundary of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["the surface of my skin is a 2D boundary of my body","a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.","Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.","2D_boundary_of","boundary of","is 2D boundary of","is boundary of","true"],"shortForm":"RO_0002000","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002002\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my body has 2D boundary the surface of my skin\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has boundary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_2D_boundary\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has 2D boundary\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002000\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has 2D boundary\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my body has 2D boundary the surface of my skin\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has boundary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_2D_boundary\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2D boundary of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002000\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"RO:0002002\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002002\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0002002","definition":"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"my body has 2D boundary the surface of my skin","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","http__//purl.obolibrary.org/obo/IAO_0000116":["A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.","Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."],"http__//purl.obolibrary.org/obo/IAO_0000118":["has boundary","has_2D_boundary"],"http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"has 2D boundary","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000141","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002000","id":"duo+property+http://purl.obolibrary.org/obo/RO_0002002","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0002002","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has 2D boundary","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["my body has 2D boundary the surface of my skin","a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.","Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.","has boundary","has_2D_boundary","true"],"shortForm":"RO_0002002","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002350\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002350\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"is member of is a mereological relation between a item and a collection.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"value\":\"An organism that is a member of a population of organisms\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"is member of is a mereological relation between a item and a collection.\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"value\":\"is member of\"},{\"type\":[\"literal\"],\"value\":\"member part of\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"SIO\"},\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"member of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002351\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"member of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"An organism that is a member of a population of organisms\"},{\"type\":[\"literal\"],\"value\":\"is member of is a mereological relation between a item and a collection.\"},{\"type\":[\"literal\"],\"value\":\"is member of\"},{\"type\":[\"literal\"],\"value\":\"member part of\"},{\"type\":[\"literal\"],\"value\":\"SIO\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002350\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://purl.obolibrary.org/obo/RO_0002351\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has member\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002351\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002350\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002350\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002350\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0002350","definition":"is member of is a mereological relation between a item and a collection.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000050","directParent":"http://purl.obolibrary.org/obo/BFO_0000050","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"An organism that is a member of a population of organisms","http__//purl.obolibrary.org/obo/IAO_0000115":"is member of is a mereological relation between a item and a collection.","http__//purl.obolibrary.org/obo/IAO_0000118":["is member of","member part of"],"http__//purl.obolibrary.org/obo/IAO_0000119":"SIO","http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"member of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000050","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002351","id":"duo+property+http://purl.obolibrary.org/obo/RO_0002350","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0002350","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"member of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["An organism that is a member of a population of organisms","is member of is a mereological relation between a item and a collection.","is member of","member part of","SIO","true"],"shortForm":"RO_0002350","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002351\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002351\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"has member is a mereological relation between a collection and an item.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"has member is a mereological relation between a collection and an item.\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"SIO\"},\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#IrreflexiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has member\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002350\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has member\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"has member is a mereological relation between a collection and an item.\"},{\"type\":[\"literal\"],\"value\":\"SIO\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002351\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://purl.obolibrary.org/obo/RO_0002350\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"member of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002350\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"RO:0002351\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002351\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002351\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0002351","definition":"has member is a mereological relation between a collection and an item.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000051","directParent":"http://purl.obolibrary.org/obo/BFO_0000051","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"has member is a mereological relation between a collection and an item.","http__//purl.obolibrary.org/obo/IAO_0000119":"SIO","http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#IrreflexiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"has member","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000051","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002350","id":"duo+property+http://purl.obolibrary.org/obo/RO_0002351","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0002351","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has member","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has member is a mereological relation between a collection and an item.","SIO","true"],"shortForm":"RO_0002351","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004096\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004096\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"DEPRECATED This relation is similar to but different in important respects to the characteristic-of relation. See comments on that relation for more information.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"DEPRECATED This relation is similar to but different in important respects to the characteristic-of relation. See comments on that relation for more information.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DEPRECATED inheres in\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":true,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DEPRECATED inheres in\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004096\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"RO:0004096\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004096\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004096\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0004096","definition":"DEPRECATED This relation is similar to but different in important respects to the characteristic-of relation. See comments on that relation for more information.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"DEPRECATED This relation is similar to but different in important respects to the characteristic-of relation. See comments on that relation for more information.","http__//www.w3.org/2000/01/rdf-schema#label":"DEPRECATED inheres in","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+property+http://purl.obolibrary.org/obo/RO_0004096","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0004096","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"DEPRECATED inheres in","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"RO_0004096","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004097\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004097\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DEPRECATED bearer of\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":true,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DEPRECATED bearer of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004097\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"RO:0004097\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0004097\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0004097\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0004097","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"DEPRECATED bearer of","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+property+http://purl.obolibrary.org/obo/RO_0004097","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0004097","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"DEPRECATED bearer of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"RO_0004097","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/DUO_0000041\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"DUO:0000041\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DUO_preferred_label\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DUO_preferred_label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"DUO_0000041\"},\"isDefiningOntology\":true,\"definedBy\":[\"duo\"],\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"DUO:0000041","definedBy":["duo"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"DUO_preferred_label","id":"duo+property+http://purl.obolibrary.org/obo/DUO_0000041","imported":"false","iri":"http://purl.obolibrary.org/obo/DUO_0000041","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"DUO_preferred_label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"false","shortForm":"DUO_0000041","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000004\",\"type\":[\"dataProperty\",\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000004\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#DatatypeProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000032\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement value\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#double\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement value\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000004\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000032\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scalar measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000032\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000004","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#DatatypeProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000032","http__//www.w3.org/2000/01/rdf-schema#label":"has measurement value","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#double","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000004","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000004","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has measurement value","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"IAO_0000004","type":["dataProperty","property","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000039\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000039\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement unit label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/IAO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement unit label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000039\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement unit label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000003\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000039","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000051","directParent":"http://purl.obolibrary.org/obo/BFO_0000051","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"has measurement unit label","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/IAO_0000003","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000039","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000039","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has measurement unit label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"IAO_0000039","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000111\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000111\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000111","definition":"The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"editor preferred term","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Daniel Schober","http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"editor preferred term","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000111","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000111","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"editor preferred term","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["editor preferred term","The concise, meaningful, and human-friendly name for a class or property preferred by the ontology developers. (US-English)","PERSON:Daniel Schober","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","true"],"shortForm":"IAO_0000111","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000112\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000112\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000112","definition":"A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"example of usage","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Daniel Schober","http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"example of usage","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000112","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000112","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"example of usage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["example of usage","A phrase describing how a term should be used and/or a citation to a work which uses it. May also include other kinds of examples that facilitate immediate understanding, such as widely know prototypes or instances of a class, or cases where a relation is said to hold.","PERSON:Daniel Schober","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","true"],"shortForm":"IAO_0000112","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000113\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000113\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in branch\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000277\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in branch\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in branch\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"in branch\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBI_0000277\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000113\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000113","definition":"An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"in branch","http__//purl.obolibrary.org/obo/IAO_0000115":"An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet.","http__//purl.obolibrary.org/obo/IAO_0000117":"GROUP:OBI","http__//purl.obolibrary.org/obo/IAO_0000119":"OBI_0000277","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"in branch","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000113","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000113","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"in branch","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["in branch","An annotation property indicating which module the terms belong to. This is currently experimental and not implemented yet.","GROUP:OBI","OBI_0000277","true"],"shortForm":"IAO_0000113","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000114\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Bill Bug\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Bill Bug\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000114\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000114","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has curation status","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Alan Ruttenberg","PERSON:Bill Bug","PERSON:Melanie Courtot"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has curation status","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000114","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000114","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has curation status","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has curation status","PERSON:Alan Ruttenberg","PERSON:Bill Bug","PERSON:Melanie Courtot","true"],"shortForm":"IAO_0000114","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000115\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2012-04-05: \\nBarry Smith\\n\\nThe official OBI definition, explaining the meaning of a class or property: \\u0027Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions\\u0027 is terrible.\\n\\nCan you fix to something like:\\n\\nA statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.\\n\\nAlan Ruttenberg\\n\\nYour proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can\\u0027t be evaluated by those criteria. \\n\\nOn the specifics of the proposed definition:\\n\\nWe don\\u0027t have definitions of \\u0027meaning\\u0027 or \\u0027expression\\u0027 or \\u0027property\\u0027. For \\u0027reference\\u0027 in the intended sense I think we use the term \\u0027denotation\\u0027. For \\u0027expression\\u0027, I think we you mean symbol, or identifier. For \\u0027meaning\\u0027 it differs for class and property. For class we want documentation that let\\u0027s the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let\\u0027s the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The \\u0027intended reader\\u0027 part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition. \\n\\nPersonally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable. \\n\\nWe also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with. \",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2012-04-05: \\nBarry Smith\\n\\nThe official OBI definition, explaining the meaning of a class or property: \\u0027Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions\\u0027 is terrible.\\n\\nCan you fix to something like:\\n\\nA statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.\\n\\nAlan Ruttenberg\\n\\nYour proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can\\u0027t be evaluated by those criteria. \\n\\nOn the specifics of the proposed definition:\\n\\nWe don\\u0027t have definitions of \\u0027meaning\\u0027 or \\u0027expression\\u0027 or \\u0027property\\u0027. For \\u0027reference\\u0027 in the intended sense I think we use the term \\u0027denotation\\u0027. For \\u0027expression\\u0027, I think we you mean symbol, or identifier. For \\u0027meaning\\u0027 it differs for class and property. For class we want documentation that let\\u0027s the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let\\u0027s the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The \\u0027intended reader\\u0027 part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition. \\n\\nPersonally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable. \\n\\nWe also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with. \",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000115","definition":"The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"definition","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.","http__//purl.obolibrary.org/obo/IAO_0000116":"2012-04-05: \nBarry Smith\n\nThe official OBI definition, explaining the meaning of a class or property: \u0027Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions\u0027 is terrible.\n\nCan you fix to something like:\n\nA statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.\n\nAlan Ruttenberg\n\nYour proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can\u0027t be evaluated by those criteria. \n\nOn the specifics of the proposed definition:\n\nWe don\u0027t have definitions of \u0027meaning\u0027 or \u0027expression\u0027 or \u0027property\u0027. For \u0027reference\u0027 in the intended sense I think we use the term \u0027denotation\u0027. For \u0027expression\u0027, I think we you mean symbol, or identifier. For \u0027meaning\u0027 it differs for class and property. For class we want documentation that let\u0027s the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let\u0027s the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The \u0027intended reader\u0027 part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition. \n\nPersonally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable. \n\nWe also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with. ","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Daniel Schober","http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"definition","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000115","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000115","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"definition","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["definition","The official definition, explaining the meaning of a class or property. Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions.","2012-04-05: \nBarry Smith\n\nThe official OBI definition, explaining the meaning of a class or property: \u0027Shall be Aristotelian, formalized and normalized. Can be augmented with colloquial definitions\u0027 is terrible.\n\nCan you fix to something like:\n\nA statement of necessary and sufficient conditions explaining the meaning of an expression referring to a class or property.\n\nAlan Ruttenberg\n\nYour proposed definition is a reasonable candidate, except that it is very common that necessary and sufficient conditions are not given. Mostly they are necessary, occasionally they are necessary and sufficient or just sufficient. Often they use terms that are not themselves defined and so they effectively can\u0027t be evaluated by those criteria. \n\nOn the specifics of the proposed definition:\n\nWe don\u0027t have definitions of \u0027meaning\u0027 or \u0027expression\u0027 or \u0027property\u0027. For \u0027reference\u0027 in the intended sense I think we use the term \u0027denotation\u0027. For \u0027expression\u0027, I think we you mean symbol, or identifier. For \u0027meaning\u0027 it differs for class and property. For class we want documentation that let\u0027s the intended reader determine whether an entity is instance of the class, or not. For property we want documentation that let\u0027s the intended reader determine, given a pair of potential relata, whether the assertion that the relation holds is true. The \u0027intended reader\u0027 part suggests that we also specify who, we expect, would be able to understand the definition, and also generalizes over human and computer reader to include textual and logical definition. \n\nPersonally, I am more comfortable weakening definition to documentation, with instructions as to what is desirable. \n\nWe also have the outstanding issue of how to aim different definitions to different audiences. A clinical audience reading chebi wants a different sort of definition documentation/definition from a chemistry trained audience, and similarly there is a need for a definition that is adequate for an ontologist to work with. ","PERSON:Daniel Schober","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","true"],"shortForm":"IAO_0000115","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000116\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obofoundry.org/obo/obi\\u003e\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obofoundry.org/obo/obi\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000116","definition":"An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"editor note","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Daniel Schober","http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI:\u003chttp://purl.obofoundry.org/obo/obi\u003e","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"editor note","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000116","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000116","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"editor note","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["editor note","An administrative note intended for its editor. It may not be included in the publication version of the ontology, so it should contain nothing necessary for end users to understand the ontology.","PERSON:Daniel Schober","GROUP:OBI:\u003chttp://purl.obofoundry.org/obo/obi\u003e","true"],"shortForm":"IAO_0000116","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000117\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"20110707, MC: label update to term editor and definition modified accordingly. See https://github.com/information-artifact-ontology/IAO/issues/115.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"20110707, MC: label update to term editor and definition modified accordingly. See https://github.com/information-artifact-ontology/IAO/issues/115.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000117\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000117","definition":"Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"term editor","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people","http__//purl.obolibrary.org/obo/IAO_0000116":"20110707, MC: label update to term editor and definition modified accordingly. See https://github.com/information-artifact-ontology/IAO/issues/115.","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Daniel Schober","http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"term editor","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000117","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000117","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"term editor","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["term editor","Name of editor entering the term in the file. The term editor is a point of contact for information regarding the term. The term editor may be, but is not always, the author of the definition, which may have been worked upon by several people","20110707, MC: label update to term editor and definition modified accordingly. See https://github.com/information-artifact-ontology/IAO/issues/115.","PERSON:Daniel Schober","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","true"],"shortForm":"IAO_0000117","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000118\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related).\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"value\":\"OBO Operations committee\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related).\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"OBO Operations committee\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000118\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000118","definition":["A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.","Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related)."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"alternative label","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.","http__//purl.obolibrary.org/obo/IAO_0000117":["OBO Operations committee","PERSON:Daniel Schober"],"http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Consider re-defing to: An alternative name for a class or property which can mean the same thing as the preferred name (semantically equivalent, narrow, broad or related).","http__//www.w3.org/2000/01/rdf-schema#label":"alternative label","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000118","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000118","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"alternative label","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["alternative label","A label for a class or property that can be used to refer to the class or property instead of the preferred rdfs:label. Alternative labels should be used to indicate community- or context-specific labels, abbreviations, shorthand forms and the like.","OBO Operations committee","PERSON:Daniel Schober","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","true"],"shortForm":"IAO_0000118","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000119\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Daniel Schober\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000119\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000119","definition":"Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"definition source","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Daniel Schober","http__//purl.obolibrary.org/obo/IAO_0000119":["Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"definition source","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000119","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000119","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"definition source","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["definition source","Formal citation, e.g. identifier in external database to indicate / attribute source(s) for the definition. Free text indicate / attribute source(s) for the definition. EXAMPLE: Author Name, URI, MeSH Term C04, PUBMED ID, Wiki uri on 31.01.2007","PERSON:Daniel Schober","Discussion on obo-discuss mailing-list, see http://bit.ly/hgm99w","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","true"],"shortForm":"IAO_0000119","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000135\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000135\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"c specifically denotes r \\u003ddef \\nr is a portion of reality\\n\\u0026 c is a particular quality\\n\\u0026 c depends specifically on some independent continuant b \\n\\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \\n\\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\\n\\nCase 1\\nMemory trace as mark created when reading some description of some friend. The trace can denote.\\n\\nCase 2\\nPattern of ink arrayed on paper as mark when writing down a friend\\u0027s name\\n\\nCase 3\\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"value\":\"The process of creation is, for example, writing down on paper the name of a friend by deliberately creating a certain pattern using ink.\\n\\nHere the ink + paper is the independent continuant and the carrier is the pattern in the ink.\\n\\nc \\u003d pattern in the ink\\nb \\u003d paper + ink\\nr \\u003d friend\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"c specifically denotes r \\u003ddef \\nr is a portion of reality\\n\\u0026 c is a particular quality\\n\\u0026 c depends specifically on some independent continuant b \\n\\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \\n\\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\\n\\nCase 1\\nMemory trace as mark created when reading some description of some friend. The trace can denote.\\n\\nCase 2\\nPattern of ink arrayed on paper as mark when writing down a friend\\u0027s name\\n\\nCase 3\\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"value\":\"8/6/2009 Alan Ruttenberg: The suggestions is to deprecate specific and generically denotes in favor of a single denote relationship that corresponds to the generic sense\"},{\"type\":[\"literal\"],\"value\":\"see https://github.com/information-artifact-ontology/IAO/issues/25\\u0026q\\u003ddenote\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"value\":\"Alan Ruttenberg\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"Smith, Ceusters, Ruttenberg, 2000 years of philosophy\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_specifically denotes\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":true,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_specifically denotes\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The process of creation is, for example, writing down on paper the name of a friend by deliberately creating a certain pattern using ink.\\n\\nHere the ink + paper is the independent continuant and the carrier is the pattern in the ink.\\n\\nc \\u003d pattern in the ink\\nb \\u003d paper + ink\\nr \\u003d friend\"},{\"type\":[\"literal\"],\"value\":\"c specifically denotes r \\u003ddef \\nr is a portion of reality\\n\\u0026 c is a particular quality\\n\\u0026 c depends specifically on some independent continuant b \\n\\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \\n\\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\\n\\nCase 1\\nMemory trace as mark created when reading some description of some friend. The trace can denote.\\n\\nCase 2\\nPattern of ink arrayed on paper as mark when writing down a friend\\u0027s name\\n\\nCase 3\\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.\"},{\"type\":[\"literal\"],\"value\":\"8/6/2009 Alan Ruttenberg: The suggestions is to deprecate specific and generically denotes in favor of a single denote relationship that corresponds to the generic sense\"},{\"type\":[\"literal\"],\"value\":\"see https://github.com/information-artifact-ontology/IAO/issues/25\\u0026q\\u003ddenote\"},{\"type\":[\"literal\"],\"value\":\"Alan Ruttenberg\"},{\"type\":[\"literal\"],\"value\":\"Smith, Ceusters, Ruttenberg, 2000 years of philosophy\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000135\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000135","definition":"c specifically denotes r \u003ddef \nr is a portion of reality\n\u0026 c is a particular quality\n\u0026 c depends specifically on some independent continuant b \n\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \n\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\n\nCase 1\nMemory trace as mark created when reading some description of some friend. The trace can denote.\n\nCase 2\nPattern of ink arrayed on paper as mark when writing down a friend\u0027s name\n\nCase 3\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"The process of creation is, for example, writing down on paper the name of a friend by deliberately creating a certain pattern using ink.\n\nHere the ink + paper is the independent continuant and the carrier is the pattern in the ink.\n\nc \u003d pattern in the ink\nb \u003d paper + ink\nr \u003d friend","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"c specifically denotes r \u003ddef \nr is a portion of reality\n\u0026 c is a particular quality\n\u0026 c depends specifically on some independent continuant b \n\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \n\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\n\nCase 1\nMemory trace as mark created when reading some description of some friend. The trace can denote.\n\nCase 2\nPattern of ink arrayed on paper as mark when writing down a friend\u0027s name\n\nCase 3\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.","http__//purl.obolibrary.org/obo/IAO_0000116":["8/6/2009 Alan Ruttenberg: The suggestions is to deprecate specific and generically denotes in favor of a single denote relationship that corresponds to the generic sense","see https://github.com/information-artifact-ontology/IAO/issues/25\u0026q\u003ddenote"],"http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Smith, Ceusters, Ruttenberg, 2000 years of philosophy","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_specifically denotes","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000135","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000135","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_specifically denotes","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["The process of creation is, for example, writing down on paper the name of a friend by deliberately creating a certain pattern using ink.\n\nHere the ink + paper is the independent continuant and the carrier is the pattern in the ink.\n\nc \u003d pattern in the ink\nb \u003d paper + ink\nr \u003d friend","c specifically denotes r \u003ddef \nr is a portion of reality\n\u0026 c is a particular quality\n\u0026 c depends specifically on some independent continuant b \n\u0026 b acquired c as the result of the achievement of an objective to enable pointing to r repeatedly. \n\nMarked means there is a changed or additional quality of the bearer - the quality is the information carrier.\n\nCase 1\nMemory trace as mark created when reading some description of some friend. The trace can denote.\n\nCase 2\nPattern of ink arrayed on paper as mark when writing down a friend\u0027s name\n\nCase 3\nPattern of magnetic domains on scattered pieces of a hard disk platter as mark when saving a file.","8/6/2009 Alan Ruttenberg: The suggestions is to deprecate specific and generically denotes in favor of a single denote relationship that corresponds to the generic sense","see https://github.com/information-artifact-ontology/IAO/issues/25\u0026q\u003ddenote","Alan Ruttenberg","Smith, Ceusters, Ruttenberg, 2000 years of philosophy","true"],"shortForm":"IAO_0000135","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A (currently) primitive relation that relates an information artifact to an entity.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This document is about information artifacts and their representations\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A (currently) primitive relation that relates an information artifact to an entity.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of \\\"mentions\\\" relation. Weaken the is_about relationship to be primitive. \\n\\nWe will try to build it back up by elaborating the various subproperties that are more precisely defined.\\n\\nSome currently missing phenomena that should be considered \\\"about\\\" are predications - \\\"The only person who knows the answer is sitting beside me\\\" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Smith, Ceusters, Ruttenberg, 2000 years of philosophy\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"numDescendants\":5.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This document is about information artifacts and their representations\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A (currently) primitive relation that relates an information artifact to an entity.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of \\\"mentions\\\" relation. Weaken the is_about relationship to be primitive. \\n\\nWe will try to build it back up by elaborating the various subproperties that are more precisely defined.\\n\\nSome currently missing phenomena that should be considered \\\"about\\\" are predications - \\\"The only person who knows the answer is sitting beside me\\\" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Smith, Ceusters, Ruttenberg, 2000 years of philosophy\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000136\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000136","definition":"A (currently) primitive relation that relates an information artifact to an entity.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"This document is about information artifacts and their representations","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"A (currently) primitive relation that relates an information artifact to an entity.","http__//purl.obolibrary.org/obo/IAO_0000116":"7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of \"mentions\" relation. Weaken the is_about relationship to be primitive. \n\nWe will try to build it back up by elaborating the various subproperties that are more precisely defined.\n\nSome currently missing phenomena that should be considered \"about\" are predications - \"The only person who knows the answer is sitting beside me\" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic.","http__//purl.obolibrary.org/obo/IAO_0000117":"person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Smith, Ceusters, Ruttenberg, 2000 years of philosophy","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000030","http__//www.w3.org/2000/01/rdf-schema#label":"is about","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000136","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000136","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is about","numDescendants":"5.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["This document is about information artifacts and their representations","A (currently) primitive relation that relates an information artifact to an entity.","7/6/2009 Alan Ruttenberg. Following discussion with Jonathan Rees, and introduction of \"mentions\" relation. Weaken the is_about relationship to be primitive. \n\nWe will try to build it back up by elaborating the various subproperties that are more precisely defined.\n\nSome currently missing phenomena that should be considered \"about\" are predications - \"The only person who knows the answer is sitting beside me\" , Allegory, Satire, and other literary forms that can be topical without explicitly mentioning the topic.","person:Alan Ruttenberg","Smith, Ceusters, Ruttenberg, 2000 years of philosophy","true"],"shortForm":"IAO_0000136","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000142\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000142\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information artifact IA mentions an entity E exactly when it has a component/part that denotes E\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information artifact IA mentions an entity E exactly when it has a component/part that denotes E\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"7/6/2009 Alan Ruttenberg. P4 RC1 munges our GCI so remove it for now: mentions some entity equivalentTo has_part some (\\u0027generically denotes\\u0027 some entity)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"7/6/2009 Alan Ruttenberg: Add this relation following conversation with Jonathan Rees that N\\u0026S GCI for is_about was too strong. Really it was simply sufficient. To effect this change we introduce this relation, which is subproperty of is_about, and have previous GCI use this relation \\\"mentions\\\" in it\\u0027s (logical) definition\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Alan Ruttenberg\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"mentions\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/IAO_0000143\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"mentions\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An information artifact IA mentions an entity E exactly when it has a component/part that denotes E\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"7/6/2009 Alan Ruttenberg. P4 RC1 munges our GCI so remove it for now: mentions some entity equivalentTo has_part some (\\u0027generically denotes\\u0027 some entity)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"7/6/2009 Alan Ruttenberg: Add this relation following conversation with Jonathan Rees that N\\u0026S GCI for is_about was too strong. Really it was simply sufficient. To effect this change we introduce this relation, which is subproperty of is_about, and have previous GCI use this relation \\\"mentions\\\" in it\\u0027s (logical) definition\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Jonathan Rees\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000142\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000143\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"mentioned by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000143\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000142","definition":"An information artifact IA mentions an entity E exactly when it has a component/part that denotes E","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/IAO_0000136","directParent":"http://purl.obolibrary.org/obo/IAO_0000136","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"An information artifact IA mentions an entity E exactly when it has a component/part that denotes E","http__//purl.obolibrary.org/obo/IAO_0000116":["7/6/2009 Alan Ruttenberg. P4 RC1 munges our GCI so remove it for now: mentions some entity equivalentTo has_part some (\u0027generically denotes\u0027 some entity)","7/6/2009 Alan Ruttenberg: Add this relation following conversation with Jonathan Rees that N\u0026S GCI for is_about was too strong. Really it was simply sufficient. To effect this change we introduce this relation, which is subproperty of is_about, and have previous GCI use this relation \"mentions\" in it\u0027s (logical) definition"],"http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Jonathan Rees","Person: Alan Ruttenberg"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"mentions","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/IAO_0000136","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/IAO_0000143","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000142","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000142","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"mentions","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["An information artifact IA mentions an entity E exactly when it has a component/part that denotes E","7/6/2009 Alan Ruttenberg. P4 RC1 munges our GCI so remove it for now: mentions some entity equivalentTo has_part some (\u0027generically denotes\u0027 some entity)","7/6/2009 Alan Ruttenberg: Add this relation following conversation with Jonathan Rees that N\u0026S GCI for is_about was too strong. Really it was simply sufficient. To effect this change we introduce this relation, which is subproperty of is_about, and have previous GCI use this relation \"mentions\" in it\u0027s (logical) definition","PERSON: Jonathan Rees","Person: Alan Ruttenberg","true"],"shortForm":"IAO_0000142","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000143\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000143\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of the relation \\u0027mentions\\u0027\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of the relation \\u0027mentions\\u0027\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":\"http://orcid.org/0000-0002-8844-9165\",\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/250\",\"http://purl.org/dc/elements/1.1/date\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#dateTime\",\"value\":\"2022-01-28T07:20:08Z\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"mentioned by\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/IAO_0000142\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"mentioned by\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of the relation \\u0027mentions\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/2001/XMLSchema#dateTime\",\"value\":\"2022-01-28T07:20:08Z\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000143\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/elements/1.1/date\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"date\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"date\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000142\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"mentions\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000142\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000143","definition":"Inverse of the relation \u0027mentions\u0027","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"Inverse of the relation \u0027mentions\u0027","http__//purl.obolibrary.org/obo/IAO_0000117":"http://orcid.org/0000-0002-8844-9165","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/250","http__//purl.org/dc/elements/1.1/date":"2022-01-28T07:20:08Z","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"mentioned by","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/IAO_0000142","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000143","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000143","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"mentioned by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["Inverse of the relation \u0027mentions\u0027","2022-01-28T07:20:08Z","true"],"shortForm":"IAO_0000143","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \\u0027pick out\\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A person\\u0027s name denotes the person. A variable name in a computer program denotes some piece of memory. Lexically equivalent strings can denote different things, for instance \\\"Alan\\\" can denote different people. In each case of use, there is a case of the denotation relation obtaining, between \\\"Alan\\\" and the person that is being named.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \\u0027pick out\\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-11-10 Alan Ruttenberg. Old definition said the following to emphasize the generic nature of this relation. We no longer have \\u0027specifically denotes\\u0027, which would have been primitive, so make this relation primitive.\\ng denotes r \\u003ddef \\nr is a portion of reality\\nthere is some c that is a concretization of g \\nevery c that is a concretization of g specifically denotes r\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Conversations with Barry Smith, Werner Ceusters, Bjoern Peters, Michel Dumontier, Melanie Courtot, James Malone, Bill Hogan\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/IAO_0000235\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A person\\u0027s name denotes the person. A variable name in a computer program denotes some piece of memory. Lexically equivalent strings can denote different things, for instance \\\"Alan\\\" can denote different people. In each case of use, there is a case of the denotation relation obtaining, between \\\"Alan\\\" and the person that is being named.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \\u0027pick out\\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009-11-10 Alan Ruttenberg. Old definition said the following to emphasize the generic nature of this relation. We no longer have \\u0027specifically denotes\\u0027, which would have been primitive, so make this relation primitive.\\ng denotes r \\u003ddef \\nr is a portion of reality\\nthere is some c that is a concretization of g \\nevery c that is a concretization of g specifically denotes r\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Conversations with Barry Smith, Werner Ceusters, Bjoern Peters, Michel Dumontier, Melanie Courtot, James Malone, Bill Hogan\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000219\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000235\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denoted by\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000235\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000219","definition":["A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \u0027pick out\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically",""],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":"http://purl.obolibrary.org/obo/IAO_0000136","directParent":"http://purl.obolibrary.org/obo/IAO_0000136","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"A person\u0027s name denotes the person. A variable name in a computer program denotes some piece of memory. Lexically equivalent strings can denote different things, for instance \"Alan\" can denote different people. In each case of use, there is a case of the denotation relation obtaining, between \"Alan\" and the person that is being named.","http__//purl.obolibrary.org/obo/IAO_0000115":"A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \u0027pick out\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically","http__//purl.obolibrary.org/obo/IAO_0000116":"2009-11-10 Alan Ruttenberg. Old definition said the following to emphasize the generic nature of this relation. We no longer have \u0027specifically denotes\u0027, which would have been primitive, so make this relation primitive.\ng denotes r \u003ddef \nr is a portion of reality\nthere is some c that is a concretization of g \nevery c that is a concretization of g specifically denotes r","http__//purl.obolibrary.org/obo/IAO_0000117":"person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Conversations with Barry Smith, Werner Ceusters, Bjoern Peters, Michel Dumontier, Melanie Courtot, James Malone, Bill Hogan","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000030","http__//www.w3.org/2000/01/rdf-schema#label":"denotes","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000001","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/IAO_0000136","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/IAO_0000235","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000219","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000219","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"denotes","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A person\u0027s name denotes the person. A variable name in a computer program denotes some piece of memory. Lexically equivalent strings can denote different things, for instance \"Alan\" can denote different people. In each case of use, there is a case of the denotation relation obtaining, between \"Alan\" and the person that is being named.","A primitive, instance-level, relation obtaining between an information content entity and some portion of reality. Denotation is what happens when someone creates an information content entity E in order to specifically refer to something. The only relation between E and the thing is that E can be used to \u0027pick out\u0027 the thing. This relation connects those two together. Freedictionary.com sense 3: To signify directly; refer to specifically","2009-11-10 Alan Ruttenberg. Old definition said the following to emphasize the generic nature of this relation. We no longer have \u0027specifically denotes\u0027, which would have been primitive, so make this relation primitive.\ng denotes r \u003ddef \nr is a portion of reality\nthere is some c that is a concretization of g \nevery c that is a concretization of g specifically denotes r","person:Alan Ruttenberg","Conversations with Barry Smith, Werner Ceusters, Bjoern Peters, Michel Dumontier, Melanie Courtot, James Malone, Bill Hogan","true"],"shortForm":"IAO_0000219","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000220\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000220\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"see https://github.com/information-artifact-ontology/IAO/issues/25\\u0026q\\u003ddenote\"},\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_materially denotes\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":true,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_materially denotes\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"see https://github.com/information-artifact-ontology/IAO/issues/25\\u0026q\\u003ddenote\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000220\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000220","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000116":"see https://github.com/information-artifact-ontology/IAO/issues/25\u0026q\u003ddenote","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_materially denotes","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000220","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000220","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_materially denotes","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["see https://github.com/information-artifact-ontology/IAO/issues/25\u0026q\u003ddenote","true"],"shortForm":"IAO_0000220","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000221\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000221\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"8/6/2009 Alan Ruttenberg: The strategy is to be rather specific with this relationship. There are other kinds of measurements that are not of qualities, such as those that measure time. We will add these as separate properties for the moment and see about generalizing later\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From the second IAO workshop [Alan Ruttenberg 8/6/2009: not completely current, though bringing in comparison is probably important]\\n\\nThis one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \\\"measuring\\\" the bearer \\u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\\n\\nWerner suggests a solution based on \\\"Magnitudes\\\" a proposal for which we are awaiting details.\\n--\\nFrom the second IAO workshop, various comments, [commented on by Alan Ruttenberg 8/6/2009]\\n\\nunit of measure is a quality, e.g. the length of a ruler.\\n\\n[We decided to hedge on what units of measure are, instead talking about measurement unit labels, which are the information content entities that are about whatever measurement units are. For IAO we need that information entity in any case. See the term measurement unit label]\\n\\n[Some struggling with the various subflavors of is_about. We subsequently removed the relation represents, and describes until and only when we have a better theory]\\n\\na represents b means either a denotes b or a describes\\n\\ndescribe:\\na describes b means a is about b and a allows an inference of at least one quality of b\\n\\nWe have had a long discussion about denotes versus describes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From the second IAO workshop: An attempt at tieing the quality to the measurement datum more carefully.\\n\\na is a magnitude means a is a determinate quality particular inhering in some bearer b existing at a time t that can be represented/denoted by an information content entity e that has parts denoting a unit of measure, a number, and b. The unit of measure is an instance of the determinable quality.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From the second meeting on IAO:\\n\\nAn attempt at defining assay using Barry\\u0027s \\\"reliability\\\" wording\\n\\nassay:\\nprocess and has_input some material entity\\nand has_output some information content entity \\nand which is such that instances of this process type reliably generate \\noutputs that describes the input.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \\\"measuring\\\" the bearer \\u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\\n\\nWerner suggests a solution based on \\\"Magnitudes\\\" a proposal for which we are awaiting details.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000109\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measurement of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/IAO_0000417\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measurement of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"8/6/2009 Alan Ruttenberg: The strategy is to be rather specific with this relationship. There are other kinds of measurements that are not of qualities, such as those that measure time. We will add these as separate properties for the moment and see about generalizing later\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From the second IAO workshop [Alan Ruttenberg 8/6/2009: not completely current, though bringing in comparison is probably important]\\n\\nThis one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \\\"measuring\\\" the bearer \\u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\\n\\nWerner suggests a solution based on \\\"Magnitudes\\\" a proposal for which we are awaiting details.\\n--\\nFrom the second IAO workshop, various comments, [commented on by Alan Ruttenberg 8/6/2009]\\n\\nunit of measure is a quality, e.g. the length of a ruler.\\n\\n[We decided to hedge on what units of measure are, instead talking about measurement unit labels, which are the information content entities that are about whatever measurement units are. For IAO we need that information entity in any case. See the term measurement unit label]\\n\\n[Some struggling with the various subflavors of is_about. We subsequently removed the relation represents, and describes until and only when we have a better theory]\\n\\na represents b means either a denotes b or a describes\\n\\ndescribe:\\na describes b means a is about b and a allows an inference of at least one quality of b\\n\\nWe have had a long discussion about denotes versus describes.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From the second IAO workshop: An attempt at tieing the quality to the measurement datum more carefully.\\n\\na is a magnitude means a is a determinate quality particular inhering in some bearer b existing at a time t that can be represented/denoted by an information content entity e that has parts denoting a unit of measure, a number, and b. The unit of measure is an instance of the determinable quality.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"From the second meeting on IAO:\\n\\nAn attempt at defining assay using Barry\\u0027s \\\"reliability\\\" wording\\n\\nassay:\\nprocess and has_input some material entity\\nand has_output some information content entity \\nand which is such that instances of this process type reliably generate \\noutputs that describes the input.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \\\"measuring\\\" the bearer \\u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\\n\\nWerner suggests a solution based on \\\"Magnitudes\\\" a proposal for which we are awaiting details.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000221\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000417\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measured as\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000417\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000221","definition":"m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/IAO_0000136","directParent":"http://purl.obolibrary.org/obo/IAO_0000136","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q","http__//purl.obolibrary.org/obo/IAO_0000116":["8/6/2009 Alan Ruttenberg: The strategy is to be rather specific with this relationship. There are other kinds of measurements that are not of qualities, such as those that measure time. We will add these as separate properties for the moment and see about generalizing later","From the second IAO workshop [Alan Ruttenberg 8/6/2009: not completely current, though bringing in comparison is probably important]\n\nThis one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \"measuring\" the bearer \u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\n\nWerner suggests a solution based on \"Magnitudes\" a proposal for which we are awaiting details.\n--\nFrom the second IAO workshop, various comments, [commented on by Alan Ruttenberg 8/6/2009]\n\nunit of measure is a quality, e.g. the length of a ruler.\n\n[We decided to hedge on what units of measure are, instead talking about measurement unit labels, which are the information content entities that are about whatever measurement units are. For IAO we need that information entity in any case. See the term measurement unit label]\n\n[Some struggling with the various subflavors of is_about. We subsequently removed the relation represents, and describes until and only when we have a better theory]\n\na represents b means either a denotes b or a describes\n\ndescribe:\na describes b means a is about b and a allows an inference of at least one quality of b\n\nWe have had a long discussion about denotes versus describes.","From the second IAO workshop: An attempt at tieing the quality to the measurement datum more carefully.\n\na is a magnitude means a is a determinate quality particular inhering in some bearer b existing at a time t that can be represented/denoted by an information content entity e that has parts denoting a unit of measure, a number, and b. The unit of measure is an instance of the determinable quality.","From the second meeting on IAO:\n\nAn attempt at defining assay using Barry\u0027s \"reliability\" wording\n\nassay:\nprocess and has_input some material entity\nand has_output some information content entity \nand which is such that instances of this process type reliably generate \noutputs that describes the input.","This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \"measuring\" the bearer \u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\n\nWerner suggests a solution based on \"Magnitudes\" a proposal for which we are awaiting details."],"http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000109","http__//www.w3.org/2000/01/rdf-schema#label":"is quality measurement of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000019","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/IAO_0000136","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/IAO_0000417","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000221","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000221","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is quality measurement of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["m is a quality measurement of q at t. When q is a quality, there is a measurement process p that has specified output m, a measurement datum, that is about q","8/6/2009 Alan Ruttenberg: The strategy is to be rather specific with this relationship. There are other kinds of measurements that are not of qualities, such as those that measure time. We will add these as separate properties for the moment and see about generalizing later","From the second IAO workshop [Alan Ruttenberg 8/6/2009: not completely current, though bringing in comparison is probably important]\n\nThis one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \"measuring\" the bearer \u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\n\nWerner suggests a solution based on \"Magnitudes\" a proposal for which we are awaiting details.\n--\nFrom the second IAO workshop, various comments, [commented on by Alan Ruttenberg 8/6/2009]\n\nunit of measure is a quality, e.g. the length of a ruler.\n\n[We decided to hedge on what units of measure are, instead talking about measurement unit labels, which are the information content entities that are about whatever measurement units are. For IAO we need that information entity in any case. See the term measurement unit label]\n\n[Some struggling with the various subflavors of is_about. We subsequently removed the relation represents, and describes until and only when we have a better theory]\n\na represents b means either a denotes b or a describes\n\ndescribe:\na describes b means a is about b and a allows an inference of at least one quality of b\n\nWe have had a long discussion about denotes versus describes.","From the second IAO workshop: An attempt at tieing the quality to the measurement datum more carefully.\n\na is a magnitude means a is a determinate quality particular inhering in some bearer b existing at a time t that can be represented/denoted by an information content entity e that has parts denoting a unit of measure, a number, and b. The unit of measure is an instance of the determinable quality.","From the second meeting on IAO:\n\nAn attempt at defining assay using Barry\u0027s \"reliability\" wording\n\nassay:\nprocess and has_input some material entity\nand has_output some information content entity \nand which is such that instances of this process type reliably generate \noutputs that describes the input.","This one is the one we are struggling with at the moment. The issue is what a measurement measures. On the one hand saying that it measures the quality would include it \"measuring\" the bearer \u003d referring to the bearer in the measurement. However this makes comparisons of two different things not possible. On the other hand not having it inhere in the bearer, on the face of it, breaks the audit trail.\n\nWerner suggests a solution based on \"Magnitudes\" a proposal for which we are awaiting details.","Alan Ruttenberg","true"],"shortForm":"IAO_0000221","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000222\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000222\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_describes\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":true,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_describes\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000222\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000222","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_describes","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000222","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000222","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_describes","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"IAO_0000222","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000223\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000223\"},\"directAncestor\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"directParent\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000231\":\"http://purl.obolibrary.org/obo/IAO_0000103\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"obsolete_represents\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\",\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":true,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"obsolete_represents\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000223\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"ObsoleteProperty\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000231\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000103\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"failed exploratory term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000103\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000223","directAncestor":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","directParent":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000231":"http://purl.obolibrary.org/obo/IAO_0000103","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"obsolete_represents","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000223","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000223","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"obsolete_represents","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"IAO_0000223","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000231\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000231\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has obsolescence reason\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000231\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000231","definition":"Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has obsolescence reason","http__//purl.obolibrary.org/obo/IAO_0000115":"Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Alan Ruttenberg","PERSON:Melanie Courtot"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has obsolescence reason","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000231","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000231","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has obsolescence reason","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has obsolescence reason","Relates an annotation property to an obsolescence reason. The values of obsolescence reasons come from a list of predefined terms, instances of the class obsolescence reason specification.","PERSON:Alan Ruttenberg","PERSON:Melanie Courtot","true"],"shortForm":"IAO_0000231","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000232\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An administrative note of use for a curator but of no use for a user\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An administrative note of use for a curator but of no use for a user\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"curator note\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An administrative note of use for a curator but of no use for a user\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000232\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000232","definition":"An administrative note of use for a curator but of no use for a user","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"curator note","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"An administrative note of use for a curator but of no use for a user","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"curator note","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000232","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000232","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"curator note","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["curator note","An administrative note of use for a curator but of no use for a user","PERSON:Alan Ruttenberg","true"],"shortForm":"IAO_0000232","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000233\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An IRI or similar locator for a request or discussion of an ontology term.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The \\u0027tracker item\\u0027 can associate a tracker with a specific ontology term.\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the URI for an OBI Terms ticket at sourceforge, such as https://sourceforge.net/p/obi/obi-terms/772/\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An IRI or similar locator for a request or discussion of an ontology term.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The \\u0027tracker item\\u0027 can associate a tracker with a specific ontology term.\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the URI for an OBI Terms ticket at sourceforge, such as https://sourceforge.net/p/obi/obi-terms/772/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An IRI or similar locator for a request or discussion of an ontology term.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000233\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000233","definition":["An IRI or similar locator for a request or discussion of an ontology term.","The \u0027tracker item\u0027 can associate a tracker with a specific ontology term."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"term tracker item","http__//purl.obolibrary.org/obo/IAO_0000112":"the URI for an OBI Terms ticket at sourceforge, such as https://sourceforge.net/p/obi/obi-terms/772/","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"An IRI or similar locator for a request or discussion of an ontology term.","http__//purl.obolibrary.org/obo/IAO_0000117":"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"The \u0027tracker item\u0027 can associate a tracker with a specific ontology term.","http__//www.w3.org/2000/01/rdf-schema#label":"term tracker item","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000233","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000233","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"term tracker item","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["term tracker item","the URI for an OBI Terms ticket at sourceforge, such as https://sourceforge.net/p/obi/obi-terms/772/","An IRI or similar locator for a request or discussion of an ontology term.","Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","true"],"shortForm":"IAO_0000233","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000234\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"The \\u0027term requester\\u0027 can credit the person, organization or project who request the ontology term.\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"The \\u0027term requester\\u0027 can credit the person, organization or project who request the ontology term.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000234\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000234","definition":["The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition.","The \u0027term requester\u0027 can credit the person, organization or project who request the ontology term."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"ontology term requester","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition.","http__//purl.obolibrary.org/obo/IAO_0000117":"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"The \u0027term requester\u0027 can credit the person, organization or project who request the ontology term.","http__//www.w3.org/2000/01/rdf-schema#label":"ontology term requester","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000234","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000234","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"ontology term requester","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["ontology term requester","The name of the person, project, or organization that motivated inclusion of an ontology term by requesting its addition.","Person: Jie Zheng, Chris Stoeckert, Alan Ruttenberg","true"],"shortForm":"IAO_0000234","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000235\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000235\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation \\u0027denotes\\u0027\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation \\u0027denotes\\u0027\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng, Chris Stoeckert, Mike Conlon\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/information-artifact-ontology/IAO/issues/206\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000001\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denoted by\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/IAO_0000030\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/IAO_0000219\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denoted by\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation \\u0027denotes\\u0027\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person: Jie Zheng, Chris Stoeckert, Mike Conlon\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000235\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000030\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"information content entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000030\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000219\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"denotes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000219\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000235","definition":"inverse of the relation \u0027denotes\u0027","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of the relation \u0027denotes\u0027","http__//purl.obolibrary.org/obo/IAO_0000117":"Person: Jie Zheng, Chris Stoeckert, Mike Conlon","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/information-artifact-ontology/IAO/issues/206","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000001","http__//www.w3.org/2000/01/rdf-schema#label":"denoted by","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/IAO_0000030","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/IAO_0000219","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000235","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000235","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"denoted by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["inverse of the relation \u0027denotes\u0027","Person: Jie Zheng, Chris Stoeckert, Mike Conlon","true"],"shortForm":"IAO_0000235","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000404\",\"type\":[\"dataProperty\",\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000404\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#DatatypeProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has x coordinate value\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#float\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has x coordinate value\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000404\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000404","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#DatatypeProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000400","http__//www.w3.org/2000/01/rdf-schema#label":"has x coordinate value","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#float","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000404","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000404","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has x coordinate value","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"IAO_0000404","type":["dataProperty","property","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000405\",\"type\":[\"dataProperty\",\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000405\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#DatatypeProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has z coordinate value\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#float\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has z coordinate value\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000405\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000405","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#DatatypeProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000400","http__//www.w3.org/2000/01/rdf-schema#label":"has z coordinate value","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#float","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000405","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000405","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has z coordinate value","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"IAO_0000405","type":["dataProperty","property","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000406\",\"type\":[\"dataProperty\",\"property\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000406\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#DatatypeProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has y coordinate value\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#float\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has y coordinate value\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000406\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000406","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#DatatypeProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000400","http__//www.w3.org/2000/01/rdf-schema#label":"has y coordinate value","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#float","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000406","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000406","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has y coordinate value","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"IAO_0000406","type":["dataProperty","property","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000407\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000407\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relating a cartesian spatial coordinate datum to a unit label that together with the values represent a point\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relating a cartesian spatial coordinate datum to a unit label that together with the values represent a point\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000400\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has coordinate unit label\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/UO_0000001\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has coordinate unit label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000407\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UO_0000001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"length unit\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UO:0000001\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"cartesian spatial coordinate datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000400\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000407","definition":"relating a cartesian spatial coordinate datum to a unit label that together with the values represent a point","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000051","directParent":"http://purl.obolibrary.org/obo/BFO_0000051","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#comment":"relating a cartesian spatial coordinate datum to a unit label that together with the values represent a point","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000400","http__//www.w3.org/2000/01/rdf-schema#label":"has coordinate unit label","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/UO_0000001","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000407","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000407","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has coordinate unit label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"IAO_0000407","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000411\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000411\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an class defined in an ontology, to the type of it\\u0027s denotator\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is denotator type\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an class defined in an ontology, to the type of it\\u0027s denotator\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"In OWL 2 add AnnotationPropertyRange(\\u0027is denotator type\\u0027 \\u0027denotator type\\u0027)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is denotator type\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is denotator type\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is denotator type\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an class defined in an ontology, to the type of it\\u0027s denotator\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"In OWL 2 add AnnotationPropertyRange(\\u0027is denotator type\\u0027 \\u0027denotator type\\u0027)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000411\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000411","definition":"Relates an class defined in an ontology, to the type of it\u0027s denotator","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"is denotator type","http__//purl.obolibrary.org/obo/IAO_0000115":"Relates an class defined in an ontology, to the type of it\u0027s denotator","http__//purl.obolibrary.org/obo/IAO_0000116":"In OWL 2 add AnnotationPropertyRange(\u0027is denotator type\u0027 \u0027denotator type\u0027)","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"is denotator type","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000411","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000411","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is denotator type","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["is denotator type","Relates an class defined in an ontology, to the type of it\u0027s denotator","In OWL 2 add AnnotationPropertyRange(\u0027is denotator type\u0027 \u0027denotator type\u0027)","Alan Ruttenberg","true"],"shortForm":"IAO_0000411","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000412\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For external terms/classes, the ontology from which the term was imported\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For external terms/classes, the ontology from which the term was imported\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"For external terms/classes, the ontology from which the term was imported\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBI:\\u003chttp://purl.obolibrary.org/obo/obi\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000412\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000412","definition":"For external terms/classes, the ontology from which the term was imported","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"imported from","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"For external terms/classes, the ontology from which the term was imported","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Alan Ruttenberg","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"imported from","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000412","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000412","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"imported from","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["imported from","For external terms/classes, the ontology from which the term was imported","PERSON:Alan Ruttenberg","PERSON:Melanie Courtot","GROUP:OBI:\u003chttp://purl.obolibrary.org/obo/obi\u003e","true"],"shortForm":"IAO_0000412","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000413\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000413\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a process to a time-measurement-datum that represents the duration of the process\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a process to a time-measurement-datum that represents the duration of the process\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000416\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is duration of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000015\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is duration of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a process to a time-measurement-datum that represents the duration of the process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000413\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000015\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000416\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000416\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000413","definition":"relates a process to a time-measurement-datum that represents the duration of the process","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/IAO_0000136","directParent":"http://purl.obolibrary.org/obo/IAO_0000136","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"relates a process to a time-measurement-datum that represents the duration of the process","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000416","http__//www.w3.org/2000/01/rdf-schema#label":"is duration of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000015","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/IAO_0000136","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000413","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000413","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is duration of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["relates a process to a time-measurement-datum that represents the duration of the process","Person:Alan Ruttenberg","true"],"shortForm":"IAO_0000413","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000417\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000417\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation of is quality measurement of\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation of is quality measurement of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/10/19 Alan Ruttenberg. Named \\u0027junk\\u0027 relation useful in restrictions, but not a real instance relationship\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measured as\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/IAO_0000221\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measured as\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation of is quality measurement of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/10/19 Alan Ruttenberg. Named \\u0027junk\\u0027 relation useful in restrictions, but not a real instance relationship\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000417\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000221\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality measurement of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000221\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000417","definition":"inverse of the relation of is quality measurement of","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of the relation of is quality measurement of","http__//purl.obolibrary.org/obo/IAO_0000116":"2009/10/19 Alan Ruttenberg. Named \u0027junk\u0027 relation useful in restrictions, but not a real instance relationship","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"is quality measured as","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/IAO_0000221","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000417","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000417","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is quality measured as","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["inverse of the relation of is quality measurement of","2009/10/19 Alan Ruttenberg. Named \u0027junk\u0027 relation useful in restrictions, but not a real instance relationship","Person:Alan Ruttenberg","true"],"shortForm":"IAO_0000417","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000418\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000418\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"directParent\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Bjoern Peters\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality specification of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/IAO_0000136\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/IAO_0000419\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality specification of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Bjoern Peters\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000418\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000136\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is about\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000136\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000419\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality is specified as\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000419\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000418","definition":"A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/IAO_0000136","directParent":"http://purl.obolibrary.org/obo/IAO_0000136","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality.","http__//purl.obolibrary.org/obo/IAO_0000117":["Person:Alan Ruttenberg","Person:Bjoern Peters"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"is quality specification of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/IAO_0000136","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/IAO_0000419","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000418","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000418","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is quality specification of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A relation between a data item and a quality of a material entity where the material entity is the specified output of a material transformation which achieves an objective specification that indicates the intended value of the specified quality.","Person:Alan Ruttenberg","Person:Bjoern Peters","true"],"shortForm":"IAO_0000418","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000419\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000419\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation of is quality specification of\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000120\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation of is quality specification of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/10/19 Alan Ruttenberg. Named \\u0027junk\\u0027 relation useful in restrictions, but not a real instance relationship\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Bjoern Peters\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality is specified as\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/IAO_0000418\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality is specified as\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inverse of the relation of is quality specification of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2009/10/19 Alan Ruttenberg. Named \\u0027junk\\u0027 relation useful in restrictions, but not a real instance relationship\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Bjoern Peters\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000419\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000418\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality specification of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000418\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000120\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata complete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000120\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000419","definition":"inverse of the relation of is quality specification of","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000120","http__//purl.obolibrary.org/obo/IAO_0000115":"inverse of the relation of is quality specification of","http__//purl.obolibrary.org/obo/IAO_0000116":"2009/10/19 Alan Ruttenberg. Named \u0027junk\u0027 relation useful in restrictions, but not a real instance relationship","http__//purl.obolibrary.org/obo/IAO_0000117":["Person:Alan Ruttenberg","Person:Bjoern Peters"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"quality is specified as","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/IAO_0000418","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000419","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000419","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"quality is specified as","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["inverse of the relation of is quality specification of","2009/10/19 Alan Ruttenberg. Named \u0027junk\u0027 relation useful in restrictions, but not a real instance relationship","Person:Alan Ruttenberg","Person:Bjoern Peters","true"],"shortForm":"IAO_0000419","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000424\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000424\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"expand expression to\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ObjectProperty: RO_0002104\\nLabel: has plasma membrane part\\nAnnotations: IAO_0000424 \\\"http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.org/obo/owl/GO#GO_0005886 and http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\\\"\\n\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Chris Mungall\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"expand expression to\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"expand expression to\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"expand expression to\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ObjectProperty: RO_0002104\\nLabel: has plasma membrane part\\nAnnotations: IAO_0000424 \\\"http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.org/obo/owl/GO#GO_0005886 and http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\\\"\\n\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Chris Mungall\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000424\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000424","definition":"A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"expand expression to","http__//purl.obolibrary.org/obo/IAO_0000112":"ObjectProperty: RO_0002104\nLabel: has plasma membrane part\nAnnotations: IAO_0000424 \"http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.org/obo/owl/GO#GO_0005886 and http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\"\n","http__//purl.obolibrary.org/obo/IAO_0000115":"A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones","http__//purl.obolibrary.org/obo/IAO_0000117":"Chris Mungall","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"expand expression to","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000424","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000424","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"expand expression to","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["expand expression to","ObjectProperty: RO_0002104\nLabel: has plasma membrane part\nAnnotations: IAO_0000424 \"http://purl.obolibrary.org/obo/BFO_0000051 some (http://purl.org/obo/owl/GO#GO_0005886 and http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\"\n","A macro expansion tag applied to an object property (or possibly a data property) which can be used by a macro-expansion engine to generate more complex expressions from simpler ones","Chris Mungall","true"],"shortForm":"IAO_0000424","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000425\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000425\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"expand assertion to\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ObjectProperty: RO???\\nLabel: spatially disjoint from\\nAnnotations: expand_assertion_to \\\"DisjointClasses: (http://purl.obolibrary.org/obo/BFO_0000051 some ?X) (http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\\\"\\n\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Chris Mungall\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"expand assertion to\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"expand assertion to\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"expand assertion to\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ObjectProperty: RO???\\nLabel: spatially disjoint from\\nAnnotations: expand_assertion_to \\\"DisjointClasses: (http://purl.obolibrary.org/obo/BFO_0000051 some ?X) (http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\\\"\\n\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Chris Mungall\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000425\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000425","definition":"A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"expand assertion to","http__//purl.obolibrary.org/obo/IAO_0000112":"ObjectProperty: RO???\nLabel: spatially disjoint from\nAnnotations: expand_assertion_to \"DisjointClasses: (http://purl.obolibrary.org/obo/BFO_0000051 some ?X) (http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\"\n","http__//purl.obolibrary.org/obo/IAO_0000115":"A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom.","http__//purl.obolibrary.org/obo/IAO_0000117":"Chris Mungall","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"expand assertion to","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000425","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000425","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"expand assertion to","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["expand assertion to","ObjectProperty: RO???\nLabel: spatially disjoint from\nAnnotations: expand_assertion_to \"DisjointClasses: (http://purl.obolibrary.org/obo/BFO_0000051 some ?X) (http://purl.obolibrary.org/obo/BFO_0000051 some ?Y)\"\n","A macro expansion tag applied to an annotation property which can be expanded into a more detailed axiom.","Chris Mungall","true"],"shortForm":"IAO_0000425","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000426\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000426\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"first order logic expression\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"first order logic expression\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"first order logic expression\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"first order logic expression\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000426\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000426","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"first order logic expression","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"first order logic expression","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000426","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000426","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"first order logic expression","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["first order logic expression","PERSON:Alan Ruttenberg","true"],"shortForm":"IAO_0000426","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000427\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000427\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Use boolean value xsd:true to indicate that the property is an antisymmetric property\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/OMO_0001001\",\"directParent\":\"http://purl.obolibrary.org/obo/OMO_0001001\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"antisymmetric property\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part_of antisymmetric property xsd:true\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Use boolean value xsd:true to indicate that the property is an antisymmetric property\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"antisymmetric property\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/OMO_0001001\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"antisymmetric property\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"antisymmetric property\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part_of antisymmetric property xsd:true\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Use boolean value xsd:true to indicate that the property is an antisymmetric property\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000427\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/OMO_0001001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"logical characteristic of object property\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OMO:0001001\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000427","definition":"Use boolean value xsd:true to indicate that the property is an antisymmetric property","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/OMO_0001001","directParent":"http://purl.obolibrary.org/obo/OMO_0001001","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"antisymmetric property","http__//purl.obolibrary.org/obo/IAO_0000112":"part_of antisymmetric property xsd:true","http__//purl.obolibrary.org/obo/IAO_0000115":"Use boolean value xsd:true to indicate that the property is an antisymmetric property","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"antisymmetric property","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/OMO_0001001","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000427","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000427","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"antisymmetric property","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["antisymmetric property","part_of antisymmetric property xsd:true","Use boolean value xsd:true to indicate that the property is an antisymmetric property","Alan Ruttenberg","true"],"shortForm":"IAO_0000427","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000581\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000581\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000582\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has time stamp\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/IAO_0000416\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has time stamp\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000581\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000416\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000416\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000582\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time stamped measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000582\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000581","definition":"relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000051","directParent":"http://purl.obolibrary.org/obo/BFO_0000051","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000582","http__//www.w3.org/2000/01/rdf-schema#label":"has time stamp","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/IAO_0000416","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000581","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000581","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has time stamp","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["relates a time stamped measurement datum to the time measurement datum that denotes the time when the measurement was taken","Alan Ruttenberg","true"],"shortForm":"IAO_0000581","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000583\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000583\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a time stamped measurement datum to the measurement datum that was measured\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000123\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a time stamped measurement datum to the measurement datum that was measured\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/IAO_0000582\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement datum\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/IAO_0000109\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#complementOf\":\"http://purl.obolibrary.org/obo/IAO_0000416\"}]},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has measurement datum\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"relates a time stamped measurement datum to the measurement datum that was measured\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000583\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000109\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000109\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000123\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"metadata incomplete\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000123\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000416\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000416\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000582\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"time stamped measurement datum\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000582\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000583","definition":"relates a time stamped measurement datum to the measurement datum that was measured","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000051","directParent":"http://purl.obolibrary.org/obo/BFO_0000051","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000123","http__//purl.obolibrary.org/obo/IAO_0000115":"relates a time stamped measurement datum to the measurement datum that was measured","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/IAO_0000582","http__//www.w3.org/2000/01/rdf-schema#label":"has measurement datum","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000583","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000583","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has measurement datum","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["relates a time stamped measurement datum to the measurement datum that was measured","Alan Ruttenberg","true"],"shortForm":"IAO_0000583","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000589\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000589\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An alternative name for a class or property which is unique across the OBO Foundry.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBO foundry unique label\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An alternative name for a class or property which is unique across the OBO Foundry.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The intended usage of that property is as follow: OBO foundry unique labels are automatically generated based on regular expressions provided by each ontology, so that SO could specify unique label \\u003d \\u0027sequence \\u0027 + [label], etc. , MA could specify \\u0027mouse + [label]\\u0027 etc. Upon importing terms, ontology developers can choose to use the \\u0027OBO foundry unique label\\u0027 for an imported term or not. The same applies to tools .\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Mungall\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBO Foundry \\u003chttp://obofoundry.org/\\u003e\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBO foundry unique label\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBO foundry unique label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"OBO foundry unique label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An alternative name for a class or property which is unique across the OBO Foundry.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The intended usage of that property is as follow: OBO foundry unique labels are automatically generated based on regular expressions provided by each ontology, so that SO could specify unique label \\u003d \\u0027sequence \\u0027 + [label], etc. , MA could specify \\u0027mouse + [label]\\u0027 etc. Upon importing terms, ontology developers can choose to use the \\u0027OBO foundry unique label\\u0027 for an imported term or not. The same applies to tools .\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Bjoern Peters\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Chris Mungall\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Melanie Courtot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GROUP:OBO Foundry \\u003chttp://obofoundry.org/\\u003e\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000589\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000589","definition":"An alternative name for a class or property which is unique across the OBO Foundry.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"OBO foundry unique label","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"An alternative name for a class or property which is unique across the OBO Foundry.","http__//purl.obolibrary.org/obo/IAO_0000116":"The intended usage of that property is as follow: OBO foundry unique labels are automatically generated based on regular expressions provided by each ontology, so that SO could specify unique label \u003d \u0027sequence \u0027 + [label], etc. , MA could specify \u0027mouse + [label]\u0027 etc. Upon importing terms, ontology developers can choose to use the \u0027OBO foundry unique label\u0027 for an imported term or not. The same applies to tools .","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON:Alan Ruttenberg","PERSON:Bjoern Peters","PERSON:Chris Mungall","PERSON:Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000119":"GROUP:OBO Foundry \u003chttp://obofoundry.org/\u003e","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"OBO foundry unique label","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000589","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000589","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"OBO foundry unique label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["OBO foundry unique label","An alternative name for a class or property which is unique across the OBO Foundry.","The intended usage of that property is as follow: OBO foundry unique labels are automatically generated based on regular expressions provided by each ontology, so that SO could specify unique label \u003d \u0027sequence \u0027 + [label], etc. , MA could specify \u0027mouse + [label]\u0027 etc. Upon importing terms, ontology developers can choose to use the \u0027OBO foundry unique label\u0027 for an imported term or not. The same applies to tools .","PERSON:Alan Ruttenberg","PERSON:Bjoern Peters","PERSON:Chris Mungall","PERSON:Melanie Courtot","GROUP:OBO Foundry \u003chttp://obofoundry.org/\u003e","true"],"shortForm":"IAO_0000589","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000596\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000596\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \\u0027has ID prefix\\\" annotation property value concatenated with an integer in the id range (left padded with \\\"0\\\"s to make this many digits)\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID digit count\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology: \\u003chttp://purl.obolibrary.org/obo/ro/idrange/\\u003e\\n Annotations: \\n \\u0027has ID prefix\\u0027: \\\"http://purl.obolibrary.org/obo/RO_\\\"\\n \\u0027has ID digit count\\u0027 : 7,\\n rdfs:label \\\"RO id policy\\\"\\n \\u0027has ID policy for\\u0027: \\\"RO\\\"\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \\u0027has ID prefix\\\" annotation property value concatenated with an integer in the id range (left padded with \\\"0\\\"s to make this many digits)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID digit count\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID digit count\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID digit count\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology: \\u003chttp://purl.obolibrary.org/obo/ro/idrange/\\u003e\\n Annotations: \\n \\u0027has ID prefix\\u0027: \\\"http://purl.obolibrary.org/obo/RO_\\\"\\n \\u0027has ID digit count\\u0027 : 7,\\n rdfs:label \\\"RO id policy\\\"\\n \\u0027has ID policy for\\u0027: \\\"RO\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \\u0027has ID prefix\\\" annotation property value concatenated with an integer in the id range (left padded with \\\"0\\\"s to make this many digits)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000596\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_\\\"\":{\"url\":\"http://purl.obolibrary.org/obo/RO_\\\"\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:\\\"\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000596","definition":"Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \u0027has ID prefix\" annotation property value concatenated with an integer in the id range (left padded with \"0\"s to make this many digits)","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has ID digit count","http__//purl.obolibrary.org/obo/IAO_0000112":"Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \"http://purl.obolibrary.org/obo/RO_\"\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \"RO id policy\"\n \u0027has ID policy for\u0027: \"RO\"","http__//purl.obolibrary.org/obo/IAO_0000115":"Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \u0027has ID prefix\" annotation property value concatenated with an integer in the id range (left padded with \"0\"s to make this many digits)","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has ID digit count","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000596","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000596","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has ID digit count","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has ID digit count","Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \"http://purl.obolibrary.org/obo/RO_\"\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \"RO id policy\"\n \u0027has ID policy for\u0027: \"RO\"","Relates an ontology used to record id policy to the number of digits in the URI. The URI is: the \u0027has ID prefix\" annotation property value concatenated with an integer in the id range (left padded with \"0\"s to make this many digits)","Person:Alan Ruttenberg","true"],"shortForm":"IAO_0000596","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000597\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000597\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID range allocated\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Datatype: idrange:1\\nAnnotations: \\u0027has ID range allocated to\\u0027: \\\"Chris Mungall\\\"\\nEquivalentTo: xsd:integer[\\u003e 2151 , \\u003c\\u003d 2300]\\n\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID range allocated to\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID range allocated to\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID range allocated\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Datatype: idrange:1\\nAnnotations: \\u0027has ID range allocated to\\u0027: \\\"Chris Mungall\\\"\\nEquivalentTo: xsd:integer[\\u003e 2151 , \\u003c\\u003d 2300]\\n\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000597\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000597","definition":"Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has ID range allocated","http__//purl.obolibrary.org/obo/IAO_0000112":"Datatype: idrange:1\nAnnotations: \u0027has ID range allocated to\u0027: \"Chris Mungall\"\nEquivalentTo: xsd:integer[\u003e 2151 , \u003c\u003d 2300]\n","http__//purl.obolibrary.org/obo/IAO_0000115":"Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has ID range allocated to","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000597","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000597","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has ID range allocated to","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has ID range allocated","Datatype: idrange:1\nAnnotations: \u0027has ID range allocated to\u0027: \"Chris Mungall\"\nEquivalentTo: xsd:integer[\u003e 2151 , \u003c\u003d 2300]\n","Relates a datatype that encodes a range of integers to the name of the person or organization who can use those ids constructed in that range to define new terms","Person:Alan Ruttenberg","true"],"shortForm":"IAO_0000597","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000598\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000598\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relating an ontology used to record id policy to the ontology namespace whose policy it manages\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID policy for\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology: \\u003chttp://purl.obolibrary.org/obo/ro/idrange/\\u003e\\n Annotations: \\n \\u0027has ID prefix\\u0027: \\\"http://purl.obolibrary.org/obo/RO_\\\"\\n \\u0027has ID digit count\\u0027 : 7,\\n rdfs:label \\\"RO id policy\\\"\\n \\u0027has ID policy for\\u0027: \\\"RO\\\"\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relating an ontology used to record id policy to the ontology namespace whose policy it manages\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID policy for\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID policy for\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID policy for\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology: \\u003chttp://purl.obolibrary.org/obo/ro/idrange/\\u003e\\n Annotations: \\n \\u0027has ID prefix\\u0027: \\\"http://purl.obolibrary.org/obo/RO_\\\"\\n \\u0027has ID digit count\\u0027 : 7,\\n rdfs:label \\\"RO id policy\\\"\\n \\u0027has ID policy for\\u0027: \\\"RO\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relating an ontology used to record id policy to the ontology namespace whose policy it manages\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000598\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_\\\"\":{\"url\":\"http://purl.obolibrary.org/obo/RO_\\\"\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:\\\"\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000598","definition":"Relating an ontology used to record id policy to the ontology namespace whose policy it manages","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has ID policy for","http__//purl.obolibrary.org/obo/IAO_0000112":"Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \"http://purl.obolibrary.org/obo/RO_\"\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \"RO id policy\"\n \u0027has ID policy for\u0027: \"RO\"","http__//purl.obolibrary.org/obo/IAO_0000115":"Relating an ontology used to record id policy to the ontology namespace whose policy it manages","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has ID policy for","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000598","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000598","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has ID policy for","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has ID policy for","Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \"http://purl.obolibrary.org/obo/RO_\"\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \"RO id policy\"\n \u0027has ID policy for\u0027: \"RO\"","Relating an ontology used to record id policy to the ontology namespace whose policy it manages","Person:Alan Ruttenberg","true"],"shortForm":"IAO_0000598","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000599\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000599\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \\\"0\\\"s to make this many digits) to construct an ID for a term being created.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID prefix\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology: \\u003chttp://purl.obolibrary.org/obo/ro/idrange/\\u003e\\n Annotations: \\n \\u0027has ID prefix\\u0027: \\\"http://purl.obolibrary.org/obo/RO_\\\"\\n \\u0027has ID digit count\\u0027 : 7,\\n rdfs:label \\\"RO id policy\\\"\\n \\u0027has ID policy for\\u0027: \\\"RO\\\"\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \\\"0\\\"s to make this many digits) to construct an ID for a term being created.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID prefix\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID prefix\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ID prefix\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology: \\u003chttp://purl.obolibrary.org/obo/ro/idrange/\\u003e\\n Annotations: \\n \\u0027has ID prefix\\u0027: \\\"http://purl.obolibrary.org/obo/RO_\\\"\\n \\u0027has ID digit count\\u0027 : 7,\\n rdfs:label \\\"RO id policy\\\"\\n \\u0027has ID policy for\\u0027: \\\"RO\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \\\"0\\\"s to make this many digits) to construct an ID for a term being created.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000599\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_\\\"\":{\"url\":\"http://purl.obolibrary.org/obo/RO_\\\"\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:\\\"\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000599","definition":"Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \"0\"s to make this many digits) to construct an ID for a term being created.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has ID prefix","http__//purl.obolibrary.org/obo/IAO_0000112":"Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \"http://purl.obolibrary.org/obo/RO_\"\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \"RO id policy\"\n \u0027has ID policy for\u0027: \"RO\"","http__//purl.obolibrary.org/obo/IAO_0000115":"Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \"0\"s to make this many digits) to construct an ID for a term being created.","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has ID prefix","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000599","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000599","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has ID prefix","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has ID prefix","Ontology: \u003chttp://purl.obolibrary.org/obo/ro/idrange/\u003e\n Annotations: \n \u0027has ID prefix\u0027: \"http://purl.obolibrary.org/obo/RO_\"\n \u0027has ID digit count\u0027 : 7,\n rdfs:label \"RO id policy\"\n \u0027has ID policy for\u0027: \"RO\"","Relates an ontology used to record id policy to a prefix concatenated with an integer in the id range (left padded with \"0\"s to make this many digits) to construct an ID for a term being created.","Person:Alan Ruttenberg","true"],"shortForm":"IAO_0000599","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000600\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Barry Smith\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Primitive terms in a highest-level ontology such as BFO are terms which are so basic to our understanding of reality that there is no way of defining them in a non-circular fashion. For these, therefore, we can provide only elucidations, supplemented by examples and by axioms\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Barry Smith\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Primitive terms in a highest-level ontology such as BFO are terms which are so basic to our understanding of reality that there is no way of defining them in a non-circular fashion. For these, therefore, we can provide only elucidations, supplemented by examples and by axioms\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000600\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000600","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"elucidation","http__//purl.obolibrary.org/obo/IAO_0000117":"person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Person:Barry Smith","http__//purl.obolibrary.org/obo/IAO_0000600":"Primitive terms in a highest-level ontology such as BFO are terms which are so basic to our understanding of reality that there is no way of defining them in a non-circular fashion. For these, therefore, we can provide only elucidations, supplemented by examples and by axioms","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"elucidation","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000600","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000600","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"elucidation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["elucidation","person:Alan Ruttenberg","Person:Barry Smith","Primitive terms in a highest-level ontology such as BFO are terms which are so basic to our understanding of reality that there is no way of defining them in a non-circular fashion. For these, therefore, we can provide only elucidations, supplemented by examples and by axioms","true"],"shortForm":"IAO_0000600","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000601\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000601\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An axiom associated with a term expressed using natural language\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(nl)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An axiom associated with a term expressed using natural language\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000601\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000601","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has associated axiom(nl)","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000600":"An axiom associated with a term expressed using natural language","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"has associated axiom(nl)","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000601","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000601","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has associated axiom(nl)","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has associated axiom(nl)","Person:Alan Ruttenberg","An axiom associated with a term expressed using natural language","true"],"shortForm":"IAO_0000601","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000602\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000602\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An axiom expressed in first order logic using CLIF syntax\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has associated axiom(fol)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An axiom expressed in first order logic using CLIF syntax\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000602\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000602","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has associated axiom(fol)","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000600":"An axiom expressed in first order logic using CLIF syntax","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"has associated axiom(fol)","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000602","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000602","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has associated axiom(fol)","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has associated axiom(fol)","Person:Alan Ruttenberg","An axiom expressed in first order logic using CLIF syntax","true"],"shortForm":"IAO_0000602","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000603\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000603\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \\\"IAO_0020000-IAO_0020999\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Add as annotation triples in the granting ontology\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is allocated id range\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \\\"IAO_0020000-IAO_0020999\\\"\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Add as annotation triples in the granting ontology\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is allocated id range\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is allocated id range\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is allocated id range\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \\\"IAO_0020000-IAO_0020999\\\"\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000603\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000603","definition":["Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \"IAO_0020000-IAO_0020999\"","Add as annotation triples in the granting ontology"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"is allocated id range","http__//purl.obolibrary.org/obo/IAO_0000115":"Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \"IAO_0020000-IAO_0020999\"","http__//purl.obolibrary.org/obo/IAO_0000117":"PERSON:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Add as annotation triples in the granting ontology","http__//www.w3.org/2000/01/rdf-schema#label":"is allocated id range","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000603","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000603","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is allocated id range","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["is allocated id range","Relates an ontology IRI to an (inclusive) range of IRIs in an OBO name space. The range is give as, e.g. \"IAO_0020000-IAO_0020999\"","PERSON:Alan Ruttenberg","true"],"shortForm":"IAO_0000603","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000604\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000604\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"relates a class of CRID to the date after which further instances should not be made, according to the central authority\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"retired from use as of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"relates a class of CRID to the date after which further instances should not be made, according to the central authority\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"In OWL 2 add AnnotationPropertyRange xsd:dateTimeStamp\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"retired from use as of\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"retired from use as of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"retired from use as of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"relates a class of CRID to the date after which further instances should not be made, according to the central authority\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"In OWL 2 add AnnotationPropertyRange xsd:dateTimeStamp\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000604\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000604","definition":"relates a class of CRID to the date after which further instances should not be made, according to the central authority","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"retired from use as of","http__//purl.obolibrary.org/obo/IAO_0000115":"relates a class of CRID to the date after which further instances should not be made, according to the central authority","http__//purl.obolibrary.org/obo/IAO_0000116":"In OWL 2 add AnnotationPropertyRange xsd:dateTimeStamp","http__//purl.obolibrary.org/obo/IAO_0000117":"Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"retired from use as of","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000604","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000604","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"retired from use as of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["retired from use as of","relates a class of CRID to the date after which further instances should not be made, according to the central authority","In OWL 2 add AnnotationPropertyRange xsd:dateTimeStamp","Alan Ruttenberg","true"],"shortForm":"IAO_0000604","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000700\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000700\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ontology root term\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Nicolas Matentzoglu\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ontology root term\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ontology root term\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has ontology root term\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Nicolas Matentzoglu\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000700\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0000700","definition":"Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has ontology root term","http__//purl.obolibrary.org/obo/IAO_0000115":"Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root.","http__//purl.obolibrary.org/obo/IAO_0000117":"Nicolas Matentzoglu","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has ontology root term","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0000700","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0000700","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has ontology root term","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has ontology root term","Ontology annotation property. Relates an ontology to a term that is a designated root term of the ontology. Display tools like OLS can use terms annotated with this property as the starting point for rendering the ontology class hierarchy. There can be more than one root.","Nicolas Matentzoglu","true"],"shortForm":"IAO_0000700","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0006011\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0006011\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Edges asserting this should be annotated with to record evidence supporting the assertion and its provenance.\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"may be identical to\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"David Osumi-Sutherland\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"#40\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"VFB\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Edges asserting this should be annotated with to record evidence supporting the assertion and its provenance.\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"may be identical to\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"may be identical to\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"may be identical to\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"David Osumi-Sutherland\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"#40\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"VFB\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0006011\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0006011","definition":["A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged.","Edges asserting this should be annotated with to record evidence supporting the assertion and its provenance."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"may be identical to","http__//purl.obolibrary.org/obo/IAO_0000115":"A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged.","http__//purl.obolibrary.org/obo/IAO_0000117":"David Osumi-Sutherland","http__//purl.obolibrary.org/obo/IAO_0000233":"#40","http__//purl.obolibrary.org/obo/IAO_0000234":"VFB","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Edges asserting this should be annotated with to record evidence supporting the assertion and its provenance.","http__//www.w3.org/2000/01/rdf-schema#label":"may be identical to","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0006011","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0006011","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"may be identical to","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["may be identical to","A annotation relationship between two terms in an ontology that may refer to the same (natural) type but where more evidence is required before terms are merged.","David Osumi-Sutherland","#40","VFB","true"],"shortForm":"IAO_0006011","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0006012\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0006012\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scheduled for obsoletion on or after\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Chris Mungall, Jie Zheng\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/geneontology/go-ontology/issues/15532\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/ontology-metadata/issues/32\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GO ontology\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scheduled for obsoletion on or after\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#dateTime\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scheduled for obsoletion on or after\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"scheduled for obsoletion on or after\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Chris Mungall, Jie Zheng\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/geneontology/go-ontology/issues/15532\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"https://github.com/information-artifact-ontology/ontology-metadata/issues/32\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"GO ontology\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0006012\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000234\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ontology term requester\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000234\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0006012","definition":"Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"scheduled for obsoletion on or after","http__//purl.obolibrary.org/obo/IAO_0000115":"Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date.","http__//purl.obolibrary.org/obo/IAO_0000117":"Chris Mungall, Jie Zheng","http__//purl.obolibrary.org/obo/IAO_0000233":["https://github.com/geneontology/go-ontology/issues/15532","https://github.com/information-artifact-ontology/ontology-metadata/issues/32"],"http__//purl.obolibrary.org/obo/IAO_0000234":"GO ontology","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"scheduled for obsoletion on or after","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#dateTime","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0006012","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0006012","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"scheduled for obsoletion on or after","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["scheduled for obsoletion on or after","Used when the class or object is scheduled for obsoletion/deprecation on or after a particular date.","Chris Mungall, Jie Zheng","https://github.com/geneontology/go-ontology/issues/15532","https://github.com/information-artifact-ontology/ontology-metadata/issues/32","GO ontology","true"],"shortForm":"IAO_0006012","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0010000\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0010000\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom id\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A URI that is intended to be unique label for an axiom used for tracking change to the ontology. For an axiom expressed in different languages, each expression is given the same URI\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/iao.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom label\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has axiom id\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A URI that is intended to be unique label for an axiom used for tracking change to the ontology. For an axiom expressed in different languages, each expression is given the same URI\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0010000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"isDefinedBy\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000600\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"elucidation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000600\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0010000","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has axiom id","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000600":"A URI that is intended to be unique label for an axiom used for tracking change to the ontology. For an axiom expressed in different languages, each expression is given the same URI","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/iao.owl","http__//www.w3.org/2000/01/rdf-schema#label":"has axiom label","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0010000","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0010000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has axiom label","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has axiom id","Person:Alan Ruttenberg","A URI that is intended to be unique label for an axiom used for tracking change to the ontology. For an axiom expressed in different languages, each expression is given the same URI","true"],"shortForm":"IAO_0010000","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0100001\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0100001\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Use on obsolete terms, relating the term to another term that can be used as a substitute\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Add as annotation triples in the granting ontology\",\"lang\":\"en\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term replaced by\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Use on obsolete terms, relating the term to another term that can be used as a substitute\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Add as annotation triples in the granting ontology\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term replaced by\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term replaced by\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term replaced by\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Use on obsolete terms, relating the term to another term that can be used as a substitute\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Person:Alan Ruttenberg\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0100001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]}}}","appearsIn":["duo"],"curie":"IAO:0100001","definition":["Use on obsolete terms, relating the term to another term that can be used as a substitute","Add as annotation triples in the granting ontology"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"term replaced by","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"Use on obsolete terms, relating the term to another term that can be used as a substitute","http__//purl.obolibrary.org/obo/IAO_0000117":"Person:Alan Ruttenberg","http__//purl.obolibrary.org/obo/IAO_0000119":"Person:Alan Ruttenberg","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Add as annotation triples in the granting ontology","http__//www.w3.org/2000/01/rdf-schema#label":"term replaced by","id":"duo+property+http://purl.obolibrary.org/obo/IAO_0100001","imported":"true","iri":"http://purl.obolibrary.org/obo/IAO_0100001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"term replaced by","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["term replaced by","Use on obsolete terms, relating the term to another term that can be used as a substitute","Person:Alan Ruttenberg","true"],"shortForm":"IAO_0100001","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0000293\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000293\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The inverse property of is_specified_input_of\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":[{\"type\":[\"literal\"],\"value\":\"has_specified_input\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"see is_input_of example_of_usage\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The inverse property of is_specified_input_of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how \\u0027has participant\\u0027 works.\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Bjoern Peters\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Larry Hunter\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Melanie Coutot\"}],\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/obi.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#equivalentProperty\":{\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/OBI_0000295\",\"isObsolete\":false},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"has_specified_input\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_input\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"see is_input_of example_of_usage\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The inverse property of is_specified_input_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how \\u0027has participant\\u0027 works.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Bjoern Peters\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Larry Hunter\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Melanie Coutot\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0000293\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000295\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_input_of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000295\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0000293","definition":"The inverse property of is_specified_input_of","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000057","directParent":"http://purl.obolibrary.org/obo/RO_0000057","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":["has_specified_input","has_specified_input"],"http__//purl.obolibrary.org/obo/IAO_0000112":"see is_input_of example_of_usage","http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"The inverse property of is_specified_input_of","http__//purl.obolibrary.org/obo/IAO_0000116":"8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how \u0027has participant\u0027 works.","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Bjoern Peters","PERSON: Larry Hunter","PERSON: Melanie Coutot"],"http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/obi.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/OBI_0000011","http__//www.w3.org/2000/01/rdf-schema#label":"has_specified_input","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000057","id":"duo+property+http://purl.obolibrary.org/obo/OBI_0000293","imported":"true","iri":"http://purl.obolibrary.org/obo/OBI_0000293","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has_specified_input","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has_specified_input","has_specified_input","see is_input_of example_of_usage","The inverse property of is_specified_input_of","8/17/09: specified inputs of one process are not necessarily specified inputs of a larger process that it is part of. This is in contrast to how \u0027has participant\u0027 works.","PERSON: Alan Ruttenberg","PERSON: Bjoern Peters","PERSON: Larry Hunter","PERSON: Melanie Coutot","true"],"shortForm":"OBI_0000293","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0000295\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000295\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_input_of\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_input_of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0000295\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0000295","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"is_specified_input_of","id":"duo+property+http://purl.obolibrary.org/obo/OBI_0000295","imported":"true","iri":"http://purl.obolibrary.org/obo/OBI_0000295","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is_specified_input_of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"OBI_0000295","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The inverse property of is_specified_output_of\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":[{\"type\":[\"literal\"],\"value\":\"has_specified_output\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The inverse property of is_specified_output_of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Bjoern Peters\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Larry Hunter\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Melanie Courtot\"}],\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/obi.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"http://www.w3.org/2002/07/owl#equivalentProperty\":{\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"isObsolete\":false},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"has_specified_output\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"The inverse property of is_specified_output_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"PERSON: Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Bjoern Peters\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Larry Hunter\"},{\"type\":[\"literal\"],\"value\":\"PERSON: Melanie Courtot\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0000299\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000312\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000312\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0000299","definition":"The inverse property of is_specified_output_of","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000057","directParent":"http://purl.obolibrary.org/obo/RO_0000057","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":["has_specified_output","has_specified_output"],"http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"The inverse property of is_specified_output_of","http__//purl.obolibrary.org/obo/IAO_0000117":["PERSON: Alan Ruttenberg","PERSON: Bjoern Peters","PERSON: Larry Hunter","PERSON: Melanie Courtot"],"http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/obi.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/OBI_0000011","http__//www.w3.org/2000/01/rdf-schema#label":"has_specified_output","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000057","id":"duo+property+http://purl.obolibrary.org/obo/OBI_0000299","imported":"true","iri":"http://purl.obolibrary.org/obo/OBI_0000299","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has_specified_output","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has_specified_output","has_specified_output","The inverse property of is_specified_output_of","PERSON: Alan Ruttenberg","PERSON: Bjoern Peters","PERSON: Larry Hunter","PERSON: Melanie Courtot","true"],"shortForm":"OBI_0000299","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OBI_0000312\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000312\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":[{\"type\":[\"literal\"],\"value\":\"is_specified_output_of\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000122\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000117\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON:Bjoern Peters\"}],\"http://purl.obolibrary.org/obo/IAO_0000412\":\"http://purl.obolibrary.org/obo/obi.owl\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/OBI_0000011\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"http://www.w3.org/2002/07/owl#equivalentProperty\":{\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/OBI_0000299\",\"isObsolete\":false},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"is_specified_output_of\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is_specified_output_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Alan Ruttenberg\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"PERSON:Bjoern Peters\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OBI_0000312\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000117\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term editor\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000117\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000122\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"ready for release\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000122\"},\"type\":[\"individual\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000056\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000056\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000412\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"imported from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000412\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000011\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"planned process\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000011\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/OBI_0000299\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_specified_output\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OBI:0000299\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OBI:0000312","definition":"A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000056","directParent":"http://purl.obolibrary.org/obo/RO_0000056","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":["is_specified_output_of","is_specified_output_of"],"http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000122","http__//purl.obolibrary.org/obo/IAO_0000115":"A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.","http__//purl.obolibrary.org/obo/IAO_0000117":["Alan Ruttenberg","PERSON:Bjoern Peters"],"http__//purl.obolibrary.org/obo/IAO_0000412":"http://purl.obolibrary.org/obo/obi.owl","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"is_specified_output_of","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/OBI_0000011","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000056","id":"duo+property+http://purl.obolibrary.org/obo/OBI_0000312","imported":"true","iri":"http://purl.obolibrary.org/obo/OBI_0000312","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is_specified_output_of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["is_specified_output_of","is_specified_output_of","A relation between a planned process and a continuant participating in that process. The presence of the continuant at the end of the process is explicitly specified in the objective specification which the process realizes the concretization of.","Alan Ruttenberg","PERSON:Bjoern Peters","true"],"shortForm":"OBI_0000312","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OMO_0001001\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OMO:0001001\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"OBO Operations call\"},\"http://www.geneontology.org/formats/oboInOwl#created_by\":\"http://orcid.org/0000-0001-5208-3432\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"logical characteristic of object property\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"logical characteristic of object property\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.\"},{\"type\":[\"literal\"],\"value\":\"OBO Operations call\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OMO_0001001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#created_by\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"created_by\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"created:by\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OMO:0001001","definition":"This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.","http__//purl.obolibrary.org/obo/IAO_0000119":"OBO Operations call","http__//www.geneontology.org/formats/oboInOwl#created_by":"http://orcid.org/0000-0001-5208-3432","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"logical characteristic of object property","id":"duo+property+http://purl.obolibrary.org/obo/OMO_0001001","imported":"true","iri":"http://purl.obolibrary.org/obo/OMO_0001001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"logical characteristic of object property","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["This is an annotation used on an object property to indicate a logical characterstic beyond what is possible in OWL.","OBO Operations call","true"],"shortForm":"OMO_0001001","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OMO_0002000\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OMO:0002000\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"value\":\"\\u0027part disjoint with\\u0027 \\u0027defined by construct\\u0027 \\\"\\\"\\\"\\n PREFIX owl: \\u003chttp://www.w3.org/2002/07/owl#\\u003e\\n PREFIX : \\u003chttp://example.org/\\n CONSTRUCT {\\n [\\n a owl:Restriction ;\\n owl:onProperty :part_of ;\\n owl:someValuesFrom ?a ;\\n owl:disjointWith [\\n a owl:Restriction ;\\n owl:onProperty :part_of ;\\n owl:someValuesFrom ?b\\n ]\\n ]\\n }\\n WHERE {\\n ?a :part_disjoint_with ?b .\\n }\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.\"},\"http://purl.obolibrary.org/obo/IAO_0000233\":\"https://github.com/ontodev/robot/issues/963\",\"http://purl.org/dc/elements/1.1/contributor\":[\"https://orcid.org/0000-0002-7356-1779\",\"https://orcid.org/0000-0002-8688-6599\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"defined by construct\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"defined by construct\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"\\u0027part disjoint with\\u0027 \\u0027defined by construct\\u0027 \\\"\\\"\\\"\\n PREFIX owl: \\u003chttp://www.w3.org/2002/07/owl#\\u003e\\n PREFIX : \\u003chttp://example.org/\\n CONSTRUCT {\\n [\\n a owl:Restriction ;\\n owl:onProperty :part_of ;\\n owl:someValuesFrom ?a ;\\n owl:disjointWith [\\n a owl:Restriction ;\\n owl:onProperty :part_of ;\\n owl:someValuesFrom ?b\\n ]\\n ]\\n }\\n WHERE {\\n ?a :part_disjoint_with ?b .\\n }\"},{\"type\":[\"literal\"],\"value\":\"Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OMO_0002000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"https://orcid.org/0000-0002-8688-6599\":{\"url\":\"https://orcid.org/0000-0002-8688-6599\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-8688-6599\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000233\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"term tracker item\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000233\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"https://orcid.org/0000-0002-7356-1779\":{\"url\":\"https://orcid.org/0000-0002-7356-1779\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"orcid:0000-0002-7356-1779\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/elements/1.1/contributor\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"contributor\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"contributor\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"OMO:0002000","definition":"Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"\u0027part disjoint with\u0027 \u0027defined by construct\u0027 \"\"\"\n PREFIX owl: \u003chttp://www.w3.org/2002/07/owl#\u003e\n PREFIX : \u003chttp://example.org/\n CONSTRUCT {\n [\n a owl:Restriction ;\n owl:onProperty :part_of ;\n owl:someValuesFrom ?a ;\n owl:disjointWith [\n a owl:Restriction ;\n owl:onProperty :part_of ;\n owl:someValuesFrom ?b\n ]\n ]\n }\n WHERE {\n ?a :part_disjoint_with ?b .\n }","http__//purl.obolibrary.org/obo/IAO_0000115":"Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.","http__//purl.obolibrary.org/obo/IAO_0000233":"https://github.com/ontodev/robot/issues/963","http__//purl.org/dc/elements/1.1/contributor":["https://orcid.org/0000-0002-7356-1779","https://orcid.org/0000-0002-8688-6599"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"defined by construct","id":"duo+property+http://purl.obolibrary.org/obo/OMO_0002000","imported":"true","iri":"http://purl.obolibrary.org/obo/OMO_0002000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"defined by construct","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["\u0027part disjoint with\u0027 \u0027defined by construct\u0027 \"\"\"\n PREFIX owl: \u003chttp://www.w3.org/2002/07/owl#\u003e\n PREFIX : \u003chttp://example.org/\n CONSTRUCT {\n [\n a owl:Restriction ;\n owl:onProperty :part_of ;\n owl:someValuesFrom ?a ;\n owl:disjointWith [\n a owl:Restriction ;\n owl:onProperty :part_of ;\n owl:someValuesFrom ?b\n ]\n ]\n }\n WHERE {\n ?a :part_disjoint_with ?b .\n }","Links an annotation property to a SPARQL CONSTRUCT query which is meant to provide semantics for a shortcut relation.","true"],"shortForm":"OMO_0002000","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Note that this relation was previously called \\\"inheres in\\\", but was changed to be called \\\"characteristic of\\\" because BFO2 uses \\\"inheres in\\\" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing.\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inheres in\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this fragility is a characteristic of this vase\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this red color is a characteristic of this apple\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inheres_in\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#FunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Note that this relation was previously called \\\"inheres in\\\", but was changed to be called \\\"characteristic of\\\" because BFO2 uses \\\"inheres in\\\" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inheres in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this fragility is a characteristic of this vase\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this red color is a characteristic of this apple\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"inheres_in\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000052\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000052","definition":["a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","Note that this relation was previously called \"inheres in\", but was changed to be called \"characteristic of\" because BFO2 uses \"inheres in\" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"inheres in","http__//purl.obolibrary.org/obo/IAO_0000112":["this fragility is a characteristic of this vase","this red color is a characteristic of this apple"],"http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","http__//purl.obolibrary.org/obo/IAO_0000118":"inheres_in","http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#FunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#comment":"Note that this relation was previously called \"inheres in\", but was changed to be called \"characteristic of\" because BFO2 uses \"inheres in\" in a more restricted fashion. This relation differs from BFO2:inheres_in in two respects: (1) it does not impose a range constraint, and thus it allows qualities of processes, as well as of information entities, whereas BFO2 restricts inheres_in to only apply to independent continuants (2) it is declared functional, i.e. something can only be a characteristic of one thing.","http__//www.w3.org/2000/01/rdf-schema#label":"characteristic of","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000053","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000052","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000052","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"characteristic of","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["inheres in","this fragility is a characteristic of this vase","this red color is a characteristic of this apple","a relation between a specifically dependent continuant (the characteristic) and any other entity (the bearer), in which the characteristic depends on the bearer for its existence.","inheres_in","true"],"shortForm":"RO_0000052","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of characteristic_of\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bearer of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this apple is bearer of this red color\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this vase is bearer of this fragility\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of characteristic_of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bearer_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is bearer of\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#InverseFunctionalProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bearer of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this apple is bearer of this red color\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this vase is bearer of this fragility\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Inverse of characteristic_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"bearer_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is bearer of\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000053\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000053","definition":"Inverse of characteristic_of","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"bearer of","http__//purl.obolibrary.org/obo/IAO_0000112":["this apple is bearer of this red color","this vase is bearer of this fragility"],"http__//purl.obolibrary.org/obo/IAO_0000115":"Inverse of characteristic_of","http__//purl.obolibrary.org/obo/IAO_0000116":"A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.","http__//purl.obolibrary.org/obo/IAO_0000118":["bearer_of","is bearer of"],"http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#InverseFunctionalProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"has characteristic","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000020","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000052","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000053","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000053","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has characteristic","numDescendants":"4.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["bearer of","this apple is bearer of this red color","this vase is bearer of this fragility","Inverse of characteristic_of","A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist.","bearer_of","is bearer of","true"],"shortForm":"RO_0000053","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000056\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a continuant and a process, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this blood clot participates in this blood coagulation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this input material (or this output material) participates in this process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigator participates in this investigation\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a continuant and a process, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates_in\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this blood clot participates in this blood coagulation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this input material (or this output material) participates in this process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigator participates in this investigation\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a continuant and a process, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates_in\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000056\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000057\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000056","definition":"a relation between a continuant and a process, in which the continuant is somehow involved in the process","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"participates in","http__//purl.obolibrary.org/obo/IAO_0000112":["this blood clot participates in this blood coagulation","this input material (or this output material) participates in this process","this investigator participates in this investigation"],"http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a continuant and a process, in which the continuant is somehow involved in the process","http__//purl.obolibrary.org/obo/IAO_0000118":"participates_in","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2000/01/rdf-schema#label":"participates in","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000057","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000056","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000056","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"participates in","numDescendants":"1.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["participates in","this blood clot participates in this blood coagulation","this input material (or this output material) participates in this process","this investigator participates in this investigation","a relation between a continuant and a process, in which the continuant is somehow involved in the process","participates_in","true"],"shortForm":"RO_0000056","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000057\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000057\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a process and a continuant, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this blood coagulation has participant this blood clot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigation has participant this investigator\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this process has participant this input material (or this output material)\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a process and a continuant, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_participant\",\"lang\":\"en\"},\"http://purl.org/dc/elements/1.1/source\":{\"type\":[\"literal\"],\"value\":\"http://www.obofoundry.org/ro/#OBO_REL:has_participant\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000056\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has participant\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this blood coagulation has participant this blood clot\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigation has participant this investigator\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this process has participant this input material (or this output material)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a process and a continuant, in which the continuant is somehow involved in the process\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_participant\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"http://www.obofoundry.org/ro/#OBO_REL:has_participant\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000057\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000002\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"occurrent\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000003\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000056\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"participates in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000056\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/elements/1.1/source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000057","definition":"a relation between a process and a continuant, in which the continuant is somehow involved in the process","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"has participant","http__//purl.obolibrary.org/obo/IAO_0000112":["this blood coagulation has participant this blood clot","this investigation has participant this investigator","this process has participant this input material (or this output material)"],"http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a process and a continuant, in which the continuant is somehow involved in the process","http__//purl.obolibrary.org/obo/IAO_0000116":"Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.","http__//purl.obolibrary.org/obo/IAO_0000118":"has_participant","http__//purl.org/dc/elements/1.1/source":"http://www.obofoundry.org/ro/#OBO_REL:has_participant","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000003","http__//www.w3.org/2000/01/rdf-schema#label":"has participant","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000002","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000056","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000057","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000057","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has participant","numDescendants":"2.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has participant","this blood coagulation has participant this blood clot","this investigation has participant this investigator","this process has participant this input material (or this output material)","a relation between a process and a continuant, in which the continuant is somehow involved in the process","Has_participant is a primitive instance-level relation between a process, a continuant, and a time at which the continuant participates in some way in the process. The relation obtains, for example, when this particular process of oxygen exchange across this particular alveolar membrane has_participant this particular sample of hemoglobin at this particular time.","has_participant","http://www.obofoundry.org/ro/#OBO_REL:has_participant","true"],"shortForm":"RO_0000057","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000058\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000058\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is concretized as\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000059\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is concretized as\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000058\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000059\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"concretizes\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000059\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000058","definition":"A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":["A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).","An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."],"http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000031","http__//www.w3.org/2000/01/rdf-schema#label":"is concretized as","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000020","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000059","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000058","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000058","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"is concretized as","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The journal article (a generically dependent continuant) is concretized as the quality (a specifically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).","An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).","A relationship between a generically dependent continuant and a specifically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. A generically dependent continuant may be concretized as multiple specifically dependent continuants.","true"],"shortForm":"RO_0000058","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000059\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000059\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant.\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant.\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"concretizes\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000031\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000058\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"concretizes\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant.\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000059\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"generically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000031\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000058\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is concretized as\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000058\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"specifically dependent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000020\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000059","definition":"A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":["A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).","An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process)."],"http__//purl.obolibrary.org/obo/IAO_0000115":"A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000020","http__//www.w3.org/2000/01/rdf-schema#label":"concretizes","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000031","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000058","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000059","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000059","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"concretizes","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["A journal article is an information artifact that inheres in some number of printed journals. For each copy of the printed journal there is some quality that carries the journal article, such as a pattern of ink. The quality (a specifically dependent continuant) concretizes the journal article (a generically dependent continuant), and both depend on that copy of the printed journal (an independent continuant).","An investigator reads a protocol and forms a plan to carry out an assay. The plan is a realizable entity (a specifically dependent continuant) that concretizes the protocol (a generically dependent continuant), and both depend on the investigator (an independent continuant). The plan is then realized by the assay (a process).","A relationship between a specifically dependent continuant and a generically dependent continuant, in which the generically dependent continuant depends on some independent continuant in virtue of the fact that the specifically dependent continuant also depends on that same independent continuant. Multiple specifically dependent continuants can concretize the same generically dependent continuant.","true"],"shortForm":"RO_0000059","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000079\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000079\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this catalysis function is a function of this enzyme\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is function of\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.\"},\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000034\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000085\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this catalysis function is a function of this enzyme\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is function of\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000079\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000034\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000034\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000085\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has function\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000085\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000079","definition":["a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":"http://purl.obolibrary.org/obo/RO_0000052","directParent":"http://purl.obolibrary.org/obo/RO_0000052","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"this catalysis function is a function of this enzyme","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.","http__//purl.obolibrary.org/obo/IAO_0000118":["function_of","is function of"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000034","http__//www.w3.org/2000/01/rdf-schema#label":"function of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000052","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000085","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000079","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000079","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"function of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["this catalysis function is a function of this enzyme","a relation between a function and an independent continuant (the bearer), in which the function specifically depends on the bearer for its existence","A function inheres in its bearer at all times for which the function exists, however the function need not be realized at all the times that the function exists.","function_of","is function of","true"],"shortForm":"RO_0000079","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000080\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000080\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this red color is a quality of this apple\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A quality inheres in its bearer at all times for which the quality exists.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality_of\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this red color is a quality of this apple\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A quality inheres in its bearer at all times for which the quality exists.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is quality of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality_of\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000080\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000086\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000080","definition":["a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":"http://purl.obolibrary.org/obo/RO_0000052","directParent":"http://purl.obolibrary.org/obo/RO_0000052","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"this red color is a quality of this apple","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A quality inheres in its bearer at all times for which the quality exists.","http__//purl.obolibrary.org/obo/IAO_0000118":["is quality of","quality_of"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","http__//www.w3.org/2000/01/rdf-schema#label":"quality of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000052","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000086","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000080","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000080","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"quality of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["this red color is a quality of this apple","a relation between a quality and an independent continuant (the bearer), in which the quality specifically depends on the bearer for its existence","A quality inheres in its bearer at all times for which the quality exists.","is quality of","quality_of","true"],"shortForm":"RO_0000080","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000081\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000081\"},\"definition\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigator role is a role of this person\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is role of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role_of\",\"lang\":\"en\"}],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000087\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this investigator role is a role of this person\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is role of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role_of\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000081\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000087\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has role\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000087\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000081","definition":["a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020."],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":"http://purl.obolibrary.org/obo/RO_0000052","directParent":"http://purl.obolibrary.org/obo/RO_0000052","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"this investigator role is a role of this person","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.","http__//purl.obolibrary.org/obo/IAO_0000118":["is role of","role_of"],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","http__//www.w3.org/2000/01/rdf-schema#label":"role of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000052","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000087","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000081","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000081","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"role of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["this investigator role is a role of this person","a relation between a role and an independent continuant (the bearer), in which the role specifically depends on the bearer for its existence","A role inheres in its bearer at all times for which the role exists, however the role need not be realized at all the times that the role exists.","is role of","role_of","true"],"shortForm":"RO_0000081","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000085\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000085\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_function\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has function\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000034\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000079\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has function\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_function\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000085\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000034\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000034\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000079\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"function of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000079\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000085","definition":"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000053","directParent":"http://purl.obolibrary.org/obo/RO_0000053","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.","http__//purl.obolibrary.org/obo/IAO_0000118":"has_function","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"has function","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000034","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000053","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000079","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000085","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000085","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has function","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["this enzyme has function this catalysis function (more colloquially: this enzyme has this catalysis function)","a relation between an independent continuant (the bearer) and a function, in which the function specifically depends on the bearer for its existence","A bearer can have many functions, and its functions can exist for different periods of time, but none of its functions can exist when the bearer does not exist. A function need not be realized at all the times that the function exists.","has_function","true"],"shortForm":"RO_0000085","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000086\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000086\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this apple has quality this red color\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_quality\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000080\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has quality\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this apple has quality this red color\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_quality\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000086\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000019\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000080\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"quality of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000080\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000086","definition":"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000053","directParent":"http://purl.obolibrary.org/obo/RO_0000053","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"this apple has quality this red color","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.","http__//purl.obolibrary.org/obo/IAO_0000118":"has_quality","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"has quality","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000019","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000053","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000080","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000086","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000086","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has quality","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["this apple has quality this red color","a relation between an independent continuant (the bearer) and a quality, in which the quality specifically depends on the bearer for its existence","A bearer can have many qualities, and its qualities can exist for different periods of time, but none of its qualities can exist when the bearer does not exist.","has_quality","true"],"shortForm":"RO_0000086","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000087\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000087\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this person has role this investigator role (more colloquially: this person has this role of investigator)\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_role\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has role\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000023\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000081\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has role\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this person has role this investigator role (more colloquially: this person has this role of investigator)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_role\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000087\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000081\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000081\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000023\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"role\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000023\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000087","definition":"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000053","directParent":"http://purl.obolibrary.org/obo/RO_0000053","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"this person has role this investigator role (more colloquially: this person has this role of investigator)","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","http__//purl.obolibrary.org/obo/IAO_0000116":"A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.","http__//purl.obolibrary.org/obo/IAO_0000118":"has_role","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"has role","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000023","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000053","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000081","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000087","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000087","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has role","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["this person has role this investigator role (more colloquially: this person has this role of investigator)","a relation between an independent continuant (the bearer) and a role, in which the role specifically depends on the bearer for its existence","A bearer can have many roles, and its roles can exist for different periods of time, but none of its roles can exist when the bearer does not exist. A role need not be realized at all the times that the role exists.","has_role","true"],"shortForm":"RO_0000087","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000091\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000091\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has disposition\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000016\",\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000053\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000092\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has disposition\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000091\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0000092\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000092\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000016\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000016\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000053\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has characteristic\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000053\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000091","definition":"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/RO_0000053","directParent":"http://purl.obolibrary.org/obo/RO_0000053","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000004","http__//www.w3.org/2000/01/rdf-schema#label":"has disposition","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000016","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000053","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000092","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000091","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000091","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has disposition","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["a relation between an independent continuant (the bearer) and a disposition, in which the disposition specifically depends on the bearer for its existence","true"],"shortForm":"RO_0000091","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0000092\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000092\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"directParent\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/RO_0000052\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0000091\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"disposition of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0000092\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0000091\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has disposition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000091\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0000052\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"characteristic of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0000052\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0000092","definition":"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":"http://purl.obolibrary.org/obo/RO_0000052","directParent":"http://purl.obolibrary.org/obo/RO_0000052","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"This relation is modeled after the BFO relation of the same name which was in BFO2, but is used in a more restricted sense - specifically, we model this relation as functional (inherited from characteristic-of). Note that this relation is now removed from BFO2020.","http__//www.w3.org/2000/01/rdf-schema#label":"disposition of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/RO_0000052","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0000091","id":"duo+property+http://purl.obolibrary.org/obo/RO_0000092","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0000092","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disposition of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"RO_0000092","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0001000\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001000\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this cell derives from this parent cell (cell division)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this nucleus derives from this parent nucleus (nuclear division)\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is a very general relation. More specific relations are preferred when applicable, such as \\u0027directly develops from\\u0027.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives_from\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives from\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0001001\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives from\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this cell derives from this parent cell (cell division)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this nucleus derives from this parent nucleus (nuclear division)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is a very general relation. More specific relations are preferred when applicable, such as \\u0027directly develops from\\u0027.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives_from\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0001000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0001001\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives into\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001001\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0001000","definition":"a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":["this cell derives from this parent cell (cell division)","this nucleus derives from this parent nucleus (nuclear division)"],"http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","http__//purl.obolibrary.org/obo/IAO_0000116":"This is a very general relation. More specific relations are preferred when applicable, such as \u0027directly develops from\u0027.","http__//purl.obolibrary.org/obo/IAO_0000118":"derives_from","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"derives from","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0001001","id":"duo+property+http://purl.obolibrary.org/obo/RO_0001000","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0001000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"derives from","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["this cell derives from this parent cell (cell division)","this nucleus derives from this parent nucleus (nuclear division)","a relation between two distinct material entities, the new entity and the old entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","This is a very general relation. More specific relations are preferred when applicable, such as \u0027directly develops from\u0027.","derives_from","true"],"shortForm":"RO_0001000","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0001001\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001001\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this parent cell derives into this cell (cell division)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this parent nucleus derives into this nucleus (nuclear division)\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000114\":\"http://purl.obolibrary.org/obo/IAO_0000125\",\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is a very general relation. More specific relations are preferred when applicable, such as \\u0027directly develops into\\u0027. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking \\u0027derives from\\u0027 rather than the forward-looking \\u0027derives into\\u0027.\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives_into\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives into\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0001000\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives into\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this parent cell derives into this cell (cell division)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this parent nucleus derives into this nucleus (nuclear division)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"This is a very general relation. More specific relations are preferred when applicable, such as \\u0027directly develops into\\u0027. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking \\u0027derives from\\u0027 rather than the forward-looking \\u0027derives into\\u0027.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives_into\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0001001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0001000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"derives from\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001000\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000114\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has curation status\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000114\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000125\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"pending final vetting\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000125\"},\"type\":[\"individual\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0001001","definition":"a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":["this parent cell derives into this cell (cell division)","this parent nucleus derives into this nucleus (nuclear division)"],"http__//purl.obolibrary.org/obo/IAO_0000114":"http://purl.obolibrary.org/obo/IAO_0000125","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","http__//purl.obolibrary.org/obo/IAO_0000116":"This is a very general relation. More specific relations are preferred when applicable, such as \u0027directly develops into\u0027. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking \u0027derives from\u0027 rather than the forward-looking \u0027derives into\u0027.","http__//purl.obolibrary.org/obo/IAO_0000118":"derives_into","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"derives into","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0001000","id":"duo+property+http://purl.obolibrary.org/obo/RO_0001001","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0001001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"derives into","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["this parent cell derives into this cell (cell division)","this parent nucleus derives into this nucleus (nuclear division)","a relation between two distinct material entities, the old entity and the new entity, in which the new entity begins to exist when the old entity ceases to exist, and the new entity inherits the significant portion of the matter of the old entity","This is a very general relation. More specific relations are preferred when applicable, such as \u0027directly develops into\u0027. To avoid making statements about a future that may not come to pass, it is often better to use the backward-looking \u0027derives from\u0027 rather than the forward-looking \u0027derives into\u0027.","derives_into","true"],"shortForm":"RO_0001001","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0001015\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001015\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two independent continuants, the location and the target, in which the target is entirely within the location\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is location of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my head is the location of my brain\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this cage is the location of this rat\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two independent continuants, the location and the target, in which the target is entirely within the location\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"location_of\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"location of\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0001025\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"location of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is location of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my head is the location of my brain\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this cage is the location of this rat\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two independent continuants, the location and the target, in which the target is entirely within the location\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"location_of\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0001015\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://purl.obolibrary.org/obo/RO_0001025\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"located in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001025\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0001015","definition":"a relation between two independent continuants, the location and the target, in which the target is entirely within the location","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"is location of","http__//purl.obolibrary.org/obo/IAO_0000112":["my head is the location of my brain","this cage is the location of this rat"],"http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between two independent continuants, the location and the target, in which the target is entirely within the location","http__//purl.obolibrary.org/obo/IAO_0000116":"Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","http__//purl.obolibrary.org/obo/IAO_0000118":"location_of","http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"location of","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0001025","id":"duo+property+http://purl.obolibrary.org/obo/RO_0001015","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0001015","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"location of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["is location of","my head is the location of my brain","this cage is the location of this rat","a relation between two independent continuants, the location and the target, in which the target is entirely within the location","Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","location_of","true"],"shortForm":"RO_0001015","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0001025\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001025\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two independent continuants, the target and the location, in which the target is entirely within the location\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"located in\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my brain is located in my head\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this rat is located in this cage\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two independent continuants, the target and the location, in which the target is entirely within the location\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"located_in\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://purl.org/dc/elements/1.1/source\":{\"type\":[\"literal\"],\"value\":\"http://www.obofoundry.org/ro/#OBO_REL:located_in\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#domain\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"This is redundant with the more specific \\u0027independent and not spatial region\\u0027 constraint. We leave in the redundant axiom for use with reasoners that do not use negation.\"}}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#complementOf\":\"http://purl.obolibrary.org/obo/BFO_0000006\"}]}],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"located in\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"axioms\":[{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"type\":[\"literal\"],\"value\":\"This is redundant with the more specific \\u0027independent and not spatial region\\u0027 constraint. We leave in the redundant axiom for use with reasoners that do not use negation.\"}}]},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/BFO_0000004\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#complementOf\":\"http://purl.obolibrary.org/obo/BFO_0000006\"}]}],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0001015\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"located in\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"located in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my brain is located in my head\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this rat is located in this cage\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between two independent continuants, the target and the location, in which the target is entirely within the location\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"located_in\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"http://www.obofoundry.org/ro/#OBO_REL:located_in\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0001025\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor preferred term\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"independent continuant\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000004\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000006\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"spatial region\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000006\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://purl.obolibrary.org/obo/RO_0001015\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"location of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001015\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.org/dc/elements/1.1/source\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"source\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"source\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0001025","definition":"a relation between two independent continuants, the target and the location, in which the target is entirely within the location","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":"located in","http__//purl.obolibrary.org/obo/IAO_0000112":["my brain is located in my head","this rat is located in this cage"],"http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between two independent continuants, the target and the location, in which the target is entirely within the location","http__//purl.obolibrary.org/obo/IAO_0000116":["Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus","Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"],"http__//purl.obolibrary.org/obo/IAO_0000118":"located_in","http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//purl.org/dc/elements/1.1/source":"http://www.obofoundry.org/ro/#OBO_REL:located_in","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#domain":["http://purl.obolibrary.org/obo/BFO_0000004"],"http__//www.w3.org/2000/01/rdf-schema#label":"located in","http__//www.w3.org/2000/01/rdf-schema#range":["http://purl.obolibrary.org/obo/BFO_0000004"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0001015","id":"duo+property+http://purl.obolibrary.org/obo/RO_0001025","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0001025","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"located in","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["located in","my brain is located in my head","this rat is located in this cage","a relation between two independent continuants, the target and the location, in which the target is entirely within the location","Location as a relation between instances: The primitive instance-level relation c located_in r at t reflects the fact that each continuant is at any given time associated with exactly one spatial region, namely its exact location. Following we can use this relation to define a further instance-level location relation - not between a continuant and the region which it exactly occupies, but rather between one continuant and another. c is located in c1, in this sense, whenever the spatial region occupied by c is part_of the spatial region occupied by c1. Note that this relation comprehends both the relation of exact location between one continuant and another which obtains when r and r1 are identical (for example, when a portion of fluid exactly fills a cavity), as well as those sorts of inexact location relations which obtain, for example, between brain and head or between ovum and uterus","Most location relations will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","located_in","http://www.obofoundry.org/ro/#OBO_REL:located_in","true"],"shortForm":"RO_0001025","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0001900\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0001900\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0001900","definition":"An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#label":"temporal interpretation","id":"duo+property+http://purl.obolibrary.org/obo/RO_0001900","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0001900","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"temporal interpretation","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["An assertion that holds between an OWL Object Property and a temporal interpretation that elucidates how OWL Class Axioms that use this property are to be interpreted in a temporal context.","true"],"shortForm":"RO_0001900","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002000\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002000\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the surface of my skin is a 2D boundary of my body\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2D_boundary_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"boundary of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is 2D boundary of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is boundary of\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2D boundary of\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2D boundary of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"the surface of my skin is a 2D boundary of my body\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2D_boundary_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"boundary of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is 2D boundary of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is boundary of\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002000\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002002\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has 2D boundary\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002002\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0002000","definition":"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"the surface of my skin is a 2D boundary of my body","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","http__//purl.obolibrary.org/obo/IAO_0000116":["A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.","Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."],"http__//purl.obolibrary.org/obo/IAO_0000118":["2D_boundary_of","boundary of","is 2D boundary of","is boundary of"],"http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"2D boundary of","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002002","id":"duo+property+http://purl.obolibrary.org/obo/RO_0002000","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0002000","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"2D boundary of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["the surface of my skin is a 2D boundary of my body","a relation between a 2D immaterial entity (the boundary) and a material entity, in which the boundary delimits the material entity","A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.","Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.","2D_boundary_of","boundary of","is 2D boundary of","is boundary of","true"],"shortForm":"RO_0002000","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002002\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002002\"},\"definition\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity\",\"lang\":\"en\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my body has 2D boundary the surface of my skin\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity\",\"lang\":\"en\"},\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has boundary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_2D_boundary\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#domain\":\"http://purl.obolibrary.org/obo/BFO_0000040\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has 2D boundary\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://purl.obolibrary.org/obo/BFO_0000141\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002000\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has 2D boundary\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my body has 2D boundary the surface of my skin\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has boundary\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has_2D_boundary\",\"lang\":\"en\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"editor note\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0002000\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2D boundary of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002000\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://purl.obolibrary.org/obo/BFO_0000040\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"material entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000040\"},\"type\":[\"class\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000141\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"immaterial entity\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000141\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0002002","definition":"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"my body has 2D boundary the surface of my skin","http__//purl.obolibrary.org/obo/IAO_0000115":"a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","http__//purl.obolibrary.org/obo/IAO_0000116":["A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.","Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape."],"http__//purl.obolibrary.org/obo/IAO_0000118":["has boundary","has_2D_boundary"],"http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#domain":"http://purl.obolibrary.org/obo/BFO_0000040","http__//www.w3.org/2000/01/rdf-schema#label":"has 2D boundary","http__//www.w3.org/2000/01/rdf-schema#range":"http://purl.obolibrary.org/obo/BFO_0000141","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002000","id":"duo+property+http://purl.obolibrary.org/obo/RO_0002002","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0002002","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has 2D boundary","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["my body has 2D boundary the surface of my skin","a relation between a material entity and a 2D immaterial entity (the boundary), in which the boundary delimits the material entity","A 2D boundary may have holes and gaps, but it must be a single connected entity, not an aggregate of several disconnected parts.","Although the boundary is two-dimensional, it exists in three-dimensional space and thus has a 3D shape.","has boundary","has_2D_boundary","true"],"shortForm":"RO_0002002","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002350\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002350\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"is member of is a mereological relation between a item and a collection.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"type\":[\"literal\"],\"value\":\"An organism that is a member of a population of organisms\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"is member of is a mereological relation between a item and a collection.\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"value\":\"is member of\"},{\"type\":[\"literal\"],\"value\":\"member part of\"}],\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"SIO\"},\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"member of\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002351\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"member of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"An organism that is a member of a population of organisms\"},{\"type\":[\"literal\"],\"value\":\"is member of is a mereological relation between a item and a collection.\"},{\"type\":[\"literal\"],\"value\":\"is member of\"},{\"type\":[\"literal\"],\"value\":\"member part of\"},{\"type\":[\"literal\"],\"value\":\"SIO\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002350\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"example of usage\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"alternative label\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://purl.obolibrary.org/obo/RO_0002351\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has member\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002351\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0002350","definition":"is member of is a mereological relation between a item and a collection.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000050","directParent":"http://purl.obolibrary.org/obo/BFO_0000050","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000112":"An organism that is a member of a population of organisms","http__//purl.obolibrary.org/obo/IAO_0000115":"is member of is a mereological relation between a item and a collection.","http__//purl.obolibrary.org/obo/IAO_0000118":["is member of","member part of"],"http__//purl.obolibrary.org/obo/IAO_0000119":"SIO","http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"member of","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000050","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002351","id":"duo+property+http://purl.obolibrary.org/obo/RO_0002350","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0002350","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"member of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["An organism that is a member of a population of organisms","is member of is a mereological relation between a item and a collection.","is member of","member part of","SIO","true"],"shortForm":"RO_0002350","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002351\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002351\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"has member is a mereological relation between a collection and an item.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"directParent\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"has member is a mereological relation between a collection and an item.\"},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"type\":[\"literal\"],\"value\":\"SIO\"},\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#IrreflexiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has member\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subPropertyOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/RO_0002350\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has member\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"has member is a mereological relation between a collection and an item.\"},{\"type\":[\"literal\"],\"value\":\"SIO\"},true],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002351\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"has part\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000119\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"definition source\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000119\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"temporal interpretation\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://purl.obolibrary.org/obo/RO_0002350\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"member of\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002350\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0002351","definition":"has member is a mereological relation between a collection and an item.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/BFO_0000051","directParent":"http://purl.obolibrary.org/obo/BFO_0000051","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000115":"has member is a mereological relation between a collection and an item.","http__//purl.obolibrary.org/obo/IAO_0000119":"SIO","http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#IrreflexiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"has member","http__//www.w3.org/2000/01/rdf-schema#subPropertyOf":"http://purl.obolibrary.org/obo/BFO_0000051","http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/RO_0002350","id":"duo+property+http://purl.obolibrary.org/obo/RO_0002351","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0002351","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"has member","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":["has member is a mereological relation between a collection and an item.","SIO","true"],"shortForm":"RO_0002351","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004096\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004096\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"DEPRECATED This relation is similar to but different in important respects to the characteristic-of relation. See comments on that relation for more information.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"DEPRECATED This relation is similar to but different in important respects to the characteristic-of relation. See comments on that relation for more information.\"},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DEPRECATED inheres in\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":true,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DEPRECATED inheres in\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004096\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"comment\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0004096","definition":"DEPRECATED This relation is similar to but different in important respects to the characteristic-of relation. See comments on that relation for more information.","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"DEPRECATED This relation is similar to but different in important respects to the characteristic-of relation. See comments on that relation for more information.","http__//www.w3.org/2000/01/rdf-schema#label":"DEPRECATED inheres in","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+property+http://purl.obolibrary.org/obo/RO_0004096","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0004096","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"DEPRECATED inheres in","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"RO_0004096","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0004097\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0004097\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DEPRECATED bearer of\",\"lang\":\"en\"},\"http://www.w3.org/2002/07/owl#deprecated\":true,\"imported\":true,\"isObsolete\":true,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"DEPRECATED bearer of\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0004097\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{\"http://www.w3.org/2000/01/rdf-schema#label\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"label\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"label\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["duo"],"curie":"RO:0004097","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#label":"DEPRECATED bearer of","http__//www.w3.org/2002/07/owl#deprecated":"true","id":"duo+property+http://purl.obolibrary.org/obo/RO_0004097","imported":"true","iri":"http://purl.obolibrary.org/obo/RO_0004097","isDefiningOntology":"false","isObsolete":"true","isPreferredRoot":"false","label":"DEPRECATED bearer of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"RO_0004097","type":["property","objectProperty","entity"]} {"_json":"{\"iri\":\"http://purl.org/dc/elements/1.1/contributor\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"contributor\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"contributor\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"contributor\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{}}","appearsIn":["duo"],"curie":"contributor","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"duo+property+http://purl.org/dc/elements/1.1/contributor","imported":"true","iri":"http://purl.org/dc/elements/1.1/contributor","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"contributor","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"contributor","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://purl.org/dc/elements/1.1/coverage\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"coverage\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"coverage\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"coverage\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{}}","appearsIn":["duo"],"curie":"coverage","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"duo+property+http://purl.org/dc/elements/1.1/coverage","imported":"true","iri":"http://purl.org/dc/elements/1.1/coverage","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"coverage","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"coverage","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://purl.org/dc/elements/1.1/creator\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":true,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"duo\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/duo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"DUO\"},\"searchableAnnotationValues\":true,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"creator\"},\"isDefiningOntology\":false,\"appearsIn\":[\"duo\"],\"linkedEntities\":{}}","appearsIn":["duo"],"curie":"creator","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"duo+property+http://purl.org/dc/elements/1.1/creator","imported":"true","iri":"http://purl.org/dc/elements/1.1/creator","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"creator","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"duo","ontologyIri":"http://purl.obolibrary.org/obo/duo.owl","ontologyPreferredPrefix":"DUO","searchableAnnotationValues":"true","shortForm":"creator","type":["property","annotationProperty","entity"]} diff --git a/testcases_expected_output/hierarchical-properties/efo/classes.jsonl b/testcases_expected_output/hierarchical-properties/efo/classes.jsonl index 34535fbfd..dca4b5de5 100644 --- a/testcases_expected_output/hierarchical-properties/efo/classes.jsonl +++ b/testcases_expected_output/hierarchical-properties/efo/classes.jsonl @@ -1,25 +1,25 @@ -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":13.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false}],\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000467\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0000467\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000467\"},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0000467","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/UBERON_0000468","hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000468","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anatomical system","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000467","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000467","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anatomical system","numDescendants":"4.0","numHierarchicalDescendants":"13.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0002530"],"relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000468","searchableAnnotationValues":"false","shortForm":"UBERON_0000467","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":19.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000483\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000468\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000483\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000483\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0000468\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000468\"}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0000468","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multicellular organism","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000468","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000468","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multicellular organism","numDescendants":"0.0","numHierarchicalDescendants":"19.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000483","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0013702"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000468","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000483\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000483\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"epithelium\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000483\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0000483\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000483\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000483\"}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0000483","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/UBERON_0000468","hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000468","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"epithelium","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000483","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000483","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"epithelium","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000468","searchableAnnotationValues":"false","shortForm":"UBERON_0000483","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"http://purl.obolibrary.org/obo/UBERON_0013702\"],\"hierarchicalParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001281\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0006841\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000916\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"UBERON:0000916\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000916\"},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0006841\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"central vein of liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006841\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001281\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic sinusoid\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001281\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0000916","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0013702"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0002100"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"abdomen","http__//www.w3.org/2000/01/rdf-schema#subClassOf":[],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000916","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000916","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"abdomen","numDescendants":"0.0","numHierarchicalDescendants":"6.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0001281","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0006841"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0002100"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000916","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"http://purl.obolibrary.org/obo/UBERON_0002423\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000949\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0000949\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000949\"},\"http://purl.obolibrary.org/obo/UBERON_0001007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"circulatory system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0000949","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0000467","directParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"endocrine system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0000467","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0001009","http://purl.obolibrary.org/obo/UBERON_0002423"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000949","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000949","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"endocrine system","numDescendants":"0.0","numHierarchicalDescendants":"7.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002368"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000949","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"http://purl.obolibrary.org/obo/UBERON_0002423\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001007\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"UBERON:0001007\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0001007\"},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"circulatory system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001007","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0000467","directParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"digestive system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0000467","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/UBERON_0001009","http://purl.obolibrary.org/obo/UBERON_0002423"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001007","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001007","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"digestive system","numDescendants":"0.0","numHierarchicalDescendants":"7.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002423"],"searchableAnnotationValues":"false","shortForm":"UBERON_0001007","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001009\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"circulatory system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"circulatory system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004535\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001009\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"UBERON:0001009\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0001009\"},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0004535\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cardiovascular system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004535\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001009","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0000467","directParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"circulatory system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0000467","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/UBERON_0002423","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001009","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001009","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"circulatory system","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0004535","searchableAnnotationValues":"false","shortForm":"UBERON_0001009","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001193\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001193\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001637\",\"http://purl.obolibrary.org/obo/UBERON_0001981\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0001637\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001637\",\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"http://purl.obolibrary.org/obo/UBERON_0004647\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0001637\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hepatic artery\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0001637\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic artery\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001193\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0001193\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0001193\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0001193\"},\"http://purl.obolibrary.org/obo/UBERON_0001981\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001981\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0004647\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver lobule\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004647\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001637\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"artery\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001637\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001193","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0001637","http://purl.obolibrary.org/obo/UBERON_0001981"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0001637","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0001637","http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0004647"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0001637","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0004647"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hepatic artery","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0001637"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001193","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001193","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hepatic artery","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0004647"],"searchableAnnotationValues":"false","shortForm":"UBERON_0001193","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001281\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001281\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001982\",\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"http://purl.obolibrary.org/obo/UBERON_0001986\",\"http://purl.obolibrary.org/obo/UBERON_0000483\"],\"directParent\":[\"http://purl.obolibrary.org/obo/UBERON_0001982\",\"http://purl.obolibrary.org/obo/UBERON_0001986\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001982\",\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"http://purl.obolibrary.org/obo/UBERON_0002049\",\"http://purl.obolibrary.org/obo/UBERON_0001986\",\"http://purl.obolibrary.org/obo/UBERON_0000483\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"http://purl.obolibrary.org/obo/UBERON_0004535\",\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"http://purl.obolibrary.org/obo/UBERON_0004647\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0001982\",\"http://purl.obolibrary.org/obo/UBERON_0001986\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004535\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hepatic sinusoid\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0001982\",\"http://purl.obolibrary.org/obo/UBERON_0001986\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004535\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic sinusoid\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004535\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004535\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001281\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0001986\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endothelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001986\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0001281\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0001281\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0001281\"},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002049\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"vasculature\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002049\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001982\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"capillary\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001982\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0004535\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cardiovascular system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004535\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001981\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001981\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"circulatory system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0004647\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver lobule\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004647\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000483\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000483\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001281","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0001982","http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0001986","http://purl.obolibrary.org/obo/UBERON_0000483"],"directParent":["http://purl.obolibrary.org/obo/UBERON_0001982","http://purl.obolibrary.org/obo/UBERON_0001986"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0001982","http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0002049","http://purl.obolibrary.org/obo/UBERON_0001986","http://purl.obolibrary.org/obo/UBERON_0000483","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0004535","http://purl.obolibrary.org/obo/UBERON_0001009","http://purl.obolibrary.org/obo/UBERON_0004647"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0001982","http://purl.obolibrary.org/obo/UBERON_0001986","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0004535","http://purl.obolibrary.org/obo/UBERON_0004647"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hepatic sinusoid","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0001982","http://purl.obolibrary.org/obo/UBERON_0001986"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001281","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001281","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hepatic sinusoid","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0004535","http://purl.obolibrary.org/obo/UBERON_0004647"],"searchableAnnotationValues":"false","shortForm":"UBERON_0001281","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001637\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001637\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"artery\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"artery\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001637\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"UBERON:0001637\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0001637\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0001637\"},\"http://purl.obolibrary.org/obo/UBERON_0001981\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001981\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001637","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0001981","directParent":"http://purl.obolibrary.org/obo/UBERON_0001981","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/UBERON_0001981","hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0001981","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"artery","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0001981","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001637","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001637","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"artery","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"UBERON_0001637","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001638\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001638\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"vein\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"vein\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001638\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"UBERON:0001638\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0001638\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0001638\"},\"http://purl.obolibrary.org/obo/UBERON_0001981\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001981\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001638","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0001981","directParent":"http://purl.obolibrary.org/obo/UBERON_0001981","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/UBERON_0001981","hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0001981","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"vein","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0001981","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001638","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001638","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"vein","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"UBERON_0001638","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001639\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001639\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001638\",\"http://purl.obolibrary.org/obo/UBERON_0001981\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0001638\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001638\",\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"http://purl.obolibrary.org/obo/UBERON_0004647\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0001638\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hepatic portal vein\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0001638\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic portal vein\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001639\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001981\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001981\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0001639\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0001639\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0001639\"},\"http://purl.obolibrary.org/obo/UBERON_0001007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0004647\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver lobule\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004647\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001638\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"vein\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001638\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001639","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0001638","http://purl.obolibrary.org/obo/UBERON_0001981"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0001638","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0001638","http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0004647"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0001638","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0004647"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hepatic portal vein","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0001638"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001639","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001639","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hepatic portal vein","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0004647"],"searchableAnnotationValues":"false","shortForm":"UBERON_0001639","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001981\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"numDescendants\":7.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001281\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001981\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"UBERON:0001981\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0001981\"},\"http://purl.obolibrary.org/obo/UBERON_0001281\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic sinusoid\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001281\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001981","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"blood vessel","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001981","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001981","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"blood vessel","numDescendants":"7.0","numHierarchicalDescendants":"7.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0001281","searchableAnnotationValues":"false","shortForm":"UBERON_0001981","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001982\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001982\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"http://purl.obolibrary.org/obo/UBERON_0002049\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0001981\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002049\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"capillary\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0001981\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002049\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"capillary\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002049\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002049\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001982\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002049\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"vasculature\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002049\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001981\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001981\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0001982\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0001982\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0001982\"}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001982","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0001981","directParent":"http://purl.obolibrary.org/obo/UBERON_0001981","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0002049"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0002049"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"capillary","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0001981"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001982","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001982","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"capillary","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0002049","searchableAnnotationValues":"false","shortForm":"UBERON_0001982","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001986\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001986\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000483\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000483\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000483\",\"http://purl.obolibrary.org/obo/UBERON_0000468\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000483\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"endothelium\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0000483\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"endothelium\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001986\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"UBERON:0001986\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0001986\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0001986\"},\"http://purl.obolibrary.org/obo/UBERON_0000483\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000483\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001986","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0000483","directParent":"http://purl.obolibrary.org/obo/UBERON_0000483","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000483","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000483","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"endothelium","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0000483","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001986","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001986","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"endothelium","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"UBERON_0001986","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002049\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002049\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"vasculature\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"vasculature\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001982\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002049\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002049\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"UBERON:0002049\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0002049\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0002049\"},\"http://purl.obolibrary.org/obo/UBERON_0001982\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"capillary\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001982\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0002049","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"vasculature","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002049","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002049","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"vasculature","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0001982","searchableAnnotationValues":"false","shortForm":"UBERON_0002049","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0013702\"],\"hierarchicalParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001281\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0006841\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002100\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0006841\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"central vein of liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006841\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0002100\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0002100\"},\"http://purl.obolibrary.org/obo/UBERON_0001281\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic sinusoid\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001281\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0002100","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0013702"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0013702"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"trunk","http__//www.w3.org/2000/01/rdf-schema#subClassOf":[],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002100","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002100","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"trunk","numDescendants":"0.0","numHierarchicalDescendants":"7.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0001281","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0006841"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0013702"],"searchableAnnotationValues":"false","shortForm":"UBERON_0002100","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"http://purl.obolibrary.org/obo/UBERON_0002530\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"http://purl.obolibrary.org/obo/UBERON_0002423\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0002368\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0002368\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001193\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001281\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001639\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0006841\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002107\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0001193\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic artery\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001193\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0006841\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"central vein of liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006841\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0004647\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver lobule\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004647\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001639\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic portal vein\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001639\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0002107\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0002107\"},\"http://purl.obolibrary.org/obo/UBERON_0001281\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic sinusoid\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001281\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0002107","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0002368","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002423"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0002423"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"liver","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0002368"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002107","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002107","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"liver","numDescendants":"0.0","numHierarchicalDescendants":"5.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0001193","http://purl.obolibrary.org/obo/UBERON_0001281","http://purl.obolibrary.org/obo/UBERON_0001639","http://purl.obolibrary.org/obo/UBERON_0004647","http://purl.obolibrary.org/obo/UBERON_0006841"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0002423"],"searchableAnnotationValues":"false","shortForm":"UBERON_0002107","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0000949\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0002530\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0002530\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/UBERON_0002530\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002368\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"UBERON:0002368\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0002368\"},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0002368","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0002530","directParent":"http://purl.obolibrary.org/obo/UBERON_0002530","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0000949"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000949"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"endocrine gland","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0002530"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002368","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002368","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"endocrine gland","numDescendants":"1.0","numHierarchicalDescendants":"6.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000949","searchableAnnotationValues":"false","shortForm":"UBERON_0002368","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0001007\"],\"hierarchicalParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002423\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0002423\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0002423\"}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0002423","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0001007"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0001007"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hepatobiliary system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":[],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002423","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002423","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hepatobiliary system","numDescendants":"0.0","numHierarchicalDescendants":"6.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0002107","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0001007"],"searchableAnnotationValues":"false","shortForm":"UBERON_0002423","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002530\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"UBERON:0002530\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0002530\"},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0002530","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gland","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002530","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002530","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gland","numDescendants":"2.0","numHierarchicalDescendants":"7.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000467","searchableAnnotationValues":"false","shortForm":"UBERON_0002530","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0004535\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004535\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0001009\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cardiovascular system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cardiovascular system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001281\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004535\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0004535\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"circulatory system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001009\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0004535\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0004535\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0004535\"},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001281\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic sinusoid\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001281\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0004535","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0000467","directParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0001009"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0001009"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cardiovascular system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000467"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0004535","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0004535","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cardiovascular system","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0001281","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0001009","searchableAnnotationValues":"false","shortForm":"UBERON_0004535","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004647\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"http://purl.obolibrary.org/obo/UBERON_0002423\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"liver lobule\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"liver lobule\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001193\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001281\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001639\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0006841\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0004647\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0001193\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic artery\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001193\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0006841\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"central vein of liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006841\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001639\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic portal vein\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001639\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001281\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic sinusoid\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001281\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0004647\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0004647\"},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0004647","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002423"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0002107","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"liver lobule","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0004647","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0004647","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"liver lobule","numDescendants":"0.0","numHierarchicalDescendants":"4.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0001193","http://purl.obolibrary.org/obo/UBERON_0001281","http://purl.obolibrary.org/obo/UBERON_0001639","http://purl.obolibrary.org/obo/UBERON_0006841"],"relatedTo":"http://purl.obolibrary.org/obo/UBERON_0002107","searchableAnnotationValues":"false","shortForm":"UBERON_0004647","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0006841\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006841\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001638\",\"http://purl.obolibrary.org/obo/UBERON_0001981\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0001638\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001638\",\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"http://purl.obolibrary.org/obo/UBERON_0004647\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0001638\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"central vein of liver\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0001638\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"central vein of liver\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0006841\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"UBERON:0006841\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0006841\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0006841\"},\"http://purl.obolibrary.org/obo/UBERON_0001981\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001981\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0004647\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver lobule\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004647\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001638\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"vein\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001638\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0006841","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0001638","http://purl.obolibrary.org/obo/UBERON_0001981"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0001638","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0001638","http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0004647"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0001638","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0004647"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"central vein of liver","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0001638"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0006841","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0006841","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"central vein of liver","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0004647"],"searchableAnnotationValues":"false","shortForm":"UBERON_0006841","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0013702\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"UBERON:0013702\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0013702\"},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0013702","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/UBERON_0000468","hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000468","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"body proper","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0013702","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0013702","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"body proper","numDescendants":"0.0","numHierarchicalDescendants":"8.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0002100","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000468","searchableAnnotationValues":"false","shortForm":"UBERON_0013702","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"numDescendants\":4.0,\"numHierarchicalDescendants\":13.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false}],\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000467\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0000467","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/UBERON_0000468","hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000468","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"anatomical system","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000467","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000467","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"anatomical system","numDescendants":"4.0","numHierarchicalDescendants":"13.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0002530"],"relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000468","searchableAnnotationValues":"false","shortForm":"UBERON_0000467","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":19.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000483\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000468\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000483\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000483\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0000468","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"multicellular organism","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000468","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000468","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"multicellular organism","numDescendants":"0.0","numHierarchicalDescendants":"19.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000483","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0013702"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000468","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000483\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000483\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"epithelium\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000483\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0000483","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/UBERON_0000468","hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000468","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"epithelium","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000483","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000483","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"epithelium","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000468","searchableAnnotationValues":"false","shortForm":"UBERON_0000483","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"http://purl.obolibrary.org/obo/UBERON_0013702\"],\"hierarchicalParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001281\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0006841\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000916\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0006841\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"central vein of liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006841\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001281\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic sinusoid\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001281\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0000916","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0013702"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0002100"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"abdomen","http__//www.w3.org/2000/01/rdf-schema#subClassOf":[],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000916","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000916","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"abdomen","numDescendants":"0.0","numHierarchicalDescendants":"6.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0001281","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0006841"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0002100"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000916","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"http://purl.obolibrary.org/obo/UBERON_0002423\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000949\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"circulatory system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0000949","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0000467","directParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"endocrine system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0000467","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0001009","http://purl.obolibrary.org/obo/UBERON_0002423"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000949","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000949","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"endocrine system","numDescendants":"0.0","numHierarchicalDescendants":"7.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002368"],"searchableAnnotationValues":"false","shortForm":"UBERON_0000949","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://www.w3.org/2002/07/owl#disjointWith\":[\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"http://purl.obolibrary.org/obo/UBERON_0002423\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001007\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0001009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"circulatory system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001007","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0000467","directParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"digestive system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0000467","http__//www.w3.org/2002/07/owl#disjointWith":["http://purl.obolibrary.org/obo/UBERON_0001009","http://purl.obolibrary.org/obo/UBERON_0002423"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001007","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001007","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"digestive system","numDescendants":"0.0","numHierarchicalDescendants":"7.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002423"],"searchableAnnotationValues":"false","shortForm":"UBERON_0001007","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001009\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"circulatory system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://www.w3.org/2002/07/owl#disjointWith\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"circulatory system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004535\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001009\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0004535\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cardiovascular system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004535\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001009","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0000467","directParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"circulatory system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0000467","http__//www.w3.org/2002/07/owl#disjointWith":"http://purl.obolibrary.org/obo/UBERON_0002423","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001009","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001009","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"circulatory system","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0004535","searchableAnnotationValues":"false","shortForm":"UBERON_0001009","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001193\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001193\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001637\",\"http://purl.obolibrary.org/obo/UBERON_0001981\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0001637\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001637\",\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"http://purl.obolibrary.org/obo/UBERON_0004647\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0001637\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hepatic artery\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0001637\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic artery\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001193\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001981\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001981\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0004647\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver lobule\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004647\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001637\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"artery\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001637\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001193","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0001637","http://purl.obolibrary.org/obo/UBERON_0001981"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0001637","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0001637","http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0004647"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0001637","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0004647"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hepatic artery","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0001637"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001193","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001193","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hepatic artery","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0004647"],"searchableAnnotationValues":"false","shortForm":"UBERON_0001193","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001281\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001281\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001982\",\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"http://purl.obolibrary.org/obo/UBERON_0001986\",\"http://purl.obolibrary.org/obo/UBERON_0000483\"],\"directParent\":[\"http://purl.obolibrary.org/obo/UBERON_0001982\",\"http://purl.obolibrary.org/obo/UBERON_0001986\"],\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001982\",\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"http://purl.obolibrary.org/obo/UBERON_0002049\",\"http://purl.obolibrary.org/obo/UBERON_0001986\",\"http://purl.obolibrary.org/obo/UBERON_0000483\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"http://purl.obolibrary.org/obo/UBERON_0004535\",\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"http://purl.obolibrary.org/obo/UBERON_0004647\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0001982\",\"http://purl.obolibrary.org/obo/UBERON_0001986\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004535\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hepatic sinusoid\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0001982\",\"http://purl.obolibrary.org/obo/UBERON_0001986\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004535\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic sinusoid\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004535\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004535\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001281\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0001986\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endothelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001986\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002049\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"vasculature\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002049\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001982\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"capillary\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001982\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0004535\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"cardiovascular system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004535\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001981\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001981\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"circulatory system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0004647\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver lobule\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004647\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000483\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000483\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001281","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0001982","http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0001986","http://purl.obolibrary.org/obo/UBERON_0000483"],"directParent":["http://purl.obolibrary.org/obo/UBERON_0001982","http://purl.obolibrary.org/obo/UBERON_0001986"],"hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0001982","http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0002049","http://purl.obolibrary.org/obo/UBERON_0001986","http://purl.obolibrary.org/obo/UBERON_0000483","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0004535","http://purl.obolibrary.org/obo/UBERON_0001009","http://purl.obolibrary.org/obo/UBERON_0004647"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0001982","http://purl.obolibrary.org/obo/UBERON_0001986","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0004535","http://purl.obolibrary.org/obo/UBERON_0004647"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hepatic sinusoid","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0001982","http://purl.obolibrary.org/obo/UBERON_0001986"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001281","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001281","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hepatic sinusoid","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0004535","http://purl.obolibrary.org/obo/UBERON_0004647"],"searchableAnnotationValues":"false","shortForm":"UBERON_0001281","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001637\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001637\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"artery\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"artery\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001637\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0001981\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001981\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001637","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0001981","directParent":"http://purl.obolibrary.org/obo/UBERON_0001981","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/UBERON_0001981","hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0001981","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"artery","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0001981","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001637","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001637","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"artery","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"UBERON_0001637","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001638\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001638\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"vein\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"vein\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001638\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0001981\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001981\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001638","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0001981","directParent":"http://purl.obolibrary.org/obo/UBERON_0001981","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/UBERON_0001981","hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0001981","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"vein","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0001981","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001638","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001638","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"vein","numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"UBERON_0001638","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001639\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001639\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001638\",\"http://purl.obolibrary.org/obo/UBERON_0001981\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0001638\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001638\",\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"http://purl.obolibrary.org/obo/UBERON_0004647\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0001638\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hepatic portal vein\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0001638\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic portal vein\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001639\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001981\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001981\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0004647\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver lobule\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004647\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001638\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"vein\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001638\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001639","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0001638","http://purl.obolibrary.org/obo/UBERON_0001981"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0001638","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0001638","http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0004647"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0001638","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0004647"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hepatic portal vein","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0001638"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001639","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001639","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hepatic portal vein","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0004647"],"searchableAnnotationValues":"false","shortForm":"UBERON_0001639","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001981\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"numDescendants\":7.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001281\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001981\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001281\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic sinusoid\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001281\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001981","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"blood vessel","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001981","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001981","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"blood vessel","numDescendants":"7.0","numHierarchicalDescendants":"7.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0001281","searchableAnnotationValues":"false","shortForm":"UBERON_0001981","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001982\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001982\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"http://purl.obolibrary.org/obo/UBERON_0002049\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0001981\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002049\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"capillary\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0001981\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002049\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"capillary\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002049\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002049\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001982\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002049\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"vasculature\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002049\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001981\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001981\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001982","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0001981","directParent":"http://purl.obolibrary.org/obo/UBERON_0001981","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0002049"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0002049"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"capillary","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0001981"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001982","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001982","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"capillary","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0002049","searchableAnnotationValues":"false","shortForm":"UBERON_0001982","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0001986\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001986\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000483\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000483\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000483\",\"http://purl.obolibrary.org/obo/UBERON_0000468\"],\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/UBERON_0000483\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"endothelium\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/UBERON_0000483\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"endothelium\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0001986\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000483\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"epithelium\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000483\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0001986","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0000483","directParent":"http://purl.obolibrary.org/obo/UBERON_0000483","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000483","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000483","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"endothelium","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/UBERON_0000483","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001986","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0001986","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"endothelium","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"UBERON_0001986","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002049\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002049\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"vasculature\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"vasculature\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001982\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002049\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002049\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001982\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"capillary\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001982\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0002049","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"vasculature","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002049","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002049","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"vasculature","numDescendants":"0.0","numHierarchicalDescendants":"2.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0001982","searchableAnnotationValues":"false","shortForm":"UBERON_0002049","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0013702\"],\"hierarchicalParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001281\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0006841\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002100\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0006841\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"central vein of liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006841\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001281\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic sinusoid\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001281\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0002100","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0013702"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0013702"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"trunk","http__//www.w3.org/2000/01/rdf-schema#subClassOf":[],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002100","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002100","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"trunk","numDescendants":"0.0","numHierarchicalDescendants":"7.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0001281","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0006841"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0013702"],"searchableAnnotationValues":"false","shortForm":"UBERON_0002100","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"http://purl.obolibrary.org/obo/UBERON_0002530\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"http://purl.obolibrary.org/obo/UBERON_0002423\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0002368\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0002368\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":5.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001193\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001281\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001639\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0006841\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false}],\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002107\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0001193\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic artery\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001193\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0006841\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"central vein of liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006841\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0004647\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver lobule\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004647\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001639\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic portal vein\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001639\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001281\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic sinusoid\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001281\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0002107","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0002368","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002423"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0002423"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"liver","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0002368"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002107","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002107","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"liver","numDescendants":"0.0","numHierarchicalDescendants":"5.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0001193","http://purl.obolibrary.org/obo/UBERON_0001281","http://purl.obolibrary.org/obo/UBERON_0001639","http://purl.obolibrary.org/obo/UBERON_0004647","http://purl.obolibrary.org/obo/UBERON_0006841"],"relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0002423"],"searchableAnnotationValues":"false","shortForm":"UBERON_0002107","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"hasDirectChildren\":true,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0000949\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0002530\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0002530\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false}],\"http://www.w3.org/2002/07/owl#equivalentClass\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/UBERON_0002530\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false}]},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002368\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0002368","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0002530","directParent":"http://purl.obolibrary.org/obo/UBERON_0002530","hasDirectChildren":"true","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0000949"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000949"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"endocrine gland","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0002530"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002368","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002368","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"endocrine gland","numDescendants":"1.0","numHierarchicalDescendants":"6.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000949","searchableAnnotationValues":"false","shortForm":"UBERON_0002368","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0001007\"],\"hierarchicalParent\":[{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":6.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"isObsolete\":false},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002423\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0002423","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0001007"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0001007"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"hepatobiliary system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":[],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002423","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002423","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"hepatobiliary system","numDescendants":"0.0","numHierarchicalDescendants":"6.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0002107","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0001007"],"searchableAnnotationValues":"false","shortForm":"UBERON_0002423","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"numDescendants\":2.0,\"numHierarchicalDescendants\":7.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0002530\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0002530","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"gland","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002530","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0002530","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"gland","numDescendants":"2.0","numHierarchicalDescendants":"7.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000467","searchableAnnotationValues":"false","shortForm":"UBERON_0002530","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0004535\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004535\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0001009\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"cardiovascular system\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0000467\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"cardiovascular system\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001281\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004535\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0001009\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0004535\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001009\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"circulatory system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001009\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001281\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic sinusoid\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001281\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0004535","directAncestor":"http://purl.obolibrary.org/obo/UBERON_0000467","directParent":"http://purl.obolibrary.org/obo/UBERON_0000467","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0001009"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0001009"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"cardiovascular system","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0000467"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0004535","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0004535","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"cardiovascular system","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0001281","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0001009","searchableAnnotationValues":"false","shortForm":"UBERON_0004535","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004647\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"http://purl.obolibrary.org/obo/UBERON_0002423\"],\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"liver lobule\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"liver lobule\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":4.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001193\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001281\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0001639\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0006841\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0004647\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0001193\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic artery\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001193\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0006841\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"central vein of liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006841\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001639\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic portal vein\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001639\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001281\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatic sinusoid\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001281\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0004647","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002423"],"hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0002107","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"liver lobule","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0004647","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0004647","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"liver lobule","numDescendants":"0.0","numHierarchicalDescendants":"4.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":["http://purl.obolibrary.org/obo/UBERON_0001193","http://purl.obolibrary.org/obo/UBERON_0001281","http://purl.obolibrary.org/obo/UBERON_0001639","http://purl.obolibrary.org/obo/UBERON_0006841"],"relatedTo":"http://purl.obolibrary.org/obo/UBERON_0002107","searchableAnnotationValues":"false","shortForm":"UBERON_0004647","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0006841\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0006841\"},\"directAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001638\",\"http://purl.obolibrary.org/obo/UBERON_0001981\"],\"directParent\":\"http://purl.obolibrary.org/obo/UBERON_0001638\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":[\"http://purl.obolibrary.org/obo/UBERON_0001638\",\"http://purl.obolibrary.org/obo/UBERON_0001981\",\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"http://purl.obolibrary.org/obo/UBERON_0002368\",\"http://purl.obolibrary.org/obo/UBERON_0002530\",\"http://purl.obolibrary.org/obo/UBERON_0000467\",\"http://purl.obolibrary.org/obo/UBERON_0000949\",\"http://purl.obolibrary.org/obo/UBERON_0001007\",\"http://purl.obolibrary.org/obo/UBERON_0002423\",\"http://purl.obolibrary.org/obo/UBERON_0004647\"],\"hierarchicalParent\":[\"http://purl.obolibrary.org/obo/UBERON_0001638\",{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]}],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"central vein of liver\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":[\"http://purl.obolibrary.org/obo/UBERON_0001638\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"central vein of liver\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedTo\":[{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0002107\",\"isObsolete\":false},{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0004647\",\"isObsolete\":false}],\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0006841\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002368\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002368\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000467\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"anatomical system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000467\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002107\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002107\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001981\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"blood vessel\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001981\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001007\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"digestive system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001007\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0013702\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002423\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hepatobiliary system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002423\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0004647\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"liver lobule\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0004647\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0001638\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"vein\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0001638\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000949\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"endocrine system\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000949\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002530\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"gland\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002530\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0006841","directAncestor":["http://purl.obolibrary.org/obo/UBERON_0001638","http://purl.obolibrary.org/obo/UBERON_0001981"],"directParent":"http://purl.obolibrary.org/obo/UBERON_0001638","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":["http://purl.obolibrary.org/obo/UBERON_0001638","http://purl.obolibrary.org/obo/UBERON_0001981","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0004647"],"hierarchicalParent":["http://purl.obolibrary.org/obo/UBERON_0001638","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0004647"],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"central vein of liver","http__//www.w3.org/2000/01/rdf-schema#subClassOf":["http://purl.obolibrary.org/obo/UBERON_0001638"],"id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0006841","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0006841","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"central vein of liver","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedTo":["http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0004647"],"searchableAnnotationValues":"false","shortForm":"UBERON_0006841","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0013702\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"parentRelationToChild\":\"http://purl.obolibrary.org/obo/BFO_0000051\"}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"body proper\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":8.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0002100\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0013702\",\"isObsolete\":false},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000468\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0013702\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0002100\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"trunk\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0002100\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0000468\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"multicellular organism\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000468\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBERON:0013702","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/UBERON_0000468","hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000468","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"body proper","id":"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0013702","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0013702","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"body proper","numDescendants":"0.0","numHierarchicalDescendants":"8.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0002100","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000468","searchableAnnotationValues":"false","shortForm":"UBERON_0013702","type":["class","entity"]} diff --git a/testcases_expected_output/hierarchical-properties/efo/efo-hierarchical-properties_classes.csv b/testcases_expected_output/hierarchical-properties/efo/efo-hierarchical-properties_classes.csv index c325d3108..54bb36139 100644 --- a/testcases_expected_output/hierarchical-properties/efo/efo-hierarchical-properties_classes.csv +++ b/testcases_expected_output/hierarchical-properties/efo/efo-hierarchical-properties_classes.csv @@ -1,26 +1,26 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","hierarchicalProperty:string[]","numHierarchicalDescendants:string[]","type:string[]","relatedTo:string[]","http__//www.w3.org/2000/01/rdf-schema#subClassOf:string[]","hasDirectParents:string[]","imported:string[]","ontologyIri:string[]","hierarchicalParent:string[]","http__//www.w3.org/2002/07/owl#equivalentClass:string[]","iri","hierarchicalAncestor:string[]","relatedFrom:string[]","numDescendants:string[]","isObsolete:string[]","label:string[]","directParent:string[]","ontologyPreferredPrefix:string[]","directAncestor:string[]","curie:string[]","http__//www.w3.org/2002/07/owl#disjointWith:string[]","shortForm:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000467","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anatomical system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anatomical system""},""numDescendants"":4.0,""numHierarchicalDescendants"":13.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false}],""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000467""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""UBERON:0000467"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000467""},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","13.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000468","","false","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0002423|http://purl.obolibrary.org/obo/UBERON_0002530","4.0","false","anatomical system","","efo-hierarchical-properties","","UBERON:0000467","","UBERON_0000467","anatomical system","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000468","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multicellular organism""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""numDescendants"":0.0,""numHierarchicalDescendants"":19.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000483"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0013702"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000468""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000483"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000483""},""type"":[""class"",""entity""]},""UBERON:0000468"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000468""}}}","false","false","false","true","false","","","19.0","class|entity","","","false","false","http://www.ebi.ac.uk/efo/efo.owl","","","http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000483|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0013702","0.0","false","multicellular organism","","efo-hierarchical-properties","","UBERON:0000468","","UBERON_0000468","multicellular organism","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000483","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000483"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000483""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""epithelium""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""epithelium""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000483""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""UBERON:0000483"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000483"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000483""}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000468","","false","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0000483","http://purl.obolibrary.org/obo/UBERON_0000468","","2.0","false","epithelium","","efo-hierarchical-properties","","UBERON:0000483","","UBERON_0000483","epithelium","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000916","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0002100"",""http://purl.obolibrary.org/obo/UBERON_0013702""],""hierarchicalParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""abdomen""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""abdomen""},""numDescendants"":0.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001281"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0006841"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000916""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""UBERON:0000916"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000916""},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0006841"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""central vein of liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0006841""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001281"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic sinusoid""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001281""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0002100","","false","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0002100","","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0001281|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0006841","0.0","false","abdomen","","efo-hierarchical-properties","","UBERON:0000916","","UBERON_0000916","abdomen","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000949","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""endocrine system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/UBERON_0001007"",""http://purl.obolibrary.org/obo/UBERON_0001009"",""http://purl.obolibrary.org/obo/UBERON_0002423""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""endocrine system""},""numDescendants"":0.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000949""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""UBERON:0000949"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000949""},""http://purl.obolibrary.org/obo/UBERON_0001007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""digestive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""circulatory system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","","http://purl.obolibrary.org/obo/UBERON_0000467","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000467","","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0002368","0.0","false","endocrine system","http://purl.obolibrary.org/obo/UBERON_0000467","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0000467","UBERON:0000949","http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0001009|http://purl.obolibrary.org/obo/UBERON_0002423","UBERON_0000949","endocrine system","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001007","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""digestive system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/UBERON_0001009"",""http://purl.obolibrary.org/obo/UBERON_0002423""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""digestive system""},""numDescendants"":0.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001007""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""UBERON:0001007"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0001007""},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""circulatory system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","","http://purl.obolibrary.org/obo/UBERON_0000467","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000467","","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0002423","0.0","false","digestive system","http://purl.obolibrary.org/obo/UBERON_0000467","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0000467","UBERON:0001007","http://purl.obolibrary.org/obo/UBERON_0001009|http://purl.obolibrary.org/obo/UBERON_0002423","UBERON_0001007","digestive system","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001009","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001009"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001009""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""circulatory system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""circulatory system""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0004535"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001009"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001009""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""UBERON:0001009"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0001009"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0001009""},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0004535"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cardiovascular system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0004535""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","http://purl.obolibrary.org/obo/UBERON_0000467","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000467","","http://purl.obolibrary.org/obo/UBERON_0001009","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0004535","0.0","false","circulatory system","http://purl.obolibrary.org/obo/UBERON_0000467","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0000467","UBERON:0001009","http://purl.obolibrary.org/obo/UBERON_0002423","UBERON_0001009","circulatory system","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001193","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001193"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001193""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001637"",""http://purl.obolibrary.org/obo/UBERON_0001981""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0001637"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001637"",""http://purl.obolibrary.org/obo/UBERON_0001981"",""http://purl.obolibrary.org/obo/UBERON_0002107"",""http://purl.obolibrary.org/obo/UBERON_0002368"",""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0000949"",""http://purl.obolibrary.org/obo/UBERON_0000916"",""http://purl.obolibrary.org/obo/UBERON_0002100"",""http://purl.obolibrary.org/obo/UBERON_0013702"",""http://purl.obolibrary.org/obo/UBERON_0001007"",""http://purl.obolibrary.org/obo/UBERON_0002423"",""http://purl.obolibrary.org/obo/UBERON_0004647""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0001637"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hepatic artery""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0001637"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hepatic artery""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001193""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""UBERON:0001193"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0001193"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0001193""},""http://purl.obolibrary.org/obo/UBERON_0001981"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blood vessel""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001981""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""digestive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0004647"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver lobule""},""curie"":{""type"":[""literal""],""value"":""UBERON:0004647""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001637"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""artery""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001637""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0004647","http://purl.obolibrary.org/obo/UBERON_0001637||","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0001637|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0004647","","http://purl.obolibrary.org/obo/UBERON_0001193","http://purl.obolibrary.org/obo/UBERON_0001637|http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0013702|http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0002423|http://purl.obolibrary.org/obo/UBERON_0004647","","0.0","false","hepatic artery","http://purl.obolibrary.org/obo/UBERON_0001637","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0001637|http://purl.obolibrary.org/obo/UBERON_0001981","UBERON:0001193","","UBERON_0001193","hepatic artery","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001281","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001281"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001281""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001982"",""http://purl.obolibrary.org/obo/UBERON_0001981"",""http://purl.obolibrary.org/obo/UBERON_0001986"",""http://purl.obolibrary.org/obo/UBERON_0000483""],""directParent"":[""http://purl.obolibrary.org/obo/UBERON_0001982"",""http://purl.obolibrary.org/obo/UBERON_0001986""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001982"",""http://purl.obolibrary.org/obo/UBERON_0001981"",""http://purl.obolibrary.org/obo/UBERON_0002049"",""http://purl.obolibrary.org/obo/UBERON_0001986"",""http://purl.obolibrary.org/obo/UBERON_0000483"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0000916"",""http://purl.obolibrary.org/obo/UBERON_0002100"",""http://purl.obolibrary.org/obo/UBERON_0013702"",""http://purl.obolibrary.org/obo/UBERON_0002107"",""http://purl.obolibrary.org/obo/UBERON_0002368"",""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000949"",""http://purl.obolibrary.org/obo/UBERON_0001007"",""http://purl.obolibrary.org/obo/UBERON_0002423"",""http://purl.obolibrary.org/obo/UBERON_0004535"",""http://purl.obolibrary.org/obo/UBERON_0001009"",""http://purl.obolibrary.org/obo/UBERON_0004647""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0001982"",""http://purl.obolibrary.org/obo/UBERON_0001986"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0004535"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hepatic sinusoid""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0001982"",""http://purl.obolibrary.org/obo/UBERON_0001986"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004535"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hepatic sinusoid""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0004535"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004535"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001281""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0001986"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endothelium""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001986""},""type"":[""class"",""entity""]},""UBERON:0001281"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0001281"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0001281""},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002049"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""vasculature""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002049""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001982"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""capillary""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001982""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0004535"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cardiovascular system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0004535""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001981"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blood vessel""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001981""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""digestive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""circulatory system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0004647"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver lobule""},""curie"":{""type"":[""literal""],""value"":""UBERON:0004647""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000483"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000483""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0004535|http://purl.obolibrary.org/obo/UBERON_0004647","http://purl.obolibrary.org/obo/UBERON_0001982|http://purl.obolibrary.org/obo/UBERON_0001986||||||","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0001982|http://purl.obolibrary.org/obo/UBERON_0001986|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0004535|http://purl.obolibrary.org/obo/UBERON_0004647","","http://purl.obolibrary.org/obo/UBERON_0001281","http://purl.obolibrary.org/obo/UBERON_0001982|http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0002049|http://purl.obolibrary.org/obo/UBERON_0001986|http://purl.obolibrary.org/obo/UBERON_0000483|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0013702|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0002423|http://purl.obolibrary.org/obo/UBERON_0004535|http://purl.obolibrary.org/obo/UBERON_0001009|http://purl.obolibrary.org/obo/UBERON_0004647","","0.0","false","hepatic sinusoid","http://purl.obolibrary.org/obo/UBERON_0001982|http://purl.obolibrary.org/obo/UBERON_0001986","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0001982|http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0001986|http://purl.obolibrary.org/obo/UBERON_0000483","UBERON:0001281","","UBERON_0001281","hepatic sinusoid","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001637","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001637"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001637""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""artery""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""artery""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001637""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""UBERON:0001637"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0001637"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0001637""},""http://purl.obolibrary.org/obo/UBERON_0001981"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blood vessel""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001981""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","http://purl.obolibrary.org/obo/UBERON_0001981","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0001981","","http://purl.obolibrary.org/obo/UBERON_0001637","http://purl.obolibrary.org/obo/UBERON_0001981","","1.0","false","artery","http://purl.obolibrary.org/obo/UBERON_0001981","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0001981","UBERON:0001637","","UBERON_0001637","artery","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001638","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001638"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001638""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""vein""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""vein""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001638""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""UBERON:0001638"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0001638"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0001638""},""http://purl.obolibrary.org/obo/UBERON_0001981"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blood vessel""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001981""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","http://purl.obolibrary.org/obo/UBERON_0001981","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0001981","","http://purl.obolibrary.org/obo/UBERON_0001638","http://purl.obolibrary.org/obo/UBERON_0001981","","2.0","false","vein","http://purl.obolibrary.org/obo/UBERON_0001981","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0001981","UBERON:0001638","","UBERON_0001638","vein","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001639","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001639"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001639""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001638"",""http://purl.obolibrary.org/obo/UBERON_0001981""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0001638"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001638"",""http://purl.obolibrary.org/obo/UBERON_0001981"",""http://purl.obolibrary.org/obo/UBERON_0002107"",""http://purl.obolibrary.org/obo/UBERON_0002368"",""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0000949"",""http://purl.obolibrary.org/obo/UBERON_0000916"",""http://purl.obolibrary.org/obo/UBERON_0002100"",""http://purl.obolibrary.org/obo/UBERON_0013702"",""http://purl.obolibrary.org/obo/UBERON_0001007"",""http://purl.obolibrary.org/obo/UBERON_0002423"",""http://purl.obolibrary.org/obo/UBERON_0004647""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0001638"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hepatic portal vein""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0001638"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hepatic portal vein""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001639""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001981"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blood vessel""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001981""},""type"":[""class"",""entity""]},""UBERON:0001639"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0001639"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0001639""},""http://purl.obolibrary.org/obo/UBERON_0001007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""digestive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0004647"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver lobule""},""curie"":{""type"":[""literal""],""value"":""UBERON:0004647""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001638"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""vein""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001638""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0004647","http://purl.obolibrary.org/obo/UBERON_0001638||","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0001638|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0004647","","http://purl.obolibrary.org/obo/UBERON_0001639","http://purl.obolibrary.org/obo/UBERON_0001638|http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0013702|http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0002423|http://purl.obolibrary.org/obo/UBERON_0004647","","0.0","false","hepatic portal vein","http://purl.obolibrary.org/obo/UBERON_0001638","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0001638|http://purl.obolibrary.org/obo/UBERON_0001981","UBERON:0001639","","UBERON_0001639","hepatic portal vein","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001981","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001981""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""blood vessel""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""blood vessel""},""numDescendants"":7.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001281"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001981""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""UBERON:0001981"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0001981""},""http://purl.obolibrary.org/obo/UBERON_0001281"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic sinusoid""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001281""},""type"":[""class"",""entity""]}}}","false","true","false","true","false","","","7.0","class|entity","","","false","false","http://www.ebi.ac.uk/efo/efo.owl","","","http://purl.obolibrary.org/obo/UBERON_0001981","","http://purl.obolibrary.org/obo/UBERON_0001281","7.0","false","blood vessel","","efo-hierarchical-properties","","UBERON:0001981","","UBERON_0001981","blood vessel","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001982","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001982"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001982""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001981"",""http://purl.obolibrary.org/obo/UBERON_0002049""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0001981"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002049"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""capillary""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0001981"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002049"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""capillary""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002049"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002049"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001982""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002049"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""vasculature""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002049""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001981"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blood vessel""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001981""},""type"":[""class"",""entity""]},""UBERON:0001982"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0001982"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0001982""}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0002049","http://purl.obolibrary.org/obo/UBERON_0001981|","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0002049","","http://purl.obolibrary.org/obo/UBERON_0001982","http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0002049","","1.0","false","capillary","http://purl.obolibrary.org/obo/UBERON_0001981","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0001981","UBERON:0001982","","UBERON_0001982","capillary","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001986","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001986"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001986""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000483"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000483"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000483"",""http://purl.obolibrary.org/obo/UBERON_0000468""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000483"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""endothelium""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0000483"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""endothelium""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001986""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""UBERON:0001986"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0001986"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0001986""},""http://purl.obolibrary.org/obo/UBERON_0000483"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000483""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","http://purl.obolibrary.org/obo/UBERON_0000483","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000483","","http://purl.obolibrary.org/obo/UBERON_0001986","http://purl.obolibrary.org/obo/UBERON_0000483|http://purl.obolibrary.org/obo/UBERON_0000468","","1.0","false","endothelium","http://purl.obolibrary.org/obo/UBERON_0000483","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0000483","UBERON:0001986","","UBERON_0001986","endothelium","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002049","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002049"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002049""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""vasculature""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""vasculature""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001982"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002049"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002049""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""UBERON:0002049"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0002049"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0002049""},""http://purl.obolibrary.org/obo/UBERON_0001982"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""capillary""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001982""},""type"":[""class"",""entity""]}}}","false","false","false","true","false","","","2.0","class|entity","","","false","false","http://www.ebi.ac.uk/efo/efo.owl","","","http://purl.obolibrary.org/obo/UBERON_0002049","","http://purl.obolibrary.org/obo/UBERON_0001982","0.0","false","vasculature","","efo-hierarchical-properties","","UBERON:0002049","","UBERON_0002049","vasculature","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002100","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0013702""],""hierarchicalParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0013702"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""trunk""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0013702"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""trunk""},""numDescendants"":0.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001281"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0006841"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0013702"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0013702"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002100""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0006841"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""central vein of liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0006841""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""UBERON:0002100"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0002100""},""http://purl.obolibrary.org/obo/UBERON_0001281"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic sinusoid""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001281""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0013702","","false","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0013702","","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0001281|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0006841","0.0","false","trunk","","efo-hierarchical-properties","","UBERON:0002100","","UBERON_0002100","trunk","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002107","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0002368"",""http://purl.obolibrary.org/obo/UBERON_0002530""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0002368"",""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0000949"",""http://purl.obolibrary.org/obo/UBERON_0000916"",""http://purl.obolibrary.org/obo/UBERON_0002100"",""http://purl.obolibrary.org/obo/UBERON_0013702"",""http://purl.obolibrary.org/obo/UBERON_0001007"",""http://purl.obolibrary.org/obo/UBERON_0002423""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0002368"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""liver""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0002368"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""liver""},""numDescendants"":0.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001193"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001281"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001639"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0006841"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002107""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0001193"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic artery""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001193""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0006841"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""central vein of liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0006841""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""digestive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0004647"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver lobule""},""curie"":{""type"":[""literal""],""value"":""UBERON:0004647""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001639"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic portal vein""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001639""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""UBERON:0002107"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0002107""},""http://purl.obolibrary.org/obo/UBERON_0001281"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic sinusoid""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001281""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0002368||||||","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0002423","","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0013702|http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0001193|http://purl.obolibrary.org/obo/UBERON_0001281|http://purl.obolibrary.org/obo/UBERON_0001639|http://purl.obolibrary.org/obo/UBERON_0004647|http://purl.obolibrary.org/obo/UBERON_0006841","0.0","false","liver","http://purl.obolibrary.org/obo/UBERON_0002368","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0002530","UBERON:0002107","","UBERON_0002107","liver","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002368","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0000949""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0002530"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""endocrine gland""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0002530"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/UBERON_0002530"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""numDescendants"":1.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002368""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""UBERON:0002368"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0002368""},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0002530|","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000949","","http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0000949","","1.0","false","endocrine gland","http://purl.obolibrary.org/obo/UBERON_0002530","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0002530","UBERON:0002368","","UBERON_0002368","endocrine gland","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002423","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0001007""],""hierarchicalParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""numDescendants"":0.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002423""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""digestive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""UBERON:0002423"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0002423""}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0001007","","false","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0001007","","http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002107","0.0","false","hepatobiliary system","","efo-hierarchical-properties","","UBERON:0002423","","UBERON_0002423","hepatobiliary system","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002530","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gland""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gland""},""numDescendants"":2.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002530""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""UBERON:0002530"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0002530""},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000467","","false","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000467","","http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468","","2.0","false","gland","","efo-hierarchical-properties","","UBERON:0002530","","UBERON_0002530","gland","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0004535","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0004535"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0004535""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0001009""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0001009"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cardiovascular system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001009"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cardiovascular system""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001281"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004535"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001009"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001009"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0004535""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""circulatory system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001009""},""type"":[""class"",""entity""]},""UBERON:0004535"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0004535"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0004535""},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001281"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic sinusoid""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001281""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0001009","http://purl.obolibrary.org/obo/UBERON_0000467|","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0001009","","http://purl.obolibrary.org/obo/UBERON_0004535","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0001009","http://purl.obolibrary.org/obo/UBERON_0001281","0.0","false","cardiovascular system","http://purl.obolibrary.org/obo/UBERON_0000467","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0000467","UBERON:0004535","","UBERON_0004535","cardiovascular system","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0004647","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0004647""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0002107"",""http://purl.obolibrary.org/obo/UBERON_0002368"",""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0000949"",""http://purl.obolibrary.org/obo/UBERON_0000916"",""http://purl.obolibrary.org/obo/UBERON_0002100"",""http://purl.obolibrary.org/obo/UBERON_0013702"",""http://purl.obolibrary.org/obo/UBERON_0001007"",""http://purl.obolibrary.org/obo/UBERON_0002423""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""liver lobule""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""liver lobule""},""numDescendants"":0.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001193"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001281"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001639"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0006841"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0004647""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0001193"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic artery""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001193""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0006841"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""central vein of liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0006841""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""digestive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001639"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic portal vein""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001639""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001281"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic sinusoid""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001281""},""type"":[""class"",""entity""]},""UBERON:0004647"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0004647""},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0002107","","false","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0002107","","http://purl.obolibrary.org/obo/UBERON_0004647","http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0013702|http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0001193|http://purl.obolibrary.org/obo/UBERON_0001281|http://purl.obolibrary.org/obo/UBERON_0001639|http://purl.obolibrary.org/obo/UBERON_0006841","0.0","false","liver lobule","","efo-hierarchical-properties","","UBERON:0004647","","UBERON_0004647","liver lobule","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0006841","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0006841"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0006841""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001638"",""http://purl.obolibrary.org/obo/UBERON_0001981""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0001638"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001638"",""http://purl.obolibrary.org/obo/UBERON_0001981"",""http://purl.obolibrary.org/obo/UBERON_0000916"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0002100"",""http://purl.obolibrary.org/obo/UBERON_0013702"",""http://purl.obolibrary.org/obo/UBERON_0002107"",""http://purl.obolibrary.org/obo/UBERON_0002368"",""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000949"",""http://purl.obolibrary.org/obo/UBERON_0001007"",""http://purl.obolibrary.org/obo/UBERON_0002423"",""http://purl.obolibrary.org/obo/UBERON_0004647""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0001638"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""central vein of liver""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0001638"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""central vein of liver""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0006841""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""UBERON:0006841"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0006841"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0006841""},""http://purl.obolibrary.org/obo/UBERON_0001981"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blood vessel""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001981""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""digestive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0004647"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver lobule""},""curie"":{""type"":[""literal""],""value"":""UBERON:0004647""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001638"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""vein""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001638""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0004647","http://purl.obolibrary.org/obo/UBERON_0001638||||","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0001638|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0004647","","http://purl.obolibrary.org/obo/UBERON_0006841","http://purl.obolibrary.org/obo/UBERON_0001638|http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0013702|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0002423|http://purl.obolibrary.org/obo/UBERON_0004647","","0.0","false","central vein of liver","http://purl.obolibrary.org/obo/UBERON_0001638","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0001638|http://purl.obolibrary.org/obo/UBERON_0001981","UBERON:0006841","","UBERON_0006841","central vein of liver","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" -"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0013702","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0013702"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""body proper""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""body proper""},""numDescendants"":0.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0013702"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0013702""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""UBERON:0013702"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0013702"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0013702""},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000468","","false","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0002100","0.0","false","body proper","","efo-hierarchical-properties","","UBERON:0013702","","UBERON_0013702","body proper","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000467","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""anatomical system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""anatomical system""},""numDescendants"":4.0,""numHierarchicalDescendants"":13.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false}],""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000467""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","13.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000468","","false","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0000467","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0002423|http://purl.obolibrary.org/obo/UBERON_0002530","4.0","false","anatomical system","","efo-hierarchical-properties","","UBERON:0000467","","UBERON_0000467","anatomical system","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000468","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""multicellular organism""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""numDescendants"":0.0,""numHierarchicalDescendants"":19.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000483"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0013702"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000468""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000483"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000483""},""type"":[""class"",""entity""]}}}","false","false","false","true","false","","","19.0","class|entity","","","false","false","http://www.ebi.ac.uk/efo/efo.owl","","","http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000483|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0013702","0.0","false","multicellular organism","","efo-hierarchical-properties","","UBERON:0000468","","UBERON_0000468","multicellular organism","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000483","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000483"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000483""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""epithelium""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""epithelium""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000483""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000468","","false","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0000483","http://purl.obolibrary.org/obo/UBERON_0000468","","2.0","false","epithelium","","efo-hierarchical-properties","","UBERON:0000483","","UBERON_0000483","epithelium","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000916","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0002100"",""http://purl.obolibrary.org/obo/UBERON_0013702""],""hierarchicalParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""abdomen""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""abdomen""},""numDescendants"":0.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001281"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0006841"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000916""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0006841"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""central vein of liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0006841""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001281"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic sinusoid""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001281""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0002100","","false","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0002100","","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0001281|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0006841","0.0","false","abdomen","","efo-hierarchical-properties","","UBERON:0000916","","UBERON_0000916","abdomen","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0000949","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""endocrine system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/UBERON_0001007"",""http://purl.obolibrary.org/obo/UBERON_0001009"",""http://purl.obolibrary.org/obo/UBERON_0002423""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""endocrine system""},""numDescendants"":0.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000949""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""digestive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""circulatory system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","","http://purl.obolibrary.org/obo/UBERON_0000467","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000467","","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0002368","0.0","false","endocrine system","http://purl.obolibrary.org/obo/UBERON_0000467","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0000467","UBERON:0000949","http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0001009|http://purl.obolibrary.org/obo/UBERON_0002423","UBERON_0000949","endocrine system","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001007","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""digestive system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://www.w3.org/2002/07/owl#disjointWith"":[""http://purl.obolibrary.org/obo/UBERON_0001009"",""http://purl.obolibrary.org/obo/UBERON_0002423""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""digestive system""},""numDescendants"":0.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001007""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0001009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""circulatory system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","","http://purl.obolibrary.org/obo/UBERON_0000467","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000467","","http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0002423","0.0","false","digestive system","http://purl.obolibrary.org/obo/UBERON_0000467","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0000467","UBERON:0001007","http://purl.obolibrary.org/obo/UBERON_0001009|http://purl.obolibrary.org/obo/UBERON_0002423","UBERON_0001007","digestive system","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001009","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001009"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001009""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""circulatory system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://www.w3.org/2002/07/owl#disjointWith"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""circulatory system""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0004535"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001009"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001009""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0004535"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cardiovascular system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0004535""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","http://purl.obolibrary.org/obo/UBERON_0000467","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000467","","http://purl.obolibrary.org/obo/UBERON_0001009","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0004535","0.0","false","circulatory system","http://purl.obolibrary.org/obo/UBERON_0000467","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0000467","UBERON:0001009","http://purl.obolibrary.org/obo/UBERON_0002423","UBERON_0001009","circulatory system","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001193","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001193"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001193""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001637"",""http://purl.obolibrary.org/obo/UBERON_0001981""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0001637"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001637"",""http://purl.obolibrary.org/obo/UBERON_0001981"",""http://purl.obolibrary.org/obo/UBERON_0002107"",""http://purl.obolibrary.org/obo/UBERON_0002368"",""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0000949"",""http://purl.obolibrary.org/obo/UBERON_0000916"",""http://purl.obolibrary.org/obo/UBERON_0002100"",""http://purl.obolibrary.org/obo/UBERON_0013702"",""http://purl.obolibrary.org/obo/UBERON_0001007"",""http://purl.obolibrary.org/obo/UBERON_0002423"",""http://purl.obolibrary.org/obo/UBERON_0004647""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0001637"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hepatic artery""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0001637"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hepatic artery""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001193""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001981"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blood vessel""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001981""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""digestive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0004647"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver lobule""},""curie"":{""type"":[""literal""],""value"":""UBERON:0004647""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001637"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""artery""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001637""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0004647","http://purl.obolibrary.org/obo/UBERON_0001637||","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0001637|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0004647","","http://purl.obolibrary.org/obo/UBERON_0001193","http://purl.obolibrary.org/obo/UBERON_0001637|http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0013702|http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0002423|http://purl.obolibrary.org/obo/UBERON_0004647","","0.0","false","hepatic artery","http://purl.obolibrary.org/obo/UBERON_0001637","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0001637|http://purl.obolibrary.org/obo/UBERON_0001981","UBERON:0001193","","UBERON_0001193","hepatic artery","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001281","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001281"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001281""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001982"",""http://purl.obolibrary.org/obo/UBERON_0001981"",""http://purl.obolibrary.org/obo/UBERON_0001986"",""http://purl.obolibrary.org/obo/UBERON_0000483""],""directParent"":[""http://purl.obolibrary.org/obo/UBERON_0001982"",""http://purl.obolibrary.org/obo/UBERON_0001986""],""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001982"",""http://purl.obolibrary.org/obo/UBERON_0001981"",""http://purl.obolibrary.org/obo/UBERON_0002049"",""http://purl.obolibrary.org/obo/UBERON_0001986"",""http://purl.obolibrary.org/obo/UBERON_0000483"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0000916"",""http://purl.obolibrary.org/obo/UBERON_0002100"",""http://purl.obolibrary.org/obo/UBERON_0013702"",""http://purl.obolibrary.org/obo/UBERON_0002107"",""http://purl.obolibrary.org/obo/UBERON_0002368"",""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000949"",""http://purl.obolibrary.org/obo/UBERON_0001007"",""http://purl.obolibrary.org/obo/UBERON_0002423"",""http://purl.obolibrary.org/obo/UBERON_0004535"",""http://purl.obolibrary.org/obo/UBERON_0001009"",""http://purl.obolibrary.org/obo/UBERON_0004647""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0001982"",""http://purl.obolibrary.org/obo/UBERON_0001986"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0004535"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hepatic sinusoid""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0001982"",""http://purl.obolibrary.org/obo/UBERON_0001986"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004535"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hepatic sinusoid""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0004535"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004535"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001281""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0001986"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endothelium""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001986""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002049"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""vasculature""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002049""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001982"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""capillary""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001982""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0004535"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""cardiovascular system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0004535""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001981"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blood vessel""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001981""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""digestive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""circulatory system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0004647"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver lobule""},""curie"":{""type"":[""literal""],""value"":""UBERON:0004647""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000483"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000483""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0004535|http://purl.obolibrary.org/obo/UBERON_0004647","http://purl.obolibrary.org/obo/UBERON_0001982|http://purl.obolibrary.org/obo/UBERON_0001986||||||","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0001982|http://purl.obolibrary.org/obo/UBERON_0001986|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0004535|http://purl.obolibrary.org/obo/UBERON_0004647","","http://purl.obolibrary.org/obo/UBERON_0001281","http://purl.obolibrary.org/obo/UBERON_0001982|http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0002049|http://purl.obolibrary.org/obo/UBERON_0001986|http://purl.obolibrary.org/obo/UBERON_0000483|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0013702|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0002423|http://purl.obolibrary.org/obo/UBERON_0004535|http://purl.obolibrary.org/obo/UBERON_0001009|http://purl.obolibrary.org/obo/UBERON_0004647","","0.0","false","hepatic sinusoid","http://purl.obolibrary.org/obo/UBERON_0001982|http://purl.obolibrary.org/obo/UBERON_0001986","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0001982|http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0001986|http://purl.obolibrary.org/obo/UBERON_0000483","UBERON:0001281","","UBERON_0001281","hepatic sinusoid","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001637","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001637"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001637""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""artery""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""artery""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001637""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0001981"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blood vessel""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001981""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","http://purl.obolibrary.org/obo/UBERON_0001981","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0001981","","http://purl.obolibrary.org/obo/UBERON_0001637","http://purl.obolibrary.org/obo/UBERON_0001981","","1.0","false","artery","http://purl.obolibrary.org/obo/UBERON_0001981","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0001981","UBERON:0001637","","UBERON_0001637","artery","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001638","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001638"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001638""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""vein""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""vein""},""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001638""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0001981"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blood vessel""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001981""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","2.0","class|entity","","http://purl.obolibrary.org/obo/UBERON_0001981","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0001981","","http://purl.obolibrary.org/obo/UBERON_0001638","http://purl.obolibrary.org/obo/UBERON_0001981","","2.0","false","vein","http://purl.obolibrary.org/obo/UBERON_0001981","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0001981","UBERON:0001638","","UBERON_0001638","vein","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001639","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001639"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001639""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001638"",""http://purl.obolibrary.org/obo/UBERON_0001981""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0001638"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001638"",""http://purl.obolibrary.org/obo/UBERON_0001981"",""http://purl.obolibrary.org/obo/UBERON_0002107"",""http://purl.obolibrary.org/obo/UBERON_0002368"",""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0000949"",""http://purl.obolibrary.org/obo/UBERON_0000916"",""http://purl.obolibrary.org/obo/UBERON_0002100"",""http://purl.obolibrary.org/obo/UBERON_0013702"",""http://purl.obolibrary.org/obo/UBERON_0001007"",""http://purl.obolibrary.org/obo/UBERON_0002423"",""http://purl.obolibrary.org/obo/UBERON_0004647""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0001638"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hepatic portal vein""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0001638"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hepatic portal vein""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001639""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001981"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blood vessel""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001981""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""digestive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0004647"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver lobule""},""curie"":{""type"":[""literal""],""value"":""UBERON:0004647""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001638"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""vein""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001638""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0004647","http://purl.obolibrary.org/obo/UBERON_0001638||","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0001638|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0004647","","http://purl.obolibrary.org/obo/UBERON_0001639","http://purl.obolibrary.org/obo/UBERON_0001638|http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0013702|http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0002423|http://purl.obolibrary.org/obo/UBERON_0004647","","0.0","false","hepatic portal vein","http://purl.obolibrary.org/obo/UBERON_0001638","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0001638|http://purl.obolibrary.org/obo/UBERON_0001981","UBERON:0001639","","UBERON_0001639","hepatic portal vein","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001981","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001981""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""blood vessel""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""blood vessel""},""numDescendants"":7.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001281"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001981""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001281"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic sinusoid""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001281""},""type"":[""class"",""entity""]}}}","false","true","false","true","false","","","7.0","class|entity","","","false","false","http://www.ebi.ac.uk/efo/efo.owl","","","http://purl.obolibrary.org/obo/UBERON_0001981","","http://purl.obolibrary.org/obo/UBERON_0001281","7.0","false","blood vessel","","efo-hierarchical-properties","","UBERON:0001981","","UBERON_0001981","blood vessel","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001982","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001982"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001982""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0001981"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001981"",""http://purl.obolibrary.org/obo/UBERON_0002049""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0001981"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002049"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""capillary""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0001981"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002049"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""capillary""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002049"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002049"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001982""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002049"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""vasculature""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002049""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001981"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blood vessel""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001981""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0002049","http://purl.obolibrary.org/obo/UBERON_0001981|","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0002049","","http://purl.obolibrary.org/obo/UBERON_0001982","http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0002049","","1.0","false","capillary","http://purl.obolibrary.org/obo/UBERON_0001981","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0001981","UBERON:0001982","","UBERON_0001982","capillary","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0001986","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0001986"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0001986""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000483"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000483"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000483"",""http://purl.obolibrary.org/obo/UBERON_0000468""],""hierarchicalParent"":""http://purl.obolibrary.org/obo/UBERON_0000483"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""endothelium""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/UBERON_0000483"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""endothelium""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0001986""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000483"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""epithelium""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000483""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","","http://purl.obolibrary.org/obo/UBERON_0000483","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000483","","http://purl.obolibrary.org/obo/UBERON_0001986","http://purl.obolibrary.org/obo/UBERON_0000483|http://purl.obolibrary.org/obo/UBERON_0000468","","1.0","false","endothelium","http://purl.obolibrary.org/obo/UBERON_0000483","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0000483","UBERON:0001986","","UBERON_0001986","endothelium","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002049","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002049"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002049""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""vasculature""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""vasculature""},""numDescendants"":0.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001982"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002049"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002049""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001982"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""capillary""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001982""},""type"":[""class"",""entity""]}}}","false","false","false","true","false","","","2.0","class|entity","","","false","false","http://www.ebi.ac.uk/efo/efo.owl","","","http://purl.obolibrary.org/obo/UBERON_0002049","","http://purl.obolibrary.org/obo/UBERON_0001982","0.0","false","vasculature","","efo-hierarchical-properties","","UBERON:0002049","","UBERON_0002049","vasculature","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002100","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0013702""],""hierarchicalParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0013702"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""trunk""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0013702"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""trunk""},""numDescendants"":0.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001281"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0006841"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0013702"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0013702"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002100""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0006841"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""central vein of liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0006841""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001281"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic sinusoid""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001281""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0013702","","false","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0013702","","http://purl.obolibrary.org/obo/UBERON_0002100","http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0001281|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0006841","0.0","false","trunk","","efo-hierarchical-properties","","UBERON:0002100","","UBERON_0002100","trunk","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002107","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0002368"",""http://purl.obolibrary.org/obo/UBERON_0002530""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0002368"",""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0000949"",""http://purl.obolibrary.org/obo/UBERON_0000916"",""http://purl.obolibrary.org/obo/UBERON_0002100"",""http://purl.obolibrary.org/obo/UBERON_0013702"",""http://purl.obolibrary.org/obo/UBERON_0001007"",""http://purl.obolibrary.org/obo/UBERON_0002423""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0002368"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""liver""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0002368"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""liver""},""numDescendants"":0.0,""numHierarchicalDescendants"":5.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001193"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001281"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001639"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0006841"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false}],""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002107""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0001193"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic artery""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001193""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0006841"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""central vein of liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0006841""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""digestive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0004647"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver lobule""},""curie"":{""type"":[""literal""],""value"":""UBERON:0004647""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001639"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic portal vein""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001639""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001281"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic sinusoid""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001281""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","5.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0002368||||||","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0002423","","http://purl.obolibrary.org/obo/UBERON_0002107","http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0013702|http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0001193|http://purl.obolibrary.org/obo/UBERON_0001281|http://purl.obolibrary.org/obo/UBERON_0001639|http://purl.obolibrary.org/obo/UBERON_0004647|http://purl.obolibrary.org/obo/UBERON_0006841","0.0","false","liver","http://purl.obolibrary.org/obo/UBERON_0002368","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0002530","UBERON:0002107","","UBERON_0002107","liver","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002368","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002368"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""hasDirectChildren"":true,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0000949""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0002530"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""endocrine gland""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0002530"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false}],""http://www.w3.org/2002/07/owl#equivalentClass"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/UBERON_0002530"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false}]},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""numDescendants"":1.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000949"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002368""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000949","http://purl.obolibrary.org/obo/UBERON_0002530|","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000949","","http://purl.obolibrary.org/obo/UBERON_0002368","http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0000949","","1.0","false","endocrine gland","http://purl.obolibrary.org/obo/UBERON_0002530","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0002530","UBERON:0002368","","UBERON_0002368","endocrine gland","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002423","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0001007""],""hierarchicalParent"":[{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""numDescendants"":0.0,""numHierarchicalDescendants"":6.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002423"",""isObsolete"":false},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001007"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002423""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""digestive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","6.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0001007","","false","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0001007","","http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0001007","http://purl.obolibrary.org/obo/UBERON_0002107","0.0","false","hepatobiliary system","","efo-hierarchical-properties","","UBERON:0002423","","UBERON_0002423","hepatobiliary system","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0002530","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0002530"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""gland""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""gland""},""numDescendants"":2.0,""numHierarchicalDescendants"":7.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0002530""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]}}}","false","true","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","7.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000467","","false","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000467","","http://purl.obolibrary.org/obo/UBERON_0002530","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468","","2.0","false","gland","","efo-hierarchical-properties","","UBERON:0002530","","UBERON_0002530","gland","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0004535","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0004535"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0004535""},""directAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""directParent"":""http://purl.obolibrary.org/obo/UBERON_0000467"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0001009""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0001009"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""cardiovascular system""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0000467"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001009"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""cardiovascular system""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001281"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004535"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001009"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0001009"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0004535""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001009"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""circulatory system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001009""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001281"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic sinusoid""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001281""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","1.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0001009","http://purl.obolibrary.org/obo/UBERON_0000467|","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0001009","","http://purl.obolibrary.org/obo/UBERON_0004535","http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0001009","http://purl.obolibrary.org/obo/UBERON_0001281","0.0","false","cardiovascular system","http://purl.obolibrary.org/obo/UBERON_0000467","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0000467","UBERON:0004535","","UBERON_0004535","cardiovascular system","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0004647","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0004647""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0002107"",""http://purl.obolibrary.org/obo/UBERON_0002368"",""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0000949"",""http://purl.obolibrary.org/obo/UBERON_0000916"",""http://purl.obolibrary.org/obo/UBERON_0002100"",""http://purl.obolibrary.org/obo/UBERON_0013702"",""http://purl.obolibrary.org/obo/UBERON_0001007"",""http://purl.obolibrary.org/obo/UBERON_0002423""],""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""liver lobule""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""liver lobule""},""numDescendants"":0.0,""numHierarchicalDescendants"":4.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001193"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001281"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0001639"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0006841"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0004647""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0001193"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic artery""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001193""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0006841"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""central vein of liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0006841""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""digestive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001639"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic portal vein""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001639""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001281"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatic sinusoid""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001281""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","4.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0002107","","false","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0002107","","http://purl.obolibrary.org/obo/UBERON_0004647","http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0013702|http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0002423","http://purl.obolibrary.org/obo/UBERON_0001193|http://purl.obolibrary.org/obo/UBERON_0001281|http://purl.obolibrary.org/obo/UBERON_0001639|http://purl.obolibrary.org/obo/UBERON_0006841","0.0","false","liver lobule","","efo-hierarchical-properties","","UBERON:0004647","","UBERON_0004647","liver lobule","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0006841","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0006841"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0006841""},""directAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001638"",""http://purl.obolibrary.org/obo/UBERON_0001981""],""directParent"":""http://purl.obolibrary.org/obo/UBERON_0001638"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":[""http://purl.obolibrary.org/obo/UBERON_0001638"",""http://purl.obolibrary.org/obo/UBERON_0001981"",""http://purl.obolibrary.org/obo/UBERON_0000916"",""http://purl.obolibrary.org/obo/UBERON_0000468"",""http://purl.obolibrary.org/obo/UBERON_0002100"",""http://purl.obolibrary.org/obo/UBERON_0013702"",""http://purl.obolibrary.org/obo/UBERON_0002107"",""http://purl.obolibrary.org/obo/UBERON_0002368"",""http://purl.obolibrary.org/obo/UBERON_0002530"",""http://purl.obolibrary.org/obo/UBERON_0000467"",""http://purl.obolibrary.org/obo/UBERON_0000949"",""http://purl.obolibrary.org/obo/UBERON_0001007"",""http://purl.obolibrary.org/obo/UBERON_0002423"",""http://purl.obolibrary.org/obo/UBERON_0004647""],""hierarchicalParent"":[""http://purl.obolibrary.org/obo/UBERON_0001638"",{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]}],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""central vein of liver""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":[""http://purl.obolibrary.org/obo/UBERON_0001638"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""central vein of liver""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedTo"":[{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0002107"",""isObsolete"":false},{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0004647"",""isObsolete"":false}],""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0006841""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002368"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002368""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000467"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""anatomical system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000467""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002107"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002107""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001981"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""blood vessel""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001981""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001007"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""digestive system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001007""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0013702"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""body proper""},""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002423"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hepatobiliary system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002423""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0004647"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""liver lobule""},""curie"":{""type"":[""literal""],""value"":""UBERON:0004647""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0001638"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""vein""},""curie"":{""type"":[""literal""],""value"":""UBERON:0001638""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000949"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""endocrine system""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000949""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002530"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""gland""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002530""},""type"":[""class"",""entity""]}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0004647","http://purl.obolibrary.org/obo/UBERON_0001638||||","true","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0001638|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0004647","","http://purl.obolibrary.org/obo/UBERON_0006841","http://purl.obolibrary.org/obo/UBERON_0001638|http://purl.obolibrary.org/obo/UBERON_0001981|http://purl.obolibrary.org/obo/UBERON_0000916|http://purl.obolibrary.org/obo/UBERON_0000468|http://purl.obolibrary.org/obo/UBERON_0002100|http://purl.obolibrary.org/obo/UBERON_0013702|http://purl.obolibrary.org/obo/UBERON_0002107|http://purl.obolibrary.org/obo/UBERON_0002368|http://purl.obolibrary.org/obo/UBERON_0002530|http://purl.obolibrary.org/obo/UBERON_0000467|http://purl.obolibrary.org/obo/UBERON_0000949|http://purl.obolibrary.org/obo/UBERON_0001007|http://purl.obolibrary.org/obo/UBERON_0002423|http://purl.obolibrary.org/obo/UBERON_0004647","","0.0","false","central vein of liver","http://purl.obolibrary.org/obo/UBERON_0001638","efo-hierarchical-properties","http://purl.obolibrary.org/obo/UBERON_0001638|http://purl.obolibrary.org/obo/UBERON_0001981","UBERON:0006841","","UBERON_0006841","central vein of liver","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" +"efo-hierarchical-properties+class+http://purl.obolibrary.org/obo/UBERON_0013702","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0013702"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0013702""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050"",""parentRelationToChild"":""http://purl.obolibrary.org/obo/BFO_0000051""}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""body proper""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""body proper""},""numDescendants"":0.0,""numHierarchicalDescendants"":8.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0002100"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0013702"",""isObsolete"":false},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000468"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0013702""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0002100"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""trunk""},""curie"":{""type"":[""literal""],""value"":""UBERON:0002100""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0000468"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""multicellular organism""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000468""},""type"":[""class"",""entity""]}}}","false","false","true","true","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","8.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000468","","false","false","http://www.ebi.ac.uk/efo/efo.owl","http://purl.obolibrary.org/obo/UBERON_0000468","","http://purl.obolibrary.org/obo/UBERON_0013702","http://purl.obolibrary.org/obo/UBERON_0000468","http://purl.obolibrary.org/obo/UBERON_0002100","0.0","false","body proper","","efo-hierarchical-properties","","UBERON:0013702","","UBERON_0013702","body proper","efo-hierarchical-properties","http://www.w3.org/2002/07/owl#Class" diff --git a/testcases_expected_output/hierarchical-properties/efo/efo-hierarchical-properties_properties.csv b/testcases_expected_output/hierarchical-properties/efo/efo-hierarchical-properties_properties.csv index d11f4b06d..72feffc7a 100644 --- a/testcases_expected_output/hierarchical-properties/efo/efo-hierarchical-properties_properties.csv +++ b/testcases_expected_output/hierarchical-properties/efo/efo-hierarchical-properties_properties.csv @@ -1,19 +1,19 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym:string[]","isDefiningOntology:string[]","linkedEntities:string[]","http__//www.geneontology.org/formats/oboInOwl#hasDbXref:string[]","numHierarchicalDescendants:string[]","type:string[]","http__//purl.obolibrary.org/obo/RO_0040042:string[]","http__//www.w3.org/2002/07/owl#inverseOf:string[]","synonymProperty:string[]","http__//www.geneontology.org/formats/oboInOwl#id:string[]","synonym:string[]","http__//www.geneontology.org/formats/oboInOwl#shorthand:string[]","definitionProperty:string[]","http__//www.geneontology.org/formats/oboInOwl#inSubset:string[]","hasDirectParents:string[]","http__//www.geneontology.org/formats/oboInOwl#hasOBONamespace:string[]","http__//www.w3.org/2000/01/rdf-schema#comment:string[]","imported:string[]","http__//purl.obolibrary.org/obo/IAO_0000116:string[]","definition:string[]","ontologyIri:string[]","http__//purl.obolibrary.org/obo/IAO_0000115:string[]","http__//purl.obolibrary.org/obo/IAO_0000112:string[]","http__//purl.obolibrary.org/obo/IAO_0000111:string[]","iri","http__//purl.obolibrary.org/obo/IAO_0000118:string[]","numDescendants:string[]","isObsolete:string[]","label:string[]","http__//www.ebi.ac.uk/efo/EFO_URI:string[]","ontologyPreferredPrefix:string[]","directAncestor:string[]","http__//purl.obolibrary.org/obo/RO_0001900:string[]","curie:string[]","shortForm:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","http__//www.w3.org/2000/01/rdf-schema#seeAlso:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/BFO_0000050","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000050"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""definition"":[{""type"":[""literal""],""value"":""For continuants: C part_of C\u0027 if and only if: given any c that instantiates C at a time t, there is some c\u0027 such that c\u0027 instantiates C\u0027 at time t, and c *part_of* c\u0027 at t. For processes: P part_of P\u0027 if and only if: given any p that instantiates P at a time t, there is some p\u0027 such that p\u0027 instantiates P\u0027 at time t, and p *part_of* p\u0027 at t. (Here *part_of* is the instance-level part-relation.)""},{""type"":[""literal""],""value"":""a core relation that holds between a part and its whole""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""},{""type"":[""literal""],""value"":""EFO_0000822""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":[{""type"":[""literal""],""value"":""is part of""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is part of"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""value"":""my brain is part of my body (continuant parthood, two material entities)""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my brain is part of my body (continuant parthood, two material entities)"",""lang"":""en""},{""type"":[""literal""],""value"":""my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)"",""lang"":""en""},{""type"":[""literal""],""value"":""this day is part of this year (occurrent parthood)""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this day is part of this year (occurrent parthood)"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":[{""type"":[""literal""],""value"":""For continuants: C part_of C\u0027 if and only if: given any c that instantiates C at a time t, there is some c\u0027 such that c\u0027 instantiates C\u0027 at time t, and c *part_of* c\u0027 at t. For processes: P part_of P\u0027 if and only if: given any p that instantiates P at a time t, there is some p\u0027 such that p\u0027 instantiates P\u0027 at time t, and p *part_of* p\u0027 at t. (Here *part_of* is the instance-level part-relation.)""},{""type"":[""literal""],""value"":""a core relation that holds between a part and its whole""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""value"":""Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other."",""lang"":""en""},{""type"":[""literal""],""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime"",""lang"":""en""},{""type"":[""literal""],""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""value"":""part_of""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part_of"",""lang"":""en""}],""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://purl.obolibrary.org/obo/RO_0040042"":[""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000031""],""http://www.ebi.ac.uk/efo/EFO_URI"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/part_of""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""BFO:0000050""},{""type"":[""literal""],""value"":""OBO_REL:part_of""}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""type"":[""literal""],""value"":""part of""},""http://www.geneontology.org/formats/oboInOwl#hasOBONamespace"":[{""type"":[""literal""],""value"":""external""},{""type"":[""literal""],""value"":""human_stages_ontology""},{""type"":[""literal""],""value"":""protein""},{""type"":[""literal""],""value"":""quality""},{""type"":[""literal""],""value"":""relationship""},{""type"":[""literal""],""value"":""uberon""}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""part_of""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/valid_for_go_annotation_extension"",""http://purl.obolibrary.org/obo/valid_for_go_gp2term"",""http://purl.obolibrary.org/obo/valid_for_go_ontology"",""http://purl.obolibrary.org/obo/valid_for_gocam""],""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""part_of""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""EFO_0000822""},""http://www.w3.org/2000/01/rdf-schema#label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""http://www.w3.org/2000/01/rdf-schema#seeAlso"":[""http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections"",""http://ontologydesignpatterns.org/wiki/Submissions:PartOf"",{""type"":[""literal""],""value"":""http://www.obofoundry.org/ro/#OBO_REL:part_of""}],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""is part of""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is part of"",""lang"":""en""},{""type"":[""literal""],""value"":""my brain is part of my body (continuant parthood, two material entities)""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my brain is part of my body (continuant parthood, two material entities)"",""lang"":""en""},{""type"":[""literal""],""value"":""my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)"",""lang"":""en""},{""type"":[""literal""],""value"":""this day is part of this year (occurrent parthood)""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this day is part of this year (occurrent parthood)"",""lang"":""en""},{""type"":[""literal""],""value"":""For continuants: C part_of C\u0027 if and only if: given any c that instantiates C at a time t, there is some c\u0027 such that c\u0027 instantiates C\u0027 at time t, and c *part_of* c\u0027 at t. For processes: P part_of P\u0027 if and only if: given any p that instantiates P at a time t, there is some p\u0027 such that p\u0027 instantiates P\u0027 at time t, and p *part_of* p\u0027 at t. (Here *part_of* is the instance-level part-relation.)""},{""type"":[""literal""],""value"":""a core relation that holds between a part and its whole""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""},{""type"":[""literal""],""value"":""Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other."",""lang"":""en""},{""type"":[""literal""],""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime"",""lang"":""en""},{""type"":[""literal""],""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."",""lang"":""en""},{""type"":[""literal""],""value"":""part_of""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part_of"",""lang"":""en""},{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/part_of""},{""type"":[""literal""],""value"":""BFO:0000050""},{""type"":[""literal""],""value"":""OBO_REL:part_of""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""external""},{""type"":[""literal""],""value"":""human_stages_ontology""},{""type"":[""literal""],""value"":""protein""},{""type"":[""literal""],""value"":""quality""},{""type"":[""literal""],""value"":""relationship""},{""type"":[""literal""],""value"":""uberon""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000050""},""synonym"":{""type"":[""literal""],""value"":""part of""},""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/RO_0040042"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0040042""},""curie"":{""type"":[""literal""],""value"":""RO:0040042""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000112""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000111""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000050"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000050"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000050""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000118""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.ebi.ac.uk/efo/EFO_URI"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""EFO_URI""},""curie"":{""type"":[""literal""],""value"":""EFO:URI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0001900""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://www.geneontology.org/formats/oboInOwl#hasOBONamespace"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasOBONamespace""},""curie"":{""type"":[""literal""],""value"":""hasOBONamespace""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000019"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000019"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""bfo:0000019""},""http://purl.obolibrary.org/obo/BFO_0000017"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000017"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""bfo:0000017""},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000004"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000004"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""bfo:0000004""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000002"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""bfo:0000002""},""http://purl.obolibrary.org/obo/BFO_0000003"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000003"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""bfo:0000003""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000031"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""bfo:0000031""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000020"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""bfo:0000020""}}}","false","false","false","false","part of","false","","BFO:0000050|OBO_REL:part_of","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000051","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","part_of","part of","part_of","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/valid_for_go_annotation_extension|http://purl.obolibrary.org/obo/valid_for_go_gp2term|http://purl.obolibrary.org/obo/valid_for_go_ontology|http://purl.obolibrary.org/obo/valid_for_gocam","false","external|human_stages_ontology|protein|quality|relationship|uberon","EFO_0000822","false","Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.|Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.|Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/|Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/|Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime|Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.) +"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/BFO_0000050","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000050"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""definition"":[{""type"":[""literal""],""value"":""For continuants: C part_of C\u0027 if and only if: given any c that instantiates C at a time t, there is some c\u0027 such that c\u0027 instantiates C\u0027 at time t, and c *part_of* c\u0027 at t. For processes: P part_of P\u0027 if and only if: given any p that instantiates P at a time t, there is some p\u0027 such that p\u0027 instantiates P\u0027 at time t, and p *part_of* p\u0027 at t. (Here *part_of* is the instance-level part-relation.)""},{""type"":[""literal""],""value"":""a core relation that holds between a part and its whole""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""},{""type"":[""literal""],""value"":""EFO_0000822""}],""definitionProperty"":[{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""}],""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://purl.obolibrary.org/obo/IAO_0000111"":[{""type"":[""literal""],""value"":""is part of""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is part of"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000112"":[{""type"":[""literal""],""value"":""my brain is part of my body (continuant parthood, two material entities)""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my brain is part of my body (continuant parthood, two material entities)"",""lang"":""en""},{""type"":[""literal""],""value"":""my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)"",""lang"":""en""},{""type"":[""literal""],""value"":""this day is part of this year (occurrent parthood)""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this day is part of this year (occurrent parthood)"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000115"":[{""type"":[""literal""],""value"":""For continuants: C part_of C\u0027 if and only if: given any c that instantiates C at a time t, there is some c\u0027 such that c\u0027 instantiates C\u0027 at time t, and c *part_of* c\u0027 at t. For processes: P part_of P\u0027 if and only if: given any p that instantiates P at a time t, there is some p\u0027 such that p\u0027 instantiates P\u0027 at time t, and p *part_of* p\u0027 at t. (Here *part_of* is the instance-level part-relation.)""},{""type"":[""literal""],""value"":""a core relation that holds between a part and its whole""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000116"":[{""type"":[""literal""],""value"":""Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other."",""lang"":""en""},{""type"":[""literal""],""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime"",""lang"":""en""},{""type"":[""literal""],""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."",""lang"":""en""}],""http://purl.obolibrary.org/obo/IAO_0000118"":[{""type"":[""literal""],""value"":""part_of""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part_of"",""lang"":""en""}],""http://purl.obolibrary.org/obo/RO_0001900"":""http://purl.obolibrary.org/obo/RO_0001901"",""http://purl.obolibrary.org/obo/RO_0040042"":[""http://purl.obolibrary.org/obo/BFO_0000002"",""http://purl.obolibrary.org/obo/BFO_0000003"",""http://purl.obolibrary.org/obo/BFO_0000004"",""http://purl.obolibrary.org/obo/BFO_0000017"",""http://purl.obolibrary.org/obo/BFO_0000019"",""http://purl.obolibrary.org/obo/BFO_0000020"",""http://purl.obolibrary.org/obo/BFO_0000031""],""http://www.ebi.ac.uk/efo/EFO_URI"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/part_of""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":[{""type"":[""literal""],""value"":""BFO:0000050""},{""type"":[""literal""],""value"":""OBO_REL:part_of""}],""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""type"":[""literal""],""value"":""part of""},""http://www.geneontology.org/formats/oboInOwl#hasOBONamespace"":[{""type"":[""literal""],""value"":""external""},{""type"":[""literal""],""value"":""human_stages_ontology""},{""type"":[""literal""],""value"":""protein""},{""type"":[""literal""],""value"":""quality""},{""type"":[""literal""],""value"":""relationship""},{""type"":[""literal""],""value"":""uberon""}],""http://www.geneontology.org/formats/oboInOwl#id"":{""type"":[""literal""],""value"":""part_of""},""http://www.geneontology.org/formats/oboInOwl#inSubset"":[""http://purl.obolibrary.org/obo/valid_for_go_annotation_extension"",""http://purl.obolibrary.org/obo/valid_for_go_gp2term"",""http://purl.obolibrary.org/obo/valid_for_go_ontology"",""http://purl.obolibrary.org/obo/valid_for_gocam""],""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""part_of""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""EFO_0000822""},""http://www.w3.org/2000/01/rdf-schema#label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""http://www.w3.org/2000/01/rdf-schema#seeAlso"":[""http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections"",""http://ontologydesignpatterns.org/wiki/Submissions:PartOf"",{""type"":[""literal""],""value"":""http://www.obofoundry.org/ro/#OBO_REL:part_of""}],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000051"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""is part of""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""is part of"",""lang"":""en""},{""type"":[""literal""],""value"":""my brain is part of my body (continuant parthood, two material entities)""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my brain is part of my body (continuant parthood, two material entities)"",""lang"":""en""},{""type"":[""literal""],""value"":""my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)"",""lang"":""en""},{""type"":[""literal""],""value"":""this day is part of this year (occurrent parthood)""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""this day is part of this year (occurrent parthood)"",""lang"":""en""},{""type"":[""literal""],""value"":""For continuants: C part_of C\u0027 if and only if: given any c that instantiates C at a time t, there is some c\u0027 such that c\u0027 instantiates C\u0027 at time t, and c *part_of* c\u0027 at t. For processes: P part_of P\u0027 if and only if: given any p that instantiates P at a time t, there is some p\u0027 such that p\u0027 instantiates P\u0027 at time t, and p *part_of* p\u0027 at t. (Here *part_of* is the instance-level part-relation.)""},{""type"":[""literal""],""value"":""a core relation that holds between a part and its whole""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""a core relation that holds between a part and its whole"",""lang"":""en""},{""type"":[""literal""],""value"":""Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other."",""lang"":""en""},{""type"":[""literal""],""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime"",""lang"":""en""},{""type"":[""literal""],""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027.""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."",""lang"":""en""},{""type"":[""literal""],""value"":""part_of""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part_of"",""lang"":""en""},{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/part_of""},{""type"":[""literal""],""value"":""BFO:0000050""},{""type"":[""literal""],""value"":""OBO_REL:part_of""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""external""},{""type"":[""literal""],""value"":""human_stages_ontology""},{""type"":[""literal""],""value"":""protein""},{""type"":[""literal""],""value"":""quality""},{""type"":[""literal""],""value"":""relationship""},{""type"":[""literal""],""value"":""uberon""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000050""},""synonym"":{""type"":[""literal""],""value"":""part of""},""synonymProperty"":{""type"":[""literal""],""value"":""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000019"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000019"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""bfo:0000019""},""http://purl.obolibrary.org/obo/BFO_0000017"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000017"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""bfo:0000017""},""http://purl.obolibrary.org/obo/RO_0040042"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0040042""},""curie"":{""type"":[""literal""],""value"":""RO:0040042""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#id"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""id""},""curie"":{""type"":[""literal""],""value"":""id""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#inSubset"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""inSubset""},""curie"":{""type"":[""literal""],""value"":""inSubset""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000116"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000115"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000112"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000112""},""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/IAO_0000111"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000111""},""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""type"":[""property"",""annotationProperty"",""entity""]},""BFO:0000050"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000050"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000050""},""http://purl.obolibrary.org/obo/BFO_0000004"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000004"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""bfo:0000004""},""http://purl.obolibrary.org/obo/IAO_0000118"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""IAO_0000118""},""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.ebi.ac.uk/efo/EFO_URI"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""EFO_URI""},""curie"":{""type"":[""literal""],""value"":""EFO:URI""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001900"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""RO_0001900""},""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/RO_0001901"":{""url"":""http://purl.obolibrary.org/obo/RO_0001901"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""ro:0001901""},""http://purl.obolibrary.org/obo/BFO_0000002"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000002"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""bfo:0000002""},""http://purl.obolibrary.org/obo/BFO_0000003"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000003"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""bfo:0000003""},""http://www.geneontology.org/formats/oboInOwl#hasExactSynonym"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasExactSynonym""},""curie"":{""type"":[""literal""],""value"":""hasExactSynonym""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#hasOBONamespace"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasOBONamespace""},""curie"":{""type"":[""literal""],""value"":""hasOBONamespace""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000031"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000031"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""bfo:0000031""},""http://purl.obolibrary.org/obo/BFO_0000020"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000020"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""bfo:0000020""}}}","false","false","false","false","part of","false","","BFO:0000050|OBO_REL:part_of","0.0","property|objectProperty|entity","http://purl.obolibrary.org/obo/BFO_0000002|http://purl.obolibrary.org/obo/BFO_0000003|http://purl.obolibrary.org/obo/BFO_0000004|http://purl.obolibrary.org/obo/BFO_0000017|http://purl.obolibrary.org/obo/BFO_0000019|http://purl.obolibrary.org/obo/BFO_0000020|http://purl.obolibrary.org/obo/BFO_0000031","http://purl.obolibrary.org/obo/BFO_0000051","http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","part_of","part of","part_of","http://purl.obolibrary.org/obo/IAO_0000115|http://www.w3.org/2000/01/rdf-schema#comment","http://purl.obolibrary.org/obo/valid_for_go_annotation_extension|http://purl.obolibrary.org/obo/valid_for_go_gp2term|http://purl.obolibrary.org/obo/valid_for_go_ontology|http://purl.obolibrary.org/obo/valid_for_gocam","false","external|human_stages_ontology|protein|quality|relationship|uberon","EFO_0000822","false","Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.|Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.|Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/|Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/|Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime|Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.) A continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'.|Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.) A continuant cannot be part of an occurrent: use 'participates in'. An occurrent cannot be part of a continuant: use 'has participant'. A material entity cannot be part of an immaterial entity: use 'has location'. A specifically dependent continuant cannot be part of an independent continuant: use 'inheres in'. An independent continuant cannot be part of a specifically dependent continuant: use 'bearer of'.","For continuants: C part_of C' if and only if: given any c that instantiates C at a time t, there is some c' such that c' instantiates C' at time t, and c *part_of* c' at t. For processes: P part_of P' if and only if: given any p that instantiates P at a time t, there is some p' such that p' instantiates P' at time t, and p *part_of* p' at t. (Here *part_of* is the instance-level part-relation.)|a core relation that holds between a part and its whole|a core relation that holds between a part and its whole|EFO_0000822","http://www.ebi.ac.uk/efo/efo.owl","For continuants: C part_of C' if and only if: given any c that instantiates C at a time t, there is some c' such that c' instantiates C' at time t, and c *part_of* c' at t. For processes: P part_of P' if and only if: given any p that instantiates P at a time t, there is some p' such that p' instantiates P' at time t, and p *part_of* p' at t. (Here *part_of* is the instance-level part-relation.)|a core relation that holds between a part and its whole|a core relation that holds between a part and its whole","my brain is part of my body (continuant parthood, two material entities)|my brain is part of my body (continuant parthood, two material entities)|my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)|my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)|this day is part of this year (occurrent parthood)|this day is part of this year (occurrent parthood)","is part of|is part of","http://purl.obolibrary.org/obo/BFO_0000050","part_of|part_of","0.0","false","part of|part of|part_of","http://www.ebi.ac.uk/efo/part_of","efo-hierarchical-properties","","http://purl.obolibrary.org/obo/RO_0001901","BFO:0000050","BFO_0000050","part of|part of|part_of","efo-hierarchical-properties","http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections|http://ontologydesignpatterns.org/wiki/Submissions:PartOf|http://www.obofoundry.org/ro/#OBO_REL:part_of","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" "efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/BFO_0000051","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000051"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.ebi.ac.uk/efo/EFO_URI"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/has_part""},""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""type"":[""literal""],""value"":""BFO:0000051""},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""type"":[""literal""],""value"":""has_part""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""http://www.w3.org/2002/07/owl#inverseOf"":""http://purl.obolibrary.org/obo/BFO_0000050"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/has_part""},{""type"":[""literal""],""value"":""BFO:0000051""},{""type"":[""literal""],""value"":""has_part""},false],""shortForm"":{""type"":[""literal""],""value"":""BFO_0000051""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""http://www.geneontology.org/formats/oboInOwl#hasDbXref"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""hasDbXref""},""curie"":{""type"":[""literal""],""value"":""hasDbXref""},""type"":[""property"",""annotationProperty"",""entity""]},""http://www.geneontology.org/formats/oboInOwl#shorthand"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""shorthand""},""curie"":{""type"":[""literal""],""value"":""shorthand""},""type"":[""property"",""annotationProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""part of"",""lang"":""en""},{""type"":[""literal""],""value"":""part of""},{""type"":[""literal""],""value"":""part_of""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""BFO:0000051"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000051"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000051""},""http://www.ebi.ac.uk/efo/EFO_URI"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""EFO_URI""},""curie"":{""type"":[""literal""],""value"":""EFO:URI""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","false","false","","false","","BFO:0000051","0.0","property|objectProperty|entity","","http://purl.obolibrary.org/obo/BFO_0000050","","","","has_part","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/BFO_0000051","","0.0","false","has part|has_part","http://www.ebi.ac.uk/efo/has_part","efo-hierarchical-properties","","","BFO:0000051","BFO_0000051","has part|has_part","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000111","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000111"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000111""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000111""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""IAO:0000111"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000111"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000111""}}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000111","","0.0","false","IAO_0000111","","efo-hierarchical-properties","","","IAO:0000111","IAO_0000111","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" -"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000112","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000112"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000112""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000112""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""IAO:0000112"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000112"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000112""}}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000112","","0.0","false","IAO_0000112","","efo-hierarchical-properties","","","IAO:0000112","IAO_0000112","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" -"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000115","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000115"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000115""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""IAO:0000115"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000115"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000115""}}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000115","","0.0","false","IAO_0000115","","efo-hierarchical-properties","","","IAO:0000115","IAO_0000115","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" -"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000116","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000116"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000116""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""IAO:0000116"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000116"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000116""}}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000116","","0.0","false","IAO_0000116","","efo-hierarchical-properties","","","IAO:0000116","IAO_0000116","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" -"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000118","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000118"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000118""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000118""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""IAO:0000118"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000118"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000118""}}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000118","","0.0","false","IAO_0000118","","efo-hierarchical-properties","","","IAO:0000118","IAO_0000118","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" -"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000232","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000232"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000232""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000232""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""IAO:0000232"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000232"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""IAO:0000232""}}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000232","","0.0","false","IAO_0000232","","efo-hierarchical-properties","","","IAO:0000232","IAO_0000232","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" -"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/RO_0001900","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0001900"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""RO_0001900""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0001900""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""RO:0001900"":{""url"":""http://purl.obolibrary.org/obo/RO_0001900"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0001900""}}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/RO_0001900","","0.0","false","RO_0001900","","efo-hierarchical-properties","","","RO:0001900","RO_0001900","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" -"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/RO_0002174","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002174"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002174""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""RO_0002174""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002174""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""RO:0002174"":{""url"":""http://purl.obolibrary.org/obo/RO_0002174"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0002174""}}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/RO_0002174","","0.0","false","RO_0002174","","efo-hierarchical-properties","","","RO:0002174","RO_0002174","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" -"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/RO_0040042","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0040042"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0040042""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""RO_0040042""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0040042""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{""RO:0040042"":{""url"":""http://purl.obolibrary.org/obo/RO_0040042"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""RO:0040042""}}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/RO_0040042","","0.0","false","RO_0040042","","efo-hierarchical-properties","","","RO:0040042","RO_0040042","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" +"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000111","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000111"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000111""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000111""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000111""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000111","","0.0","false","IAO_0000111","","efo-hierarchical-properties","","","IAO:0000111","IAO_0000111","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" +"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000112","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000112"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000112""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000112""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000112""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000112","","0.0","false","IAO_0000112","","efo-hierarchical-properties","","","IAO:0000112","IAO_0000112","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" +"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000115","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000115"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000115""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000115""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000115""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000115","","0.0","false","IAO_0000115","","efo-hierarchical-properties","","","IAO:0000115","IAO_0000115","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" +"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000116","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000116"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000116""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000116""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000116""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000116","","0.0","false","IAO_0000116","","efo-hierarchical-properties","","","IAO:0000116","IAO_0000116","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" +"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000118","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000118"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000118""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000118""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000118""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000118","","0.0","false","IAO_0000118","","efo-hierarchical-properties","","","IAO:0000118","IAO_0000118","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" +"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000232","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/IAO_0000232"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""IAO:0000232""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""IAO_0000232""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""IAO_0000232""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/IAO_0000232","","0.0","false","IAO_0000232","","efo-hierarchical-properties","","","IAO:0000232","IAO_0000232","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" +"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/RO_0001900","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0001900"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0001900""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""RO_0001900""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0001900""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/RO_0001900","","0.0","false","RO_0001900","","efo-hierarchical-properties","","","RO:0001900","RO_0001900","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" +"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/RO_0002174","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0002174"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0002174""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""RO_0002174""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0002174""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/RO_0002174","","0.0","false","RO_0002174","","efo-hierarchical-properties","","","RO:0002174","RO_0002174","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" +"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/RO_0040042","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/RO_0040042"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""RO:0040042""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""RO_0040042""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""RO_0040042""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/RO_0040042","","0.0","false","RO_0040042","","efo-hierarchical-properties","","","RO:0040042","RO_0040042","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" "efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/UBPROP_0000001","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/UBPROP_0000001"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBPROP:0000001""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""UBPROP_0000001""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBPROP_0000001""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/UBPROP_0000001","","0.0","false","UBPROP_0000001","","efo-hierarchical-properties","","","UBPROP:0000001","UBPROP_0000001","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" "efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/UBPROP_0000002","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/UBPROP_0000002"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBPROP:0000002""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""UBPROP_0000002""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBPROP_0000002""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/UBPROP_0000002","","0.0","false","UBPROP_0000002","","efo-hierarchical-properties","","","UBPROP:0000002","UBPROP_0000002","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" "efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/UBPROP_0000003","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/UBPROP_0000003"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBPROP:0000003""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""UBPROP_0000003""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-hierarchical-properties""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBPROP_0000003""},""isDefiningOntology"":false,""appearsIn"":[""efo-hierarchical-properties""],""linkedEntities"":{}}","false","false","false","false","","false","","","0.0","property|annotationProperty|entity","","","","","","","","","false","","","false","","","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/UBPROP_0000003","","0.0","false","UBPROP_0000003","","efo-hierarchical-properties","","","UBPROP:0000003","UBPROP_0000003","","efo-hierarchical-properties","","http://www.w3.org/2002/07/owl#AnnotationProperty" diff --git a/testcases_expected_output/hierarchical-properties/efo/ontologies_linked.json b/testcases_expected_output/hierarchical-properties/efo/ontologies_linked.json index 963e65307..9be2f6168 100644 --- a/testcases_expected_output/hierarchical-properties/efo/ontologies_linked.json +++ b/testcases_expected_output/hierarchical-properties/efo/ontologies_linked.json @@ -310,11 +310,6 @@ "entity" ] }, - "UBERON:0000467": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000467", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000467" - }, "http://purl.obolibrary.org/obo/UBERON_0002423": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -636,11 +631,6 @@ "class", "entity" ] - }, - "UBERON:0000468": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000468", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000468" } } }, @@ -830,11 +820,6 @@ "class", "entity" ] - }, - "UBERON:0000483": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000483", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000483" } } }, @@ -1050,11 +1035,6 @@ "entity" ] }, - "UBERON:0000916": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000916", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000916" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -1410,11 +1390,6 @@ "entity" ] }, - "UBERON:0000949": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000949", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000949" - }, "http://purl.obolibrary.org/obo/UBERON_0001007": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -1603,10 +1578,25 @@ "efo-hierarchical-properties" ], "linkedEntities": { - "UBERON:0001007": { - "url": "http://purl.obolibrary.org/obo/UBERON_0001007", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0001007" + "http://purl.obolibrary.org/obo/UBERON_0001009": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "circulatory system" + }, + "curie": { + "type": [ + "literal" + ], + "value": "UBERON:0001009" + }, + "type": [ + "class", + "entity" + ] }, "http://purl.obolibrary.org/obo/BFO_0000050": { "numAppearsIn": 1, @@ -1645,100 +1635,80 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/UBERON_0000467": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "anatomical system" - }, - "curie": { - "type": [ - "literal" - ], - "value": "UBERON:0000467" - }, - "type": [ - "class", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/UBERON_0002107": { + "http://purl.obolibrary.org/obo/UBERON_0002423": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "liver" + "value": "hepatobiliary system" }, "curie": { "type": [ "literal" ], - "value": "UBERON:0002107" + "value": "UBERON:0002423" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/UBERON_0001009": { + "http://purl.obolibrary.org/obo/UBERON_0000467": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "circulatory system" + "value": "anatomical system" }, "curie": { "type": [ "literal" ], - "value": "UBERON:0001009" + "value": "UBERON:0000467" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/UBERON_0002423": { + "http://purl.obolibrary.org/obo/UBERON_0000468": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hepatobiliary system" + "value": "multicellular organism" }, "curie": { "type": [ "literal" ], - "value": "UBERON:0002423" + "value": "UBERON:0000468" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/UBERON_0000468": { + "http://purl.obolibrary.org/obo/UBERON_0002107": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "multicellular organism" + "value": "liver" }, "curie": { "type": [ "literal" ], - "value": "UBERON:0000468" + "value": "UBERON:0002107" }, "type": [ "class", @@ -1837,11 +1807,6 @@ "efo-hierarchical-properties" ], "linkedEntities": { - "UBERON:0001009": { - "url": "http://purl.obolibrary.org/obo/UBERON_0001009", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0001009" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -1879,80 +1844,80 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/UBERON_0000467": { + "http://purl.obolibrary.org/obo/UBERON_0002423": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "anatomical system" + "value": "hepatobiliary system" }, "curie": { "type": [ "literal" ], - "value": "UBERON:0000467" + "value": "UBERON:0002423" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/UBERON_0004535": { + "http://purl.obolibrary.org/obo/UBERON_0000467": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "cardiovascular system" + "value": "anatomical system" }, "curie": { "type": [ "literal" ], - "value": "UBERON:0004535" + "value": "UBERON:0000467" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/UBERON_0002423": { + "http://purl.obolibrary.org/obo/UBERON_0000468": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hepatobiliary system" + "value": "multicellular organism" }, "curie": { "type": [ "literal" ], - "value": "UBERON:0002423" + "value": "UBERON:0000468" }, "type": [ "class", "entity" ] }, - "http://purl.obolibrary.org/obo/UBERON_0000468": { + "http://purl.obolibrary.org/obo/UBERON_0004535": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "multicellular organism" + "value": "cardiovascular system" }, "curie": { "type": [ "literal" ], - "value": "UBERON:0000468" + "value": "UBERON:0004535" }, "type": [ "class", @@ -2244,11 +2209,6 @@ "entity" ] }, - "UBERON:0001193": { - "url": "http://purl.obolibrary.org/obo/UBERON_0001193", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0001193" - }, "http://purl.obolibrary.org/obo/UBERON_0001981": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -2776,11 +2736,6 @@ "entity" ] }, - "UBERON:0001281": { - "url": "http://purl.obolibrary.org/obo/UBERON_0001281", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0001281" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -3284,11 +3239,6 @@ "efo-hierarchical-properties" ], "linkedEntities": { - "UBERON:0001637": { - "url": "http://purl.obolibrary.org/obo/UBERON_0001637", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0001637" - }, "http://purl.obolibrary.org/obo/UBERON_0001981": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -3386,11 +3336,6 @@ "efo-hierarchical-properties" ], "linkedEntities": { - "UBERON:0001638": { - "url": "http://purl.obolibrary.org/obo/UBERON_0001638", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0001638" - }, "http://purl.obolibrary.org/obo/UBERON_0001981": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -3716,11 +3661,6 @@ "entity" ] }, - "UBERON:0001639": { - "url": "http://purl.obolibrary.org/obo/UBERON_0001639", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0001639" - }, "http://purl.obolibrary.org/obo/UBERON_0001007": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -4037,11 +3977,6 @@ "entity" ] }, - "UBERON:0001981": { - "url": "http://purl.obolibrary.org/obo/UBERON_0001981", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0001981" - }, "http://purl.obolibrary.org/obo/UBERON_0001281": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -4280,11 +4215,6 @@ "class", "entity" ] - }, - "UBERON:0001982": { - "url": "http://purl.obolibrary.org/obo/UBERON_0001982", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0001982" } } }, @@ -4366,11 +4296,6 @@ "efo-hierarchical-properties" ], "linkedEntities": { - "UBERON:0001986": { - "url": "http://purl.obolibrary.org/obo/UBERON_0001986", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0001986" - }, "http://purl.obolibrary.org/obo/UBERON_0000483": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -4527,11 +4452,6 @@ "entity" ] }, - "UBERON:0002049": { - "url": "http://purl.obolibrary.org/obo/UBERON_0002049", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0002049" - }, "http://purl.obolibrary.org/obo/UBERON_0001982": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -4905,11 +4825,6 @@ "entity" ] }, - "UBERON:0002100": { - "url": "http://purl.obolibrary.org/obo/UBERON_0002100", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0002100" - }, "http://purl.obolibrary.org/obo/UBERON_0001281": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -5584,11 +5499,6 @@ "entity" ] }, - "UBERON:0002107": { - "url": "http://purl.obolibrary.org/obo/UBERON_0002107", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0002107" - }, "http://purl.obolibrary.org/obo/UBERON_0001281": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -5842,11 +5752,6 @@ "entity" ] }, - "UBERON:0002368": { - "url": "http://purl.obolibrary.org/obo/UBERON_0002368", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0002368" - }, "http://purl.obolibrary.org/obo/UBERON_0000468": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -6205,11 +6110,6 @@ "class", "entity" ] - }, - "UBERON:0002423": { - "url": "http://purl.obolibrary.org/obo/UBERON_0002423", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0002423" } } }, @@ -6317,11 +6217,6 @@ "efo-hierarchical-properties" ], "linkedEntities": { - "UBERON:0002530": { - "url": "http://purl.obolibrary.org/obo/UBERON_0002530", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0002530" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -6659,11 +6554,6 @@ "entity" ] }, - "UBERON:0004535": { - "url": "http://purl.obolibrary.org/obo/UBERON_0004535", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0004535" - }, "http://purl.obolibrary.org/obo/UBERON_0000468": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -7211,11 +7101,6 @@ "entity" ] }, - "UBERON:0004647": { - "url": "http://purl.obolibrary.org/obo/UBERON_0004647", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0004647" - }, "http://purl.obolibrary.org/obo/UBERON_0002530": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -7579,11 +7464,6 @@ "entity" ] }, - "UBERON:0006841": { - "url": "http://purl.obolibrary.org/obo/UBERON_0006841", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0006841" - }, "http://purl.obolibrary.org/obo/UBERON_0001981": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -7918,11 +7798,6 @@ "efo-hierarchical-properties" ], "linkedEntities": { - "UBERON:0013702": { - "url": "http://purl.obolibrary.org/obo/UBERON_0013702", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0013702" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -8649,6 +8524,16 @@ "efo-hierarchical-properties" ], "linkedEntities": { + "http://purl.obolibrary.org/obo/BFO_0000019": { + "url": "http://purl.obolibrary.org/obo/BFO_0000019", + "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", + "curie": "bfo:0000019" + }, + "http://purl.obolibrary.org/obo/BFO_0000017": { + "url": "http://purl.obolibrary.org/obo/BFO_0000017", + "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", + "curie": "bfo:0000017" + }, "http://purl.obolibrary.org/obo/RO_0040042": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -8670,6 +8555,48 @@ "entity" ] }, + "http://www.geneontology.org/formats/oboInOwl#id": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "id" + }, + "curie": { + "type": [ + "literal" + ], + "value": "id" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#inSubset": { + "numAppearsIn": 1, + "hasLocalDefinition": true, + "label": { + "type": [ + "literal" + ], + "value": "inSubset" + }, + "curie": { + "type": [ + "literal" + ], + "value": "inSubset" + }, + "type": [ + "property", + "annotationProperty", + "entity" + ] + }, "http://purl.obolibrary.org/obo/IAO_0000116": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -8788,6 +8715,11 @@ "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", "curie": "BFO:0000050" }, + "http://purl.obolibrary.org/obo/BFO_0000004": { + "url": "http://purl.obolibrary.org/obo/BFO_0000004", + "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", + "curie": "bfo:0000004" + }, "http://purl.obolibrary.org/obo/IAO_0000118": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -8856,72 +8788,30 @@ "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", "curie": "ro:0001901" }, - "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "hasOBONamespace" - }, - "curie": { - "type": [ - "literal" - ], - "value": "hasOBONamespace" - }, - "type": [ - "property", - "annotationProperty", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/BFO_0000019": { - "url": "http://purl.obolibrary.org/obo/BFO_0000019", + "http://purl.obolibrary.org/obo/BFO_0000002": { + "url": "http://purl.obolibrary.org/obo/BFO_0000002", "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "bfo:0000019" + "curie": "bfo:0000002" }, - "http://purl.obolibrary.org/obo/BFO_0000017": { - "url": "http://purl.obolibrary.org/obo/BFO_0000017", + "http://purl.obolibrary.org/obo/BFO_0000003": { + "url": "http://purl.obolibrary.org/obo/BFO_0000003", "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "bfo:0000017" - }, - "http://www.geneontology.org/formats/oboInOwl#id": { - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "id" - }, - "curie": { - "type": [ - "literal" - ], - "value": "id" - }, - "type": [ - "property", - "annotationProperty", - "entity" - ] + "curie": "bfo:0000003" }, - "http://www.geneontology.org/formats/oboInOwl#inSubset": { + "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "inSubset" + "value": "hasExactSynonym" }, "curie": { "type": [ "literal" ], - "value": "inSubset" + "value": "hasExactSynonym" }, "type": [ "property", @@ -8929,35 +8819,20 @@ "entity" ] }, - "http://purl.obolibrary.org/obo/BFO_0000004": { - "url": "http://purl.obolibrary.org/obo/BFO_0000004", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "bfo:0000004" - }, - "http://purl.obolibrary.org/obo/BFO_0000002": { - "url": "http://purl.obolibrary.org/obo/BFO_0000002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "bfo:0000002" - }, - "http://purl.obolibrary.org/obo/BFO_0000003": { - "url": "http://purl.obolibrary.org/obo/BFO_0000003", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "bfo:0000003" - }, - "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "hasDbXref" }, "curie": { "type": [ "literal" ], - "value": "hasExactSynonym" + "value": "hasDbXref" }, "type": [ "property", @@ -8965,20 +8840,20 @@ "entity" ] }, - "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#shorthand": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "shorthand" }, "curie": { "type": [ "literal" ], - "value": "hasDbXref" + "value": "shorthand" }, "type": [ "property", @@ -8986,20 +8861,20 @@ "entity" ] }, - "http://www.geneontology.org/formats/oboInOwl#shorthand": { + "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace": { "numAppearsIn": 1, "hasLocalDefinition": true, "label": { "type": [ "literal" ], - "value": "shorthand" + "value": "hasOBONamespace" }, "curie": { "type": [ "literal" ], - "value": "shorthand" + "value": "hasOBONamespace" }, "type": [ "property", @@ -9309,13 +9184,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "linkedEntities": { - "IAO:0000111": { - "url": "http://purl.obolibrary.org/obo/IAO_0000111", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000111" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/IAO_0000112", @@ -9376,13 +9245,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "linkedEntities": { - "IAO:0000112": { - "url": "http://purl.obolibrary.org/obo/IAO_0000112", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000112" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/IAO_0000115", @@ -9443,13 +9306,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "linkedEntities": { - "IAO:0000115": { - "url": "http://purl.obolibrary.org/obo/IAO_0000115", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000115" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/IAO_0000116", @@ -9510,13 +9367,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "linkedEntities": { - "IAO:0000116": { - "url": "http://purl.obolibrary.org/obo/IAO_0000116", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000116" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/IAO_0000118", @@ -9577,13 +9428,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "linkedEntities": { - "IAO:0000118": { - "url": "http://purl.obolibrary.org/obo/IAO_0000118", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000118" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/IAO_0000232", @@ -9644,13 +9489,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "linkedEntities": { - "IAO:0000232": { - "url": "http://purl.obolibrary.org/obo/IAO_0000232", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "IAO:0000232" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/RO_0001900", @@ -9711,13 +9550,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "linkedEntities": { - "RO:0001900": { - "url": "http://purl.obolibrary.org/obo/RO_0001900", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0001900" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/RO_0002174", @@ -9778,13 +9611,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "linkedEntities": { - "RO:0002174": { - "url": "http://purl.obolibrary.org/obo/RO_0002174", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0002174" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/RO_0040042", @@ -9845,13 +9672,7 @@ "appearsIn": [ "efo-hierarchical-properties" ], - "linkedEntities": { - "RO:0040042": { - "url": "http://purl.obolibrary.org/obo/RO_0040042", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "RO:0040042" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/UBPROP_0000001", diff --git a/testcases_expected_output/hierarchical-properties/efo/properties.jsonl b/testcases_expected_output/hierarchical-properties/efo/properties.jsonl index 27a1ce86b..3913fd9e0 100644 --- a/testcases_expected_output/hierarchical-properties/efo/properties.jsonl +++ b/testcases_expected_output/hierarchical-properties/efo/properties.jsonl @@ -1,14 +1,14 @@ -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"definition\":[{\"type\":[\"literal\"],\"value\":\"For continuants: C part_of C\\u0027 if and only if: given any c that instantiates C at a time t, there is some c\\u0027 such that c\\u0027 instantiates C\\u0027 at time t, and c *part_of* c\\u0027 at t. For processes: P part_of P\\u0027 if and only if: given any p that instantiates P at a time t, there is some p\\u0027 such that p\\u0027 instantiates P\\u0027 at time t, and p *part_of* p\\u0027 at t. (Here *part_of* is the instance-level part-relation.)\"},{\"type\":[\"literal\"],\"value\":\"a core relation that holds between a part and its whole\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"EFO_0000822\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":[{\"type\":[\"literal\"],\"value\":\"is part of\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is part of\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"value\":\"my brain is part of my body (continuant parthood, two material entities)\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my brain is part of my body (continuant parthood, two material entities)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"this day is part of this year (occurrent parthood)\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this day is part of this year (occurrent parthood)\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":[{\"type\":[\"literal\"],\"value\":\"For continuants: C part_of C\\u0027 if and only if: given any c that instantiates C at a time t, there is some c\\u0027 such that c\\u0027 instantiates C\\u0027 at time t, and c *part_of* c\\u0027 at t. For processes: P part_of P\\u0027 if and only if: given any p that instantiates P at a time t, there is some p\\u0027 such that p\\u0027 instantiates P\\u0027 at time t, and p *part_of* p\\u0027 at t. (Here *part_of* is the instance-level part-relation.)\"},{\"type\":[\"literal\"],\"value\":\"a core relation that holds between a part and its whole\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"value\":\"Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\\n\\nA continuant cannot be part of an occurrent: use \\u0027participates in\\u0027. An occurrent cannot be part of a continuant: use \\u0027has participant\\u0027. A material entity cannot be part of an immaterial entity: use \\u0027has location\\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \\u0027inheres in\\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \\u0027bearer of\\u0027.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\\n\\nA continuant cannot be part of an occurrent: use \\u0027participates in\\u0027. An occurrent cannot be part of a continuant: use \\u0027has participant\\u0027. A material entity cannot be part of an immaterial entity: use \\u0027has location\\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \\u0027inheres in\\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \\u0027bearer of\\u0027.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"value\":\"part_of\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part_of\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://purl.obolibrary.org/obo/RO_0040042\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000031\"],\"http://www.ebi.ac.uk/efo/EFO_URI\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/part_of\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},{\"type\":[\"literal\"],\"value\":\"OBO_REL:part_of\"}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"type\":[\"literal\"],\"value\":\"part of\"},\"http://www.geneontology.org/formats/oboInOwl#hasOBONamespace\":[{\"type\":[\"literal\"],\"value\":\"external\"},{\"type\":[\"literal\"],\"value\":\"human_stages_ontology\"},{\"type\":[\"literal\"],\"value\":\"protein\"},{\"type\":[\"literal\"],\"value\":\"quality\"},{\"type\":[\"literal\"],\"value\":\"relationship\"},{\"type\":[\"literal\"],\"value\":\"uberon\"}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/valid_for_go_annotation_extension\",\"http://purl.obolibrary.org/obo/valid_for_go_gp2term\",\"http://purl.obolibrary.org/obo/valid_for_go_ontology\",\"http://purl.obolibrary.org/obo/valid_for_gocam\"],\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"EFO_0000822\"},\"http://www.w3.org/2000/01/rdf-schema#label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":[\"http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections\",\"http://ontologydesignpatterns.org/wiki/Submissions:PartOf\",{\"type\":[\"literal\"],\"value\":\"http://www.obofoundry.org/ro/#OBO_REL:part_of\"}],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"is part of\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"my brain is part of my body (continuant parthood, two material entities)\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my brain is part of my body (continuant parthood, two material entities)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"this day is part of this year (occurrent parthood)\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this day is part of this year (occurrent parthood)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"For continuants: C part_of C\\u0027 if and only if: given any c that instantiates C at a time t, there is some c\\u0027 such that c\\u0027 instantiates C\\u0027 at time t, and c *part_of* c\\u0027 at t. For processes: P part_of P\\u0027 if and only if: given any p that instantiates P at a time t, there is some p\\u0027 such that p\\u0027 instantiates P\\u0027 at time t, and p *part_of* p\\u0027 at t. (Here *part_of* is the instance-level part-relation.)\"},{\"type\":[\"literal\"],\"value\":\"a core relation that holds between a part and its whole\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\\n\\nA continuant cannot be part of an occurrent: use \\u0027participates in\\u0027. An occurrent cannot be part of a continuant: use \\u0027has participant\\u0027. A material entity cannot be part of an immaterial entity: use \\u0027has location\\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \\u0027inheres in\\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \\u0027bearer of\\u0027.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\\n\\nA continuant cannot be part of an occurrent: use \\u0027participates in\\u0027. An occurrent cannot be part of a continuant: use \\u0027has participant\\u0027. A material entity cannot be part of an immaterial entity: use \\u0027has location\\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \\u0027inheres in\\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \\u0027bearer of\\u0027.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part_of\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/part_of\"},{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},{\"type\":[\"literal\"],\"value\":\"OBO_REL:part_of\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"external\"},{\"type\":[\"literal\"],\"value\":\"human_stages_ontology\"},{\"type\":[\"literal\"],\"value\":\"protein\"},{\"type\":[\"literal\"],\"value\":\"quality\"},{\"type\":[\"literal\"],\"value\":\"relationship\"},{\"type\":[\"literal\"],\"value\":\"uberon\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000050\"},\"synonym\":{\"type\":[\"literal\"],\"value\":\"part of\"},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/RO_0040042\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0040042\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0040042\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000112\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000111\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000050\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000050\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000118\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.ebi.ac.uk/efo/EFO_URI\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"EFO_URI\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"EFO:URI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0001900\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://www.geneontology.org/formats/oboInOwl#hasOBONamespace\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasOBONamespace\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasOBONamespace\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"bfo:0000019\"},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"bfo:0000017\"},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"bfo:0000004\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"bfo:0000002\"},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"bfo:0000003\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000031\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"bfo:0000031\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"bfo:0000020\"}}}","appearsIn":["efo-hierarchical-properties"],"curie":"BFO:0000050","definition":["For continuants: C part_of C\u0027 if and only if: given any c that instantiates C at a time t, there is some c\u0027 such that c\u0027 instantiates C\u0027 at time t, and c *part_of* c\u0027 at t. For processes: P part_of P\u0027 if and only if: given any p that instantiates P at a time t, there is some p\u0027 such that p\u0027 instantiates P\u0027 at time t, and p *part_of* p\u0027 at t. (Here *part_of* is the instance-level part-relation.)","a core relation that holds between a part and its whole","a core relation that holds between a part and its whole","EFO_0000822"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":["is part of","is part of"],"http__//purl.obolibrary.org/obo/IAO_0000112":["my brain is part of my body (continuant parthood, two material entities)","my brain is part of my body (continuant parthood, two material entities)","my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)","my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)","this day is part of this year (occurrent parthood)","this day is part of this year (occurrent parthood)"],"http__//purl.obolibrary.org/obo/IAO_0000115":["For continuants: C part_of C\u0027 if and only if: given any c that instantiates C at a time t, there is some c\u0027 such that c\u0027 instantiates C\u0027 at time t, and c *part_of* c\u0027 at t. For processes: P part_of P\u0027 if and only if: given any p that instantiates P at a time t, there is some p\u0027 such that p\u0027 instantiates P\u0027 at time t, and p *part_of* p\u0027 at t. (Here *part_of* is the instance-level part-relation.)","a core relation that holds between a part and its whole","a core relation that holds between a part and its whole"],"http__//purl.obolibrary.org/obo/IAO_0000116":["Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.","Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime","Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027.","Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."],"http__//purl.obolibrary.org/obo/IAO_0000118":["part_of","part_of"],"http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//purl.obolibrary.org/obo/RO_0040042":["http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000031"],"http__//www.ebi.ac.uk/efo/EFO_URI":"http://www.ebi.ac.uk/efo/part_of","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["BFO:0000050","OBO_REL:part_of"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":"part of","http__//www.geneontology.org/formats/oboInOwl#hasOBONamespace":["external","human_stages_ontology","protein","quality","relationship","uberon"],"http__//www.geneontology.org/formats/oboInOwl#id":"part_of","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/valid_for_go_annotation_extension","http://purl.obolibrary.org/obo/valid_for_go_gp2term","http://purl.obolibrary.org/obo/valid_for_go_ontology","http://purl.obolibrary.org/obo/valid_for_gocam"],"http__//www.geneontology.org/formats/oboInOwl#shorthand":"part_of","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#comment":"EFO_0000822","http__//www.w3.org/2000/01/rdf-schema#label":["part of","part of","part_of"],"http__//www.w3.org/2000/01/rdf-schema#seeAlso":["http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections","http://ontologydesignpatterns.org/wiki/Submissions:PartOf","http://www.obofoundry.org/ro/#OBO_REL:part_of"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/BFO_0000050","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000050","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":["part of","part of","part_of"],"numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":["is part of","is part of","my brain is part of my body (continuant parthood, two material entities)","my brain is part of my body (continuant parthood, two material entities)","my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)","my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)","this day is part of this year (occurrent parthood)","this day is part of this year (occurrent parthood)","For continuants: C part_of C\u0027 if and only if: given any c that instantiates C at a time t, there is some c\u0027 such that c\u0027 instantiates C\u0027 at time t, and c *part_of* c\u0027 at t. For processes: P part_of P\u0027 if and only if: given any p that instantiates P at a time t, there is some p\u0027 such that p\u0027 instantiates P\u0027 at time t, and p *part_of* p\u0027 at t. (Here *part_of* is the instance-level part-relation.)","a core relation that holds between a part and its whole","a core relation that holds between a part and its whole","Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.","Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime","Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027.","Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027.","part_of","part_of","http://www.ebi.ac.uk/efo/part_of","BFO:0000050","OBO_REL:part_of","part of","external","human_stages_ontology","protein","quality","relationship","uberon","false"],"shortForm":"BFO_0000050","synonym":"part of","synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"definition\":[{\"type\":[\"literal\"],\"value\":\"For continuants: C part_of C\\u0027 if and only if: given any c that instantiates C at a time t, there is some c\\u0027 such that c\\u0027 instantiates C\\u0027 at time t, and c *part_of* c\\u0027 at t. For processes: P part_of P\\u0027 if and only if: given any p that instantiates P at a time t, there is some p\\u0027 such that p\\u0027 instantiates P\\u0027 at time t, and p *part_of* p\\u0027 at t. (Here *part_of* is the instance-level part-relation.)\"},{\"type\":[\"literal\"],\"value\":\"a core relation that holds between a part and its whole\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"EFO_0000822\"}],\"definitionProperty\":[{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"}],\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://purl.obolibrary.org/obo/IAO_0000111\":[{\"type\":[\"literal\"],\"value\":\"is part of\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is part of\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000112\":[{\"type\":[\"literal\"],\"value\":\"my brain is part of my body (continuant parthood, two material entities)\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my brain is part of my body (continuant parthood, two material entities)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"this day is part of this year (occurrent parthood)\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this day is part of this year (occurrent parthood)\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000115\":[{\"type\":[\"literal\"],\"value\":\"For continuants: C part_of C\\u0027 if and only if: given any c that instantiates C at a time t, there is some c\\u0027 such that c\\u0027 instantiates C\\u0027 at time t, and c *part_of* c\\u0027 at t. For processes: P part_of P\\u0027 if and only if: given any p that instantiates P at a time t, there is some p\\u0027 such that p\\u0027 instantiates P\\u0027 at time t, and p *part_of* p\\u0027 at t. (Here *part_of* is the instance-level part-relation.)\"},{\"type\":[\"literal\"],\"value\":\"a core relation that holds between a part and its whole\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000116\":[{\"type\":[\"literal\"],\"value\":\"Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\\n\\nA continuant cannot be part of an occurrent: use \\u0027participates in\\u0027. An occurrent cannot be part of a continuant: use \\u0027has participant\\u0027. A material entity cannot be part of an immaterial entity: use \\u0027has location\\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \\u0027inheres in\\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \\u0027bearer of\\u0027.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\\n\\nA continuant cannot be part of an occurrent: use \\u0027participates in\\u0027. An occurrent cannot be part of a continuant: use \\u0027has participant\\u0027. A material entity cannot be part of an immaterial entity: use \\u0027has location\\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \\u0027inheres in\\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \\u0027bearer of\\u0027.\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/IAO_0000118\":[{\"type\":[\"literal\"],\"value\":\"part_of\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part_of\",\"lang\":\"en\"}],\"http://purl.obolibrary.org/obo/RO_0001900\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"http://purl.obolibrary.org/obo/RO_0040042\":[\"http://purl.obolibrary.org/obo/BFO_0000002\",\"http://purl.obolibrary.org/obo/BFO_0000003\",\"http://purl.obolibrary.org/obo/BFO_0000004\",\"http://purl.obolibrary.org/obo/BFO_0000017\",\"http://purl.obolibrary.org/obo/BFO_0000019\",\"http://purl.obolibrary.org/obo/BFO_0000020\",\"http://purl.obolibrary.org/obo/BFO_0000031\"],\"http://www.ebi.ac.uk/efo/EFO_URI\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/part_of\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":[{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},{\"type\":[\"literal\"],\"value\":\"OBO_REL:part_of\"}],\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"type\":[\"literal\"],\"value\":\"part of\"},\"http://www.geneontology.org/formats/oboInOwl#hasOBONamespace\":[{\"type\":[\"literal\"],\"value\":\"external\"},{\"type\":[\"literal\"],\"value\":\"human_stages_ontology\"},{\"type\":[\"literal\"],\"value\":\"protein\"},{\"type\":[\"literal\"],\"value\":\"quality\"},{\"type\":[\"literal\"],\"value\":\"relationship\"},{\"type\":[\"literal\"],\"value\":\"uberon\"}],\"http://www.geneontology.org/formats/oboInOwl#id\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":[\"http://purl.obolibrary.org/obo/valid_for_go_annotation_extension\",\"http://purl.obolibrary.org/obo/valid_for_go_gp2term\",\"http://purl.obolibrary.org/obo/valid_for_go_ontology\",\"http://purl.obolibrary.org/obo/valid_for_gocam\"],\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"EFO_0000822\"},\"http://www.w3.org/2000/01/rdf-schema#label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"http://www.w3.org/2000/01/rdf-schema#seeAlso\":[\"http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections\",\"http://ontologydesignpatterns.org/wiki/Submissions:PartOf\",{\"type\":[\"literal\"],\"value\":\"http://www.obofoundry.org/ro/#OBO_REL:part_of\"}],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"is part of\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"is part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"my brain is part of my body (continuant parthood, two material entities)\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my brain is part of my body (continuant parthood, two material entities)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"this day is part of this year (occurrent parthood)\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"this day is part of this year (occurrent parthood)\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"For continuants: C part_of C\\u0027 if and only if: given any c that instantiates C at a time t, there is some c\\u0027 such that c\\u0027 instantiates C\\u0027 at time t, and c *part_of* c\\u0027 at t. For processes: P part_of P\\u0027 if and only if: given any p that instantiates P at a time t, there is some p\\u0027 such that p\\u0027 instantiates P\\u0027 at time t, and p *part_of* p\\u0027 at t. (Here *part_of* is the instance-level part-relation.)\"},{\"type\":[\"literal\"],\"value\":\"a core relation that holds between a part and its whole\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"a core relation that holds between a part and its whole\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\\n\\nA continuant cannot be part of an occurrent: use \\u0027participates in\\u0027. An occurrent cannot be part of a continuant: use \\u0027has participant\\u0027. A material entity cannot be part of an immaterial entity: use \\u0027has location\\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \\u0027inheres in\\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \\u0027bearer of\\u0027.\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\\n\\nA continuant cannot be part of an occurrent: use \\u0027participates in\\u0027. An occurrent cannot be part of a continuant: use \\u0027has participant\\u0027. A material entity cannot be part of an immaterial entity: use \\u0027has location\\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \\u0027inheres in\\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \\u0027bearer of\\u0027.\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part_of\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part_of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/part_of\"},{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},{\"type\":[\"literal\"],\"value\":\"OBO_REL:part_of\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"external\"},{\"type\":[\"literal\"],\"value\":\"human_stages_ontology\"},{\"type\":[\"literal\"],\"value\":\"protein\"},{\"type\":[\"literal\"],\"value\":\"quality\"},{\"type\":[\"literal\"],\"value\":\"relationship\"},{\"type\":[\"literal\"],\"value\":\"uberon\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000050\"},\"synonym\":{\"type\":[\"literal\"],\"value\":\"part of\"},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000019\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000019\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"bfo:0000019\"},\"http://purl.obolibrary.org/obo/BFO_0000017\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000017\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"bfo:0000017\"},\"http://purl.obolibrary.org/obo/RO_0040042\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0040042\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0040042\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#id\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"id\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"id\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#inSubset\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"inSubset\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000116\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000112\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000112\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/IAO_0000111\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000111\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"BFO:0000050\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000050\"},\"http://purl.obolibrary.org/obo/BFO_0000004\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000004\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"bfo:0000004\"},\"http://purl.obolibrary.org/obo/IAO_0000118\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000118\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.ebi.ac.uk/efo/EFO_URI\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"EFO_URI\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"EFO:URI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001900\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0001900\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/RO_0001901\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001901\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"ro:0001901\"},\"http://purl.obolibrary.org/obo/BFO_0000002\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000002\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"bfo:0000002\"},\"http://purl.obolibrary.org/obo/BFO_0000003\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000003\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"bfo:0000003\"},\"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasExactSynonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#hasOBONamespace\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasOBONamespace\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasOBONamespace\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000031\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000031\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"bfo:0000031\"},\"http://purl.obolibrary.org/obo/BFO_0000020\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000020\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"bfo:0000020\"}}}","appearsIn":["efo-hierarchical-properties"],"curie":"BFO:0000050","definition":["For continuants: C part_of C\u0027 if and only if: given any c that instantiates C at a time t, there is some c\u0027 such that c\u0027 instantiates C\u0027 at time t, and c *part_of* c\u0027 at t. For processes: P part_of P\u0027 if and only if: given any p that instantiates P at a time t, there is some p\u0027 such that p\u0027 instantiates P\u0027 at time t, and p *part_of* p\u0027 at t. (Here *part_of* is the instance-level part-relation.)","a core relation that holds between a part and its whole","a core relation that holds between a part and its whole","EFO_0000822"],"definitionProperty":["http://purl.obolibrary.org/obo/IAO_0000115","http://www.w3.org/2000/01/rdf-schema#comment"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//purl.obolibrary.org/obo/IAO_0000111":["is part of","is part of"],"http__//purl.obolibrary.org/obo/IAO_0000112":["my brain is part of my body (continuant parthood, two material entities)","my brain is part of my body (continuant parthood, two material entities)","my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)","my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)","this day is part of this year (occurrent parthood)","this day is part of this year (occurrent parthood)"],"http__//purl.obolibrary.org/obo/IAO_0000115":["For continuants: C part_of C\u0027 if and only if: given any c that instantiates C at a time t, there is some c\u0027 such that c\u0027 instantiates C\u0027 at time t, and c *part_of* c\u0027 at t. For processes: P part_of P\u0027 if and only if: given any p that instantiates P at a time t, there is some p\u0027 such that p\u0027 instantiates P\u0027 at time t, and p *part_of* p\u0027 at t. (Here *part_of* is the instance-level part-relation.)","a core relation that holds between a part and its whole","a core relation that holds between a part and its whole"],"http__//purl.obolibrary.org/obo/IAO_0000116":["Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.","Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime","Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027.","Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027."],"http__//purl.obolibrary.org/obo/IAO_0000118":["part_of","part_of"],"http__//purl.obolibrary.org/obo/RO_0001900":"http://purl.obolibrary.org/obo/RO_0001901","http__//purl.obolibrary.org/obo/RO_0040042":["http://purl.obolibrary.org/obo/BFO_0000002","http://purl.obolibrary.org/obo/BFO_0000003","http://purl.obolibrary.org/obo/BFO_0000004","http://purl.obolibrary.org/obo/BFO_0000017","http://purl.obolibrary.org/obo/BFO_0000019","http://purl.obolibrary.org/obo/BFO_0000020","http://purl.obolibrary.org/obo/BFO_0000031"],"http__//www.ebi.ac.uk/efo/EFO_URI":"http://www.ebi.ac.uk/efo/part_of","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":["BFO:0000050","OBO_REL:part_of"],"http__//www.geneontology.org/formats/oboInOwl#hasExactSynonym":"part of","http__//www.geneontology.org/formats/oboInOwl#hasOBONamespace":["external","human_stages_ontology","protein","quality","relationship","uberon"],"http__//www.geneontology.org/formats/oboInOwl#id":"part_of","http__//www.geneontology.org/formats/oboInOwl#inSubset":["http://purl.obolibrary.org/obo/valid_for_go_annotation_extension","http://purl.obolibrary.org/obo/valid_for_go_gp2term","http://purl.obolibrary.org/obo/valid_for_go_ontology","http://purl.obolibrary.org/obo/valid_for_gocam"],"http__//www.geneontology.org/formats/oboInOwl#shorthand":"part_of","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#comment":"EFO_0000822","http__//www.w3.org/2000/01/rdf-schema#label":["part of","part of","part_of"],"http__//www.w3.org/2000/01/rdf-schema#seeAlso":["http://ontologydesignpatterns.org/wiki/Community:Parts_and_Collections","http://ontologydesignpatterns.org/wiki/Submissions:PartOf","http://www.obofoundry.org/ro/#OBO_REL:part_of"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000051","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/BFO_0000050","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000050","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":["part of","part of","part_of"],"numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":["is part of","is part of","my brain is part of my body (continuant parthood, two material entities)","my brain is part of my body (continuant parthood, two material entities)","my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)","my stomach cavity is part of my stomach (continuant parthood, immaterial entity is part of material entity)","this day is part of this year (occurrent parthood)","this day is part of this year (occurrent parthood)","For continuants: C part_of C\u0027 if and only if: given any c that instantiates C at a time t, there is some c\u0027 such that c\u0027 instantiates C\u0027 at time t, and c *part_of* c\u0027 at t. For processes: P part_of P\u0027 if and only if: given any p that instantiates P at a time t, there is some p\u0027 such that p\u0027 instantiates P\u0027 at time t, and p *part_of* p\u0027 at t. (Here *part_of* is the instance-level part-relation.)","a core relation that holds between a part and its whole","a core relation that holds between a part and its whole","Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.","Everything is part of itself. Any part of any part of a thing is itself part of that thing. Two distinct things cannot be part of each other.","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See http://purl.obolibrary.org/obo/ro/docs/temporal-semantics/","Occurrents are not subject to change and so parthood between occurrents holds for all the times that the part exists. Many continuants are subject to change, so parthood between continuants will only hold at certain times, but this is difficult to specify in OWL. See https://code.google.com/p/obo-relations/wiki/ROAndTime","Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027.","Parthood requires the part and the whole to have compatible classes: only an occurrent can be part of an occurrent; only a process can be part of a process; only a continuant can be part of a continuant; only an independent continuant can be part of an independent continuant; only an immaterial entity can be part of an immaterial entity; only a specifically dependent continuant can be part of a specifically dependent continuant; only a generically dependent continuant can be part of a generically dependent continuant. (This list is not exhaustive.)\n\nA continuant cannot be part of an occurrent: use \u0027participates in\u0027. An occurrent cannot be part of a continuant: use \u0027has participant\u0027. A material entity cannot be part of an immaterial entity: use \u0027has location\u0027. A specifically dependent continuant cannot be part of an independent continuant: use \u0027inheres in\u0027. An independent continuant cannot be part of a specifically dependent continuant: use \u0027bearer of\u0027.","part_of","part_of","http://www.ebi.ac.uk/efo/part_of","BFO:0000050","OBO_REL:part_of","part of","external","human_stages_ontology","protein","quality","relationship","uberon","false"],"shortForm":"BFO_0000050","synonym":"part of","synonymProperty":"http://www.geneontology.org/formats/oboInOwl#hasExactSynonym","type":["property","objectProperty","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.ebi.ac.uk/efo/EFO_URI\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/has_part\"},\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"type\":[\"literal\"],\"value\":\"has_part\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"http://www.w3.org/2002/07/owl#inverseOf\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/has_part\"},{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},{\"type\":[\"literal\"],\"value\":\"has_part\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000051\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"http://www.geneontology.org/formats/oboInOwl#hasDbXref\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"hasDbXref\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://www.geneontology.org/formats/oboInOwl#shorthand\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"shorthand\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"part of\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"value\":\"part of\"},{\"type\":[\"literal\"],\"value\":\"part_of\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"BFO:0000051\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000051\"},\"http://www.ebi.ac.uk/efo/EFO_URI\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"EFO_URI\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"EFO:URI\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["efo-hierarchical-properties"],"curie":"BFO:0000051","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.ebi.ac.uk/efo/EFO_URI":"http://www.ebi.ac.uk/efo/has_part","http__//www.geneontology.org/formats/oboInOwl#hasDbXref":"BFO:0000051","http__//www.geneontology.org/formats/oboInOwl#shorthand":"has_part","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":["has part","has_part"],"http__//www.w3.org/2002/07/owl#inverseOf":"http://purl.obolibrary.org/obo/BFO_0000050","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/BFO_0000051","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000051","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":["has part","has_part"],"numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":["http://www.ebi.ac.uk/efo/has_part","BFO:0000051","has_part","false"],"shortForm":"BFO_0000051","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000111\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000111\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000111\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"IAO:0000111\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000111\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000111\"}}}","appearsIn":["efo-hierarchical-properties"],"curie":"IAO:0000111","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000111","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000111","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000111","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"IAO_0000111","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000112\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000112\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000112\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"IAO:0000112\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000112\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000112\"}}}","appearsIn":["efo-hierarchical-properties"],"curie":"IAO:0000112","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000112","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000112","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000112","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"IAO_0000112","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000115\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"IAO:0000115\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000115\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000115\"}}}","appearsIn":["efo-hierarchical-properties"],"curie":"IAO:0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000115","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000115","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000115","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"IAO_0000115","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000116\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"IAO:0000116\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000116\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000116\"}}}","appearsIn":["efo-hierarchical-properties"],"curie":"IAO:0000116","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000116","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000116","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000116","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"IAO_0000116","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000118\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000118\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000118\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"IAO:0000118\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000118\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000118\"}}}","appearsIn":["efo-hierarchical-properties"],"curie":"IAO:0000118","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000118","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000118","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000118","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"IAO_0000118","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000232\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000232\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000232\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"IAO:0000232\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000232\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"IAO:0000232\"}}}","appearsIn":["efo-hierarchical-properties"],"curie":"IAO:0000232","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000232","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000232","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000232","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"IAO_0000232","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0001900\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0001900\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0001900\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"RO:0001900\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0001900\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0001900\"}}}","appearsIn":["efo-hierarchical-properties"],"curie":"RO:0001900","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/RO_0001900","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0001900","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"RO_0001900","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"RO_0001900","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002174\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002174\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002174\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002174\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"RO:0002174\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0002174\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0002174\"}}}","appearsIn":["efo-hierarchical-properties"],"curie":"RO:0002174","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/RO_0002174","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002174","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"RO_0002174","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"RO_0002174","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0040042\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0040042\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0040042\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0040042\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{\"RO:0040042\":{\"url\":\"http://purl.obolibrary.org/obo/RO_0040042\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"RO:0040042\"}}}","appearsIn":["efo-hierarchical-properties"],"curie":"RO:0040042","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/RO_0040042","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0040042","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"RO_0040042","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"RO_0040042","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000111\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000111\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000111\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000111\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"IAO:0000111","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000111","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000111","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000111","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"IAO_0000111","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000112\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000112\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000112\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000112\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"IAO:0000112","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000112","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000112","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000112","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"IAO_0000112","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000115\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000115\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000115\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"IAO:0000115","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000115","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000115","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000115","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"IAO_0000115","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000116\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000116\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000116\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"IAO:0000116","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000116","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000116","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000116","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"IAO_0000116","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000118\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000118\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000118\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000118\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"IAO:0000118","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000118","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000118","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000118","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"IAO_0000118","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/IAO_0000232\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"IAO:0000232\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"IAO_0000232\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"IAO_0000232\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"IAO:0000232","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/IAO_0000232","imported":"false","iri":"http://purl.obolibrary.org/obo/IAO_0000232","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"IAO_0000232","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"IAO_0000232","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0001900\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0001900\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0001900\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0001900\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"RO:0001900","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/RO_0001900","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0001900","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"RO_0001900","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"RO_0001900","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0002174\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0002174\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0002174\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0002174\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"RO:0002174","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/RO_0002174","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0002174","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"RO_0002174","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"RO_0002174","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/RO_0040042\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"RO:0040042\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"RO_0040042\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"RO_0040042\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"RO:0040042","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/RO_0040042","imported":"false","iri":"http://purl.obolibrary.org/obo/RO_0040042","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"RO_0040042","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"RO_0040042","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBPROP_0000001\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBPROP:0000001\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"UBPROP_0000001\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBPROP_0000001\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBPROP:0000001","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/UBPROP_0000001","imported":"false","iri":"http://purl.obolibrary.org/obo/UBPROP_0000001","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"UBPROP_0000001","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"UBPROP_0000001","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBPROP_0000002\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBPROP:0000002\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"UBPROP_0000002\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBPROP_0000002\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBPROP:0000002","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/UBPROP_0000002","imported":"false","iri":"http://purl.obolibrary.org/obo/UBPROP_0000002","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"UBPROP_0000002","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"UBPROP_0000002","type":["property","annotationProperty","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBPROP_0000003\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBPROP:0000003\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"UBPROP_0000003\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-hierarchical-properties\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBPROP_0000003\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-hierarchical-properties\"],\"linkedEntities\":{}}","appearsIn":["efo-hierarchical-properties"],"curie":"UBPROP:0000003","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","id":"efo-hierarchical-properties+property+http://purl.obolibrary.org/obo/UBPROP_0000003","imported":"false","iri":"http://purl.obolibrary.org/obo/UBPROP_0000003","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"UBPROP_0000003","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-hierarchical-properties","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-hierarchical-properties","searchableAnnotationValues":"false","shortForm":"UBPROP_0000003","type":["property","annotationProperty","entity"]} diff --git a/testcases_expected_output/hierarchical-properties/partof/classes.jsonl b/testcases_expected_output/hierarchical-properties/partof/classes.jsonl index 72a93101e..4009ed857 100644 --- a/testcases_expected_output/hierarchical-properties/partof/classes.jsonl +++ b/testcases_expected_output/hierarchical-properties/partof/classes.jsonl @@ -1,4 +1,4 @@ -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MS_1000353\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MS:1000353\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"adduct ion\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"adduct ion\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/ms#part_of\",\"value\":\"http://purl.obolibrary.org/obo/MS_1003056\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/ms#part_of\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MS_1000353\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MS_1000353\"},\"isDefiningOntology\":false,\"appearsIn\":[\"partof\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/ms#part_of\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"part:of\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MS_1003056\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"adduct ion property\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MS:1003056\"},\"type\":[\"class\",\"entity\"]},\"MS:1000353\":{\"url\":\"http://purl.obolibrary.org/obo/MS_1000353\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MS:1000353\"}}}","appearsIn":["partof"],"curie":"MS:1000353","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"adduct ion","id":"partof+class+http://purl.obolibrary.org/obo/MS_1000353","imported":"false","iri":"http://purl.obolibrary.org/obo/MS_1000353","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"adduct ion","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"partof","ontologyIri":"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","ontologyPreferredPrefix":"partof","relatedFrom":"http://purl.obolibrary.org/obo/MS_1003056","searchableAnnotationValues":"false","shortForm":"MS_1000353","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MS_1003056\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MS:1003056\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/MS_1000353\",\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MS_1000353\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/ms#part_of\"}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"adduct ion property\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/ms#part_of\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MS_1000353\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"adduct ion property\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/ms#part_of\",\"value\":\"http://purl.obolibrary.org/obo/MS_1000353\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/ms#part_of\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MS_1000353\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MS_1003056\"},\"isDefiningOntology\":false,\"appearsIn\":[\"partof\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/ms#part_of\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"part:of\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MS_1000353\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"adduct ion\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MS:1000353\"},\"type\":[\"class\",\"entity\"]},\"MS:1003056\":{\"url\":\"http://purl.obolibrary.org/obo/MS_1003056\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"MS:1003056\"}}}","appearsIn":["partof"],"curie":"MS:1003056","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/MS_1000353","hierarchicalParent":"http://purl.obolibrary.org/obo/MS_1000353","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"adduct ion property","id":"partof+class+http://purl.obolibrary.org/obo/MS_1003056","imported":"false","iri":"http://purl.obolibrary.org/obo/MS_1003056","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"adduct ion property","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"partof","ontologyIri":"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","ontologyPreferredPrefix":"partof","relatedTo":"http://purl.obolibrary.org/obo/MS_1000353","searchableAnnotationValues":"false","shortForm":"MS_1003056","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0003684\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000916\"},\"isDefiningOntology\":false,\"appearsIn\":[\"partof\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"UBERON:0000916\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0000916\"},\"http://purl.obolibrary.org/obo/UBERON_0003684\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdominal cavity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0003684\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["partof"],"curie":"UBERON:0000916","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"abdomen","id":"partof+class+http://purl.obolibrary.org/obo/UBERON_0000916","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000916","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"abdomen","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"partof","ontologyIri":"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","ontologyPreferredPrefix":"partof","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0003684","searchableAnnotationValues":"false","shortForm":"UBERON_0000916","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0003684\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0003684\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\"}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"abdominal cavity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"abdominal cavity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0003684\"},\"isDefiningOntology\":false,\"appearsIn\":[\"partof\"],\"linkedEntities\":{\"UBERON:0003684\":{\"url\":\"http://purl.obolibrary.org/obo/UBERON_0003684\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"UBERON:0003684\"},\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["partof"],"curie":"UBERON:0003684","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/UBERON_0000916","hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000916","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"abdominal cavity","id":"partof+class+http://purl.obolibrary.org/obo/UBERON_0003684","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0003684","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"abdominal cavity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"partof","ontologyIri":"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","ontologyPreferredPrefix":"partof","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000916","searchableAnnotationValues":"false","shortForm":"UBERON_0003684","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MS_1000353\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MS:1000353\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"adduct ion\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"adduct ion\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/ms#part_of\",\"value\":\"http://purl.obolibrary.org/obo/MS_1003056\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/ms#part_of\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MS_1000353\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MS_1000353\"},\"isDefiningOntology\":false,\"appearsIn\":[\"partof\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/ms#part_of\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"part:of\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MS_1003056\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"adduct ion property\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MS:1003056\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["partof"],"curie":"MS:1000353","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"adduct ion","id":"partof+class+http://purl.obolibrary.org/obo/MS_1000353","imported":"false","iri":"http://purl.obolibrary.org/obo/MS_1000353","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"adduct ion","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"partof","ontologyIri":"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","ontologyPreferredPrefix":"partof","relatedFrom":"http://purl.obolibrary.org/obo/MS_1003056","searchableAnnotationValues":"false","shortForm":"MS_1000353","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/MS_1003056\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"MS:1003056\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/MS_1000353\",\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/MS_1000353\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/ms#part_of\"}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"adduct ion property\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/ms#part_of\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MS_1000353\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"adduct ion property\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/ms#part_of\",\"value\":\"http://purl.obolibrary.org/obo/MS_1000353\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/ms#part_of\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/MS_1000353\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"MS_1003056\"},\"isDefiningOntology\":false,\"appearsIn\":[\"partof\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/ms#part_of\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"part:of\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/MS_1000353\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"adduct ion\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"MS:1000353\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["partof"],"curie":"MS:1003056","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/MS_1000353","hierarchicalParent":"http://purl.obolibrary.org/obo/MS_1000353","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"adduct ion property","id":"partof+class+http://purl.obolibrary.org/obo/MS_1003056","imported":"false","iri":"http://purl.obolibrary.org/obo/MS_1003056","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"adduct ion property","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"partof","ontologyIri":"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","ontologyPreferredPrefix":"partof","relatedTo":"http://purl.obolibrary.org/obo/MS_1000353","searchableAnnotationValues":"false","shortForm":"MS_1003056","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0003684\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0000916\"},\"isDefiningOntology\":false,\"appearsIn\":[\"partof\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/UBERON_0003684\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdominal cavity\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0003684\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["partof"],"curie":"UBERON:0000916","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"abdomen","id":"partof+class+http://purl.obolibrary.org/obo/UBERON_0000916","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0000916","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"abdomen","numDescendants":"0.0","numHierarchicalDescendants":"1.0","ontologyId":"partof","ontologyIri":"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","ontologyPreferredPrefix":"partof","relatedFrom":"http://purl.obolibrary.org/obo/UBERON_0003684","searchableAnnotationValues":"false","shortForm":"UBERON_0000916","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/UBERON_0003684\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0003684\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"hierarchicalParent\":{\"type\":[\"reification\"],\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"axioms\":[{\"childRelationToParent\":\"http://purl.obolibrary.org/obo/BFO_0000050\"}]},\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"abdominal cavity\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"abdominal cavity\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"value\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/UBERON_0000916\",\"isObsolete\":false},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"UBERON_0003684\"},\"isDefiningOntology\":false,\"appearsIn\":[\"partof\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/UBERON_0000916\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"abdomen\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"UBERON:0000916\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000050\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["partof"],"curie":"UBERON:0003684","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/UBERON_0000916","hierarchicalParent":"http://purl.obolibrary.org/obo/UBERON_0000916","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"abdominal cavity","id":"partof+class+http://purl.obolibrary.org/obo/UBERON_0003684","imported":"false","iri":"http://purl.obolibrary.org/obo/UBERON_0003684","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"abdominal cavity","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"partof","ontologyIri":"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","ontologyPreferredPrefix":"partof","relatedTo":"http://purl.obolibrary.org/obo/UBERON_0000916","searchableAnnotationValues":"false","shortForm":"UBERON_0003684","type":["class","entity"]} diff --git a/testcases_expected_output/hierarchical-properties/partof/ontologies_linked.json b/testcases_expected_output/hierarchical-properties/partof/ontologies_linked.json index 8427d0f4d..2dc8f9444 100644 --- a/testcases_expected_output/hierarchical-properties/partof/ontologies_linked.json +++ b/testcases_expected_output/hierarchical-properties/partof/ontologies_linked.json @@ -204,11 +204,6 @@ "class", "entity" ] - }, - "MS:1000353": { - "url": "http://purl.obolibrary.org/obo/MS_1000353", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "MS:1000353" } } }, @@ -352,11 +347,6 @@ "class", "entity" ] - }, - "MS:1003056": { - "url": "http://purl.obolibrary.org/obo/MS_1003056", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "MS:1003056" } } }, @@ -458,11 +448,6 @@ "entity" ] }, - "UBERON:0000916": { - "url": "http://purl.obolibrary.org/obo/UBERON_0000916", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0000916" - }, "http://purl.obolibrary.org/obo/UBERON_0003684": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -585,11 +570,6 @@ "partof" ], "linkedEntities": { - "UBERON:0003684": { - "url": "http://purl.obolibrary.org/obo/UBERON_0003684", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "UBERON:0003684" - }, "http://purl.obolibrary.org/obo/UBERON_0000916": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -703,13 +683,7 @@ "appearsIn": [ "partof" ], - "linkedEntities": { - "BFO:0000050": { - "url": "http://purl.obolibrary.org/obo/BFO_0000050", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000050" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/ms#part_of", diff --git a/testcases_expected_output/hierarchical-properties/partof/partof_classes.csv b/testcases_expected_output/hierarchical-properties/partof/partof_classes.csv index 743016fb7..00fc2f589 100644 --- a/testcases_expected_output/hierarchical-properties/partof/partof_classes.csv +++ b/testcases_expected_output/hierarchical-properties/partof/partof_classes.csv @@ -1,5 +1,5 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","hierarchicalProperty:string[]","numHierarchicalDescendants:string[]","type:string[]","relatedTo:string[]","http__//www.w3.org/2000/01/rdf-schema#subClassOf:string[]","hasDirectParents:string[]","imported:string[]","ontologyIri:string[]","hierarchicalParent:string[]","iri","hierarchicalAncestor:string[]","relatedFrom:string[]","numDescendants:string[]","isObsolete:string[]","label:string[]","ontologyPreferredPrefix:string[]","directAncestor:string[]","curie:string[]","shortForm:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"partof+class+http://purl.obolibrary.org/obo/MS_1000353","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MS_1000353"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MS:1000353""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""adduct ion""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""adduct ion""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""partof""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""partof""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/ms#part_of"",""value"":""http://purl.obolibrary.org/obo/MS_1003056"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/ms#part_of"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MS_1000353"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""MS_1000353""},""isDefiningOntology"":false,""appearsIn"":[""partof""],""linkedEntities"":{""http://purl.obolibrary.org/obo/ms#part_of"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""part_of""},""curie"":{""type"":[""literal""],""value"":""part:of""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/MS_1003056"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""adduct ion property""},""curie"":{""type"":[""literal""],""value"":""MS:1003056""},""type"":[""class"",""entity""]},""MS:1000353"":{""url"":""http://purl.obolibrary.org/obo/MS_1000353"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MS:1000353""}}}","false","false","false","true","false","","","1.0","class|entity","","","false","false","http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","","http://purl.obolibrary.org/obo/MS_1000353","","http://purl.obolibrary.org/obo/MS_1003056","0.0","false","adduct ion","partof","","MS:1000353","MS_1000353","adduct ion","partof","http://www.w3.org/2002/07/owl#Class" -"partof+class+http://purl.obolibrary.org/obo/MS_1003056","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MS_1003056"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MS:1003056""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/MS_1000353"",""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MS_1000353"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/ms#part_of""}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""adduct ion property""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/ms#part_of"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MS_1000353"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""adduct ion property""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""partof""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""partof""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/ms#part_of"",""value"":""http://purl.obolibrary.org/obo/MS_1000353"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/ms#part_of"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MS_1000353"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""MS_1003056""},""isDefiningOntology"":false,""appearsIn"":[""partof""],""linkedEntities"":{""http://purl.obolibrary.org/obo/ms#part_of"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""part_of""},""curie"":{""type"":[""literal""],""value"":""part:of""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/MS_1000353"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""adduct ion""},""curie"":{""type"":[""literal""],""value"":""MS:1000353""},""type"":[""class"",""entity""]},""MS:1003056"":{""url"":""http://purl.obolibrary.org/obo/MS_1003056"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""MS:1003056""}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/MS_1000353","","false","false","http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","http://purl.obolibrary.org/obo/MS_1000353","http://purl.obolibrary.org/obo/MS_1003056","http://purl.obolibrary.org/obo/MS_1000353","","0.0","false","adduct ion property","partof","","MS:1003056","MS_1003056","adduct ion property","partof","http://www.w3.org/2002/07/owl#Class" -"partof+class+http://purl.obolibrary.org/obo/UBERON_0000916","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""abdomen""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""abdomen""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""partof""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""partof""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0003684"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000916""},""isDefiningOntology"":false,""appearsIn"":[""partof""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""part_of""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""UBERON:0000916"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0000916""},""http://purl.obolibrary.org/obo/UBERON_0003684"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdominal cavity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0003684""},""type"":[""class"",""entity""]}}}","false","false","false","true","false","","","1.0","class|entity","","","false","false","http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","","http://purl.obolibrary.org/obo/UBERON_0000916","","http://purl.obolibrary.org/obo/UBERON_0003684","0.0","false","abdomen","partof","","UBERON:0000916","UBERON_0000916","abdomen","partof","http://www.w3.org/2002/07/owl#Class" -"partof+class+http://purl.obolibrary.org/obo/UBERON_0003684","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0003684"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0003684""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050""}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""abdominal cavity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""abdominal cavity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""partof""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""partof""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0003684""},""isDefiningOntology"":false,""appearsIn"":[""partof""],""linkedEntities"":{""UBERON:0003684"":{""url"":""http://purl.obolibrary.org/obo/UBERON_0003684"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""UBERON:0003684""},""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""part_of""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000916","","false","false","http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0003684","http://purl.obolibrary.org/obo/UBERON_0000916","","0.0","false","abdominal cavity","partof","","UBERON:0003684","UBERON_0003684","abdominal cavity","partof","http://www.w3.org/2002/07/owl#Class" +"partof+class+http://purl.obolibrary.org/obo/MS_1000353","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MS_1000353"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MS:1000353""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""adduct ion""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""adduct ion""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""partof""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""partof""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/ms#part_of"",""value"":""http://purl.obolibrary.org/obo/MS_1003056"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/ms#part_of"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MS_1000353"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""MS_1000353""},""isDefiningOntology"":false,""appearsIn"":[""partof""],""linkedEntities"":{""http://purl.obolibrary.org/obo/ms#part_of"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""part_of""},""curie"":{""type"":[""literal""],""value"":""part:of""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/MS_1003056"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""adduct ion property""},""curie"":{""type"":[""literal""],""value"":""MS:1003056""},""type"":[""class"",""entity""]}}}","false","false","false","true","false","","","1.0","class|entity","","","false","false","http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","","http://purl.obolibrary.org/obo/MS_1000353","","http://purl.obolibrary.org/obo/MS_1003056","0.0","false","adduct ion","partof","","MS:1000353","MS_1000353","adduct ion","partof","http://www.w3.org/2002/07/owl#Class" +"partof+class+http://purl.obolibrary.org/obo/MS_1003056","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/MS_1003056"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""MS:1003056""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/MS_1000353"",""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/MS_1000353"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/ms#part_of""}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""adduct ion property""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/ms#part_of"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MS_1000353"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""adduct ion property""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""partof""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""partof""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/ms#part_of"",""value"":""http://purl.obolibrary.org/obo/MS_1000353"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/ms#part_of"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/MS_1000353"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""MS_1003056""},""isDefiningOntology"":false,""appearsIn"":[""partof""],""linkedEntities"":{""http://purl.obolibrary.org/obo/ms#part_of"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""part_of""},""curie"":{""type"":[""literal""],""value"":""part:of""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/MS_1000353"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""adduct ion""},""curie"":{""type"":[""literal""],""value"":""MS:1000353""},""type"":[""class"",""entity""]}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/MS_1000353","","false","false","http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","http://purl.obolibrary.org/obo/MS_1000353","http://purl.obolibrary.org/obo/MS_1003056","http://purl.obolibrary.org/obo/MS_1000353","","0.0","false","adduct ion property","partof","","MS:1003056","MS_1003056","adduct ion property","partof","http://www.w3.org/2002/07/owl#Class" +"partof+class+http://purl.obolibrary.org/obo/UBERON_0000916","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""abdomen""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""abdomen""},""numDescendants"":0.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""partof""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""partof""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0003684"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0000916""},""isDefiningOntology"":false,""appearsIn"":[""partof""],""linkedEntities"":{""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""part_of""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/UBERON_0003684"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdominal cavity""},""curie"":{""type"":[""literal""],""value"":""UBERON:0003684""},""type"":[""class"",""entity""]}}}","false","false","false","true","false","","","1.0","class|entity","","","false","false","http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","","http://purl.obolibrary.org/obo/UBERON_0000916","","http://purl.obolibrary.org/obo/UBERON_0003684","0.0","false","abdomen","partof","","UBERON:0000916","UBERON_0000916","abdomen","partof","http://www.w3.org/2002/07/owl#Class" +"partof+class+http://purl.obolibrary.org/obo/UBERON_0003684","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/UBERON_0003684"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""UBERON:0003684""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""hierarchicalParent"":{""type"":[""reification""],""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""axioms"":[{""childRelationToParent"":""http://purl.obolibrary.org/obo/BFO_0000050""}]},""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""abdominal cavity""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""abdominal cavity""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""partof""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""partof""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000050"",""value"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000050"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/UBERON_0000916"",""isObsolete"":false},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""UBERON_0003684""},""isDefiningOntology"":false,""appearsIn"":[""partof""],""linkedEntities"":{""http://purl.obolibrary.org/obo/UBERON_0000916"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""abdomen""},""curie"":{""type"":[""literal""],""value"":""UBERON:0000916""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000050"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""part_of""},""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/UBERON_0000916","","false","false","http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","http://purl.obolibrary.org/obo/UBERON_0000916","http://purl.obolibrary.org/obo/UBERON_0003684","http://purl.obolibrary.org/obo/UBERON_0000916","","0.0","false","abdominal cavity","partof","","UBERON:0003684","UBERON_0003684","abdominal cavity","partof","http://www.w3.org/2002/07/owl#Class" diff --git a/testcases_expected_output/hierarchical-properties/partof/partof_properties.csv b/testcases_expected_output/hierarchical-properties/partof/partof_properties.csv index 20f4a3fd8..48bd2b7f2 100644 --- a/testcases_expected_output/hierarchical-properties/partof/partof_properties.csv +++ b/testcases_expected_output/hierarchical-properties/partof/partof_properties.csv @@ -1,3 +1,3 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","iri","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","numDescendants:string[]","numHierarchicalDescendants:string[]","isObsolete:string[]","label:string[]","type:string[]","ontologyPreferredPrefix:string[]","directAncestor:string[]","curie:string[]","hasDirectParents:string[]","imported:string[]","shortForm:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","ontologyIri:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"partof+property+http://purl.obolibrary.org/obo/BFO_0000050","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000050"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""part_of""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""part_of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""partof""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""partof""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""BFO_0000050""},""isDefiningOntology"":false,""appearsIn"":[""partof""],""linkedEntities"":{""BFO:0000050"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000050"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000050""}}}","false","http://purl.obolibrary.org/obo/BFO_0000050","false","false","false","false","","0.0","0.0","false","part_of","property|objectProperty|entity","partof","","BFO:0000050","false","false","BFO_0000050","part_of","partof","http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"partof+property+http://purl.obolibrary.org/obo/BFO_0000050","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000050"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000050""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""part_of""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""part_of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""partof""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""partof""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""BFO_0000050""},""isDefiningOntology"":false,""appearsIn"":[""partof""],""linkedEntities"":{}}","false","http://purl.obolibrary.org/obo/BFO_0000050","false","false","false","false","","0.0","0.0","false","part_of","property|objectProperty|entity","partof","","BFO:0000050","false","false","BFO_0000050","part_of","partof","http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" "partof+property+http://purl.obolibrary.org/obo/ms#part_of","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/ms#part_of"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""part:of""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""part_of""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""partof""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""partof""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""part_of""},""isDefiningOntology"":false,""appearsIn"":[""partof""],""linkedEntities"":{}}","false","http://purl.obolibrary.org/obo/ms#part_of","false","false","false","false","","0.0","0.0","false","part_of","property|objectProperty|entity","partof","","part:of","false","false","part_of","","partof","http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" diff --git a/testcases_expected_output/hierarchical-properties/partof/properties.jsonl b/testcases_expected_output/hierarchical-properties/partof/properties.jsonl index 6ed2f699c..1d2dc0cf4 100644 --- a/testcases_expected_output/hierarchical-properties/partof/properties.jsonl +++ b/testcases_expected_output/hierarchical-properties/partof/properties.jsonl @@ -1,2 +1,2 @@ -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000050\"},\"isDefiningOntology\":false,\"appearsIn\":[\"partof\"],\"linkedEntities\":{\"BFO:0000050\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000050\"}}}","appearsIn":["partof"],"curie":"BFO:0000050","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"part_of","id":"partof+property+http://purl.obolibrary.org/obo/BFO_0000050","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000050","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"part_of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"partof","ontologyIri":"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","ontologyPreferredPrefix":"partof","searchableAnnotationValues":"false","shortForm":"BFO_0000050","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000050\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000050\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000050\"},\"isDefiningOntology\":false,\"appearsIn\":[\"partof\"],\"linkedEntities\":{}}","appearsIn":["partof"],"curie":"BFO:0000050","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":"part_of","id":"partof+property+http://purl.obolibrary.org/obo/BFO_0000050","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000050","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"part_of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"partof","ontologyIri":"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","ontologyPreferredPrefix":"partof","searchableAnnotationValues":"false","shortForm":"BFO_0000050","type":["property","objectProperty","entity"]} {"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/ms#part_of\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"part:of\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"partof\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"part_of\"},\"isDefiningOntology\":false,\"appearsIn\":[\"partof\"],\"linkedEntities\":{}}","appearsIn":["partof"],"curie":"part:of","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"id":"partof+property+http://purl.obolibrary.org/obo/ms#part_of","imported":"false","iri":"http://purl.obolibrary.org/obo/ms#part_of","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"part_of","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"partof","ontologyIri":"http://www.ebi.ac.uk/testcases/hierarchical-properties/partof.owl","ontologyPreferredPrefix":"partof","searchableAnnotationValues":"false","shortForm":"part_of","type":["property","objectProperty","entity"]} diff --git a/testcases_expected_output/iri-labels/efo-iri-labels/classes.jsonl b/testcases_expected_output/iri-labels/efo-iri-labels/classes.jsonl index f26338aef..982de2677 100644 --- a/testcases_expected_output/iri-labels/efo-iri-labels/classes.jsonl +++ b/testcases_expected_output/iri-labels/efo-iri-labels/classes.jsonl @@ -1,4 +1,4 @@ -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0006807\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006807\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"nitrogen compound metabolic process\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"nitrogen compound metabolic process\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0006807\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-iri-labels\"],\"linkedEntities\":{\"GO:0006807\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0006807\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0006807\"}}}","appearsIn":["efo-iri-labels"],"curie":"GO:0006807","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"nitrogen compound metabolic process","id":"efo-iri-labels+class+http://purl.obolibrary.org/obo/GO_0006807","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0006807","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"nitrogen compound metabolic process","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-iri-labels","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-iri-labels","searchableAnnotationValues":"false","shortForm":"GO_0006807","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"GO_0008150\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0008150\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-iri-labels\"],\"linkedEntities\":{\"GO:0008150\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0008150\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"GO:0008150\"}}}","appearsIn":["efo-iri-labels"],"curie":"GO:0008150","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","id":"efo-iri-labels+class+http://purl.obolibrary.org/obo/GO_0008150","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0008150","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"GO_0008150","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"efo-iri-labels","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-iri-labels","searchableAnnotationValues":"false","shortForm":"GO_0008150","type":["class","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OGMS_0000063\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000063\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The totality of all processes through which a given disease instance is realized.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"The totality of all processes through which a given disease instance is realized.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disease course\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disease course\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000054\",\"value\":\"http://www.ebi.ac.uk/efo/EFO_0000400\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/OGMS_0000063\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008152\",\"isObsolete\":false}]},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The totality of all processes through which a given disease instance is realized.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OGMS_0000063\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-iri-labels\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000115\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"iao:0000115\"},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000054\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000054\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"OGMS:0000063\":{\"url\":\"http://purl.obolibrary.org/obo/OGMS_0000063\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"OGMS:0000063\"},\"http://www.ebi.ac.uk/efo/EFO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"EFO_0000400\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"EFO:0000400\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008152\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0008152\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"go:0008152\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"GO_0008150\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-iri-labels"],"curie":"OGMS:0000063","definition":"The totality of all processes through which a given disease instance is realized.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"The totality of all processes through which a given disease instance is realized.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"disease course","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0008150","id":"efo-iri-labels+class+http://purl.obolibrary.org/obo/OGMS_0000063","imported":"false","iri":"http://purl.obolibrary.org/obo/OGMS_0000063","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disease course","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-iri-labels","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-iri-labels","relatedFrom":"http://www.ebi.ac.uk/efo/EFO_0000400","searchableAnnotationValues":["The totality of all processes through which a given disease instance is realized.","false"],"shortForm":"OGMS_0000063","type":["class","entity"]} -{"_json":"{\"iri\":\"http://www.ebi.ac.uk/efo/EFO_0000400\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"EFO:0000400\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000054\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/OGMS_0000063\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008152\",\"isObsolete\":false}]},\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"EFO_0000400\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000054\",\"value\":\"http://purl.obolibrary.org/obo/OGMS_0000063\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/OGMS_0000063\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008152\",\"isObsolete\":false}]},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"EFO_0000400\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-iri-labels\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/OGMS_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease course\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000063\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008152\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0008152\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"go:0008152\"},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000054\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000054\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"EFO:0000400\":{\"url\":\"http://www.ebi.ac.uk/efo/EFO_0000400\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"EFO:0000400\"}}}","appearsIn":["efo-iri-labels"],"curie":"EFO:0000400","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","id":"efo-iri-labels+class+http://www.ebi.ac.uk/efo/EFO_0000400","imported":"false","iri":"http://www.ebi.ac.uk/efo/EFO_0000400","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"EFO_0000400","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-iri-labels","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-iri-labels","relatedTo":"http://purl.obolibrary.org/obo/OGMS_0000063","searchableAnnotationValues":"false","shortForm":"EFO_0000400","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0006807\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0006807\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"nitrogen compound metabolic process\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"nitrogen compound metabolic process\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0006807\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-iri-labels\"],\"linkedEntities\":{}}","appearsIn":["efo-iri-labels"],"curie":"GO:0006807","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"nitrogen compound metabolic process","id":"efo-iri-labels+class+http://purl.obolibrary.org/obo/GO_0006807","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0006807","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"nitrogen compound metabolic process","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-iri-labels","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-iri-labels","searchableAnnotationValues":"false","shortForm":"GO_0006807","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"GO_0008150\"},\"numDescendants\":1.0,\"numHierarchicalDescendants\":1.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"GO_0008150\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-iri-labels\"],\"linkedEntities\":{}}","appearsIn":["efo-iri-labels"],"curie":"GO:0008150","directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","id":"efo-iri-labels+class+http://purl.obolibrary.org/obo/GO_0008150","imported":"false","iri":"http://purl.obolibrary.org/obo/GO_0008150","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"GO_0008150","numDescendants":"1.0","numHierarchicalDescendants":"1.0","ontologyId":"efo-iri-labels","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-iri-labels","searchableAnnotationValues":"false","shortForm":"GO_0008150","type":["class","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/OGMS_0000063\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000063\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"The totality of all processes through which a given disease instance is realized.\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://purl.obolibrary.org/obo/IAO_0000115\"},\"directAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"directParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalParent\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"type\":[\"literal\"],\"value\":\"The totality of all processes through which a given disease instance is realized.\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"value\":\"disease course\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://purl.obolibrary.org/obo/GO_0008150\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"disease course\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"relatedFrom\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000054\",\"value\":\"http://www.ebi.ac.uk/efo/EFO_0000400\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/OGMS_0000063\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008152\",\"isObsolete\":false}]},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"value\":\"The totality of all processes through which a given disease instance is realized.\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"OGMS_0000063\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-iri-labels\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/IAO_0000115\":{\"url\":\"http://purl.obolibrary.org/obo/IAO_0000115\",\"source\":\"https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json\",\"curie\":\"iao:0000115\"},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000054\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000054\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://www.ebi.ac.uk/efo/EFO_0000400\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"EFO_0000400\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"EFO:0000400\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008152\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0008152\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"go:0008152\"},\"http://purl.obolibrary.org/obo/GO_0008150\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"GO_0008150\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"GO:0008150\"},\"type\":[\"class\",\"entity\"]}}}","appearsIn":["efo-iri-labels"],"curie":"OGMS:0000063","definition":"The totality of all processes through which a given disease instance is realized.","definitionProperty":"http://purl.obolibrary.org/obo/IAO_0000115","directAncestor":"http://purl.obolibrary.org/obo/GO_0008150","directParent":"http://purl.obolibrary.org/obo/GO_0008150","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalParent":"http://purl.obolibrary.org/obo/GO_0008150","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//purl.obolibrary.org/obo/IAO_0000115":"The totality of all processes through which a given disease instance is realized.","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"disease course","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://purl.obolibrary.org/obo/GO_0008150","id":"efo-iri-labels+class+http://purl.obolibrary.org/obo/OGMS_0000063","imported":"false","iri":"http://purl.obolibrary.org/obo/OGMS_0000063","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"disease course","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-iri-labels","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-iri-labels","relatedFrom":"http://www.ebi.ac.uk/efo/EFO_0000400","searchableAnnotationValues":["The totality of all processes through which a given disease instance is realized.","false"],"shortForm":"OGMS_0000063","type":["class","entity"]} +{"_json":"{\"iri\":\"http://www.ebi.ac.uk/efo/EFO_0000400\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"EFO:0000400\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000054\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/OGMS_0000063\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008152\",\"isObsolete\":false}]},\"isObsolete\":false},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"EFO_0000400\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"relatedTo\":{\"property\":\"http://purl.obolibrary.org/obo/BFO_0000054\",\"value\":\"http://purl.obolibrary.org/obo/OGMS_0000063\",\"type\":[\"related\"],\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2002/07/owl#intersectionOf\":[\"http://purl.obolibrary.org/obo/OGMS_0000063\",{\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Restriction\",\"http://www.w3.org/2002/07/owl#onProperty\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"http://www.w3.org/2002/07/owl#someValuesFrom\":\"http://purl.obolibrary.org/obo/GO_0008152\",\"isObsolete\":false}]},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"EFO_0000400\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-iri-labels\"],\"linkedEntities\":{\"http://purl.obolibrary.org/obo/OGMS_0000063\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"disease course\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"OGMS:0000063\"},\"type\":[\"class\",\"entity\"]},\"http://purl.obolibrary.org/obo/GO_0008152\":{\"url\":\"http://amigo.geneontology.org/amigo/term/GO:0008152\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"go:0008152\"},\"http://purl.obolibrary.org/obo/BFO_0000051\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]},\"http://purl.obolibrary.org/obo/BFO_0000054\":{\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000054\"},\"type\":[\"property\",\"objectProperty\",\"entity\"]}}}","appearsIn":["efo-iri-labels"],"curie":"EFO:0000400","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","hierarchicalAncestor":[],"hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","id":"efo-iri-labels+class+http://www.ebi.ac.uk/efo/EFO_0000400","imported":"false","iri":"http://www.ebi.ac.uk/efo/EFO_0000400","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"EFO_0000400","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-iri-labels","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-iri-labels","relatedTo":"http://purl.obolibrary.org/obo/OGMS_0000063","searchableAnnotationValues":"false","shortForm":"EFO_0000400","type":["class","entity"]} diff --git a/testcases_expected_output/iri-labels/efo-iri-labels/efo-iri-labels_classes.csv b/testcases_expected_output/iri-labels/efo-iri-labels/efo-iri-labels_classes.csv index f863d9859..2ae03275c 100644 --- a/testcases_expected_output/iri-labels/efo-iri-labels/efo-iri-labels_classes.csv +++ b/testcases_expected_output/iri-labels/efo-iri-labels/efo-iri-labels_classes.csv @@ -1,5 +1,5 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","hierarchicalProperty:string[]","numHierarchicalDescendants:string[]","type:string[]","relatedTo:string[]","definitionProperty:string[]","http__//www.w3.org/2000/01/rdf-schema#subClassOf:string[]","hasDirectParents:string[]","imported:string[]","ontologyIri:string[]","definition:string[]","hierarchicalParent:string[]","http__//purl.obolibrary.org/obo/IAO_0000115:string[]","iri","hierarchicalAncestor:string[]","relatedFrom:string[]","numDescendants:string[]","isObsolete:string[]","label:string[]","directParent:string[]","ontologyPreferredPrefix:string[]","directAncestor:string[]","curie:string[]","shortForm:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"efo-iri-labels+class+http://purl.obolibrary.org/obo/GO_0006807","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0006807"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0006807""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""nitrogen compound metabolic process""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""nitrogen compound metabolic process""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-iri-labels""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-iri-labels""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0006807""},""isDefiningOntology"":false,""appearsIn"":[""efo-iri-labels""],""linkedEntities"":{""GO:0006807"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0006807"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0006807""}}}","false","false","false","false","false","","","0.0","class|entity","","","","false","false","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/GO_0006807","","","0.0","false","nitrogen compound metabolic process","","efo-iri-labels","","GO:0006807","GO_0006807","nitrogen compound metabolic process","efo-iri-labels","http://www.w3.org/2002/07/owl#Class" -"efo-iri-labels+class+http://purl.obolibrary.org/obo/GO_0008150","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0008150"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""GO_0008150""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-iri-labels""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-iri-labels""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0008150""},""isDefiningOntology"":false,""appearsIn"":[""efo-iri-labels""],""linkedEntities"":{""GO:0008150"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0008150"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""GO:0008150""}}}","false","true","false","true","false","","","1.0","class|entity","","","","false","false","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/GO_0008150","","","1.0","false","GO_0008150","","efo-iri-labels","","GO:0008150","GO_0008150","","efo-iri-labels","http://www.w3.org/2002/07/owl#Class" -"efo-iri-labels+class+http://purl.obolibrary.org/obo/OGMS_0000063","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/OGMS_0000063"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OGMS:0000063""},""definition"":{""type"":[""literal""],""value"":""The totality of all processes through which a given disease instance is realized.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""The totality of all processes through which a given disease instance is realized.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disease course""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0008150"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disease course""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-iri-labels""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-iri-labels""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000054"",""value"":""http://www.ebi.ac.uk/efo/EFO_0000400"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/OGMS_0000063"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008152"",""isObsolete"":false}]},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The totality of all processes through which a given disease instance is realized.""},false],""shortForm"":{""type"":[""literal""],""value"":""OGMS_0000063""},""isDefiningOntology"":false,""appearsIn"":[""efo-iri-labels""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000115"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""iao:0000115""},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000054"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000054""},""type"":[""property"",""objectProperty"",""entity""]},""OGMS:0000063"":{""url"":""http://purl.obolibrary.org/obo/OGMS_0000063"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""OGMS:0000063""},""http://www.ebi.ac.uk/efo/EFO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""EFO_0000400""},""curie"":{""type"":[""literal""],""value"":""EFO:0000400""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008152"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0008152"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""go:0008152""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""GO_0008150""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/GO_0008150","true","false","http://www.ebi.ac.uk/efo/efo.owl","The totality of all processes through which a given disease instance is realized.","http://purl.obolibrary.org/obo/GO_0008150","The totality of all processes through which a given disease instance is realized.","http://purl.obolibrary.org/obo/OGMS_0000063","http://purl.obolibrary.org/obo/GO_0008150","http://www.ebi.ac.uk/efo/EFO_0000400","0.0","false","disease course","http://purl.obolibrary.org/obo/GO_0008150","efo-iri-labels","http://purl.obolibrary.org/obo/GO_0008150","OGMS:0000063","OGMS_0000063","disease course","efo-iri-labels","http://www.w3.org/2002/07/owl#Class" -"efo-iri-labels+class+http://www.ebi.ac.uk/efo/EFO_0000400","OntologyEntity|OntologyClass","{""iri"":""http://www.ebi.ac.uk/efo/EFO_0000400"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""EFO:0000400""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000054"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/OGMS_0000063"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008152"",""isObsolete"":false}]},""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""EFO_0000400""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-iri-labels""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-iri-labels""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000054"",""value"":""http://purl.obolibrary.org/obo/OGMS_0000063"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/OGMS_0000063"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008152"",""isObsolete"":false}]},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""EFO_0000400""},""isDefiningOntology"":false,""appearsIn"":[""efo-iri-labels""],""linkedEntities"":{""http://purl.obolibrary.org/obo/OGMS_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease course""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000063""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008152"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0008152"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""go:0008152""},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000054"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000054""},""type"":[""property"",""objectProperty"",""entity""]},""EFO:0000400"":{""url"":""http://www.ebi.ac.uk/efo/EFO_0000400"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""EFO:0000400""}}}","false","false","false","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/OGMS_0000063","","","false","false","http://www.ebi.ac.uk/efo/efo.owl","","","","http://www.ebi.ac.uk/efo/EFO_0000400","","","0.0","false","EFO_0000400","","efo-iri-labels","","EFO:0000400","EFO_0000400","","efo-iri-labels","http://www.w3.org/2002/07/owl#Class" +"efo-iri-labels+class+http://purl.obolibrary.org/obo/GO_0006807","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0006807"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0006807""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""nitrogen compound metabolic process""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""nitrogen compound metabolic process""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-iri-labels""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-iri-labels""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0006807""},""isDefiningOntology"":false,""appearsIn"":[""efo-iri-labels""],""linkedEntities"":{}}","false","false","false","false","false","","","0.0","class|entity","","","","false","false","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/GO_0006807","","","0.0","false","nitrogen compound metabolic process","","efo-iri-labels","","GO:0006807","GO_0006807","nitrogen compound metabolic process","efo-iri-labels","http://www.w3.org/2002/07/owl#Class" +"efo-iri-labels+class+http://purl.obolibrary.org/obo/GO_0008150","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/GO_0008150"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""GO_0008150""},""numDescendants"":1.0,""numHierarchicalDescendants"":1.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-iri-labels""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-iri-labels""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""GO_0008150""},""isDefiningOntology"":false,""appearsIn"":[""efo-iri-labels""],""linkedEntities"":{}}","false","true","false","true","false","","","1.0","class|entity","","","","false","false","http://www.ebi.ac.uk/efo/efo.owl","","","","http://purl.obolibrary.org/obo/GO_0008150","","","1.0","false","GO_0008150","","efo-iri-labels","","GO:0008150","GO_0008150","","efo-iri-labels","http://www.w3.org/2002/07/owl#Class" +"efo-iri-labels+class+http://purl.obolibrary.org/obo/OGMS_0000063","OntologyEntity|OntologyClass","{""iri"":""http://purl.obolibrary.org/obo/OGMS_0000063"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""OGMS:0000063""},""definition"":{""type"":[""literal""],""value"":""The totality of all processes through which a given disease instance is realized.""},""definitionProperty"":{""type"":[""literal""],""value"":""http://purl.obolibrary.org/obo/IAO_0000115""},""directAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""directParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalParent"":""http://purl.obolibrary.org/obo/GO_0008150"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://purl.obolibrary.org/obo/IAO_0000115"":{""type"":[""literal""],""value"":""The totality of all processes through which a given disease instance is realized.""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""value"":""disease course""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://purl.obolibrary.org/obo/GO_0008150"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""disease course""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-iri-labels""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-iri-labels""},""relatedFrom"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000054"",""value"":""http://www.ebi.ac.uk/efo/EFO_0000400"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/OGMS_0000063"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008152"",""isObsolete"":false}]},""searchableAnnotationValues"":[{""type"":[""literal""],""value"":""The totality of all processes through which a given disease instance is realized.""},false],""shortForm"":{""type"":[""literal""],""value"":""OGMS_0000063""},""isDefiningOntology"":false,""appearsIn"":[""efo-iri-labels""],""linkedEntities"":{""http://purl.obolibrary.org/obo/IAO_0000115"":{""url"":""http://purl.obolibrary.org/obo/IAO_0000115"",""source"":""https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json"",""curie"":""iao:0000115""},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000054"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000054""},""type"":[""property"",""objectProperty"",""entity""]},""http://www.ebi.ac.uk/efo/EFO_0000400"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""EFO_0000400""},""curie"":{""type"":[""literal""],""value"":""EFO:0000400""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008152"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0008152"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""go:0008152""},""http://purl.obolibrary.org/obo/GO_0008150"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""GO_0008150""},""curie"":{""type"":[""literal""],""value"":""GO:0008150""},""type"":[""class"",""entity""]}}}","false","false","true","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","","http://purl.obolibrary.org/obo/IAO_0000115","http://purl.obolibrary.org/obo/GO_0008150","true","false","http://www.ebi.ac.uk/efo/efo.owl","The totality of all processes through which a given disease instance is realized.","http://purl.obolibrary.org/obo/GO_0008150","The totality of all processes through which a given disease instance is realized.","http://purl.obolibrary.org/obo/OGMS_0000063","http://purl.obolibrary.org/obo/GO_0008150","http://www.ebi.ac.uk/efo/EFO_0000400","0.0","false","disease course","http://purl.obolibrary.org/obo/GO_0008150","efo-iri-labels","http://purl.obolibrary.org/obo/GO_0008150","OGMS:0000063","OGMS_0000063","disease course","efo-iri-labels","http://www.w3.org/2002/07/owl#Class" +"efo-iri-labels+class+http://www.ebi.ac.uk/efo/EFO_0000400","OntologyEntity|OntologyClass","{""iri"":""http://www.ebi.ac.uk/efo/EFO_0000400"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""EFO:0000400""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#subClassOf"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000054"",""http://www.w3.org/2002/07/owl#someValuesFrom"":{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/OGMS_0000063"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008152"",""isObsolete"":false}]},""isObsolete"":false},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""EFO_0000400""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-iri-labels""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-iri-labels""},""relatedTo"":{""property"":""http://purl.obolibrary.org/obo/BFO_0000054"",""value"":""http://purl.obolibrary.org/obo/OGMS_0000063"",""type"":[""related""],""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2002/07/owl#intersectionOf"":[""http://purl.obolibrary.org/obo/OGMS_0000063"",{""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Restriction"",""http://www.w3.org/2002/07/owl#onProperty"":""http://purl.obolibrary.org/obo/BFO_0000051"",""http://www.w3.org/2002/07/owl#someValuesFrom"":""http://purl.obolibrary.org/obo/GO_0008152"",""isObsolete"":false}]},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""EFO_0000400""},""isDefiningOntology"":false,""appearsIn"":[""efo-iri-labels""],""linkedEntities"":{""http://purl.obolibrary.org/obo/OGMS_0000063"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""disease course""},""curie"":{""type"":[""literal""],""value"":""OGMS:0000063""},""type"":[""class"",""entity""]},""http://purl.obolibrary.org/obo/GO_0008152"":{""url"":""http://amigo.geneontology.org/amigo/term/GO:0008152"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""go:0008152""},""http://purl.obolibrary.org/obo/BFO_0000051"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""type"":[""property"",""objectProperty"",""entity""]},""http://purl.obolibrary.org/obo/BFO_0000054"":{""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},""curie"":{""type"":[""literal""],""value"":""BFO:0000054""},""type"":[""property"",""objectProperty"",""entity""]}}}","false","false","false","false","false","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","class|entity","http://purl.obolibrary.org/obo/OGMS_0000063","","","false","false","http://www.ebi.ac.uk/efo/efo.owl","","","","http://www.ebi.ac.uk/efo/EFO_0000400","","","0.0","false","EFO_0000400","","efo-iri-labels","","EFO:0000400","EFO_0000400","","efo-iri-labels","http://www.w3.org/2002/07/owl#Class" diff --git a/testcases_expected_output/iri-labels/efo-iri-labels/efo-iri-labels_properties.csv b/testcases_expected_output/iri-labels/efo-iri-labels/efo-iri-labels_properties.csv index 1d826f629..d6d965596 100644 --- a/testcases_expected_output/iri-labels/efo-iri-labels/efo-iri-labels_properties.csv +++ b/testcases_expected_output/iri-labels/efo-iri-labels/efo-iri-labels_properties.csv @@ -1,3 +1,3 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","numHierarchicalDescendants:string[]","type:string[]","definitionProperty:string[]","hasDirectParents:string[]","imported:string[]","http__//www.w3.org/2000/01/rdf-schema#comment:string[]","ontologyIri:string[]","definition:string[]","iri","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy:string[]","numDescendants:string[]","isObsolete:string[]","label:string[]","ontologyPreferredPrefix:string[]","directAncestor:string[]","curie:string[]","shortForm:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"efo-iri-labels+property+http://purl.obolibrary.org/obo/BFO_0000051","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000051"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-iri-labels""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-iri-labels""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""BFO_0000051""},""isDefiningOntology"":false,""appearsIn"":[""efo-iri-labels""],""linkedEntities"":{""BFO:0000051"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000051"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000051""}}}","false","false","false","false","false","","0.0","property|objectProperty|entity","","false","false","","http://www.ebi.ac.uk/efo/efo.owl","","http://purl.obolibrary.org/obo/BFO_0000051","","0.0","false","has part|has_part","efo-iri-labels","","BFO:0000051","BFO_0000051","has part|has_part","efo-iri-labels","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" -"efo-iri-labels+property+http://purl.obolibrary.org/obo/BFO_0000054","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000054"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000054""},""definition"":{""type"":[""literal""],""value"":""Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-iri-labels""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-iri-labels""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""BFO_0000054""},""isDefiningOntology"":false,""appearsIn"":[""efo-iri-labels""],""linkedEntities"":{""BFO:0000054"":{""url"":""http://purl.obolibrary.org/obo/BFO_0000054"",""source"":""https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml"",""curie"":""BFO:0000054""}}}","false","false","false","false","false","","0.0","property|objectProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","false","Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","http://www.ebi.ac.uk/efo/efo.owl","Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","http://purl.obolibrary.org/obo/BFO_0000054","http://purl.obolibrary.org/obo/bfo.owl","0.0","false","realized in","efo-iri-labels","","BFO:0000054","BFO_0000054","realized in","efo-iri-labels","http://www.w3.org/2002/07/owl#ObjectProperty" +"efo-iri-labels+property+http://purl.obolibrary.org/obo/BFO_0000051","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000051"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000051""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":[""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2002/07/owl#TransitiveProperty""],""http://www.w3.org/2000/01/rdf-schema#label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":[{""type"":[""literal""],""value"":""has part""},{""type"":[""literal""],""value"":""has_part""}],""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-iri-labels""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-iri-labels""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""BFO_0000051""},""isDefiningOntology"":false,""appearsIn"":[""efo-iri-labels""],""linkedEntities"":{}}","false","false","false","false","false","","0.0","property|objectProperty|entity","","false","false","","http://www.ebi.ac.uk/efo/efo.owl","","http://purl.obolibrary.org/obo/BFO_0000051","","0.0","false","has part|has_part","efo-iri-labels","","BFO:0000051","BFO_0000051","has part|has_part","efo-iri-labels","http://www.w3.org/2002/07/owl#ObjectProperty|http://www.w3.org/2002/07/owl#TransitiveProperty" +"efo-iri-labels+property+http://purl.obolibrary.org/obo/BFO_0000054","OntologyEntity|OntologyProperty","{""iri"":""http://purl.obolibrary.org/obo/BFO_0000054"",""type"":[""property"",""objectProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""BFO:0000054""},""definition"":{""type"":[""literal""],""value"":""Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process""},""definitionProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#comment""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#ObjectProperty"",""http://www.w3.org/2000/01/rdf-schema#comment"":{""type"":[""literal""],""value"":""Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process""},""http://www.w3.org/2000/01/rdf-schema#isDefinedBy"":""http://purl.obolibrary.org/obo/bfo.owl"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""realized in"",""lang"":""en""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""efo-iri-labels""},""ontologyIri"":{""type"":[""literal""],""value"":""http://www.ebi.ac.uk/efo/efo.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""efo-iri-labels""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""BFO_0000054""},""isDefiningOntology"":false,""appearsIn"":[""efo-iri-labels""],""linkedEntities"":{}}","false","false","false","false","false","","0.0","property|objectProperty|entity","http://www.w3.org/2000/01/rdf-schema#comment","false","false","Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","http://www.ebi.ac.uk/efo/efo.owl","Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","http://purl.obolibrary.org/obo/BFO_0000054","http://purl.obolibrary.org/obo/bfo.owl","0.0","false","realized in","efo-iri-labels","","BFO:0000054","BFO_0000054","realized in","efo-iri-labels","http://www.w3.org/2002/07/owl#ObjectProperty" diff --git a/testcases_expected_output/iri-labels/efo-iri-labels/ontologies_linked.json b/testcases_expected_output/iri-labels/efo-iri-labels/ontologies_linked.json index f474c9833..b15a66e16 100644 --- a/testcases_expected_output/iri-labels/efo-iri-labels/ontologies_linked.json +++ b/testcases_expected_output/iri-labels/efo-iri-labels/ontologies_linked.json @@ -432,13 +432,7 @@ "appearsIn": [ "efo-iri-labels" ], - "linkedEntities": { - "GO:0006807": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0006807", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0006807" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/GO_0008150", @@ -499,13 +493,7 @@ "appearsIn": [ "efo-iri-labels" ], - "linkedEntities": { - "GO:0008150": { - "url": "http://amigo.geneontology.org/amigo/term/GO:0008150", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "GO:0008150" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/OGMS_0000063", @@ -682,11 +670,6 @@ "entity" ] }, - "OGMS:0000063": { - "url": "http://purl.obolibrary.org/obo/OGMS_0000063", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "OGMS:0000063" - }, "http://www.ebi.ac.uk/efo/EFO_0000400": { "numAppearsIn": 1, "hasLocalDefinition": true, @@ -910,11 +893,6 @@ "objectProperty", "entity" ] - }, - "EFO:0000400": { - "url": "http://www.ebi.ac.uk/efo/EFO_0000400", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "curie": "EFO:0000400" } } } @@ -1004,13 +982,7 @@ "appearsIn": [ "efo-iri-labels" ], - "linkedEntities": { - "BFO:0000051": { - "url": "http://purl.obolibrary.org/obo/BFO_0000051", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000051" - } - } + "linkedEntities": {} }, { "iri": "http://purl.obolibrary.org/obo/BFO_0000054", @@ -1100,13 +1072,7 @@ "appearsIn": [ "efo-iri-labels" ], - "linkedEntities": { - "BFO:0000054": { - "url": "http://purl.obolibrary.org/obo/BFO_0000054", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "curie": "BFO:0000054" - } - } + "linkedEntities": {} } ], "individuals": [], diff --git a/testcases_expected_output/iri-labels/efo-iri-labels/properties.jsonl b/testcases_expected_output/iri-labels/efo-iri-labels/properties.jsonl index b5a92b48f..ab35f120c 100644 --- a/testcases_expected_output/iri-labels/efo-iri-labels/properties.jsonl +++ b/testcases_expected_output/iri-labels/efo-iri-labels/properties.jsonl @@ -1,2 +1,2 @@ -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000051\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-iri-labels\"],\"linkedEntities\":{\"BFO:0000051\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000051\"}}}","appearsIn":["efo-iri-labels"],"curie":"BFO:0000051","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":["has part","has_part"],"id":"efo-iri-labels+property+http://purl.obolibrary.org/obo/BFO_0000051","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000051","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":["has part","has_part"],"numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-iri-labels","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-iri-labels","searchableAnnotationValues":"false","shortForm":"BFO_0000051","type":["property","objectProperty","entity"]} -{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000054\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000054\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000054\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-iri-labels\"],\"linkedEntities\":{\"BFO:0000054\":{\"url\":\"http://purl.obolibrary.org/obo/BFO_0000054\",\"source\":\"https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml\",\"curie\":\"BFO:0000054\"}}}","appearsIn":["efo-iri-labels"],"curie":"BFO:0000054","definition":"Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"realized in","id":"efo-iri-labels+property+http://purl.obolibrary.org/obo/BFO_0000054","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000054","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"realized in","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-iri-labels","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-iri-labels","searchableAnnotationValues":"false","shortForm":"BFO_0000054","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000051\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000051\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":[\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2002/07/owl#TransitiveProperty\"],\"http://www.w3.org/2000/01/rdf-schema#label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":[{\"type\":[\"literal\"],\"value\":\"has part\"},{\"type\":[\"literal\"],\"value\":\"has_part\"}],\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000051\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-iri-labels\"],\"linkedEntities\":{}}","appearsIn":["efo-iri-labels"],"curie":"BFO:0000051","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":["http://www.w3.org/2002/07/owl#ObjectProperty","http://www.w3.org/2002/07/owl#TransitiveProperty"],"http__//www.w3.org/2000/01/rdf-schema#label":["has part","has_part"],"id":"efo-iri-labels+property+http://purl.obolibrary.org/obo/BFO_0000051","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000051","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":["has part","has_part"],"numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-iri-labels","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-iri-labels","searchableAnnotationValues":"false","shortForm":"BFO_0000051","type":["property","objectProperty","entity"]} +{"_json":"{\"iri\":\"http://purl.obolibrary.org/obo/BFO_0000054\",\"type\":[\"property\",\"objectProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"BFO:0000054\"},\"definition\":{\"type\":[\"literal\"],\"value\":\"Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process\"},\"definitionProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#comment\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#ObjectProperty\",\"http://www.w3.org/2000/01/rdf-schema#comment\":{\"type\":[\"literal\"],\"value\":\"Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process\"},\"http://www.w3.org/2000/01/rdf-schema#isDefinedBy\":\"http://purl.obolibrary.org/obo/bfo.owl\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"realized in\",\"lang\":\"en\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://www.ebi.ac.uk/efo/efo.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"efo-iri-labels\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"BFO_0000054\"},\"isDefiningOntology\":false,\"appearsIn\":[\"efo-iri-labels\"],\"linkedEntities\":{}}","appearsIn":["efo-iri-labels"],"curie":"BFO:0000054","definition":"Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","definitionProperty":"http://www.w3.org/2000/01/rdf-schema#comment","directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#ObjectProperty","http__//www.w3.org/2000/01/rdf-schema#comment":"Paraphrase of elucidation: a relation between a realizable entity and a process, where there is some material entity that is bearer of the realizable entity and participates in the process, and the realizable entity comes to be realized in the course of the process","http__//www.w3.org/2000/01/rdf-schema#isDefinedBy":"http://purl.obolibrary.org/obo/bfo.owl","http__//www.w3.org/2000/01/rdf-schema#label":"realized in","id":"efo-iri-labels+property+http://purl.obolibrary.org/obo/BFO_0000054","imported":"false","iri":"http://purl.obolibrary.org/obo/BFO_0000054","isDefiningOntology":"false","isObsolete":"false","isPreferredRoot":"false","label":"realized in","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"efo-iri-labels","ontologyIri":"http://www.ebi.ac.uk/efo/efo.owl","ontologyPreferredPrefix":"efo-iri-labels","searchableAnnotationValues":"false","shortForm":"BFO_0000054","type":["property","objectProperty","entity"]} diff --git a/testcases_expected_output/iri-labels/use-user-defined-pref-label/classes.jsonl b/testcases_expected_output/iri-labels/use-user-defined-pref-label/classes.jsonl index f943064eb..49e07210f 100644 --- a/testcases_expected_output/iri-labels/use-user-defined-pref-label/classes.jsonl +++ b/testcases_expected_output/iri-labels/use-user-defined-pref-label/classes.jsonl @@ -1,3 +1,3 @@ -{"_json":"{\"iri\":\"http://exmpl.org/xmpl/XMPL000001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:XMPL000001\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://exmpl.org/xmpl/Preferred_name\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"parent class pref label\",\"lang\":\"en\"},\"http://exmpl.org/xmpl/Synonym\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the parent class\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000001\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"parent class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000001\",\"lang\":\"en\"}],\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"xmpl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://exmpl.org/xmpl/xmpl.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"XMPL\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"parent class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the parent class\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"XMPL_XMPL000001\"},\"synonym\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the parent class\",\"lang\":\"en\"},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://exmpl.org/xmpl/Synonym\"},\"isDefiningOntology\":true,\"definedBy\":[\"xmpl\"],\"appearsIn\":[\"xmpl\"],\"linkedEntities\":{\"XMPL:XMPL000001\":{\"iri\":\"http://exmpl.org/xmpl/XMPL000001\",\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"parent class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000001\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:XMPL000001\"},\"type\":[\"class\",\"entity\"]},\"http://exmpl.org/xmpl/Preferred_name\":{\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"XMPL_Preferred_name\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:Preferred_name\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://exmpl.org/xmpl/Synonym\":{\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"XMPL_Synonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:Synonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["xmpl"],"curie":"XMPL:XMPL000001","definedBy":["xmpl"],"directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//exmpl.org/xmpl/Preferred_name":"parent class pref label","http__//exmpl.org/xmpl/Synonym":"label of the parent class","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"XMPL000001","id":"xmpl+class+http://exmpl.org/xmpl/XMPL000001","imported":"false","iri":"http://exmpl.org/xmpl/XMPL000001","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":["parent class pref label","XMPL000001"],"numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"xmpl","ontologyIri":"http://exmpl.org/xmpl/xmpl.owl","ontologyPreferredPrefix":"XMPL","searchableAnnotationValues":["parent class pref label","label of the parent class","false"],"shortForm":"XMPL_XMPL000001","synonym":"label of the parent class","synonymProperty":"http://exmpl.org/xmpl/Synonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://exmpl.org/xmpl/XMPL000002\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:XMPL000002\"},\"directAncestor\":\"http://exmpl.org/xmpl/XMPL000001\",\"directParent\":\"http://exmpl.org/xmpl/XMPL000001\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://exmpl.org/xmpl/XMPL000001\",\"hierarchicalParent\":\"http://exmpl.org/xmpl/XMPL000001\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://exmpl.org/xmpl/Preferred_name\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"1st children class pref label\",\"lang\":\"en\"},\"http://exmpl.org/xmpl/Synonym\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the first children class\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000002\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://exmpl.org/xmpl/XMPL000001\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"1st children class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000002\",\"lang\":\"en\"}],\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"xmpl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://exmpl.org/xmpl/xmpl.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"XMPL\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"1st children class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the first children class\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"XMPL_XMPL000002\"},\"synonym\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the first children class\",\"lang\":\"en\"},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://exmpl.org/xmpl/Synonym\"},\"isDefiningOntology\":true,\"definedBy\":[\"xmpl\"],\"appearsIn\":[\"xmpl\"],\"linkedEntities\":{\"http://exmpl.org/xmpl/Preferred_name\":{\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"XMPL_Preferred_name\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:Preferred_name\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"XMPL:XMPL000002\":{\"iri\":\"http://exmpl.org/xmpl/XMPL000002\",\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"1st children class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000002\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:XMPL000002\"},\"type\":[\"class\",\"entity\"]},\"http://exmpl.org/xmpl/XMPL000001\":{\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"parent class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000001\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:XMPL000001\"},\"type\":[\"class\",\"entity\"]},\"http://exmpl.org/xmpl/Synonym\":{\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"XMPL_Synonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:Synonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["xmpl"],"curie":"XMPL:XMPL000002","definedBy":["xmpl"],"directAncestor":"http://exmpl.org/xmpl/XMPL000001","directParent":"http://exmpl.org/xmpl/XMPL000001","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://exmpl.org/xmpl/XMPL000001","hierarchicalParent":"http://exmpl.org/xmpl/XMPL000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//exmpl.org/xmpl/Preferred_name":"1st children class pref label","http__//exmpl.org/xmpl/Synonym":"label of the first children class","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"XMPL000002","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://exmpl.org/xmpl/XMPL000001","id":"xmpl+class+http://exmpl.org/xmpl/XMPL000002","imported":"false","iri":"http://exmpl.org/xmpl/XMPL000002","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":["1st children class pref label","XMPL000002"],"numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"xmpl","ontologyIri":"http://exmpl.org/xmpl/xmpl.owl","ontologyPreferredPrefix":"XMPL","searchableAnnotationValues":["1st children class pref label","label of the first children class","false"],"shortForm":"XMPL_XMPL000002","synonym":"label of the first children class","synonymProperty":"http://exmpl.org/xmpl/Synonym","type":["class","entity"]} -{"_json":"{\"iri\":\"http://exmpl.org/xmpl/XMPL000003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:XMPL000003\"},\"directAncestor\":\"http://exmpl.org/xmpl/XMPL000001\",\"directParent\":\"http://exmpl.org/xmpl/XMPL000001\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://exmpl.org/xmpl/XMPL000001\",\"hierarchicalParent\":\"http://exmpl.org/xmpl/XMPL000001\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://exmpl.org/xmpl/Other_preferred_name\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2nd children class pref label\",\"lang\":\"en\"},\"http://exmpl.org/xmpl/Synonym\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the second children class\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000003\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://exmpl.org/xmpl/XMPL000001\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2nd children class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000003\",\"lang\":\"en\"}],\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"xmpl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://exmpl.org/xmpl/xmpl.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"XMPL\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2nd children class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the second children class\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"XMPL_XMPL000003\"},\"synonym\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the second children class\",\"lang\":\"en\"},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://exmpl.org/xmpl/Synonym\"},\"isDefiningOntology\":true,\"definedBy\":[\"xmpl\"],\"appearsIn\":[\"xmpl\"],\"linkedEntities\":{\"XMPL:XMPL000003\":{\"iri\":\"http://exmpl.org/xmpl/XMPL000003\",\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2nd children class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000003\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:XMPL000003\"},\"type\":[\"class\",\"entity\"]},\"http://exmpl.org/xmpl/XMPL000001\":{\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"parent class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000001\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:XMPL000001\"},\"type\":[\"class\",\"entity\"]},\"http://exmpl.org/xmpl/Synonym\":{\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"XMPL_Synonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:Synonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["xmpl"],"curie":"XMPL:XMPL000003","definedBy":["xmpl"],"directAncestor":"http://exmpl.org/xmpl/XMPL000001","directParent":"http://exmpl.org/xmpl/XMPL000001","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://exmpl.org/xmpl/XMPL000001","hierarchicalParent":"http://exmpl.org/xmpl/XMPL000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//exmpl.org/xmpl/Other_preferred_name":"2nd children class pref label","http__//exmpl.org/xmpl/Synonym":"label of the second children class","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"XMPL000003","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://exmpl.org/xmpl/XMPL000001","id":"xmpl+class+http://exmpl.org/xmpl/XMPL000003","imported":"false","iri":"http://exmpl.org/xmpl/XMPL000003","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":["2nd children class pref label","XMPL000003"],"numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"xmpl","ontologyIri":"http://exmpl.org/xmpl/xmpl.owl","ontologyPreferredPrefix":"XMPL","searchableAnnotationValues":["2nd children class pref label","label of the second children class","false"],"shortForm":"XMPL_XMPL000003","synonym":"label of the second children class","synonymProperty":"http://exmpl.org/xmpl/Synonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://exmpl.org/xmpl/XMPL000001\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:XMPL000001\"},\"directAncestor\":[],\"hasDirectChildren\":true,\"hasDirectParents\":false,\"hasHierarchicalChildren\":true,\"hasHierarchicalParents\":false,\"hierarchicalAncestor\":[],\"http://exmpl.org/xmpl/Preferred_name\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"parent class pref label\",\"lang\":\"en\"},\"http://exmpl.org/xmpl/Synonym\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the parent class\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000001\",\"lang\":\"en\"},\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"parent class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000001\",\"lang\":\"en\"}],\"numDescendants\":2.0,\"numHierarchicalDescendants\":2.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"xmpl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://exmpl.org/xmpl/xmpl.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"XMPL\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"parent class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the parent class\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"XMPL_XMPL000001\"},\"synonym\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the parent class\",\"lang\":\"en\"},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://exmpl.org/xmpl/Synonym\"},\"isDefiningOntology\":true,\"definedBy\":[\"xmpl\"],\"appearsIn\":[\"xmpl\"],\"linkedEntities\":{\"http://exmpl.org/xmpl/Preferred_name\":{\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"XMPL_Preferred_name\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:Preferred_name\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://exmpl.org/xmpl/Synonym\":{\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"XMPL_Synonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:Synonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["xmpl"],"curie":"XMPL:XMPL000001","definedBy":["xmpl"],"directAncestor":[],"hasDirectChildren":"true","hasDirectParents":"false","hasHierarchicalChildren":"true","hasHierarchicalParents":"false","hierarchicalAncestor":[],"http__//exmpl.org/xmpl/Preferred_name":"parent class pref label","http__//exmpl.org/xmpl/Synonym":"label of the parent class","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"XMPL000001","id":"xmpl+class+http://exmpl.org/xmpl/XMPL000001","imported":"false","iri":"http://exmpl.org/xmpl/XMPL000001","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":["parent class pref label","XMPL000001"],"numDescendants":"2.0","numHierarchicalDescendants":"2.0","ontologyId":"xmpl","ontologyIri":"http://exmpl.org/xmpl/xmpl.owl","ontologyPreferredPrefix":"XMPL","searchableAnnotationValues":["parent class pref label","label of the parent class","false"],"shortForm":"XMPL_XMPL000001","synonym":"label of the parent class","synonymProperty":"http://exmpl.org/xmpl/Synonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://exmpl.org/xmpl/XMPL000002\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:XMPL000002\"},\"directAncestor\":\"http://exmpl.org/xmpl/XMPL000001\",\"directParent\":\"http://exmpl.org/xmpl/XMPL000001\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://exmpl.org/xmpl/XMPL000001\",\"hierarchicalParent\":\"http://exmpl.org/xmpl/XMPL000001\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://exmpl.org/xmpl/Preferred_name\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"1st children class pref label\",\"lang\":\"en\"},\"http://exmpl.org/xmpl/Synonym\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the first children class\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000002\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://exmpl.org/xmpl/XMPL000001\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"1st children class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000002\",\"lang\":\"en\"}],\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"xmpl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://exmpl.org/xmpl/xmpl.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"XMPL\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"1st children class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the first children class\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"XMPL_XMPL000002\"},\"synonym\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the first children class\",\"lang\":\"en\"},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://exmpl.org/xmpl/Synonym\"},\"isDefiningOntology\":true,\"definedBy\":[\"xmpl\"],\"appearsIn\":[\"xmpl\"],\"linkedEntities\":{\"http://exmpl.org/xmpl/Preferred_name\":{\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"XMPL_Preferred_name\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:Preferred_name\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]},\"http://exmpl.org/xmpl/XMPL000001\":{\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"parent class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000001\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:XMPL000001\"},\"type\":[\"class\",\"entity\"]},\"http://exmpl.org/xmpl/Synonym\":{\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"XMPL_Synonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:Synonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["xmpl"],"curie":"XMPL:XMPL000002","definedBy":["xmpl"],"directAncestor":"http://exmpl.org/xmpl/XMPL000001","directParent":"http://exmpl.org/xmpl/XMPL000001","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://exmpl.org/xmpl/XMPL000001","hierarchicalParent":"http://exmpl.org/xmpl/XMPL000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//exmpl.org/xmpl/Preferred_name":"1st children class pref label","http__//exmpl.org/xmpl/Synonym":"label of the first children class","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"XMPL000002","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://exmpl.org/xmpl/XMPL000001","id":"xmpl+class+http://exmpl.org/xmpl/XMPL000002","imported":"false","iri":"http://exmpl.org/xmpl/XMPL000002","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":["1st children class pref label","XMPL000002"],"numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"xmpl","ontologyIri":"http://exmpl.org/xmpl/xmpl.owl","ontologyPreferredPrefix":"XMPL","searchableAnnotationValues":["1st children class pref label","label of the first children class","false"],"shortForm":"XMPL_XMPL000002","synonym":"label of the first children class","synonymProperty":"http://exmpl.org/xmpl/Synonym","type":["class","entity"]} +{"_json":"{\"iri\":\"http://exmpl.org/xmpl/XMPL000003\",\"type\":[\"class\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:XMPL000003\"},\"directAncestor\":\"http://exmpl.org/xmpl/XMPL000001\",\"directParent\":\"http://exmpl.org/xmpl/XMPL000001\",\"hasDirectChildren\":false,\"hasDirectParents\":true,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":true,\"hierarchicalAncestor\":\"http://exmpl.org/xmpl/XMPL000001\",\"hierarchicalParent\":\"http://exmpl.org/xmpl/XMPL000001\",\"hierarchicalProperty\":{\"type\":[\"literal\"],\"value\":\"http://www.w3.org/2000/01/rdf-schema#subClassOf\"},\"http://exmpl.org/xmpl/Other_preferred_name\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2nd children class pref label\",\"lang\":\"en\"},\"http://exmpl.org/xmpl/Synonym\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the second children class\",\"lang\":\"en\"},\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#Class\",\"http://www.w3.org/2000/01/rdf-schema#label\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000003\",\"lang\":\"en\"},\"http://www.w3.org/2000/01/rdf-schema#subClassOf\":\"http://exmpl.org/xmpl/XMPL000001\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2nd children class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000003\",\"lang\":\"en\"}],\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"xmpl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://exmpl.org/xmpl/xmpl.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"XMPL\"},\"searchableAnnotationValues\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"2nd children class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the second children class\",\"lang\":\"en\"},false],\"shortForm\":{\"type\":[\"literal\"],\"value\":\"XMPL_XMPL000003\"},\"synonym\":{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"label of the second children class\",\"lang\":\"en\"},\"synonymProperty\":{\"type\":[\"literal\"],\"value\":\"http://exmpl.org/xmpl/Synonym\"},\"isDefiningOntology\":true,\"definedBy\":[\"xmpl\"],\"appearsIn\":[\"xmpl\"],\"linkedEntities\":{\"http://exmpl.org/xmpl/XMPL000001\":{\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":[{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"parent class pref label\",\"lang\":\"en\"},{\"type\":[\"literal\"],\"datatype\":\"http://www.w3.org/1999/02/22-rdf-syntax-ns#langString\",\"value\":\"XMPL000001\",\"lang\":\"en\"}],\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:XMPL000001\"},\"type\":[\"class\",\"entity\"]},\"http://exmpl.org/xmpl/Synonym\":{\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"XMPL_Synonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:Synonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["xmpl"],"curie":"XMPL:XMPL000003","definedBy":["xmpl"],"directAncestor":"http://exmpl.org/xmpl/XMPL000001","directParent":"http://exmpl.org/xmpl/XMPL000001","hasDirectChildren":"false","hasDirectParents":"true","hasHierarchicalChildren":"false","hasHierarchicalParents":"true","hierarchicalAncestor":"http://exmpl.org/xmpl/XMPL000001","hierarchicalParent":"http://exmpl.org/xmpl/XMPL000001","hierarchicalProperty":"http://www.w3.org/2000/01/rdf-schema#subClassOf","http__//exmpl.org/xmpl/Other_preferred_name":"2nd children class pref label","http__//exmpl.org/xmpl/Synonym":"label of the second children class","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#Class","http__//www.w3.org/2000/01/rdf-schema#label":"XMPL000003","http__//www.w3.org/2000/01/rdf-schema#subClassOf":"http://exmpl.org/xmpl/XMPL000001","id":"xmpl+class+http://exmpl.org/xmpl/XMPL000003","imported":"false","iri":"http://exmpl.org/xmpl/XMPL000003","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":["2nd children class pref label","XMPL000003"],"numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"xmpl","ontologyIri":"http://exmpl.org/xmpl/xmpl.owl","ontologyPreferredPrefix":"XMPL","searchableAnnotationValues":["2nd children class pref label","label of the second children class","false"],"shortForm":"XMPL_XMPL000003","synonym":"label of the second children class","synonymProperty":"http://exmpl.org/xmpl/Synonym","type":["class","entity"]} diff --git a/testcases_expected_output/iri-labels/use-user-defined-pref-label/ontologies_linked.json b/testcases_expected_output/iri-labels/use-user-defined-pref-label/ontologies_linked.json index 0f6490549..a2c9c6e10 100644 --- a/testcases_expected_output/iri-labels/use-user-defined-pref-label/ontologies_linked.json +++ b/testcases_expected_output/iri-labels/use-user-defined-pref-label/ontologies_linked.json @@ -225,42 +225,6 @@ "xmpl" ], "linkedEntities": { - "XMPL:XMPL000001": { - "iri": "http://exmpl.org/xmpl/XMPL000001", - "definedBy": [ - "xmpl" - ], - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": [ - { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "parent class pref label", - "lang": "en" - }, - { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "XMPL000001", - "lang": "en" - } - ], - "curie": { - "type": [ - "literal" - ], - "value": "XMPL:XMPL000001" - }, - "type": [ - "class", - "entity" - ] - }, "http://exmpl.org/xmpl/Preferred_name": { "definedBy": [ "xmpl" @@ -475,42 +439,6 @@ "entity" ] }, - "XMPL:XMPL000002": { - "iri": "http://exmpl.org/xmpl/XMPL000002", - "definedBy": [ - "xmpl" - ], - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": [ - { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "1st children class pref label", - "lang": "en" - }, - { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "XMPL000002", - "lang": "en" - } - ], - "curie": { - "type": [ - "literal" - ], - "value": "XMPL:XMPL000002" - }, - "type": [ - "class", - "entity" - ] - }, "http://exmpl.org/xmpl/XMPL000001": { "definedBy": [ "xmpl" @@ -712,42 +640,6 @@ "xmpl" ], "linkedEntities": { - "XMPL:XMPL000003": { - "iri": "http://exmpl.org/xmpl/XMPL000003", - "definedBy": [ - "xmpl" - ], - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": [ - { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "2nd children class pref label", - "lang": "en" - }, - { - "type": [ - "literal" - ], - "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", - "value": "XMPL000003", - "lang": "en" - } - ], - "curie": { - "type": [ - "literal" - ], - "value": "XMPL:XMPL000003" - }, - "type": [ - "class", - "entity" - ] - }, "http://exmpl.org/xmpl/XMPL000001": { "definedBy": [ "xmpl" @@ -874,33 +766,7 @@ "appearsIn": [ "xmpl" ], - "linkedEntities": { - "XMPL:Preferred_name": { - "iri": "http://exmpl.org/xmpl/Preferred_name", - "definedBy": [ - "xmpl" - ], - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "XMPL_Preferred_name" - }, - "curie": { - "type": [ - "literal" - ], - "value": "XMPL:Preferred_name" - }, - "type": [ - "property", - "annotationProperty", - "entity" - ] - } - } + "linkedEntities": {} }, { "iri": "http://exmpl.org/xmpl/Synonym", @@ -965,33 +831,7 @@ "appearsIn": [ "xmpl" ], - "linkedEntities": { - "XMPL:Synonym": { - "iri": "http://exmpl.org/xmpl/Synonym", - "definedBy": [ - "xmpl" - ], - "numAppearsIn": 1, - "hasLocalDefinition": true, - "label": { - "type": [ - "literal" - ], - "value": "XMPL_Synonym" - }, - "curie": { - "type": [ - "literal" - ], - "value": "XMPL:Synonym" - }, - "type": [ - "property", - "annotationProperty", - "entity" - ] - } - } + "linkedEntities": {} } ], "individuals": [], diff --git a/testcases_expected_output/iri-labels/use-user-defined-pref-label/properties.jsonl b/testcases_expected_output/iri-labels/use-user-defined-pref-label/properties.jsonl index 6a13864ec..d6f4d77fd 100644 --- a/testcases_expected_output/iri-labels/use-user-defined-pref-label/properties.jsonl +++ b/testcases_expected_output/iri-labels/use-user-defined-pref-label/properties.jsonl @@ -1,2 +1,2 @@ -{"_json":"{\"iri\":\"http://exmpl.org/xmpl/Preferred_name\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:Preferred_name\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#string\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"XMPL_Preferred_name\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"xmpl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://exmpl.org/xmpl/xmpl.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"XMPL\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"XMPL_Preferred_name\"},\"isDefiningOntology\":true,\"definedBy\":[\"xmpl\"],\"appearsIn\":[\"xmpl\"],\"linkedEntities\":{\"XMPL:Preferred_name\":{\"iri\":\"http://exmpl.org/xmpl/Preferred_name\",\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"XMPL_Preferred_name\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:Preferred_name\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["xmpl"],"curie":"XMPL:Preferred_name","definedBy":["xmpl"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#string","id":"xmpl+property+http://exmpl.org/xmpl/Preferred_name","imported":"false","iri":"http://exmpl.org/xmpl/Preferred_name","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"XMPL_Preferred_name","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"xmpl","ontologyIri":"http://exmpl.org/xmpl/xmpl.owl","ontologyPreferredPrefix":"XMPL","searchableAnnotationValues":"false","shortForm":"XMPL_Preferred_name","type":["property","annotationProperty","entity"]} -{"_json":"{\"iri\":\"http://exmpl.org/xmpl/Synonym\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:Synonym\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#string\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"XMPL_Synonym\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"xmpl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://exmpl.org/xmpl/xmpl.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"XMPL\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"XMPL_Synonym\"},\"isDefiningOntology\":true,\"definedBy\":[\"xmpl\"],\"appearsIn\":[\"xmpl\"],\"linkedEntities\":{\"XMPL:Synonym\":{\"iri\":\"http://exmpl.org/xmpl/Synonym\",\"definedBy\":[\"xmpl\"],\"numAppearsIn\":1.0,\"hasLocalDefinition\":true,\"label\":{\"type\":[\"literal\"],\"value\":\"XMPL_Synonym\"},\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:Synonym\"},\"type\":[\"property\",\"annotationProperty\",\"entity\"]}}}","appearsIn":["xmpl"],"curie":"XMPL:Synonym","definedBy":["xmpl"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#string","id":"xmpl+property+http://exmpl.org/xmpl/Synonym","imported":"false","iri":"http://exmpl.org/xmpl/Synonym","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"XMPL_Synonym","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"xmpl","ontologyIri":"http://exmpl.org/xmpl/xmpl.owl","ontologyPreferredPrefix":"XMPL","searchableAnnotationValues":"false","shortForm":"XMPL_Synonym","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://exmpl.org/xmpl/Preferred_name\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:Preferred_name\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#string\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"XMPL_Preferred_name\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"xmpl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://exmpl.org/xmpl/xmpl.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"XMPL\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"XMPL_Preferred_name\"},\"isDefiningOntology\":true,\"definedBy\":[\"xmpl\"],\"appearsIn\":[\"xmpl\"],\"linkedEntities\":{}}","appearsIn":["xmpl"],"curie":"XMPL:Preferred_name","definedBy":["xmpl"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#string","id":"xmpl+property+http://exmpl.org/xmpl/Preferred_name","imported":"false","iri":"http://exmpl.org/xmpl/Preferred_name","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"XMPL_Preferred_name","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"xmpl","ontologyIri":"http://exmpl.org/xmpl/xmpl.owl","ontologyPreferredPrefix":"XMPL","searchableAnnotationValues":"false","shortForm":"XMPL_Preferred_name","type":["property","annotationProperty","entity"]} +{"_json":"{\"iri\":\"http://exmpl.org/xmpl/Synonym\",\"type\":[\"property\",\"annotationProperty\",\"entity\"],\"curie\":{\"type\":[\"literal\"],\"value\":\"XMPL:Synonym\"},\"directAncestor\":[],\"hasDirectChildren\":false,\"hasDirectParents\":false,\"hasHierarchicalChildren\":false,\"hasHierarchicalParents\":false,\"http://www.w3.org/1999/02/22-rdf-syntax-ns#type\":\"http://www.w3.org/2002/07/owl#AnnotationProperty\",\"http://www.w3.org/2000/01/rdf-schema#range\":\"http://www.w3.org/2001/XMLSchema#string\",\"imported\":false,\"isObsolete\":false,\"isPreferredRoot\":false,\"label\":{\"type\":[\"literal\"],\"value\":\"XMPL_Synonym\"},\"numDescendants\":0.0,\"numHierarchicalDescendants\":0.0,\"ontologyId\":{\"type\":[\"literal\"],\"value\":\"xmpl\"},\"ontologyIri\":{\"type\":[\"literal\"],\"value\":\"http://exmpl.org/xmpl/xmpl.owl\"},\"ontologyPreferredPrefix\":{\"type\":[\"literal\"],\"value\":\"XMPL\"},\"searchableAnnotationValues\":false,\"shortForm\":{\"type\":[\"literal\"],\"value\":\"XMPL_Synonym\"},\"isDefiningOntology\":true,\"definedBy\":[\"xmpl\"],\"appearsIn\":[\"xmpl\"],\"linkedEntities\":{}}","appearsIn":["xmpl"],"curie":"XMPL:Synonym","definedBy":["xmpl"],"directAncestor":[],"hasDirectChildren":"false","hasDirectParents":"false","hasHierarchicalChildren":"false","hasHierarchicalParents":"false","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type":"http://www.w3.org/2002/07/owl#AnnotationProperty","http__//www.w3.org/2000/01/rdf-schema#range":"http://www.w3.org/2001/XMLSchema#string","id":"xmpl+property+http://exmpl.org/xmpl/Synonym","imported":"false","iri":"http://exmpl.org/xmpl/Synonym","isDefiningOntology":"true","isObsolete":"false","isPreferredRoot":"false","label":"XMPL_Synonym","numDescendants":"0.0","numHierarchicalDescendants":"0.0","ontologyId":"xmpl","ontologyIri":"http://exmpl.org/xmpl/xmpl.owl","ontologyPreferredPrefix":"XMPL","searchableAnnotationValues":"false","shortForm":"XMPL_Synonym","type":["property","annotationProperty","entity"]} diff --git a/testcases_expected_output/iri-labels/use-user-defined-pref-label/xmpl_classes.csv b/testcases_expected_output/iri-labels/use-user-defined-pref-label/xmpl_classes.csv index bbae265bb..3ba2dd094 100644 --- a/testcases_expected_output/iri-labels/use-user-defined-pref-label/xmpl_classes.csv +++ b/testcases_expected_output/iri-labels/use-user-defined-pref-label/xmpl_classes.csv @@ -1,4 +1,4 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","hierarchicalProperty:string[]","numHierarchicalDescendants:string[]","http__//exmpl.org/xmpl/Preferred_name:string[]","type:string[]","synonymProperty:string[]","synonym:string[]","http__//www.w3.org/2000/01/rdf-schema#subClassOf:string[]","hasDirectParents:string[]","imported:string[]","ontologyIri:string[]","http__//exmpl.org/xmpl/Synonym:string[]","hierarchicalParent:string[]","iri","hierarchicalAncestor:string[]","numDescendants:string[]","isObsolete:string[]","label:string[]","directParent:string[]","ontologyPreferredPrefix:string[]","http__//exmpl.org/xmpl/Other_preferred_name:string[]","directAncestor:string[]","curie:string[]","shortForm:string[]","definedBy:string[]","http__//www.w3.org/2000/01/rdf-schema#label:string[]","ontologyId:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]" -"xmpl+class+http://exmpl.org/xmpl/XMPL000001","OntologyEntity|OntologyClass","{""iri"":""http://exmpl.org/xmpl/XMPL000001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""XMPL:XMPL000001""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://exmpl.org/xmpl/Preferred_name"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""parent class pref label"",""lang"":""en""},""http://exmpl.org/xmpl/Synonym"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the parent class"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000001"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""parent class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000001"",""lang"":""en""}],""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""xmpl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://exmpl.org/xmpl/xmpl.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""XMPL""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""parent class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the parent class"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""XMPL_XMPL000001""},""synonym"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the parent class"",""lang"":""en""},""synonymProperty"":{""type"":[""literal""],""value"":""http://exmpl.org/xmpl/Synonym""},""isDefiningOntology"":true,""definedBy"":[""xmpl""],""appearsIn"":[""xmpl""],""linkedEntities"":{""XMPL:XMPL000001"":{""iri"":""http://exmpl.org/xmpl/XMPL000001"",""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""parent class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000001"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""XMPL:XMPL000001""},""type"":[""class"",""entity""]},""http://exmpl.org/xmpl/Preferred_name"":{""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""XMPL_Preferred_name""},""curie"":{""type"":[""literal""],""value"":""XMPL:Preferred_name""},""type"":[""property"",""annotationProperty"",""entity""]},""http://exmpl.org/xmpl/Synonym"":{""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""XMPL_Synonym""},""curie"":{""type"":[""literal""],""value"":""XMPL:Synonym""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","true","false","true","true","","","2.0","parent class pref label","class|entity","http://exmpl.org/xmpl/Synonym","label of the parent class","","false","false","http://exmpl.org/xmpl/xmpl.owl","label of the parent class","","http://exmpl.org/xmpl/XMPL000001","","2.0","false","parent class pref label|XMPL000001","","XMPL","","","XMPL:XMPL000001","XMPL_XMPL000001","xmpl","XMPL000001","xmpl","http://www.w3.org/2002/07/owl#Class" -"xmpl+class+http://exmpl.org/xmpl/XMPL000002","OntologyEntity|OntologyClass","{""iri"":""http://exmpl.org/xmpl/XMPL000002"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""XMPL:XMPL000002""},""directAncestor"":""http://exmpl.org/xmpl/XMPL000001"",""directParent"":""http://exmpl.org/xmpl/XMPL000001"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://exmpl.org/xmpl/XMPL000001"",""hierarchicalParent"":""http://exmpl.org/xmpl/XMPL000001"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://exmpl.org/xmpl/Preferred_name"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""1st children class pref label"",""lang"":""en""},""http://exmpl.org/xmpl/Synonym"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the first children class"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000002"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://exmpl.org/xmpl/XMPL000001"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""1st children class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000002"",""lang"":""en""}],""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""xmpl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://exmpl.org/xmpl/xmpl.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""XMPL""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""1st children class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the first children class"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""XMPL_XMPL000002""},""synonym"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the first children class"",""lang"":""en""},""synonymProperty"":{""type"":[""literal""],""value"":""http://exmpl.org/xmpl/Synonym""},""isDefiningOntology"":true,""definedBy"":[""xmpl""],""appearsIn"":[""xmpl""],""linkedEntities"":{""http://exmpl.org/xmpl/Preferred_name"":{""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""XMPL_Preferred_name""},""curie"":{""type"":[""literal""],""value"":""XMPL:Preferred_name""},""type"":[""property"",""annotationProperty"",""entity""]},""XMPL:XMPL000002"":{""iri"":""http://exmpl.org/xmpl/XMPL000002"",""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""1st children class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000002"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""XMPL:XMPL000002""},""type"":[""class"",""entity""]},""http://exmpl.org/xmpl/XMPL000001"":{""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""parent class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000001"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""XMPL:XMPL000001""},""type"":[""class"",""entity""]},""http://exmpl.org/xmpl/Synonym"":{""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""XMPL_Synonym""},""curie"":{""type"":[""literal""],""value"":""XMPL:Synonym""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","1st children class pref label","class|entity","http://exmpl.org/xmpl/Synonym","label of the first children class","http://exmpl.org/xmpl/XMPL000001","true","false","http://exmpl.org/xmpl/xmpl.owl","label of the first children class","http://exmpl.org/xmpl/XMPL000001","http://exmpl.org/xmpl/XMPL000002","http://exmpl.org/xmpl/XMPL000001","0.0","false","1st children class pref label|XMPL000002","http://exmpl.org/xmpl/XMPL000001","XMPL","","http://exmpl.org/xmpl/XMPL000001","XMPL:XMPL000002","XMPL_XMPL000002","xmpl","XMPL000002","xmpl","http://www.w3.org/2002/07/owl#Class" -"xmpl+class+http://exmpl.org/xmpl/XMPL000003","OntologyEntity|OntologyClass","{""iri"":""http://exmpl.org/xmpl/XMPL000003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""XMPL:XMPL000003""},""directAncestor"":""http://exmpl.org/xmpl/XMPL000001"",""directParent"":""http://exmpl.org/xmpl/XMPL000001"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://exmpl.org/xmpl/XMPL000001"",""hierarchicalParent"":""http://exmpl.org/xmpl/XMPL000001"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://exmpl.org/xmpl/Other_preferred_name"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2nd children class pref label"",""lang"":""en""},""http://exmpl.org/xmpl/Synonym"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the second children class"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000003"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://exmpl.org/xmpl/XMPL000001"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2nd children class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000003"",""lang"":""en""}],""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""xmpl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://exmpl.org/xmpl/xmpl.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""XMPL""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2nd children class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the second children class"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""XMPL_XMPL000003""},""synonym"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the second children class"",""lang"":""en""},""synonymProperty"":{""type"":[""literal""],""value"":""http://exmpl.org/xmpl/Synonym""},""isDefiningOntology"":true,""definedBy"":[""xmpl""],""appearsIn"":[""xmpl""],""linkedEntities"":{""XMPL:XMPL000003"":{""iri"":""http://exmpl.org/xmpl/XMPL000003"",""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2nd children class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000003"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""XMPL:XMPL000003""},""type"":[""class"",""entity""]},""http://exmpl.org/xmpl/XMPL000001"":{""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""parent class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000001"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""XMPL:XMPL000001""},""type"":[""class"",""entity""]},""http://exmpl.org/xmpl/Synonym"":{""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""XMPL_Synonym""},""curie"":{""type"":[""literal""],""value"":""XMPL:Synonym""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","","class|entity","http://exmpl.org/xmpl/Synonym","label of the second children class","http://exmpl.org/xmpl/XMPL000001","true","false","http://exmpl.org/xmpl/xmpl.owl","label of the second children class","http://exmpl.org/xmpl/XMPL000001","http://exmpl.org/xmpl/XMPL000003","http://exmpl.org/xmpl/XMPL000001","0.0","false","2nd children class pref label|XMPL000003","http://exmpl.org/xmpl/XMPL000001","XMPL","2nd children class pref label","http://exmpl.org/xmpl/XMPL000001","XMPL:XMPL000003","XMPL_XMPL000003","xmpl","XMPL000003","xmpl","http://www.w3.org/2002/07/owl#Class" +"xmpl+class+http://exmpl.org/xmpl/XMPL000001","OntologyEntity|OntologyClass","{""iri"":""http://exmpl.org/xmpl/XMPL000001"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""XMPL:XMPL000001""},""directAncestor"":[],""hasDirectChildren"":true,""hasDirectParents"":false,""hasHierarchicalChildren"":true,""hasHierarchicalParents"":false,""hierarchicalAncestor"":[],""http://exmpl.org/xmpl/Preferred_name"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""parent class pref label"",""lang"":""en""},""http://exmpl.org/xmpl/Synonym"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the parent class"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000001"",""lang"":""en""},""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""parent class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000001"",""lang"":""en""}],""numDescendants"":2.0,""numHierarchicalDescendants"":2.0,""ontologyId"":{""type"":[""literal""],""value"":""xmpl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://exmpl.org/xmpl/xmpl.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""XMPL""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""parent class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the parent class"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""XMPL_XMPL000001""},""synonym"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the parent class"",""lang"":""en""},""synonymProperty"":{""type"":[""literal""],""value"":""http://exmpl.org/xmpl/Synonym""},""isDefiningOntology"":true,""definedBy"":[""xmpl""],""appearsIn"":[""xmpl""],""linkedEntities"":{""http://exmpl.org/xmpl/Preferred_name"":{""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""XMPL_Preferred_name""},""curie"":{""type"":[""literal""],""value"":""XMPL:Preferred_name""},""type"":[""property"",""annotationProperty"",""entity""]},""http://exmpl.org/xmpl/Synonym"":{""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""XMPL_Synonym""},""curie"":{""type"":[""literal""],""value"":""XMPL:Synonym""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","true","false","true","true","","","2.0","parent class pref label","class|entity","http://exmpl.org/xmpl/Synonym","label of the parent class","","false","false","http://exmpl.org/xmpl/xmpl.owl","label of the parent class","","http://exmpl.org/xmpl/XMPL000001","","2.0","false","parent class pref label|XMPL000001","","XMPL","","","XMPL:XMPL000001","XMPL_XMPL000001","xmpl","XMPL000001","xmpl","http://www.w3.org/2002/07/owl#Class" +"xmpl+class+http://exmpl.org/xmpl/XMPL000002","OntologyEntity|OntologyClass","{""iri"":""http://exmpl.org/xmpl/XMPL000002"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""XMPL:XMPL000002""},""directAncestor"":""http://exmpl.org/xmpl/XMPL000001"",""directParent"":""http://exmpl.org/xmpl/XMPL000001"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://exmpl.org/xmpl/XMPL000001"",""hierarchicalParent"":""http://exmpl.org/xmpl/XMPL000001"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://exmpl.org/xmpl/Preferred_name"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""1st children class pref label"",""lang"":""en""},""http://exmpl.org/xmpl/Synonym"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the first children class"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000002"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://exmpl.org/xmpl/XMPL000001"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""1st children class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000002"",""lang"":""en""}],""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""xmpl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://exmpl.org/xmpl/xmpl.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""XMPL""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""1st children class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the first children class"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""XMPL_XMPL000002""},""synonym"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the first children class"",""lang"":""en""},""synonymProperty"":{""type"":[""literal""],""value"":""http://exmpl.org/xmpl/Synonym""},""isDefiningOntology"":true,""definedBy"":[""xmpl""],""appearsIn"":[""xmpl""],""linkedEntities"":{""http://exmpl.org/xmpl/Preferred_name"":{""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""XMPL_Preferred_name""},""curie"":{""type"":[""literal""],""value"":""XMPL:Preferred_name""},""type"":[""property"",""annotationProperty"",""entity""]},""http://exmpl.org/xmpl/XMPL000001"":{""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""parent class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000001"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""XMPL:XMPL000001""},""type"":[""class"",""entity""]},""http://exmpl.org/xmpl/Synonym"":{""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""XMPL_Synonym""},""curie"":{""type"":[""literal""],""value"":""XMPL:Synonym""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","1st children class pref label","class|entity","http://exmpl.org/xmpl/Synonym","label of the first children class","http://exmpl.org/xmpl/XMPL000001","true","false","http://exmpl.org/xmpl/xmpl.owl","label of the first children class","http://exmpl.org/xmpl/XMPL000001","http://exmpl.org/xmpl/XMPL000002","http://exmpl.org/xmpl/XMPL000001","0.0","false","1st children class pref label|XMPL000002","http://exmpl.org/xmpl/XMPL000001","XMPL","","http://exmpl.org/xmpl/XMPL000001","XMPL:XMPL000002","XMPL_XMPL000002","xmpl","XMPL000002","xmpl","http://www.w3.org/2002/07/owl#Class" +"xmpl+class+http://exmpl.org/xmpl/XMPL000003","OntologyEntity|OntologyClass","{""iri"":""http://exmpl.org/xmpl/XMPL000003"",""type"":[""class"",""entity""],""curie"":{""type"":[""literal""],""value"":""XMPL:XMPL000003""},""directAncestor"":""http://exmpl.org/xmpl/XMPL000001"",""directParent"":""http://exmpl.org/xmpl/XMPL000001"",""hasDirectChildren"":false,""hasDirectParents"":true,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":true,""hierarchicalAncestor"":""http://exmpl.org/xmpl/XMPL000001"",""hierarchicalParent"":""http://exmpl.org/xmpl/XMPL000001"",""hierarchicalProperty"":{""type"":[""literal""],""value"":""http://www.w3.org/2000/01/rdf-schema#subClassOf""},""http://exmpl.org/xmpl/Other_preferred_name"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2nd children class pref label"",""lang"":""en""},""http://exmpl.org/xmpl/Synonym"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the second children class"",""lang"":""en""},""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#Class"",""http://www.w3.org/2000/01/rdf-schema#label"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000003"",""lang"":""en""},""http://www.w3.org/2000/01/rdf-schema#subClassOf"":""http://exmpl.org/xmpl/XMPL000001"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2nd children class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000003"",""lang"":""en""}],""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""xmpl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://exmpl.org/xmpl/xmpl.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""XMPL""},""searchableAnnotationValues"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""2nd children class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the second children class"",""lang"":""en""},false],""shortForm"":{""type"":[""literal""],""value"":""XMPL_XMPL000003""},""synonym"":{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""label of the second children class"",""lang"":""en""},""synonymProperty"":{""type"":[""literal""],""value"":""http://exmpl.org/xmpl/Synonym""},""isDefiningOntology"":true,""definedBy"":[""xmpl""],""appearsIn"":[""xmpl""],""linkedEntities"":{""http://exmpl.org/xmpl/XMPL000001"":{""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":[{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""parent class pref label"",""lang"":""en""},{""type"":[""literal""],""datatype"":""http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"",""value"":""XMPL000001"",""lang"":""en""}],""curie"":{""type"":[""literal""],""value"":""XMPL:XMPL000001""},""type"":[""class"",""entity""]},""http://exmpl.org/xmpl/Synonym"":{""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""XMPL_Synonym""},""curie"":{""type"":[""literal""],""value"":""XMPL:Synonym""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","false","true","false","true","","http://www.w3.org/2000/01/rdf-schema#subClassOf","0.0","","class|entity","http://exmpl.org/xmpl/Synonym","label of the second children class","http://exmpl.org/xmpl/XMPL000001","true","false","http://exmpl.org/xmpl/xmpl.owl","label of the second children class","http://exmpl.org/xmpl/XMPL000001","http://exmpl.org/xmpl/XMPL000003","http://exmpl.org/xmpl/XMPL000001","0.0","false","2nd children class pref label|XMPL000003","http://exmpl.org/xmpl/XMPL000001","XMPL","2nd children class pref label","http://exmpl.org/xmpl/XMPL000001","XMPL:XMPL000003","XMPL_XMPL000003","xmpl","XMPL000003","xmpl","http://www.w3.org/2002/07/owl#Class" diff --git a/testcases_expected_output/iri-labels/use-user-defined-pref-label/xmpl_properties.csv b/testcases_expected_output/iri-labels/use-user-defined-pref-label/xmpl_properties.csv index 20bd07152..e6268dcea 100644 --- a/testcases_expected_output/iri-labels/use-user-defined-pref-label/xmpl_properties.csv +++ b/testcases_expected_output/iri-labels/use-user-defined-pref-label/xmpl_properties.csv @@ -1,3 +1,3 @@ "id:ID",":LABEL","_json","isPreferredRoot:string[]","iri","hasDirectChildren:string[]","hasHierarchicalParents:string[]","hasHierarchicalChildren:string[]","isDefiningOntology:string[]","linkedEntities:string[]","numDescendants:string[]","numHierarchicalDescendants:string[]","isObsolete:string[]","label:string[]","type:string[]","ontologyPreferredPrefix:string[]","directAncestor:string[]","curie:string[]","hasDirectParents:string[]","imported:string[]","shortForm:string[]","definedBy:string[]","ontologyId:string[]","ontologyIri:string[]","http__//www.w3.org/1999/02/22-rdf-syntax-ns#type:string[]","http__//www.w3.org/2000/01/rdf-schema#range:string[]" -"xmpl+property+http://exmpl.org/xmpl/Preferred_name","OntologyEntity|OntologyProperty","{""iri"":""http://exmpl.org/xmpl/Preferred_name"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""XMPL:Preferred_name""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#string"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""XMPL_Preferred_name""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""xmpl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://exmpl.org/xmpl/xmpl.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""XMPL""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""XMPL_Preferred_name""},""isDefiningOntology"":true,""definedBy"":[""xmpl""],""appearsIn"":[""xmpl""],""linkedEntities"":{""XMPL:Preferred_name"":{""iri"":""http://exmpl.org/xmpl/Preferred_name"",""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""XMPL_Preferred_name""},""curie"":{""type"":[""literal""],""value"":""XMPL:Preferred_name""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","http://exmpl.org/xmpl/Preferred_name","false","false","false","true","","0.0","0.0","false","XMPL_Preferred_name","property|annotationProperty|entity","XMPL","","XMPL:Preferred_name","false","false","XMPL_Preferred_name","xmpl","xmpl","http://exmpl.org/xmpl/xmpl.owl","http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/2001/XMLSchema#string" -"xmpl+property+http://exmpl.org/xmpl/Synonym","OntologyEntity|OntologyProperty","{""iri"":""http://exmpl.org/xmpl/Synonym"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""XMPL:Synonym""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#string"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""XMPL_Synonym""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""xmpl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://exmpl.org/xmpl/xmpl.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""XMPL""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""XMPL_Synonym""},""isDefiningOntology"":true,""definedBy"":[""xmpl""],""appearsIn"":[""xmpl""],""linkedEntities"":{""XMPL:Synonym"":{""iri"":""http://exmpl.org/xmpl/Synonym"",""definedBy"":[""xmpl""],""numAppearsIn"":1.0,""hasLocalDefinition"":true,""label"":{""type"":[""literal""],""value"":""XMPL_Synonym""},""curie"":{""type"":[""literal""],""value"":""XMPL:Synonym""},""type"":[""property"",""annotationProperty"",""entity""]}}}","false","http://exmpl.org/xmpl/Synonym","false","false","false","true","","0.0","0.0","false","XMPL_Synonym","property|annotationProperty|entity","XMPL","","XMPL:Synonym","false","false","XMPL_Synonym","xmpl","xmpl","http://exmpl.org/xmpl/xmpl.owl","http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/2001/XMLSchema#string" +"xmpl+property+http://exmpl.org/xmpl/Preferred_name","OntologyEntity|OntologyProperty","{""iri"":""http://exmpl.org/xmpl/Preferred_name"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""XMPL:Preferred_name""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#string"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""XMPL_Preferred_name""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""xmpl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://exmpl.org/xmpl/xmpl.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""XMPL""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""XMPL_Preferred_name""},""isDefiningOntology"":true,""definedBy"":[""xmpl""],""appearsIn"":[""xmpl""],""linkedEntities"":{}}","false","http://exmpl.org/xmpl/Preferred_name","false","false","false","true","","0.0","0.0","false","XMPL_Preferred_name","property|annotationProperty|entity","XMPL","","XMPL:Preferred_name","false","false","XMPL_Preferred_name","xmpl","xmpl","http://exmpl.org/xmpl/xmpl.owl","http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/2001/XMLSchema#string" +"xmpl+property+http://exmpl.org/xmpl/Synonym","OntologyEntity|OntologyProperty","{""iri"":""http://exmpl.org/xmpl/Synonym"",""type"":[""property"",""annotationProperty"",""entity""],""curie"":{""type"":[""literal""],""value"":""XMPL:Synonym""},""directAncestor"":[],""hasDirectChildren"":false,""hasDirectParents"":false,""hasHierarchicalChildren"":false,""hasHierarchicalParents"":false,""http://www.w3.org/1999/02/22-rdf-syntax-ns#type"":""http://www.w3.org/2002/07/owl#AnnotationProperty"",""http://www.w3.org/2000/01/rdf-schema#range"":""http://www.w3.org/2001/XMLSchema#string"",""imported"":false,""isObsolete"":false,""isPreferredRoot"":false,""label"":{""type"":[""literal""],""value"":""XMPL_Synonym""},""numDescendants"":0.0,""numHierarchicalDescendants"":0.0,""ontologyId"":{""type"":[""literal""],""value"":""xmpl""},""ontologyIri"":{""type"":[""literal""],""value"":""http://exmpl.org/xmpl/xmpl.owl""},""ontologyPreferredPrefix"":{""type"":[""literal""],""value"":""XMPL""},""searchableAnnotationValues"":false,""shortForm"":{""type"":[""literal""],""value"":""XMPL_Synonym""},""isDefiningOntology"":true,""definedBy"":[""xmpl""],""appearsIn"":[""xmpl""],""linkedEntities"":{}}","false","http://exmpl.org/xmpl/Synonym","false","false","false","true","","0.0","0.0","false","XMPL_Synonym","property|annotationProperty|entity","XMPL","","XMPL:Synonym","false","false","XMPL_Synonym","xmpl","xmpl","http://exmpl.org/xmpl/xmpl.owl","http://www.w3.org/2002/07/owl#AnnotationProperty","http://www.w3.org/2001/XMLSchema#string" diff --git a/testcases_expected_output_api/ontologies.json b/testcases_expected_output_api/ontologies.json index b8dc997ec..4fcd1f0c3 100644 --- a/testcases_expected_output_api/ontologies.json +++ b/testcases_expected_output_api/ontologies.json @@ -583,6 +583,56 @@ "status": "LOADED", "updated": "" }, + { + "_links": { + "individuals": { + "href": "/api/ontologies/oio/individuals" + }, + "properties": { + "href": "/api/ontologies/oio/properties" + }, + "self": { + "href": "/api/ontologies/oio?lang=en" + }, + "terms": { + "href": "/api/ontologies/oio/terms" + } + }, + "baseUris": [ + "http://www.geneontology.org/formats/oboInOwl#" + ], + "config": { + "allowDownload": false, + "baseUris": [ + "http://www.geneontology.org/formats/oboInOwl#" + ], + "creators": [], + "definitionProperties": [], + "fileLocation": "https://gist.githubusercontent.com/haideriqbal/4a2b1a9aa81d9fa26cae81e0b0b7730b/raw/527665128b9be9d7d6133f9a796379600151c737/oboInOwl.owl", + "hiddenProperties": [], + "hierarchicalProperties": [], + "id": "oio", + "isSkos": false, + "labelProperty": "http://www.w3.org/2000/01/rdf-schema#label", + "namespace": "oio", + "oboSlims": false, + "preferredRootTerms": [], + "synonymProperties": [] + }, + "lang": "en", + "languages": [ + "en" + ], + "loadAttempts": 0, + "loaded": "", + "message": "", + "numberOfIndividuals": 0, + "numberOfProperties": 44, + "numberOfTerms": 12, + "ontologyId": "oio", + "status": "LOADED", + "updated": "" + }, { "_links": { "individuals": { diff --git a/testcases_expected_output_api/ontologies/annotation-properties-simple/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fannotation-properties%252Fsimple.owl%2523MyAnnotationProperty.json b/testcases_expected_output_api/ontologies/annotation-properties-simple/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fannotation-properties%252Fsimple.owl%2523MyAnnotationProperty.json index 34dea889d..f66e01222 100644 --- a/testcases_expected_output_api/ontologies/annotation-properties-simple/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fannotation-properties%252Fsimple.owl%2523MyAnnotationProperty.json +++ b/testcases_expected_output_api/ontologies/annotation-properties-simple/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fannotation-properties%252Fsimple.owl%2523MyAnnotationProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:31 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/data-property-domain-range-restrictions/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523Person.json b/testcases_expected_output_api/ontologies/data-property-domain-range-restrictions/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523Person.json index 34dea889d..f66e01222 100644 --- a/testcases_expected_output_api/ontologies/data-property-domain-range-restrictions/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523Person.json +++ b/testcases_expected_output_api/ontologies/data-property-domain-range-restrictions/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:31 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/data-property-domain-range-restrictions/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523Person.json b/testcases_expected_output_api/ontologies/data-property-domain-range-restrictions/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523Person.json index 34dea889d..f66e01222 100644 --- a/testcases_expected_output_api/ontologies/data-property-domain-range-restrictions/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523Person.json +++ b/testcases_expected_output_api/ontologies/data-property-domain-range-restrictions/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:31 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/data-property-domain-range-restrictions/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523hasAge.json b/testcases_expected_output_api/ontologies/data-property-domain-range-restrictions/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523hasAge.json index 34dea889d..f66e01222 100644 --- a/testcases_expected_output_api/ontologies/data-property-domain-range-restrictions/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523hasAge.json +++ b/testcases_expected_output_api/ontologies/data-property-domain-range-restrictions/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-domain-range-restrictions.rdf%2523hasAge.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:31 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000008.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000008.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000008.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000008.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000032.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000032.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000032.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000032.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000033.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000033.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000033.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000033.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000522.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000522.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000522.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000522.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000524.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000524.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000524.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000524.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000796.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000796.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000796.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000796.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000001.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000001.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000001.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000006.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000006.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000006.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000006.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000008.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000008.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000008.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000008.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000009.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000009.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000009.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000009.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000011.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000011.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000011.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000011.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000018.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000018.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000018.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000018.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000024.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000024.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000024.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000024.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000026.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000026.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000026.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000026.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000027.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000027.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000027.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000027.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000028.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000028.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000028.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000028.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000029.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000029.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000029.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000029.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000030.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000030.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000030.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000030.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000031.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000031.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000031.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000031.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000035.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000035.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000035.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000035.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000038.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000038.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000038.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000038.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000140.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000140.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000140.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000140.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000142.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000142.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000142.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000142.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000144.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000144.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000144.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000144.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000145.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000145.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000145.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000145.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000146.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000146.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000146.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000146.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000147.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000147.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000147.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000147.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000148.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000148.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000148.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000148.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000182.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000182.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000182.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000182.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000001.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000001.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000001.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000004.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000004.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000004.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000004.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_00000044.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_00000044.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_00000044.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_00000044.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000006.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000006.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000006.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000006.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000007.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000007.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000007.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000007.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000011.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000011.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000011.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000011.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000012.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000012.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000012.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000012.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000015.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000015.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000015.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000015.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000016.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000016.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000016.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000016.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000017.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000017.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000017.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000017.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000018.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000018.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000018.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000018.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000019.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000019.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000019.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000019.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000020.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000020.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000020.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000020.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000021.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000021.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000021.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000021.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000022.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000022.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000022.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000022.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000024.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000024.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000024.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000024.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000025.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000025.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000025.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000025.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000026.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000026.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000026.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000026.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000027.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000027.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000027.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000027.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000028.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000028.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000028.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000028.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000029.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000029.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000029.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000029.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000031.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000031.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000031.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000031.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000032.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000032.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000032.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000032.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000033.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000033.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000033.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000033.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000034.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000034.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000034.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000034.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000035.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000035.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000035.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000035.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000036.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000036.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000036.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000036.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000037.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000037.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000037.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000037.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000038.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000038.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000038.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000038.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000039.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000039.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000039.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000039.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000040.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000040.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000040.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000040.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000042.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000042.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000042.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000042.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000043.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000043.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000043.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000043.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000045.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000045.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000045.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000045.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000046.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000046.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000046.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000046.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGAZ_00000448.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGAZ_00000448.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGAZ_00000448.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGAZ_00000448.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000001.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000001.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000001.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000003.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000003.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000003.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000005.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000005.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000005.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000005.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000006.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000006.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000006.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000006.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000007.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000007.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000007.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000007.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000009.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000009.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000009.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000009.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000010.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000010.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000010.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000010.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000013.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000013.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000013.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000013.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000015.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000015.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000015.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000015.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000017.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000017.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000017.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000017.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000025.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000025.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000025.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000025.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000027.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000027.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000027.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000027.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000028.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000028.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000028.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000028.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000029.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000029.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000029.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000029.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000030.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000030.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000030.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000030.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000031.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000031.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000031.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000031.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000032.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000032.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000032.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000032.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000033.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000033.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000033.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000033.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000034.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000034.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000034.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000034.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000037.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000037.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000037.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000037.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000038.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000038.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000038.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000038.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000055.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000055.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000055.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000055.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000057.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000057.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000057.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000057.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000064.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000064.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000064.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000064.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000065.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000065.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000065.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000065.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000078.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000078.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000078.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000078.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000079.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000079.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000079.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000079.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000088.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000088.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000088.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000088.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000096.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000096.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000096.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000096.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000098.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000098.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000098.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000098.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000100.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000100.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000100.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000100.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000101.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000101.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000101.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000101.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000102.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000102.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000102.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000102.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000104.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000104.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000104.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000104.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000109.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000109.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000109.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000109.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000129.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000129.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000129.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000129.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000131.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000131.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000131.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000131.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000132.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000132.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000132.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000132.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000140.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000140.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000140.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000140.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000144.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000144.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000144.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000144.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000178.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000178.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000178.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000178.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000179.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000179.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000179.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000179.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000180.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000180.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000180.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000180.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000181.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000181.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000181.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000181.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000183.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000183.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000183.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000183.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000184.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000184.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000184.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000184.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000185.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000185.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000185.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000185.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000186.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000186.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000186.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000186.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000225.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000225.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000225.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000225.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000300.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000300.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000300.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000300.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000301.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000301.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000301.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000301.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000302.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000302.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000302.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000302.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000303.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000303.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000303.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000303.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000304.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000304.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000304.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000304.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000305.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000305.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000305.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000305.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000306.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000306.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000306.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000306.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000307.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000307.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000307.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000307.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000308.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000308.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000308.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000308.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000309.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000309.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000309.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000309.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000310.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000310.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000310.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000310.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000311.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000311.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000311.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000311.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000312.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000312.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000312.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000312.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000313.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000313.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000313.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000313.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000314.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000314.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000314.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000314.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000315.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000315.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000315.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000315.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000316.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000316.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000316.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000316.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000317.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000317.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000317.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000317.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000318.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000318.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000318.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000318.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000319.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000319.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000319.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000319.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000320.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000320.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000320.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000320.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000321.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000321.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000321.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000321.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000322.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000322.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000322.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000322.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000323.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000323.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000323.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000323.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000324.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000324.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000324.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000324.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000325.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000325.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000325.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000325.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000326.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000326.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000326.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000326.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000327.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000327.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000327.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000327.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000328.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000328.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000328.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000328.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000329.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000329.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000329.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000329.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000330.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000330.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000330.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000330.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000400.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000400.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000400.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000400.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000401.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000401.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000401.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000401.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000402.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000402.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000402.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000402.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000403.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000403.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000403.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000403.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000408.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000408.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000408.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000408.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000409.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000409.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000409.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000409.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000414.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000414.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000414.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000414.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000415.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000415.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000415.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000415.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000416.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000416.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000416.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000416.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000422.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000422.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000422.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000422.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000429.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000429.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000429.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000429.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000442.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000442.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000442.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000442.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000443.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000443.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000443.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000443.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000444.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000444.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000444.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000444.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000445.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000445.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000445.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000445.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000572.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000572.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000572.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000572.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000573.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000573.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000573.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000573.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000574.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000574.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000574.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000574.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000575.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000575.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000575.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000575.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000577.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000577.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000577.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000577.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000578.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000578.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000578.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000578.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000579.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000579.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000579.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000579.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000580.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000580.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000580.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000580.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000582.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000582.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000582.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000582.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000584.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000584.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000584.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000584.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000590.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000590.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000590.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000590.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000591.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000591.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000591.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000591.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000592.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000592.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000592.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000592.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000593.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000593.json index 8089b39df..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000593.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000593.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000594.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000594.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000594.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000594.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000595.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000595.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000595.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000595.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000605.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000605.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000605.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000605.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000606.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000606.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000606.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000606.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000607.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000607.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000607.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000607.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000608.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000608.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000608.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000608.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000609.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000609.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000609.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000609.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000610.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000610.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000610.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000610.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000611.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000611.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000611.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000611.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000612.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000612.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000612.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000612.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000613.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000613.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000613.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000613.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000614.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000614.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000614.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000614.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000615.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000615.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000615.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000615.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000616.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000616.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000616.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000616.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000617.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000617.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000617.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000617.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000618.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000618.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000618.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000618.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000619.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000619.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000619.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000619.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000620.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000620.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000620.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000620.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000621.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000621.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000621.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000621.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000622.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000622.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000622.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000622.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000623.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000623.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000623.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000623.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000624.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000624.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000624.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000624.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000625.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000625.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000625.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000625.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000626.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000626.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000626.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000626.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000627.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000627.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000627.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000627.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000628.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000628.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000628.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000628.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000629.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000629.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000629.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000629.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000630.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000630.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000630.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000630.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000631.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000631.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000631.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000631.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000632.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000632.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000632.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000632.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000633.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000633.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000633.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000633.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000634.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000634.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000634.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000634.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000635.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000635.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000635.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000635.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000636.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000636.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000636.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000636.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000637.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000637.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000637.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000637.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000638.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000638.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000638.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000638.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000639.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000639.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000639.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000639.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000640.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000640.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000640.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000640.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000641.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000641.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000641.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000641.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000642.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000642.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000642.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000642.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000643.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000643.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000643.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000643.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000644.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000644.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000644.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000644.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000645.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000645.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000645.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000645.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000646.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000646.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000646.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000646.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000647.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000647.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000647.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000647.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000648.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000648.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000648.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000648.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000650.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000650.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000650.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000650.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000701.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000701.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000701.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000701.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000702.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000702.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000702.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000702.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000703.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000703.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000703.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000703.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000704.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000704.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000704.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000704.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000705.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000705.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000705.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000705.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000706.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000706.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000706.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000706.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000707.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000707.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000707.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000707.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000708.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000708.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000708.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000708.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020000.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020000.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020000.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020001.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020001.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020001.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020010.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020010.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020010.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020010.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020015.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020015.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020015.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020015.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020016.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020016.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020016.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020016.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020017.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020017.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020017.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020017.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020020.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020020.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020020.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020020.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000000.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000000.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000000.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000001.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000001.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000001.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000002.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000002.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000002.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000002.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000003.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000003.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000003.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000004.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000004.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000004.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000004.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000005.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000005.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000005.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000005.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000006.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000006.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000006.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000006.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000007.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000007.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000007.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000007.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000008.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000008.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000008.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000008.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000009.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000009.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000009.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000009.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000010.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000010.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000010.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000010.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000011.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000011.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000011.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000011.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000012.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000012.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000012.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000012.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000013.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000013.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000013.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000013.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000014.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000014.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000014.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000014.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000015.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000015.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000015.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000015.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000016.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000016.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000016.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000016.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000017.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000017.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000017.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000017.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000018.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000018.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000018.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000018.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000019.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000019.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000019.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000019.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000020.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000020.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000020.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000020.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000011.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000011.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000011.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000011.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000066.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000066.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000066.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000066.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000471.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000471.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000471.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000471.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0200000.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0200000.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0200000.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0200000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0500000.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0500000.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0500000.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0500000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000122.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000122.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000122.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000122.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000125.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000125.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000125.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000125.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000001.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000001.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000001.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000002.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000002.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000002.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000002.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000003.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000003.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000003.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Ftopic_0003.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Ftopic_0003.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Ftopic_0003.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Ftopic_0003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json index e5619a4b1..37bc7e099 100644 --- a/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json +++ b/testcases_expected_output_api/ontologies/duo/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:37 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:47 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fprotege.stanford.edu%252Fplugins%252Fowl%252Fprotege%2523defaultLanguage.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fprotege.stanford.edu%252Fplugins%252Fowl%252Fprotege%2523defaultLanguage.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fprotege.stanford.edu%252Fplugins%252Fowl%252Fprotege%2523defaultLanguage.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fprotege.stanford.edu%252Fplugins%252Fowl%252Fprotege%2523defaultLanguage.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000008.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000008.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000008.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000008.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000032.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000032.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000032.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000032.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000033.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000033.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000033.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000033.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000522.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000522.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000522.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000522.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000524.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000524.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000524.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000524.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000796.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000796.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000796.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FAPOLLO_SV_00000796.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000001.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000001.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000001.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000006.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000006.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000006.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000006.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000008.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000008.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000008.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000008.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000009.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000009.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000009.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000009.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000011.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000011.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000011.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000011.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000018.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000018.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000018.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000018.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000024.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000024.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000024.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000024.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000026.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000026.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000026.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000026.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000027.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000027.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000027.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000027.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000028.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000028.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000028.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000028.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000029.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000029.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000029.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000029.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000030.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000030.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000030.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000030.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000031.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000031.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000031.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000031.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000035.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000035.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000035.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000035.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000038.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000038.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000038.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000038.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000054.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000054.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000054.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000054.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000055.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000055.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000055.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000055.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000066.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000066.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000066.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000066.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000067.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000067.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000067.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000067.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000140.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000140.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000140.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000140.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000142.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000142.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000142.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000142.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000144.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000144.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000144.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000144.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000145.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000145.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000145.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000145.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000146.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000146.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000146.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000146.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000147.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000147.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000147.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000147.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000148.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000148.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000148.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000148.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000179.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000179.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000179.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000179.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000180.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000180.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000180.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000180.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000182.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000182.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000182.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000182.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000001.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000001.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000001.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000004.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000004.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000004.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000004.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_00000044.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_00000044.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_00000044.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_00000044.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000006.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000006.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000006.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000006.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000007.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000007.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000007.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000007.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000010.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000010.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000010.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000010.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000011.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000011.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000011.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000011.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000012.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000012.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000012.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000012.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000015.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000015.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000015.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000015.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000016.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000016.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000016.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000016.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000017.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000017.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000017.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000017.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000018.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000018.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000018.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000018.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000019.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000019.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000019.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000019.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000020.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000020.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000020.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000020.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000021.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000021.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000021.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000021.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000022.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000022.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000022.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000022.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000024.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000024.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000024.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000024.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000025.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000025.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000025.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000025.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000026.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000026.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000026.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000026.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000027.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000027.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000027.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000027.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000028.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000028.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000028.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000028.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000029.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000029.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000029.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000029.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000031.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000031.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000031.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000031.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000032.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000032.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000032.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000032.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000033.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000033.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000033.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000033.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000034.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000034.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000034.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000034.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000035.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000035.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000035.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000035.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000036.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000036.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000036.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000036.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000037.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000037.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000037.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000037.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000038.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000038.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000038.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000038.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000039.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000039.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000039.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000039.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000040.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000040.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000040.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000040.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000041.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000041.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000041.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000041.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000042.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000042.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000042.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000042.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000043.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000043.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000043.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000043.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000045.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000045.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000045.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000045.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000046.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000046.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000046.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FDUO_0000046.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGAZ_00000448.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGAZ_00000448.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGAZ_00000448.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGAZ_00000448.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000001.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000001.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000001.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000002.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000002.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000002.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000002.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000003.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000003.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000003.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000004.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000004.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000004.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000004.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000005.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000005.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000005.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000005.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000006.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000006.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000006.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000006.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000007.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000007.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000007.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000007.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000009.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000009.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000009.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000009.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000010.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000010.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000010.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000010.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000013.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000013.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000013.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000013.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000015.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000015.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000015.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000015.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000017.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000017.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000017.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000017.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000025.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000025.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000025.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000025.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000027.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000027.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000027.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000027.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000028.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000028.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000028.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000028.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000029.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000029.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000029.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000029.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000030.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000030.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000030.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000030.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000031.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000031.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000031.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000031.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000032.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000032.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000032.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000032.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000033.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000033.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000033.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000033.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000034.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000034.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000034.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000034.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000037.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000037.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000037.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000037.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000038.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000038.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000038.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000038.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000039.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000039.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000039.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000039.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000055.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000055.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000055.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000055.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000057.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000057.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000057.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000057.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000064.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000064.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000064.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000064.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000065.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000065.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000065.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000065.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000078.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000078.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000078.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000078.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000079.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000079.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000079.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000079.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000088.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000088.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000088.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000088.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000096.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000096.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000096.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000096.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000098.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000098.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000098.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000098.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000100.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000100.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000100.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000100.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000101.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000101.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000101.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000101.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000102.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000102.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000102.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000102.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000103.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000103.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000103.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000103.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000104.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000104.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000104.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000104.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000109.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000109.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000109.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000109.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000111.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000111.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000111.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000111.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000112.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000112.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000112.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000112.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000113.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000113.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000113.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000113.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000114.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000114.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000114.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000114.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000117.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000117.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000117.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000117.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000118.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000118.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000118.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000118.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000119.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000119.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000119.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000119.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000120.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000120.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000120.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000120.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000121.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000121.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000121.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000121.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000122.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000122.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000122.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000122.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000123.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000123.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000123.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000123.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000124.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000124.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000124.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000124.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000125.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000125.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000125.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000125.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000129.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000129.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000129.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000129.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000131.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000131.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000131.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000131.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000132.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000132.json index 4ee6cc584..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000132.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000132.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:34 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000136.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000136.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000136.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000136.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000140.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000140.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000140.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000140.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000142.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000142.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000142.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000142.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000143.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000143.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000143.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000143.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000144.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000144.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000144.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000144.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000178.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000178.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000178.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000178.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000179.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000179.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000179.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000179.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000180.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000180.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000180.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000180.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000181.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000181.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000181.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000181.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000183.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000183.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000183.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000183.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000184.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000184.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000184.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000184.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000185.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000185.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000185.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000185.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000186.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000186.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000186.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000186.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000219.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000219.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000219.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000219.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000221.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000221.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000221.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000221.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000225.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000225.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000225.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000225.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000226.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000226.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000226.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000226.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000227.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000227.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000227.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000227.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000228.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000228.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000228.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000228.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000229.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000229.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000229.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000229.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000231.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000231.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000231.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000231.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000232.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000232.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000232.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000232.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000233.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000233.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000233.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000233.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000234.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000234.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000234.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000234.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000235.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000235.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000235.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000235.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000300.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000300.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000300.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000300.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000301.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000301.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000301.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000301.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000302.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000302.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000302.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000302.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000303.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000303.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000303.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000303.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000304.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000304.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000304.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000304.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000305.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000305.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000305.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000305.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000306.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000306.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000306.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000306.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000307.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000307.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000307.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000307.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000308.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000308.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000308.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000308.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000309.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000309.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000309.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000309.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000310.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000310.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000310.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000310.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000311.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000311.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000311.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000311.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000312.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000312.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000312.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000312.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000313.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000313.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000313.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000313.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000314.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000314.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000314.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000314.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000315.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000315.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000315.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000315.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000316.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000316.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000316.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000316.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000317.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000317.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000317.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000317.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000318.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000318.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000318.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000318.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000319.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000319.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000319.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000319.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000320.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000320.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000320.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000320.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000321.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000321.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000321.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000321.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000322.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000322.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000322.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000322.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000323.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000323.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000323.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000323.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000324.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000324.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000324.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000324.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000325.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000325.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000325.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000325.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000326.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000326.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000326.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000326.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000327.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000327.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000327.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000327.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000328.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000328.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000328.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000328.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000329.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000329.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000329.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000329.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000330.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000330.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000330.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000330.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000400.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000400.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000400.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000400.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000401.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000401.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000401.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000401.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000402.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000402.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000402.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000402.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000403.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000403.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000403.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000403.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000404.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000404.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000404.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000404.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000405.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000405.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000405.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000405.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000406.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000406.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000406.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000406.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000407.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000407.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000407.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000407.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000408.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000408.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000408.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000408.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000409.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000409.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000409.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000409.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000410.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000410.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000410.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000410.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000411.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000411.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000411.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000411.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000412.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000412.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000412.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000412.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000413.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000413.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000413.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000413.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000414.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000414.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000414.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000414.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000415.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000415.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000415.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000415.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000416.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000416.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000416.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000416.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000417.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000417.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000417.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000417.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000418.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000418.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000418.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000418.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000419.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000419.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000419.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000419.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000420.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000420.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000420.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000420.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000421.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000421.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000421.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000421.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000422.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000422.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000422.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000422.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000423.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000423.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000423.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000423.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000424.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000424.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000424.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000424.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000425.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000425.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000425.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000425.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000426.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000426.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000426.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000426.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000427.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000427.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000427.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000427.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000428.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000428.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000428.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000428.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000429.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000429.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000429.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000429.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000442.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000442.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000442.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000442.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000443.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000443.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000443.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000443.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000444.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000444.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000444.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000444.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000445.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000445.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000445.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000445.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000572.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000572.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000572.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000572.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000573.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000573.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000573.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000573.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000574.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000574.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000574.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000574.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000575.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000575.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000575.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000575.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000577.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000577.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000577.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000577.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000578.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000578.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000578.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000578.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000579.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000579.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000579.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000579.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000580.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000580.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000580.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000580.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000581.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000581.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000581.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000581.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000582.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000582.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000582.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000582.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000583.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000583.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000583.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000583.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000584.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000584.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000584.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000584.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000589.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000589.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000589.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000589.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000590.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000590.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000590.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000590.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000591.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000591.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000591.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000591.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000592.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000592.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000592.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000592.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000593.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000593.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000593.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000593.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000594.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000594.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000594.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000594.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000595.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000595.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000595.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000595.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000596.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000596.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000596.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000596.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000597.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000597.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000597.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000597.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000598.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000598.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000598.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000598.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000599.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000599.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000599.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000599.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000600.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000600.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000600.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000600.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000601.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000601.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000601.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000601.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000602.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000602.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000602.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000602.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000603.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000603.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000603.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000603.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000604.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000604.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000604.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000604.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000605.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000605.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000605.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000605.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000606.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000606.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000606.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000606.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000607.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000607.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000607.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000607.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000608.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000608.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000608.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000608.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000609.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000609.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000609.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000609.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000610.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000610.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000610.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000610.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000611.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000611.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000611.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000611.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000612.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000612.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000612.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000612.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000613.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000613.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000613.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000613.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000614.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000614.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000614.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000614.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000615.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000615.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000615.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000615.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000616.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000616.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000616.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000616.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000617.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000617.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000617.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000617.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000618.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000618.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000618.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000618.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000619.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000619.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000619.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000619.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000620.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000620.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000620.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000620.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000621.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000621.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000621.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000621.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000622.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000622.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000622.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000622.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000623.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000623.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000623.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000623.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000624.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000624.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000624.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000624.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000625.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000625.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000625.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000625.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000626.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000626.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000626.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000626.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000627.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000627.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000627.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000627.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000628.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000628.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000628.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000628.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000629.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000629.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000629.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000629.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000630.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000630.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000630.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000630.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000631.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000631.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000631.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000631.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000632.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000632.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000632.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000632.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000633.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000633.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000633.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000633.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000634.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000634.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000634.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000634.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000635.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000635.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000635.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000635.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000636.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000636.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000636.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000636.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000637.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000637.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000637.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000637.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000638.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000638.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000638.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000638.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000639.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000639.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000639.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000639.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000640.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000640.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000640.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000640.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000641.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000641.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000641.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000641.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000642.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000642.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000642.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000642.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000643.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000643.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000643.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000643.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000644.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000644.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000644.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000644.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000645.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000645.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000645.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000645.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000646.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000646.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000646.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000646.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000647.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000647.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000647.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000647.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000648.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000648.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000648.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000648.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000650.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000650.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000650.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000650.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000700.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000700.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000700.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000700.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000701.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000701.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000701.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000701.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000702.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000702.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000702.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000702.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000703.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000703.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000703.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000703.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000704.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000704.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000704.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000704.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000705.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000705.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000705.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000705.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000706.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000706.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000706.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000706.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000707.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000707.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000707.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000707.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000708.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000708.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000708.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000708.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006011.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006011.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006011.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006011.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006012.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006012.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006012.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006012.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0010000.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0010000.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0010000.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0010000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020000.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020000.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020000.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020001.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020001.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020001.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020010.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020010.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020010.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020010.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020015.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020015.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020015.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020015.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020016.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020016.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020016.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020016.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020017.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020017.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020017.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020017.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020020.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020020.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020020.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0020020.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0100001.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0100001.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0100001.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0100001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000000.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000000.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000000.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000001.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000001.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000001.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000002.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000002.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000002.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000002.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000003.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000003.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000003.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000004.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000004.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000004.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000004.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000005.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000005.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000005.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000005.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000006.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000006.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000006.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000006.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000007.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000007.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000007.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000007.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000008.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000008.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000008.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000008.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000009.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000009.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000009.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000009.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000010.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000010.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000010.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000010.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000011.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000011.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000011.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000011.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000012.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000012.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000012.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000012.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000013.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000013.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000013.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000013.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000014.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000014.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000014.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000014.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000015.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000015.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000015.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000015.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000016.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000016.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000016.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000016.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000017.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000017.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000017.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000017.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000018.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000018.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000018.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000018.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000019.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000019.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000019.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000019.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000020.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000020.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000020.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_8000020.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000011.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000011.json index 2f339819f..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000011.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000011.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:35 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000066.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000066.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000066.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000066.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000293.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000293.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000293.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000293.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000295.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000295.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000295.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000295.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000299.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000299.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000299.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000299.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000312.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000312.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000312.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000312.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000471.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000471.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000471.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0000471.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0200000.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0200000.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0200000.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0200000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0500000.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0500000.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0500000.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOBI_0500000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0001000.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0001000.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0001000.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0001000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0001001.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0001001.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0001001.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0001001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0002000.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0002000.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0002000.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOMO_0002000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000122.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000122.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000122.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000122.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000125.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000125.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000125.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000125.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000052.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000052.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000052.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000052.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000053.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000053.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000053.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000053.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000056.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000056.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000056.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000056.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000057.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000057.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000057.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000057.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000058.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000058.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000058.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000058.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000059.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000059.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000059.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000059.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000079.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000079.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000079.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000079.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000080.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000080.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000080.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000080.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000081.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000081.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000081.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000081.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000085.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000085.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000085.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000085.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000086.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000086.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000086.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000086.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000087.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000087.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000087.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000087.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000091.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000091.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000091.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000091.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000092.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000092.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000092.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000092.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001000.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001000.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001000.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001001.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001001.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001001.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001015.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001015.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001015.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001015.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001025.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001025.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001025.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001025.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001900.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001900.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001900.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001900.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002000.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002000.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002000.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002002.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002002.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002002.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002002.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002350.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002350.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002350.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002350.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002351.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002351.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002351.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002351.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000001.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000001.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000001.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000002.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000002.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000002.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000002.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000003.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000003.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000003.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUO_0000003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Ftopic_0003.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Ftopic_0003.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Ftopic_0003.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Ftopic_0003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcontributor.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcontributor.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcontributor.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcontributor.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcoverage.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcoverage.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcoverage.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcoverage.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcreator.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcreator.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcreator.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fcreator.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdate.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdate.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdate.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdate.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdescription.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdescription.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdescription.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdescription.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fformat.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fformat.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fformat.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fformat.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fidentifier.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fidentifier.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fidentifier.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fidentifier.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Flanguage.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Flanguage.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Flanguage.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Flanguage.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fmember.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fmember.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fmember.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fmember.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fpublisher.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fpublisher.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fpublisher.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fpublisher.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Frelation.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Frelation.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Frelation.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Frelation.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Frights.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Frights.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Frights.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Frights.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fsource.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fsource.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fsource.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fsource.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fsubject.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fsubject.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fsubject.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fsubject.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Ftitle.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Ftitle.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Ftitle.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Ftitle.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Ftype.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Ftype.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Ftype.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Ftype.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252Flicense.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252Flicense.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252Flicense.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252Flicense.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523created_by.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523created_by.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523created_by.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523created_by.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523creation_date.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523creation_date.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523creation_date.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523creation_date.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fhomepage.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fhomepage.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fhomepage.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fhomepage.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fmbox.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fmbox.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fmbox.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fmbox.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fpage.json b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fpage.json index 8089b39df..43db21f21 100644 --- a/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fpage.json +++ b/testcases_expected_output_api/ontologies/duo/entities/http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fpage.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:36 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:46 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000483.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000483.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000483.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000483.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001007.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001007.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001007.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001007.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001009.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001009.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001009.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001009.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001193.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001193.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001193.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001193.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001281.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001281.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001281.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001281.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001637.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001637.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001637.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001637.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001638.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001638.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001638.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001638.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001639.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001639.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001639.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001639.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001981.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001981.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001981.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001981.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001982.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001982.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001982.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001982.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001986.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001986.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001986.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001986.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002049.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002049.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002049.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002049.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002100.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002100.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002100.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002100.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002107.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002107.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002107.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002107.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002423.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002423.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002423.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002423.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004535.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004535.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004535.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004535.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004647.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004647.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004647.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004647.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006841.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006841.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006841.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006841.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0013702.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0013702.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0013702.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0013702.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000111.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000111.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000111.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000111.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000112.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000112.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000112.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000112.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000118.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000118.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000118.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000118.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000232.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000232.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000232.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000232.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001900.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001900.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001900.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0001900.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002174.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002174.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002174.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002174.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0040042.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0040042.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0040042.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0040042.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000483.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000483.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000483.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000483.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001007.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001007.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001007.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001007.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001009.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001009.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001009.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001009.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001193.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001193.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001193.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001193.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001281.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001281.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001281.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001281.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001637.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001637.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001637.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001637.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001638.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001638.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001638.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001638.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001639.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001639.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001639.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001639.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001981.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001981.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001981.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001981.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001982.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001982.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001982.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001982.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001986.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001986.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001986.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001986.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002049.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002049.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002049.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002049.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002100.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002100.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002100.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002100.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002107.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002107.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002107.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002107.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002423.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002423.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002423.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002423.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004535.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004535.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004535.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004535.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004647.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004647.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004647.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0004647.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006841.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006841.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006841.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006841.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0013702.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0013702.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0013702.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0013702.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000001.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000001.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000001.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000002.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000002.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000002.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000002.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000003.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000003.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000003.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000007.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000007.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000007.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000007.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000008.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000008.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000008.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000008.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000009.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000009.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000009.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000009.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000010.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000010.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000010.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000010.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000012.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000012.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000012.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000012.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000202.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000202.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000202.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBPROP_0000202.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_URI.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_URI.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_URI.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_URI.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523date_retrieved.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523date_retrieved.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523date_retrieved.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523date_retrieved.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523external_class.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523external_class.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523external_class.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523external_class.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523external_ontology.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523external_ontology.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523external_ontology.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523external_ontology.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523notes.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523notes.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523notes.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523notes.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ontology.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ontology.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ontology.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ontology.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523source.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523source.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523source.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523source.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fdepicted_by.json b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fdepicted_by.json index 99bb98f71..e0dc98a90 100644 --- a/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fdepicted_by.json +++ b/testcases_expected_output_api/ontologies/efo-hierarchical-properties/entities/http%253A%252F%252Fxmlns.com%252Ffoaf%252F0.1%252Fdepicted_by.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:48 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-iri-labels/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006807.json b/testcases_expected_output_api/ontologies/efo-iri-labels/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006807.json index 99bb98f71..c14f2114f 100644 --- a/testcases_expected_output_api/ontologies/efo-iri-labels/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006807.json +++ b/testcases_expected_output_api/ontologies/efo-iri-labels/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006807.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:49 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-iri-labels/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json b/testcases_expected_output_api/ontologies/efo-iri-labels/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json index 99bb98f71..c14f2114f 100644 --- a/testcases_expected_output_api/ontologies/efo-iri-labels/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json +++ b/testcases_expected_output_api/ontologies/efo-iri-labels/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:49 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-iri-labels/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000063.json b/testcases_expected_output_api/ontologies/efo-iri-labels/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000063.json index 99bb98f71..c14f2114f 100644 --- a/testcases_expected_output_api/ontologies/efo-iri-labels/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000063.json +++ b/testcases_expected_output_api/ontologies/efo-iri-labels/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000063.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:49 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-iri-labels/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_0000400.json b/testcases_expected_output_api/ontologies/efo-iri-labels/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_0000400.json index 99bb98f71..c14f2114f 100644 --- a/testcases_expected_output_api/ontologies/efo-iri-labels/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_0000400.json +++ b/testcases_expected_output_api/ontologies/efo-iri-labels/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_0000400.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:49 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json b/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json index 99bb98f71..c14f2114f 100644 --- a/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json +++ b/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:49 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000054.json b/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000054.json index 99bb98f71..c14f2114f 100644 --- a/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000054.json +++ b/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000054.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:49 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006807.json b/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006807.json index 99bb98f71..c14f2114f 100644 --- a/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006807.json +++ b/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006807.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:49 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json b/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json index 99bb98f71..c14f2114f 100644 --- a/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json +++ b/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:49 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000063.json b/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000063.json index 99bb98f71..c14f2114f 100644 --- a/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000063.json +++ b/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000063.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:49 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_0000400.json b/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_0000400.json index 99bb98f71..c14f2114f 100644 --- a/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_0000400.json +++ b/testcases_expected_output_api/ontologies/efo-iri-labels/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fefo%252FEFO_0000400.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:40 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:49 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/genepio/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGENEPIO_0002113.json b/testcases_expected_output_api/ontologies/genepio/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGENEPIO_0002113.json index da7beb5ed..c14f2114f 100644 --- a/testcases_expected_output_api/ontologies/genepio/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGENEPIO_0002113.json +++ b/testcases_expected_output_api/ontologies/genepio/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGENEPIO_0002113.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:41 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:49 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/genepio/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGENEPIO_0002113.json b/testcases_expected_output_api/ontologies/genepio/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGENEPIO_0002113.json index da7beb5ed..c14f2114f 100644 --- a/testcases_expected_output_api/ontologies/genepio/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGENEPIO_0002113.json +++ b/testcases_expected_output_api/ontologies/genepio/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGENEPIO_0002113.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:15:41 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:21:49 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000000.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000000.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000000.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000003.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000003.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000003.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000039.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000039.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000039.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000039.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000211.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000211.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000211.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000211.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000255.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000255.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000255.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000255.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000393.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000393.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000393.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000393.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000404.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000404.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000404.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000404.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000540.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000540.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000540.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000540.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000548.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000548.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000548.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000548.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000586.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000586.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000586.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000586.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002319.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002319.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002319.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002319.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002371.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002371.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002371.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002371.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0000003.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0000003.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0000003.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0000003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001508.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001508.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001508.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001508.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001704.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001704.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001704.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001704.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001705.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001705.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001705.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001705.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001706.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001706.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001706.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001706.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001707.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001707.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001707.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001707.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001838.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001838.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001838.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001838.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001841.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001841.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001841.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001841.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0002009.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0002009.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0002009.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0002009.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0003008.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0003008.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0003008.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0003008.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005102.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005102.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005102.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005102.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005179.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005179.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005179.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005179.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005183.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005183.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005183.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005183.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005515.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005515.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005515.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005515.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006810.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006810.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006810.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006810.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006811.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006811.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006811.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006811.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007154.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007154.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007154.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007154.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007165.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007165.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007165.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007165.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007267.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007267.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007267.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007267.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007268.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007268.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007268.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007268.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007275.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007275.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007275.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007275.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007276.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007276.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007276.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007276.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007369.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007369.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007369.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007369.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007398.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007398.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007398.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007398.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007399.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007399.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007399.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007399.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007492.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007492.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007492.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007492.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007498.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007498.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007498.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007498.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009566.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009566.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009566.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009566.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009653.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009653.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009653.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009653.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009790.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009790.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009790.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009790.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009791.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009791.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009791.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009791.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009792.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009792.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009792.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009792.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009888.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009888.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009888.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009888.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009914.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009914.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009914.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009914.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009987.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009987.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009987.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009987.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0010817.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0010817.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0010817.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0010817.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016301.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016301.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016301.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016301.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016331.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016331.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016331.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016331.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019226.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019226.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019226.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019226.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019953.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019953.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019953.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019953.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0021915.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0021915.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0021915.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0021915.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0022414.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0022414.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0022414.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0022414.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023052.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023052.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023052.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023052.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023061.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023061.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023061.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023061.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030545.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030545.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030545.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030545.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030546.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030546.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030546.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030546.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032501.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032501.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032501.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032501.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032502.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032502.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032502.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032502.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032504.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032504.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032504.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032504.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032940.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032940.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032940.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032940.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0034220.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0034220.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0034220.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0034220.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035148.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035148.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035148.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035148.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035239.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035239.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035239.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035239.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035295.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035295.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035295.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035295.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0038023.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0038023.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0038023.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0038023.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0040016.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0040016.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0040016.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0040016.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0042391.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0042391.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0042391.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0042391.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0043009.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0043009.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0043009.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0043009.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0045202.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0045202.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0045202.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0045202.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046879.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046879.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046879.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046879.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046903.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046903.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046903.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046903.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048018.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048018.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048018.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048018.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048332.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048332.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048332.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048332.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048513.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048513.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048513.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048513.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048598.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048598.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048598.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048598.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048609.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048609.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048609.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048609.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048646.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048646.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048646.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048646.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048729.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048729.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048729.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048729.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048731.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048731.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048731.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048731.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048856.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048856.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048856.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048856.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050789.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050789.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050789.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050789.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050794.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050794.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050794.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050794.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050877.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050877.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050877.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050877.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050896.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050896.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050896.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050896.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051179.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051179.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051179.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051179.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051234.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051234.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051234.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051234.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051301.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051301.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051301.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051301.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051716.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051716.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051716.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051716.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0055085.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0055085.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0055085.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0055085.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060429.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060429.json index 25a70ad4b..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060429.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060429.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060562.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060562.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060562.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060562.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065007.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065007.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065007.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065007.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065008.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065008.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065008.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065008.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0072175.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0072175.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0072175.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0072175.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098772.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098772.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098772.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098772.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098916.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098916.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098916.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098916.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099536.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099536.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099536.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099536.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099537.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099537.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099537.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099537.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140352.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140352.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140352.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140352.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140677.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140677.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140677.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140677.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FHP_0001513.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FHP_0001513.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FHP_0001513.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FHP_0001513.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110814.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110814.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110814.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110814.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110815.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110815.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110815.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110815.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117570.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117570.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117570.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117570.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117571.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117571.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117571.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117571.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1312402.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1312402.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1312402.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1312402.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_131567.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_131567.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_131567.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_131567.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1338369.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1338369.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1338369.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1338369.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1437010.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1437010.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1437010.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1437010.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1547233.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1547233.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1547233.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1547233.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_207598.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_207598.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_207598.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_207598.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_2759.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_2759.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_2759.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_2759.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314146.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314146.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314146.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314146.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314293.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314293.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314293.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314293.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314295.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314295.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314295.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314295.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32523.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32523.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32523.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32523.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32524.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32524.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32524.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32524.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32525.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32525.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32525.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32525.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33154.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33154.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33154.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33154.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33208.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33208.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33208.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33208.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33213.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33213.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33213.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33213.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33511.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33511.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33511.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33511.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_376913.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_376913.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_376913.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_376913.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_40674.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_40674.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_40674.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_40674.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6040.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6040.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6040.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6040.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6072.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6072.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6072.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6072.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7711.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7711.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7711.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7711.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7742.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7742.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7742.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7742.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7776.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7776.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7776.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7776.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_8287.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_8287.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_8287.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_8287.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_89593.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_89593.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_89593.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_89593.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9347.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9347.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9347.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9347.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9443.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9443.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9443.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9443.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9526.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9526.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9526.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9526.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9604.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9604.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9604.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9604.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9605.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9605.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9605.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9605.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9606.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9606.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9606.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9606.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000141.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000141.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000141.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000141.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001992.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001992.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001992.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001992.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001993.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001993.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001993.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001993.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001995.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001995.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001995.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001995.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0002198.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0002198.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0002198.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0002198.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0010001.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0010001.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0010001.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0010001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000000.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000000.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000000.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000061.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000061.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000061.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000061.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000062.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000062.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000062.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000062.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000066.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000066.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000066.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000066.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000068.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000068.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000068.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000068.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000071.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000071.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000071.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000071.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000092.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000092.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000092.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000092.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000104.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000104.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000104.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000104.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000105.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000105.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000105.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000105.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000106.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000106.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000106.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000106.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000107.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000107.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000107.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000107.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000108.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000108.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000108.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000108.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000109.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000109.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000109.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000109.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000110.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000110.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000110.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000110.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000111.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000111.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000111.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000111.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000463.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000463.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000463.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000463.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000465.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000465.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000465.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000465.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000466.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000466.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000466.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000466.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000474.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000474.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000474.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000474.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000922.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000922.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000922.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000922.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000990.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000990.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000990.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000990.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000991.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000991.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000991.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000991.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001016.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001016.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001016.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001016.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001048.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001048.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001048.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001048.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001062.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001062.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001062.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001062.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002050.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002050.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002050.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002050.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003100.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003100.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003100.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003100.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003133.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003133.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003133.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003133.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005156.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005156.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005156.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005156.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005423.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005423.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005423.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005423.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005564.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005564.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005564.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005564.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006598.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006598.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006598.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006598.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006984.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006984.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006984.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006984.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010000.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010000.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010000.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010199.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010199.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010199.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010199.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015203.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015203.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015203.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015203.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015204.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015204.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015204.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015204.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0016880.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0016880.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0016880.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0016880.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0034923.json b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0034923.json index b23ae2a09..a45d5d7a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0034923.json +++ b/testcases_expected_output_api/ontologies/gitissue502/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0034923.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000004.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000015.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000019.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000023.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000034.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000040.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000051.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000062.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000062.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000062.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000062.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000063.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000063.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000063.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000063.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000066.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000066.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000066.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000066.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000067.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000067.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000067.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000067.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000141.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000000.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000000.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000000.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000003.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000003.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000003.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000039.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000039.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000039.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000039.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000211.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000211.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000211.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000211.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000255.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000255.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000255.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000255.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000393.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000393.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000393.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000393.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000404.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000404.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000404.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000404.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000540.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000540.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000540.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000540.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000548.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000548.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000548.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000548.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000586.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000586.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000586.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0000586.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002319.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002319.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002319.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002319.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002371.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002371.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002371.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FCL_0002371.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0000003.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0000003.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0000003.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0000003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001508.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001508.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001508.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001508.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001704.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001704.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001704.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001704.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001705.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001705.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001705.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001705.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001706.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001706.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001706.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001706.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001707.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001707.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001707.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001707.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001838.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001838.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001838.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001838.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001841.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001841.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001841.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0001841.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0002009.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0002009.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0002009.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0002009.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0003008.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0003008.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0003008.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0003008.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005102.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005102.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005102.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005102.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005179.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005179.json index 230ec79c2..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005179.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005179.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:00 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005183.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005183.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005183.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005183.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005515.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005515.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005515.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0005515.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006810.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006810.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006810.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006810.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006811.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006811.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006811.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0006811.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007154.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007154.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007154.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007154.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007165.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007165.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007165.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007165.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007267.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007267.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007267.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007267.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007268.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007268.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007268.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007268.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007275.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007275.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007275.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007275.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007276.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007276.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007276.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007276.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007369.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007369.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007369.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007369.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007398.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007398.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007398.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007398.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007399.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007399.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007399.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007399.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007492.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007492.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007492.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007492.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007498.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007498.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007498.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0007498.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0008150.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009566.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009566.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009566.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009566.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009653.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009653.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009653.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009653.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009790.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009790.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009790.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009790.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009791.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009791.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009791.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009791.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009792.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009792.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009792.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009792.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009888.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009888.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009888.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009888.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009914.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009914.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009914.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009914.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009987.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009987.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009987.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0009987.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0010817.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0010817.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0010817.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0010817.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016301.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016301.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016301.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016301.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016331.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016331.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016331.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0016331.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019226.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019226.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019226.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019226.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019953.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019953.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019953.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0019953.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0021915.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0021915.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0021915.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0021915.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0022414.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0022414.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0022414.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0022414.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023052.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023052.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023052.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023052.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023061.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023061.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023061.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0023061.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030545.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030545.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030545.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030545.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030546.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030546.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030546.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0030546.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032501.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032501.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032501.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032501.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032502.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032502.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032502.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032502.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032504.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032504.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032504.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032504.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032940.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032940.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032940.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0032940.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0034220.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0034220.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0034220.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0034220.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035148.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035148.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035148.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035148.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035239.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035239.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035239.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035239.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035295.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035295.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035295.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0035295.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0038023.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0038023.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0038023.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0038023.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0040016.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0040016.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0040016.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0040016.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0042391.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0042391.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0042391.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0042391.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0043009.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0043009.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0043009.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0043009.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0045202.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0045202.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0045202.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0045202.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046879.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046879.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046879.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046879.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046903.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046903.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046903.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0046903.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048018.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048018.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048018.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048018.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048332.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048332.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048332.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048332.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048513.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048513.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048513.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048513.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048598.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048598.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048598.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048598.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048609.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048609.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048609.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048609.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048646.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048646.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048646.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048646.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048729.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048729.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048729.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048729.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048731.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048731.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048731.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048731.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048856.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048856.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048856.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0048856.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050789.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050789.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050789.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050789.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050794.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050794.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050794.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050794.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050877.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050877.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050877.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050877.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050896.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050896.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050896.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0050896.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051179.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051179.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051179.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051179.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051234.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051234.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051234.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051234.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051301.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051301.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051301.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051301.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051716.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051716.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051716.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0051716.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0055085.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0055085.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0055085.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0055085.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060429.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060429.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060429.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060429.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060562.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060562.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060562.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0060562.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065007.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065007.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065007.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065007.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065008.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065008.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065008.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0065008.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0072175.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0072175.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0072175.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0072175.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098772.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098772.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098772.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098772.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098916.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098916.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098916.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0098916.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099536.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099536.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099536.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099536.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099537.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099537.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099537.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0099537.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140352.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140352.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140352.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140352.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140677.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140677.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140677.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FGO_0140677.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FHP_0001513.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FHP_0001513.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FHP_0001513.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FHP_0001513.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000115.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000116.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000233.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000233.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000233.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0000233.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006012.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006012.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006012.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FIAO_0006012.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110814.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110814.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110814.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110814.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110815.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110815.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110815.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_110815.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117570.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117570.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117570.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117570.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117571.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117571.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117571.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_117571.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1312402.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1312402.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1312402.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1312402.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_131567.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_131567.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_131567.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_131567.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1338369.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1338369.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1338369.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1338369.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1437010.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1437010.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1437010.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1437010.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1547233.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1547233.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1547233.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_1547233.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_207598.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_207598.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_207598.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_207598.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_2759.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_2759.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_2759.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_2759.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314146.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314146.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314146.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314146.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314293.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314293.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314293.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314293.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314295.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314295.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314295.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_314295.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32523.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32523.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32523.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32523.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32524.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32524.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32524.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32524.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32525.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32525.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32525.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_32525.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33154.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33154.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33154.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33154.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33208.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33208.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33208.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33208.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33213.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33213.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33213.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33213.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33511.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33511.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33511.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_33511.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_376913.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_376913.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_376913.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_376913.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_40674.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_40674.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_40674.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_40674.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6040.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6040.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6040.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6040.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6072.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6072.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6072.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_6072.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7711.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7711.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7711.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7711.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7742.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7742.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7742.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7742.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7776.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7776.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7776.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_7776.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_8287.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_8287.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_8287.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_8287.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_89593.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_89593.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_89593.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_89593.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9347.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9347.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9347.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9347.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9443.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9443.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9443.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9443.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9526.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9526.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9526.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9526.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9604.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9604.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9604.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9604.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9605.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9605.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9605.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9605.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9606.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9606.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9606.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FNCBITaxon_9606.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000051.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000141.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000141.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000141.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000141.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001018.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001241.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001992.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001992.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001992.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001992.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001993.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001993.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001993.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001993.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001995.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001995.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001995.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0001995.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0002198.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0002198.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0002198.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0002198.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0010001.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0010001.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0010001.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0010001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000052.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000052.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000052.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000052.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000053.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000053.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000053.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000053.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000056.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000056.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000056.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000056.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000057.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000057.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000057.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000057.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000079.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000079.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000079.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000079.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000080.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000080.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000080.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000080.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000081.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000081.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000081.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000081.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000085.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000085.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000085.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000085.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000086.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000086.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000086.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000086.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000087.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000087.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000087.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000087.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000091.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000091.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000091.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000091.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000092.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000092.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000092.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000092.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002000.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002000.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002000.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002002.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002002.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002002.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002002.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002013.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002013.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002013.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002013.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002014.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002014.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002014.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002014.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002015.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002015.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002015.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002015.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002017.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002017.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002017.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002017.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002018.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002018.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002018.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002018.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002022.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002022.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002022.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002022.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002023.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002023.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002023.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002023.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002024.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002024.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002024.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002024.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002025.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002025.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002025.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002025.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002081.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002081.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002081.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002081.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002082.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002082.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002082.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002082.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002086.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002086.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002086.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002086.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002087.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002087.json index 1da8739a9..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002087.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002087.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:01 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002090.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002090.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002090.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002090.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002131.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002131.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002131.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002131.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002160.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002160.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002160.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002160.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002162.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002162.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002162.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002162.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002175.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002175.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002175.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002175.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002180.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002180.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002180.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002180.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002202.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002202.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002202.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002202.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002203.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002203.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002203.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002203.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002207.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002207.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002207.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002207.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002210.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002210.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002210.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002210.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002211.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002211.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002211.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002211.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002212.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002212.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002212.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002212.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002213.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002213.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002213.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002213.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002215.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002215.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002215.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002215.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002216.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002216.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002216.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002216.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002222.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002222.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002222.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002222.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002223.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002223.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002223.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002223.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002224.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002224.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002224.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002224.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002225.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002225.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002225.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002225.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002229.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002229.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002229.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002229.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002230.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002230.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002230.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002230.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002231.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002231.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002231.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002231.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002232.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002232.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002232.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002232.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002233.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002233.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002233.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002233.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002254.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002254.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002254.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002254.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002255.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002255.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002255.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002255.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002258.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002258.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002258.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002258.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002263.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002263.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002263.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002263.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002264.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002264.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002264.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002264.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002286.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002286.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002286.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002286.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002287.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002287.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002287.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002287.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002304.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002304.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002304.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002304.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002305.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002305.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002305.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002305.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002327.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002327.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002327.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002327.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002331.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002331.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002331.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002331.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002333.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002333.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002333.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002333.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002334.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002334.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002334.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002334.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002335.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002335.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002335.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002335.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002336.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002336.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002336.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002336.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002352.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002352.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002352.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002352.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002384.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002384.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002384.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002384.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002385.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002385.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002385.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002385.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002387.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002387.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002387.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002387.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002388.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002388.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002388.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002388.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002404.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002404.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002404.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002404.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002405.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002405.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002405.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002405.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002407.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002407.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002407.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002407.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002409.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002409.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002409.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002409.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002411.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002411.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002411.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002411.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002412.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002412.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002412.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002412.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002418.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002418.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002418.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002418.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002427.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002427.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002427.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002427.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002428.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002428.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002428.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002428.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002429.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002429.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002429.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002429.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002430.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002430.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002430.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002430.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002431.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002431.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002431.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002431.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002434.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002434.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002434.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002434.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002436.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002436.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002436.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002436.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002447.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002447.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002447.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002447.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002448.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002448.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002448.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002448.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002449.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002449.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002449.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002449.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002450.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002450.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002450.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002450.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002473.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002473.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002473.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002473.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002479.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002479.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002479.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002479.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002487.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002487.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002487.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002487.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002488.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002488.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002488.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002488.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002489.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002489.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002489.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002489.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002490.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002490.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002490.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002490.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002492.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002492.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002492.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002492.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002493.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002493.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002493.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002493.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002494.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002494.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002494.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002494.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002495.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002495.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002495.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002495.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002496.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002496.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002496.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002496.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002497.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002497.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002497.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002497.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002500.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002500.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002500.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002500.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002501.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002501.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002501.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002501.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002506.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002506.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002506.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002506.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002559.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002559.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002559.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002559.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002566.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002566.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002566.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002566.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002578.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002578.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002578.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002578.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002584.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002584.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002584.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002584.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002595.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002595.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002595.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002595.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002596.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002596.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002596.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002596.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002597.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002597.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002597.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002597.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002598.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002598.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002598.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002598.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002608.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002608.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002608.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002608.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002629.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002629.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002629.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002629.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002630.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002630.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002630.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002630.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0003000.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0003000.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0003000.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0003000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0003001.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0003001.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0003001.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0003001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004019.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004019.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004019.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004019.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004021.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004021.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004021.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004021.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004023.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004023.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004023.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004023.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004024.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004024.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004024.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004024.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004026.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004026.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004026.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004026.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004029.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004029.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004029.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004029.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004032.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004032.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004032.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004032.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004033.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004033.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004033.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004033.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004034.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004034.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004034.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004034.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004035.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004035.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004035.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004035.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004046.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004046.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004046.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004046.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004047.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004047.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004047.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004047.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0011002.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0011002.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0011002.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0011002.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0012011.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0012011.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0012011.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0012011.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0012012.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0012012.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0012012.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0012012.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019000.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019000.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019000.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019001.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019001.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019001.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019002.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019002.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019002.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0019002.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000000.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000000.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000000.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000061.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000061.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000061.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000061.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000062.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000062.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000062.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000062.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000066.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000066.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000066.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000066.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000068.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000068.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000068.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000068.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000071.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000071.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000071.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000071.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000092.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000092.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000092.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000092.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000104.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000104.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000104.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000104.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000105.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000105.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000105.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000105.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000106.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000106.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000106.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000106.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000107.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000107.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000107.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000107.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000108.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000108.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000108.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000108.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000109.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000109.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000109.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000109.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000110.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000110.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000110.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000110.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000111.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000111.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000111.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000111.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000463.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000463.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000463.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000463.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000465.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000465.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000465.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000465.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000466.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000466.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000466.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000466.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000467.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000468.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000474.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000474.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000474.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000474.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000922.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000922.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000922.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000922.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000949.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000990.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000990.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000990.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000990.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000991.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000991.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000991.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000991.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001016.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001016.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001016.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001016.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001048.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001048.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001048.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001048.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001062.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001062.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001062.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0001062.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002050.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002050.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002050.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002050.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002368.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0002530.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003100.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003100.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003100.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003100.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003133.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003133.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003133.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003133.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005156.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005156.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005156.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005156.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005423.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005423.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005423.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005423.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005564.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005564.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005564.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0005564.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006598.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006598.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006598.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006598.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006984.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006984.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006984.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0006984.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010000.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010000.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010000.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010000.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010199.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010199.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010199.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0010199.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015203.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015203.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015203.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015203.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015204.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015204.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015204.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0015204.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0016880.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0016880.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0016880.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0016880.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0034923.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0034923.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0034923.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0034923.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fmondo%2523excluded_subClassOf.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fmondo%2523excluded_subClassOf.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fmondo%2523excluded_subClassOf.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fmondo%2523excluded_subClassOf.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fmondo%2523should_conform_to.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fmondo%2523should_conform_to.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fmondo%2523should_conform_to.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fmondo%2523should_conform_to.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdate.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdate.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdate.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.org%252Fdc%252Felements%252F1.1%252Fdate.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252FconformsTo.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252FconformsTo.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252FconformsTo.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252FconformsTo.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252Fcreator.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252Fcreator.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252Fcreator.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fpurl.org%252Fdc%252Fterms%252Fcreator.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523id.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523shorthand.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523source.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523source.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523source.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523source.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json index 25a70ad4b..6f5b19a84 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json +++ b/testcases_expected_output_api/ontologies/gitissue502/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:02 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:03 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/properties.json b/testcases_expected_output_api/ontologies/gitissue502/properties.json index 82197536a..819401226 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/properties.json +++ b/testcases_expected_output_api/ontologies/gitissue502/properties.json @@ -3692,7 +3692,7 @@ } }, "annotation": { - "hasDbXref": [ + "has_dbxref": [ "RO:0004021" ], "id": [ @@ -3742,7 +3742,7 @@ } }, "annotation": { - "hasDbXref": [ + "has_dbxref": [ "RO:0004024" ], "id": [ @@ -4212,7 +4212,7 @@ "IAO_0000116": [ "A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist." ], - "hasDbXref": [ + "has_dbxref": [ "RO:0000053" ], "id": [ @@ -4346,7 +4346,7 @@ } }, "annotation": { - "hasDbXref": [ + "has_dbxref": [ "RO:0002162" ], "id": [ @@ -5010,7 +5010,7 @@ "IAO_0000116": [ "TODO: complete range axiom once more of CARO has been mireoted in to this ontology" ], - "hasDbXref": [ + "has_dbxref": [ "RO:0004026" ], "id": [ @@ -5044,7 +5044,7 @@ } }, "annotation": { - "hasDbXref": [ + "has_dbxref": [ "RO:0004029" ], "id": [ @@ -5196,11 +5196,11 @@ "is_root": true, "label": "hasBroadSynonym", "lang": "en", - "obo_id": "hasBroadSynonym", + "obo_id": "OIO:hasBroadSynonym", "ontology_iri": "http://purl.obolibrary.org/obo/mondo.owl", "ontology_name": "gitissue502", "ontology_prefix": "gitIssue502", - "short_form": "hasBroadSynonym", + "short_form": "OIO_hasBroadSynonym", "synonyms": [] }, { @@ -5218,11 +5218,11 @@ "is_root": true, "label": "hasDbXref", "lang": "en", - "obo_id": "hasDbXref", + "obo_id": "OIO:hasDbXref", "ontology_iri": "http://purl.obolibrary.org/obo/mondo.owl", "ontology_name": "gitissue502", "ontology_prefix": "gitIssue502", - "short_form": "hasDbXref", + "short_form": "OIO_hasDbXref", "synonyms": [] }, { @@ -5240,11 +5240,11 @@ "is_root": true, "label": "hasExactSynonym", "lang": "en", - "obo_id": "hasExactSynonym", + "obo_id": "OIO:hasExactSynonym", "ontology_iri": "http://purl.obolibrary.org/obo/mondo.owl", "ontology_name": "gitissue502", "ontology_prefix": "gitIssue502", - "short_form": "hasExactSynonym", + "short_form": "OIO_hasExactSynonym", "synonyms": [] }, { @@ -5262,11 +5262,11 @@ "is_root": true, "label": "hasNarrowSynonym", "lang": "en", - "obo_id": "hasNarrowSynonym", + "obo_id": "OIO:hasNarrowSynonym", "ontology_iri": "http://purl.obolibrary.org/obo/mondo.owl", "ontology_name": "gitissue502", "ontology_prefix": "gitIssue502", - "short_form": "hasNarrowSynonym", + "short_form": "OIO_hasNarrowSynonym", "synonyms": [] }, { @@ -5284,11 +5284,11 @@ "is_root": true, "label": "hasRelatedSynonym", "lang": "en", - "obo_id": "hasRelatedSynonym", + "obo_id": "OIO:hasRelatedSynonym", "ontology_iri": "http://purl.obolibrary.org/obo/mondo.owl", "ontology_name": "gitissue502", "ontology_prefix": "gitIssue502", - "short_form": "hasRelatedSynonym", + "short_form": "OIO_hasRelatedSynonym", "synonyms": [] }, { @@ -5306,11 +5306,11 @@ "is_root": true, "label": "hasSynonymType", "lang": "en", - "obo_id": "hasSynonymType", + "obo_id": "OIO:hasSynonymType", "ontology_iri": "http://purl.obolibrary.org/obo/mondo.owl", "ontology_name": "gitissue502", "ontology_prefix": "gitIssue502", - "short_form": "hasSynonymType", + "short_form": "OIO_hasSynonymType", "synonyms": [] }, { @@ -5350,11 +5350,11 @@ "is_root": true, "label": "inSubset", "lang": "en", - "obo_id": "inSubset", + "obo_id": "OIO:inSubset", "ontology_iri": "http://purl.obolibrary.org/obo/mondo.owl", "ontology_name": "gitissue502", "ontology_prefix": "gitIssue502", - "short_form": "inSubset", + "short_form": "OIO_inSubset", "synonyms": [] }, { @@ -5416,11 +5416,11 @@ "is_root": true, "label": "label", "lang": "en", - "obo_id": "label", + "obo_id": "RDFS:label", "ontology_iri": "http://purl.obolibrary.org/obo/mondo.owl", "ontology_name": "gitissue502", "ontology_prefix": "gitIssue502", - "short_form": "label", + "short_form": "RDFS_label", "synonyms": [] }, { @@ -5438,11 +5438,11 @@ "is_root": true, "label": "closeMatch", "lang": "en", - "obo_id": "closeMatch", + "obo_id": "SKOS:closeMatch", "ontology_iri": "http://purl.obolibrary.org/obo/mondo.owl", "ontology_name": "gitissue502", "ontology_prefix": "gitIssue502", - "short_form": "closeMatch", + "short_form": "SKOS_closeMatch", "synonyms": [] }, { @@ -5460,11 +5460,11 @@ "is_root": true, "label": "exactMatch", "lang": "en", - "obo_id": "exactMatch", + "obo_id": "SKOS:exactMatch", "ontology_iri": "http://purl.obolibrary.org/obo/mondo.owl", "ontology_name": "gitissue502", "ontology_prefix": "gitIssue502", - "short_form": "exactMatch", + "short_form": "SKOS_exactMatch", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000053.json b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000053.json index dbe1719c0..c016b1120 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000053.json +++ b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0000053.json @@ -9,7 +9,7 @@ "IAO_0000116": [ "A bearer can have many dependents, and its dependents can exist for different periods of time, but none of its dependents can exist when the bearer does not exist." ], - "hasDbXref": [ + "has_dbxref": [ "RO:0000053" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002162.json b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002162.json index e2cffc786..6d09a52f8 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002162.json +++ b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0002162.json @@ -6,7 +6,7 @@ ], "synonyms": [], "annotation": { - "hasDbXref": [ + "has_dbxref": [ "RO:0002162" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004021.json b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004021.json index ccaa6aad3..24bd30168 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004021.json +++ b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004021.json @@ -7,7 +7,7 @@ ], "synonyms": [], "annotation": { - "hasDbXref": [ + "has_dbxref": [ "RO:0004021" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004024.json b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004024.json index 52828a544..eb42a8dae 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004024.json +++ b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004024.json @@ -6,7 +6,7 @@ ], "synonyms": [], "annotation": { - "hasDbXref": [ + "has_dbxref": [ "RO:0004024" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004026.json b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004026.json index 478f97534..b55445292 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004026.json +++ b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004026.json @@ -9,7 +9,7 @@ "IAO_0000116": [ "TODO: complete range axiom once more of CARO has been mireoted in to this ontology" ], - "hasDbXref": [ + "has_dbxref": [ "RO:0004026" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004029.json b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004029.json index 96701d08b..b0f9d02d3 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004029.json +++ b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FRO_0004029.json @@ -6,7 +6,7 @@ ], "synonyms": [], "annotation": { - "hasDbXref": [ + "has_dbxref": [ "RO:0004029" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json index d5b5c6f1b..8a8cd1adf 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json +++ b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json @@ -12,8 +12,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "hasBroadSynonym", - "obo_id": "hasBroadSynonym", + "short_form": "OIO_hasBroadSynonym", + "obo_id": "OIO:hasBroadSynonym", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym?lang=en" diff --git a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json index bcf804dde..4a9cb6ddb 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json +++ b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json @@ -12,8 +12,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "hasDbXref", - "obo_id": "hasDbXref", + "short_form": "OIO_hasDbXref", + "obo_id": "OIO:hasDbXref", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref?lang=en" diff --git a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json index 77d7d0b35..f8014ddea 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json +++ b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json @@ -12,8 +12,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "hasExactSynonym", - "obo_id": "hasExactSynonym", + "short_form": "OIO_hasExactSynonym", + "obo_id": "OIO:hasExactSynonym", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym?lang=en" diff --git a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json index 9f0829b15..10fff6bd8 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json +++ b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json @@ -12,8 +12,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "hasNarrowSynonym", - "obo_id": "hasNarrowSynonym", + "short_form": "OIO_hasNarrowSynonym", + "obo_id": "OIO:hasNarrowSynonym", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym?lang=en" diff --git a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json index 1f831b59d..d76b47685 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json +++ b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json @@ -12,8 +12,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "hasRelatedSynonym", - "obo_id": "hasRelatedSynonym", + "short_form": "OIO_hasRelatedSynonym", + "obo_id": "OIO:hasRelatedSynonym", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym?lang=en" diff --git a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json index d6ef9d63c..3ac93b9b7 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json +++ b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json @@ -12,8 +12,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "hasSynonymType", - "obo_id": "hasSynonymType", + "short_form": "OIO_hasSynonymType", + "obo_id": "OIO:hasSynonymType", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType?lang=en" diff --git a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json index cb3091ec5..1591aeae6 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json +++ b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json @@ -12,8 +12,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "inSubset", - "obo_id": "inSubset", + "short_form": "OIO_inSubset", + "obo_id": "OIO:inSubset", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset?lang=en" diff --git a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json index 94c101e8a..31768a6e9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json +++ b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json @@ -12,8 +12,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "label", - "obo_id": "label", + "short_form": "RDFS_label", + "obo_id": "RDFS:label", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label?lang=en" diff --git a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json index e2f1b8461..87d8125a2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json +++ b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json @@ -12,8 +12,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "closeMatch", - "obo_id": "closeMatch", + "short_form": "SKOS_closeMatch", + "obo_id": "SKOS:closeMatch", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch?lang=en" diff --git a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json index cddbabf5a..224e171fa 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json +++ b/testcases_expected_output_api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json @@ -12,8 +12,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "exactMatch", - "obo_id": "exactMatch", + "short_form": "SKOS_exactMatch", + "obo_id": "SKOS:exactMatch", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/gitissue502/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch?lang=en" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms.json b/testcases_expected_output_api/ontologies/gitissue502/terms.json index 6de45722c..e7444419d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms.json @@ -5627,7 +5627,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -5883,7 +5883,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -6037,7 +6037,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -6277,7 +6277,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -6480,7 +6480,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -6689,7 +6689,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -6837,7 +6837,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -7086,7 +7086,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -7207,7 +7207,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -7450,7 +7450,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -7733,7 +7733,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -7908,7 +7908,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -8162,7 +8162,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -8460,7 +8460,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -8636,7 +8636,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -8735,7 +8735,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -8846,7 +8846,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -8944,7 +8944,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -9070,7 +9070,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -9201,7 +9201,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -9297,7 +9297,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -9420,7 +9420,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -9546,7 +9546,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -9857,7 +9857,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", @@ -10185,7 +10185,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -10296,7 +10296,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -10551,7 +10551,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -10735,7 +10735,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" @@ -10825,7 +10825,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ @@ -11312,7 +11312,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ @@ -11441,7 +11441,7 @@ } }, "annotation": { - "hasDbXref": [ + "has_dbxref": [ "EFO:0004420" ], "id": [ @@ -11705,7 +11705,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002/descendants.json index 402bbc590..755f9d9ab 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002/descendants.json @@ -1152,7 +1152,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -1408,7 +1408,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -1562,7 +1562,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -1802,7 +1802,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -2005,7 +2005,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -2214,7 +2214,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -2362,7 +2362,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -2611,7 +2611,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -2732,7 +2732,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -2975,7 +2975,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -3258,7 +3258,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -3433,7 +3433,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -3687,7 +3687,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -3985,7 +3985,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -4161,7 +4161,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -4260,7 +4260,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -4371,7 +4371,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -4469,7 +4469,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -4595,7 +4595,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -4726,7 +4726,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -4822,7 +4822,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -4945,7 +4945,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -5071,7 +5071,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -5382,7 +5382,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", @@ -5710,7 +5710,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -5821,7 +5821,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -6076,7 +6076,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -6260,7 +6260,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" @@ -6350,7 +6350,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ @@ -6837,7 +6837,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ @@ -6966,7 +6966,7 @@ } }, "annotation": { - "hasDbXref": [ + "has_dbxref": [ "EFO:0004420" ], "id": [ @@ -7230,7 +7230,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002/hierarchicalDescendants.json index 402bbc590..755f9d9ab 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000002/hierarchicalDescendants.json @@ -1152,7 +1152,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -1408,7 +1408,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -1562,7 +1562,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -1802,7 +1802,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -2005,7 +2005,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -2214,7 +2214,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -2362,7 +2362,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -2611,7 +2611,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -2732,7 +2732,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -2975,7 +2975,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -3258,7 +3258,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -3433,7 +3433,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -3687,7 +3687,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -3985,7 +3985,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -4161,7 +4161,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -4260,7 +4260,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -4371,7 +4371,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -4469,7 +4469,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -4595,7 +4595,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -4726,7 +4726,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -4822,7 +4822,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -4945,7 +4945,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -5071,7 +5071,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -5382,7 +5382,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", @@ -5710,7 +5710,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -5821,7 +5821,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -6076,7 +6076,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -6260,7 +6260,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" @@ -6350,7 +6350,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ @@ -6837,7 +6837,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ @@ -6966,7 +6966,7 @@ } }, "annotation": { - "hasDbXref": [ + "has_dbxref": [ "EFO:0004420" ], "id": [ @@ -7230,7 +7230,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016/children.json index 0a52d156b..afc45bb97 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016/children.json @@ -89,7 +89,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016/descendants.json index 4e3927144..93024b495 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016/descendants.json @@ -89,7 +89,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -345,7 +345,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -499,7 +499,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -739,7 +739,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -942,7 +942,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -1151,7 +1151,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -1299,7 +1299,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -1548,7 +1548,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -1669,7 +1669,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -1912,7 +1912,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -2195,7 +2195,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -2370,7 +2370,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -2624,7 +2624,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -2922,7 +2922,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -3098,7 +3098,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -3197,7 +3197,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -3308,7 +3308,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -3406,7 +3406,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -3532,7 +3532,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -3663,7 +3663,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -3759,7 +3759,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -3882,7 +3882,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -4008,7 +4008,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -4319,7 +4319,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", @@ -4647,7 +4647,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -4758,7 +4758,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -5013,7 +5013,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -5197,7 +5197,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" @@ -5293,7 +5293,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ @@ -5554,7 +5554,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016/hierarchicalChildren.json index 0a52d156b..afc45bb97 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016/hierarchicalChildren.json @@ -89,7 +89,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016/hierarchicalDescendants.json index 4e3927144..93024b495 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000016/hierarchicalDescendants.json @@ -89,7 +89,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -345,7 +345,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -499,7 +499,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -739,7 +739,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -942,7 +942,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -1151,7 +1151,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -1299,7 +1299,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -1548,7 +1548,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -1669,7 +1669,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -1912,7 +1912,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -2195,7 +2195,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -2370,7 +2370,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -2624,7 +2624,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -2922,7 +2922,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -3098,7 +3098,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -3197,7 +3197,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -3308,7 +3308,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -3406,7 +3406,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -3532,7 +3532,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -3663,7 +3663,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -3759,7 +3759,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -3882,7 +3882,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -4008,7 +4008,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -4319,7 +4319,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", @@ -4647,7 +4647,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -4758,7 +4758,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -5013,7 +5013,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -5197,7 +5197,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" @@ -5293,7 +5293,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ @@ -5554,7 +5554,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017/descendants.json index 3fa0656bd..e185d3aa0 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017/descendants.json @@ -193,7 +193,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -449,7 +449,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -603,7 +603,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -843,7 +843,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -1046,7 +1046,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -1255,7 +1255,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -1403,7 +1403,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -1652,7 +1652,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -1773,7 +1773,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -2016,7 +2016,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -2299,7 +2299,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -2474,7 +2474,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -2728,7 +2728,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -3026,7 +3026,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -3202,7 +3202,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -3301,7 +3301,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -3412,7 +3412,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -3510,7 +3510,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -3636,7 +3636,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -3767,7 +3767,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -3863,7 +3863,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -3986,7 +3986,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -4112,7 +4112,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -4423,7 +4423,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", @@ -4751,7 +4751,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -4862,7 +4862,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -5117,7 +5117,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -5301,7 +5301,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" @@ -5397,7 +5397,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ @@ -5658,7 +5658,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017/hierarchicalDescendants.json index 3fa0656bd..e185d3aa0 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000017/hierarchicalDescendants.json @@ -193,7 +193,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -449,7 +449,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -603,7 +603,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -843,7 +843,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -1046,7 +1046,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -1255,7 +1255,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -1403,7 +1403,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -1652,7 +1652,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -1773,7 +1773,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -2016,7 +2016,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -2299,7 +2299,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -2474,7 +2474,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -2728,7 +2728,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -3026,7 +3026,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -3202,7 +3202,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -3301,7 +3301,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -3412,7 +3412,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -3510,7 +3510,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -3636,7 +3636,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -3767,7 +3767,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -3863,7 +3863,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -3986,7 +3986,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -4112,7 +4112,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -4423,7 +4423,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", @@ -4751,7 +4751,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -4862,7 +4862,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -5117,7 +5117,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -5301,7 +5301,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" @@ -5397,7 +5397,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ @@ -5658,7 +5658,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020/descendants.json index 933a8d553..911b078d9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020/descendants.json @@ -289,7 +289,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -545,7 +545,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -699,7 +699,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -939,7 +939,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -1142,7 +1142,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -1351,7 +1351,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -1499,7 +1499,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -1748,7 +1748,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -1869,7 +1869,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -2112,7 +2112,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -2395,7 +2395,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -2570,7 +2570,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -2824,7 +2824,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -3122,7 +3122,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -3298,7 +3298,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -3397,7 +3397,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -3508,7 +3508,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -3606,7 +3606,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -3732,7 +3732,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -3863,7 +3863,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -3959,7 +3959,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -4082,7 +4082,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -4208,7 +4208,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -4519,7 +4519,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", @@ -4847,7 +4847,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -4958,7 +4958,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -5213,7 +5213,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -5397,7 +5397,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" @@ -5487,7 +5487,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ @@ -5974,7 +5974,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ @@ -6103,7 +6103,7 @@ } }, "annotation": { - "hasDbXref": [ + "has_dbxref": [ "EFO:0004420" ], "id": [ @@ -6367,7 +6367,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020/hierarchicalDescendants.json index 933a8d553..911b078d9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000020/hierarchicalDescendants.json @@ -289,7 +289,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -545,7 +545,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -699,7 +699,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -939,7 +939,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -1142,7 +1142,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -1351,7 +1351,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -1499,7 +1499,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -1748,7 +1748,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -1869,7 +1869,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -2112,7 +2112,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -2395,7 +2395,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -2570,7 +2570,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -2824,7 +2824,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -3122,7 +3122,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -3298,7 +3298,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -3397,7 +3397,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -3508,7 +3508,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -3606,7 +3606,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -3732,7 +3732,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -3863,7 +3863,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -3959,7 +3959,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -4082,7 +4082,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -4208,7 +4208,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -4519,7 +4519,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", @@ -4847,7 +4847,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -4958,7 +4958,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -5213,7 +5213,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -5397,7 +5397,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" @@ -5487,7 +5487,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ @@ -5974,7 +5974,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ @@ -6103,7 +6103,7 @@ } }, "annotation": { - "hasDbXref": [ + "has_dbxref": [ "EFO:0004420" ], "id": [ @@ -6367,7 +6367,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json index 9f85d5354..4fb3056f3 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001.json @@ -25,7 +25,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001/descendants.json index 883ed03f1..66b7930c5 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001/descendants.json @@ -43,7 +43,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -197,7 +197,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -437,7 +437,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -640,7 +640,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -849,7 +849,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -997,7 +997,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -1246,7 +1246,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -1367,7 +1367,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -1610,7 +1610,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -1893,7 +1893,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -2068,7 +2068,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -2322,7 +2322,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -2620,7 +2620,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -2796,7 +2796,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -2895,7 +2895,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -3006,7 +3006,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -3104,7 +3104,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -3230,7 +3230,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -3361,7 +3361,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -3457,7 +3457,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -3580,7 +3580,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -3706,7 +3706,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -4017,7 +4017,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", @@ -4345,7 +4345,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -4456,7 +4456,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -4711,7 +4711,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -4895,7 +4895,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" @@ -4991,7 +4991,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ @@ -5252,7 +5252,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001/hierarchicalDescendants.json index 883ed03f1..66b7930c5 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0000001/hierarchicalDescendants.json @@ -43,7 +43,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -197,7 +197,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -437,7 +437,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -640,7 +640,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -849,7 +849,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -997,7 +997,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -1246,7 +1246,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -1367,7 +1367,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -1610,7 +1610,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -1893,7 +1893,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -2068,7 +2068,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -2322,7 +2322,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -2620,7 +2620,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -2796,7 +2796,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -2895,7 +2895,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -3006,7 +3006,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -3104,7 +3104,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -3230,7 +3230,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -3361,7 +3361,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -3457,7 +3457,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -3580,7 +3580,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -3706,7 +3706,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -4017,7 +4017,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", @@ -4345,7 +4345,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -4456,7 +4456,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -4711,7 +4711,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -4895,7 +4895,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" @@ -4991,7 +4991,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ @@ -5252,7 +5252,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146.json index 72ae0f80f..128450725 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146.json @@ -16,7 +16,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/ancestors.json index 6845bffad..5087c1e0f 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -471,7 +471,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -673,7 +673,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -918,7 +918,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/children.json index b83bb8d6c..6462106b0 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/children.json @@ -47,7 +47,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/descendants.json index 1fda89311..a6f330346 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -464,7 +464,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/hierarchicalAncestors.json index 6845bffad..5087c1e0f 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -471,7 +471,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -673,7 +673,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -918,7 +918,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/hierarchicalChildren.json index b83bb8d6c..6462106b0 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/hierarchicalChildren.json @@ -47,7 +47,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/hierarchicalDescendants.json index 1fda89311..a6f330346 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -464,7 +464,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/hierarchicalParents.json index ee2ab4ba0..a44d4a754 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/hierarchicalParents.json @@ -49,7 +49,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/parents.json index ee2ab4ba0..a44d4a754 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002146/parents.json @@ -49,7 +49,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254.json index 34bfae308..a5e72b3ff 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254.json @@ -25,7 +25,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/ancestors.json index e5bc303e6..efe43eed2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/children.json index ee9895bfa..60feea429 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/children.json @@ -49,7 +49,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/descendants.json index 25dce23db..fd28acdb5 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -338,7 +338,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/hierarchicalAncestors.json index e5bc303e6..efe43eed2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/hierarchicalChildren.json index ee9895bfa..60feea429 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/hierarchicalChildren.json @@ -49,7 +49,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/hierarchicalDescendants.json index 25dce23db..fd28acdb5 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002254/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -338,7 +338,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json index 0afd0a760..7c820f7d8 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259.json @@ -25,7 +25,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/ancestors.json index bbbe6162c..6f773f7d3 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -470,7 +470,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -715,7 +715,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/children.json index 26e29e76b..37eb84eb0 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/children.json @@ -43,7 +43,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/descendants.json index e80b2ed24..d543f68c1 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/descendants.json @@ -43,7 +43,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -185,7 +185,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -480,7 +480,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -613,7 +613,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/hierarchicalAncestors.json index bbbe6162c..6f773f7d3 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -470,7 +470,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -715,7 +715,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/hierarchicalChildren.json index 26e29e76b..37eb84eb0 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/hierarchicalChildren.json @@ -43,7 +43,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/hierarchicalDescendants.json index e80b2ed24..d543f68c1 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/hierarchicalDescendants.json @@ -43,7 +43,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -185,7 +185,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -480,7 +480,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -613,7 +613,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/hierarchicalParents.json index cc1ec7378..d4a39324e 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/hierarchicalParents.json @@ -48,7 +48,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -293,7 +293,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/parents.json index cc1ec7378..d4a39324e 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002259/parents.json @@ -48,7 +48,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -293,7 +293,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263.json index a90700e2e..891df1dfb 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263.json @@ -29,7 +29,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/ancestors.json index fef3f21f4..ea1117b38 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -470,7 +470,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/children.json index 92bc22144..e1eea887e 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/children.json @@ -45,7 +45,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/descendants.json index 560a377d0..ab2680014 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -462,7 +462,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -558,7 +558,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/hierarchicalAncestors.json index fef3f21f4..ea1117b38 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -470,7 +470,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/hierarchicalChildren.json index 92bc22144..e1eea887e 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/hierarchicalChildren.json @@ -45,7 +45,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/hierarchicalDescendants.json index 560a377d0..ab2680014 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -462,7 +462,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -558,7 +558,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/hierarchicalParents.json index e02bd446d..28cfcc606 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/hierarchicalParents.json @@ -48,7 +48,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/parents.json index e02bd446d..28cfcc606 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002263/parents.json @@ -48,7 +48,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320.json index f3864999e..a163b8676 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320.json @@ -17,7 +17,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/ancestors.json index 80eab2554..4633f7e8d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -472,7 +472,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/children.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/children.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/descendants.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/hierarchicalAncestors.json index 80eab2554..4633f7e8d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -472,7 +472,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/hierarchicalChildren.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/hierarchicalChildren.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/hierarchicalDescendants.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/hierarchicalParents.json index 2b5a0cb53..644ef0d44 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/hierarchicalParents.json @@ -50,7 +50,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/parents.json index 2b5a0cb53..644ef0d44 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0002320/parents.json @@ -50,7 +50,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847.json index 901da26f9..f169f6889 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847.json @@ -30,7 +30,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/ancestors.json index e5bc303e6..efe43eed2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/children.json index 2475441e4..5d40bba87 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/children.json @@ -48,7 +48,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -169,7 +169,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -481,7 +481,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/descendants.json index cc235fc4a..fa0bb5023 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -465,7 +465,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -588,7 +588,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -714,7 +714,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -1026,7 +1026,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/hierarchicalAncestors.json index e5bc303e6..efe43eed2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/hierarchicalChildren.json index 2475441e4..5d40bba87 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/hierarchicalChildren.json @@ -48,7 +48,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -169,7 +169,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -481,7 +481,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/hierarchicalDescendants.json index cc235fc4a..fa0bb5023 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003847/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -465,7 +465,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -588,7 +588,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -714,7 +714,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -1026,7 +1026,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916.json index 8c40ce0dc..c2f38ecc7 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916.json @@ -12,7 +12,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/ancestors.json index 62933945d..fa2951cf6 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -469,7 +469,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/children.json index d7bc78869..ac134979f 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/children.json @@ -45,7 +45,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/descendants.json index c8f93b126..59df71956 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -334,7 +334,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -517,7 +517,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -648,7 +648,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/hierarchicalAncestors.json index 62933945d..fa2951cf6 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -469,7 +469,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/hierarchicalChildren.json index d7bc78869..ac134979f 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/hierarchicalChildren.json @@ -45,7 +45,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/hierarchicalDescendants.json index c8f93b126..59df71956 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -334,7 +334,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -517,7 +517,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -648,7 +648,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/hierarchicalParents.json index 83aee1b83..4091bf315 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/hierarchicalParents.json @@ -47,7 +47,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/parents.json index 83aee1b83..4091bf315 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0003916/parents.json @@ -47,7 +47,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json index fb4e02530..879c1a3d2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039.json @@ -25,7 +25,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/ancestors.json index 24063e011..d3e121052 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/children.json index 7a24439f0..5ce238621 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/children.json @@ -49,7 +49,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -252,7 +252,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/descendants.json index 1fa0ff583..c73c55bd0 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/descendants.json @@ -43,7 +43,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -198,7 +198,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -401,7 +401,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -600,7 +600,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -895,7 +895,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -1026,7 +1026,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -1122,7 +1122,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -1243,7 +1243,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/hierarchicalAncestors.json index 24063e011..d3e121052 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/hierarchicalChildren.json index 7a24439f0..5ce238621 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/hierarchicalChildren.json @@ -49,7 +49,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -252,7 +252,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/hierarchicalDescendants.json index 1fa0ff583..c73c55bd0 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005039/hierarchicalDescendants.json @@ -43,7 +43,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -198,7 +198,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -401,7 +401,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -600,7 +600,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -895,7 +895,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -1026,7 +1026,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -1122,7 +1122,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -1243,7 +1243,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071.json index 19a3122a7..bdf274894 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071.json @@ -29,7 +29,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/ancestors.json index 24063e011..d3e121052 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/children.json index ef47541c9..f96d20eb9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/children.json @@ -46,7 +46,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -194,7 +194,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/descendants.json index 805b198c8..25070672a 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/descendants.json @@ -46,7 +46,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -181,7 +181,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -647,7 +647,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/hierarchicalAncestors.json index 24063e011..d3e121052 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/hierarchicalChildren.json index ef47541c9..f96d20eb9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/hierarchicalChildren.json @@ -46,7 +46,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -194,7 +194,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/hierarchicalDescendants.json index 805b198c8..25070672a 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005071/hierarchicalDescendants.json @@ -46,7 +46,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -181,7 +181,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -647,7 +647,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137.json index 223cc8de3..19c17d110 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137.json @@ -20,7 +20,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/ancestors.json index e5bc303e6..efe43eed2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/children.json index c41ec09b3..0b1aa7f35 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/children.json @@ -42,7 +42,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/descendants.json index 4597420f0..a3df75212 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/descendants.json @@ -42,7 +42,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -151,7 +151,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -449,7 +449,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -632,7 +632,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -763,7 +763,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/hierarchicalAncestors.json index e5bc303e6..efe43eed2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/hierarchicalChildren.json index c41ec09b3..0b1aa7f35 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/hierarchicalChildren.json @@ -42,7 +42,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/hierarchicalDescendants.json index 4597420f0..a3df75212 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005137/hierarchicalDescendants.json @@ -42,7 +42,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -151,7 +151,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -449,7 +449,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -632,7 +632,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -763,7 +763,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json index 842f87177..fd6858f99 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151.json @@ -30,7 +30,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/ancestors.json index 24063e011..d3e121052 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/children.json index d9be2710a..687c174c0 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/children.json @@ -49,7 +49,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -245,7 +245,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -349,7 +349,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -485,7 +485,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/descendants.json index 1035d2691..0fd896505 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/descendants.json @@ -43,7 +43,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -198,7 +198,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -388,7 +388,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -683,7 +683,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -787,7 +787,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -913,7 +913,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -1048,7 +1048,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -1174,7 +1174,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -1486,7 +1486,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -1734,7 +1734,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/hierarchicalAncestors.json index 24063e011..d3e121052 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/hierarchicalChildren.json index d9be2710a..687c174c0 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/hierarchicalChildren.json @@ -49,7 +49,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -245,7 +245,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -349,7 +349,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -485,7 +485,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/hierarchicalDescendants.json index 1035d2691..0fd896505 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0005151/hierarchicalDescendants.json @@ -43,7 +43,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -198,7 +198,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -388,7 +388,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -683,7 +683,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -787,7 +787,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -913,7 +913,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -1048,7 +1048,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -1174,7 +1174,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -1486,7 +1486,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -1734,7 +1734,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300.json index cb5c73545..0b2c0175d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300.json @@ -29,7 +29,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300/ancestors.json index dd88315f2..74b044b18 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -465,7 +465,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -619,7 +619,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -859,7 +859,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -1062,7 +1062,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -1271,7 +1271,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -1419,7 +1419,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -1668,7 +1668,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -1789,7 +1789,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -2032,7 +2032,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -2315,7 +2315,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -2490,7 +2490,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -2753,7 +2753,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -2929,7 +2929,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -3028,7 +3028,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -3139,7 +3139,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -3237,7 +3237,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -3363,7 +3363,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -3494,7 +3494,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -3590,7 +3590,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -3713,7 +3713,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -3839,7 +3839,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -4150,7 +4150,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", @@ -4478,7 +4478,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -4589,7 +4589,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -4844,7 +4844,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -5028,7 +5028,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" @@ -5124,7 +5124,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ @@ -5385,7 +5385,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300/hierarchicalAncestors.json index dd88315f2..74b044b18 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -465,7 +465,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -619,7 +619,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -859,7 +859,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -1062,7 +1062,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -1271,7 +1271,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -1419,7 +1419,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -1668,7 +1668,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -1789,7 +1789,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -2032,7 +2032,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -2315,7 +2315,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -2490,7 +2490,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -2753,7 +2753,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -2929,7 +2929,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -3028,7 +3028,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -3139,7 +3139,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -3237,7 +3237,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -3363,7 +3363,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -3494,7 +3494,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -3590,7 +3590,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -3713,7 +3713,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -3839,7 +3839,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -4150,7 +4150,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", @@ -4478,7 +4478,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -4589,7 +4589,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -4844,7 +4844,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -5028,7 +5028,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" @@ -5124,7 +5124,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ @@ -5385,7 +5385,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300/hierarchicalParents.json index fe14a4fbd..705b61b9e 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300/hierarchicalParents.json @@ -46,7 +46,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -184,7 +184,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -291,7 +291,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -426,7 +426,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -556,7 +556,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300/parents.json index fe14a4fbd..705b61b9e 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0008300/parents.json @@ -46,7 +46,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -184,7 +184,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -291,7 +291,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -426,7 +426,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -556,7 +556,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122.json index b8cb0fae3..98d2b70f0 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122.json @@ -16,7 +16,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/ancestors.json index 5b30b220c..bd8b9ec54 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -464,7 +464,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -584,7 +584,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/children.json index ecc5db137..a79bff9fa 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/children.json @@ -52,7 +52,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/descendants.json index ad3855489..76326b4e2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -338,7 +338,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -469,7 +469,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/hierarchicalAncestors.json index 5b30b220c..bd8b9ec54 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -464,7 +464,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -584,7 +584,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/hierarchicalChildren.json index ecc5db137..a79bff9fa 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/hierarchicalChildren.json @@ -52,7 +52,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/hierarchicalDescendants.json index ad3855489..76326b4e2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -338,7 +338,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -469,7 +469,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/hierarchicalParents.json index 0f57f3448..c194d14f8 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/hierarchicalParents.json @@ -42,7 +42,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/parents.json index 0f57f3448..c194d14f8 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0011122/parents.json @@ -42,7 +42,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127.json index 2c02423f9..5f581efef 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127.json @@ -12,7 +12,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/ancestors.json index de0d71054..d8e733b08 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -474,7 +474,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/children.json index 5fd481bdd..2f3c19d46 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/children.json @@ -39,7 +39,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/descendants.json index 1efd72084..a13f00cb2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -456,7 +456,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/hierarchicalAncestors.json index de0d71054..d8e733b08 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -474,7 +474,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/hierarchicalChildren.json index 5fd481bdd..2f3c19d46 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/hierarchicalChildren.json @@ -39,7 +39,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/hierarchicalDescendants.json index 1efd72084..a13f00cb2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -456,7 +456,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/hierarchicalParents.json index 71f790737..db40e56af 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/hierarchicalParents.json @@ -52,7 +52,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/parents.json index 71f790737..db40e56af 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015127/parents.json @@ -52,7 +52,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160.json index 5f2f12d1a..a1c9dc944 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160.json @@ -10,7 +10,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/ancestors.json index d071f3aa3..b231199ae 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -467,7 +467,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -572,7 +572,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -762,7 +762,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/children.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/children.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/descendants.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/hierarchicalAncestors.json index d071f3aa3..b231199ae 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -467,7 +467,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -572,7 +572,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -762,7 +762,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/hierarchicalChildren.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/hierarchicalChildren.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/hierarchicalDescendants.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/hierarchicalParents.json index 3a9322905..a8bfb5cf5 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/hierarchicalParents.json @@ -45,7 +45,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/parents.json index 3a9322905..a8bfb5cf5 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015160/parents.json @@ -45,7 +45,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330.json index badcb3803..ace255619 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330.json @@ -16,7 +16,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/ancestors.json index 89ad6e8fe..899600b6c 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -468,7 +468,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -658,7 +658,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/children.json index ee9895bfa..60feea429 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/children.json @@ -49,7 +49,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/descendants.json index 25dce23db..fd28acdb5 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -338,7 +338,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/hierarchicalAncestors.json index 89ad6e8fe..899600b6c 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -468,7 +468,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -658,7 +658,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/hierarchicalChildren.json index ee9895bfa..60feea429 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/hierarchicalChildren.json @@ -49,7 +49,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/hierarchicalDescendants.json index 25dce23db..fd28acdb5 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -338,7 +338,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/hierarchicalParents.json index b3a0f61de..f625373b5 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/hierarchicalParents.json @@ -46,7 +46,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/parents.json index b3a0f61de..f625373b5 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015330/parents.json @@ -46,7 +46,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514.json index dee2142ee..3643fbde7 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514.json @@ -12,7 +12,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/ancestors.json index de0d71054..d8e733b08 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -474,7 +474,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/children.json index 5fd481bdd..2f3c19d46 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/children.json @@ -39,7 +39,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/descendants.json index 1efd72084..a13f00cb2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -456,7 +456,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/hierarchicalAncestors.json index de0d71054..d8e733b08 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -474,7 +474,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/hierarchicalChildren.json index 5fd481bdd..2f3c19d46 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/hierarchicalChildren.json @@ -39,7 +39,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/hierarchicalDescendants.json index 1efd72084..a13f00cb2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -456,7 +456,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/hierarchicalParents.json index 71f790737..db40e56af 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/hierarchicalParents.json @@ -52,7 +52,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/parents.json index 71f790737..db40e56af 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015514/parents.json @@ -52,7 +52,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770.json index 863e1dccc..bf1d40619 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770.json @@ -12,7 +12,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/ancestors.json index 7f0a25c5c..93908d963 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -465,7 +465,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -620,7 +620,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -823,7 +823,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -1035,7 +1035,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -1290,7 +1290,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -1535,7 +1535,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -1795,7 +1795,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -1899,7 +1899,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -2028,7 +2028,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -2124,7 +2124,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -2245,7 +2245,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -2544,7 +2544,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/children.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/children.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/descendants.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/hierarchicalAncestors.json index 7f0a25c5c..93908d963 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -465,7 +465,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -620,7 +620,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -823,7 +823,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -1035,7 +1035,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -1290,7 +1290,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -1535,7 +1535,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -1795,7 +1795,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -1899,7 +1899,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -2028,7 +2028,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -2124,7 +2124,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -2245,7 +2245,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -2544,7 +2544,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/hierarchicalChildren.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/hierarchicalChildren.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/hierarchicalDescendants.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/hierarchicalParents.json index e70c69700..4d9082043 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/hierarchicalParents.json @@ -48,7 +48,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -169,7 +169,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -468,7 +468,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/parents.json index e70c69700..4d9082043 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015770/parents.json @@ -48,7 +48,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -169,7 +169,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -468,7 +468,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860.json index 5228e4cd6..30cf5c4e7 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860.json @@ -15,7 +15,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/ancestors.json index 4c59bd7da..c58fa9176 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -471,7 +471,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -682,7 +682,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/children.json index db9bafe1b..cfe079b02 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/children.json @@ -48,7 +48,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/descendants.json index 1a8037272..bf98b6f3a 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -465,7 +465,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/hierarchicalAncestors.json index 4c59bd7da..c58fa9176 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -471,7 +471,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -682,7 +682,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/hierarchicalChildren.json index db9bafe1b..cfe079b02 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/hierarchicalChildren.json @@ -48,7 +48,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/hierarchicalDescendants.json index 1a8037272..bf98b6f3a 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -465,7 +465,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/hierarchicalParents.json index 890066306..063f1b67d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/hierarchicalParents.json @@ -49,7 +49,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/parents.json index 890066306..063f1b67d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0015860/parents.json @@ -49,7 +49,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072.json index fa35bbaaa..f94187a96 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072.json @@ -18,7 +18,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/ancestors.json index ed1fd8417..080ba1519 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -471,7 +471,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -683,7 +683,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -938,7 +938,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -1176,7 +1176,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/children.json index 7a2115dd8..d5eab431d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/children.json @@ -42,7 +42,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/descendants.json index e5ea49c10..4575ef69d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/hierarchicalAncestors.json index ed1fd8417..080ba1519 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -471,7 +471,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -683,7 +683,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -938,7 +938,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -1176,7 +1176,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/hierarchicalChildren.json index 7a2115dd8..d5eab431d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/hierarchicalChildren.json @@ -42,7 +42,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/hierarchicalDescendants.json index e5ea49c10..4575ef69d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/hierarchicalParents.json index 99a29fd13..9055ae787 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/hierarchicalParents.json @@ -49,7 +49,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -301,7 +301,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/parents.json index 99a29fd13..9055ae787 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016072/parents.json @@ -49,7 +49,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -301,7 +301,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565.json index 3453499d1..5d2de5035 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565.json @@ -22,7 +22,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/ancestors.json index 52994ddc8..31516700b 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -470,7 +470,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -710,7 +710,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -959,7 +959,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -1079,7 +1079,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -1254,7 +1254,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -1517,7 +1517,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -1697,7 +1697,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -1803,7 +1803,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -2058,7 +2058,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -2248,7 +2248,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/children.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/children.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/descendants.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/hierarchicalAncestors.json index 52994ddc8..31516700b 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -470,7 +470,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -710,7 +710,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -959,7 +959,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -1079,7 +1079,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -1254,7 +1254,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -1517,7 +1517,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -1697,7 +1697,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -1803,7 +1803,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -2058,7 +2058,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -2248,7 +2248,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/hierarchicalChildren.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/hierarchicalChildren.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/hierarchicalDescendants.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/hierarchicalParents.json index 4fc1dbf48..8120ab976 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/hierarchicalParents.json @@ -48,7 +48,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -285,7 +285,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -391,7 +391,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/parents.json index 4fc1dbf48..8120ab976 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0016565/parents.json @@ -48,7 +48,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -285,7 +285,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -391,7 +391,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555.json index adb3eb2d5..ddd65780c 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555.json @@ -29,7 +29,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/ancestors.json index 22655d2a9..7f7d7e0d2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -465,7 +465,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -620,7 +620,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -823,7 +823,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -1078,7 +1078,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -1323,7 +1323,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/children.json index 7a2115dd8..d5eab431d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/children.json @@ -42,7 +42,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/descendants.json index e5ea49c10..4575ef69d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/hierarchicalAncestors.json index 22655d2a9..7f7d7e0d2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -465,7 +465,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -620,7 +620,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -823,7 +823,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -1078,7 +1078,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -1323,7 +1323,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/hierarchicalChildren.json index 7a2115dd8..d5eab431d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/hierarchicalChildren.json @@ -42,7 +42,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/hierarchicalDescendants.json index e5ea49c10..4575ef69d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/hierarchicalParents.json index c1900d1c9..dec1d26a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/hierarchicalParents.json @@ -43,7 +43,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -198,7 +198,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/parents.json index c1900d1c9..dec1d26a9 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0018555/parents.json @@ -43,7 +43,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -198,7 +198,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040.json index 784845ceb..5e30e3018 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040.json @@ -34,7 +34,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/ancestors.json index e5bc303e6..efe43eed2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/children.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/children.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/descendants.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/hierarchicalAncestors.json index e5bc303e6..efe43eed2 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/hierarchicalChildren.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/hierarchicalChildren.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/hierarchicalDescendants.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019040/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042.json index af7c2b3e3..8f685bd11 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042.json @@ -12,7 +12,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/ancestors.json index 89ad6e8fe..899600b6c 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -468,7 +468,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -658,7 +658,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/children.json index 8512fda56..884b901f6 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/children.json @@ -39,7 +39,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/descendants.json index c54a33896..3ab6247c6 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -328,7 +328,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/hierarchicalAncestors.json index 89ad6e8fe..899600b6c 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -468,7 +468,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -658,7 +658,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/hierarchicalChildren.json index 8512fda56..884b901f6 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/hierarchicalChildren.json @@ -39,7 +39,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/hierarchicalDescendants.json index c54a33896..3ab6247c6 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -328,7 +328,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/hierarchicalParents.json index b3a0f61de..f625373b5 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/hierarchicalParents.json @@ -46,7 +46,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/parents.json index b3a0f61de..f625373b5 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019042/parents.json @@ -46,7 +46,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182.json index f1c1c5cf0..dc050a19b 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182.json @@ -29,7 +29,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/ancestors.json index 939dcaa16..95188ff15 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -471,7 +471,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -720,7 +720,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -840,7 +840,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -1015,7 +1015,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -1278,7 +1278,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/children.json index ee9895bfa..60feea429 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/children.json @@ -49,7 +49,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/descendants.json index 25dce23db..fd28acdb5 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -338,7 +338,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/hierarchicalAncestors.json index 939dcaa16..95188ff15 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -471,7 +471,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -720,7 +720,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -840,7 +840,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -1015,7 +1015,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -1278,7 +1278,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/hierarchicalChildren.json index ee9895bfa..60feea429 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/hierarchicalChildren.json @@ -49,7 +49,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/hierarchicalDescendants.json index 25dce23db..fd28acdb5 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -338,7 +338,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/hierarchicalParents.json index fd95f783a..4559da2b8 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/hierarchicalParents.json @@ -49,7 +49,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -308,7 +308,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -571,7 +571,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/parents.json index fd95f783a..4559da2b8 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019182/parents.json @@ -49,7 +49,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -308,7 +308,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -571,7 +571,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755.json index bf7667788..5dfe727ae 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755.json @@ -20,7 +20,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/ancestors.json index 45ad688c5..52f6f15dd 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -467,7 +467,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/children.json index 84152200e..1a1d633af 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/children.json @@ -46,7 +46,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -145,7 +145,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/descendants.json index 43db8a32a..42bd86117 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -328,7 +328,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -439,7 +439,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -542,7 +542,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -666,7 +666,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/hierarchicalAncestors.json index 45ad688c5..52f6f15dd 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -467,7 +467,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/hierarchicalChildren.json index 84152200e..1a1d633af 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/hierarchicalChildren.json @@ -46,7 +46,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -145,7 +145,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/hierarchicalDescendants.json index 43db8a32a..42bd86117 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -328,7 +328,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -439,7 +439,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -542,7 +542,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -666,7 +666,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/hierarchicalParents.json index 55c2dd54a..e31d20653 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/hierarchicalParents.json @@ -45,7 +45,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/parents.json index 55c2dd54a..e31d20653 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019755/parents.json @@ -45,7 +45,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824.json index d117f2551..4738ef2f7 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824.json @@ -7,7 +7,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/ancestors.json index 4a4a940a4..8610bd430 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -474,7 +474,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -734,7 +734,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -838,7 +838,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/children.json index 7a2115dd8..d5eab431d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/children.json @@ -42,7 +42,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/descendants.json index e5ea49c10..4575ef69d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/hierarchicalAncestors.json index 4a4a940a4..8610bd430 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -474,7 +474,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -734,7 +734,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -838,7 +838,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/hierarchicalChildren.json index 7a2115dd8..d5eab431d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/hierarchicalChildren.json @@ -42,7 +42,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/hierarchicalDescendants.json index e5ea49c10..4575ef69d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -331,7 +331,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/hierarchicalParents.json index 66177a315..1195cbda8 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/hierarchicalParents.json @@ -42,7 +42,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -146,7 +146,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/parents.json index 66177a315..1195cbda8 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0019824/parents.json @@ -42,7 +42,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -146,7 +146,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125.json index 4418d2566..8166fe7be 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125.json @@ -13,7 +13,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125/descendants.json index 6bab8284e..e1ee760b6 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125/descendants.json @@ -450,7 +450,7 @@ } }, "annotation": { - "hasDbXref": [ + "has_dbxref": [ "EFO:0004420" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125/hierarchicalDescendants.json index 6bab8284e..e1ee760b6 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021125/hierarchicalDescendants.json @@ -450,7 +450,7 @@ } }, "annotation": { - "hasDbXref": [ + "has_dbxref": [ "EFO:0004420" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126/ancestors.json index 667a867b0..7530084de 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126/ancestors.json @@ -92,7 +92,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126/hierarchicalAncestors.json index 667a867b0..7530084de 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126/hierarchicalAncestors.json @@ -92,7 +92,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126/hierarchicalParents.json index 72f9a70c1..6e71ce405 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126/hierarchicalParents.json @@ -39,7 +39,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126/parents.json index 72f9a70c1..6e71ce405 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021126/parents.json @@ -39,7 +39,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127/ancestors.json index 5c8535406..74cc384a4 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127/ancestors.json @@ -92,7 +92,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127/hierarchicalAncestors.json index 5c8535406..74cc384a4 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021127/hierarchicalAncestors.json @@ -92,7 +92,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135/ancestors.json index 667a867b0..7530084de 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135/ancestors.json @@ -92,7 +92,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135/hierarchicalAncestors.json index 667a867b0..7530084de 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135/hierarchicalAncestors.json @@ -92,7 +92,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135/hierarchicalParents.json index 72f9a70c1..6e71ce405 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135/hierarchicalParents.json @@ -39,7 +39,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135/parents.json index 72f9a70c1..6e71ce405 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021135/parents.json @@ -39,7 +39,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136/ancestors.json index 5b8ca01f5..beb78a4eb 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136/ancestors.json @@ -92,7 +92,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136/hierarchicalAncestors.json index 5b8ca01f5..beb78a4eb 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021136/hierarchicalAncestors.json @@ -92,7 +92,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139/ancestors.json index 667a867b0..7530084de 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139/ancestors.json @@ -92,7 +92,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139/hierarchicalAncestors.json index 667a867b0..7530084de 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139/hierarchicalAncestors.json @@ -92,7 +92,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139/hierarchicalParents.json index 72f9a70c1..6e71ce405 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139/hierarchicalParents.json @@ -39,7 +39,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139/parents.json index 72f9a70c1..6e71ce405 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021139/parents.json @@ -39,7 +39,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140/ancestors.json index c7f242a4f..8f86ccc26 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140/ancestors.json @@ -92,7 +92,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140/hierarchicalAncestors.json index c7f242a4f..8f86ccc26 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021140/hierarchicalAncestors.json @@ -92,7 +92,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147.json index 374d2db8c..8d24839d3 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147.json @@ -12,7 +12,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/ancestors.json index 24063e011..d3e121052 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/children.json index b3a0f61de..f625373b5 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/children.json @@ -46,7 +46,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/descendants.json index d89b78315..928db7b14 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -328,7 +328,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -439,7 +439,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -542,7 +542,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -666,7 +666,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -771,7 +771,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/hierarchicalAncestors.json index 24063e011..d3e121052 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/hierarchicalChildren.json index b3a0f61de..f625373b5 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/hierarchicalChildren.json @@ -46,7 +46,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/hierarchicalDescendants.json index d89b78315..928db7b14 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021147/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -328,7 +328,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -439,7 +439,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -542,7 +542,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -666,7 +666,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -771,7 +771,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/ancestors.json index 667a867b0..7530084de 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/ancestors.json @@ -92,7 +92,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/children.json index 08510a416..5bfc706f1 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/children.json @@ -24,7 +24,7 @@ } }, "annotation": { - "hasDbXref": [ + "has_dbxref": [ "EFO:0004420" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/descendants.json index 08510a416..5bfc706f1 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/descendants.json @@ -24,7 +24,7 @@ } }, "annotation": { - "hasDbXref": [ + "has_dbxref": [ "EFO:0004420" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/hierarchicalAncestors.json index 667a867b0..7530084de 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/hierarchicalAncestors.json @@ -92,7 +92,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/hierarchicalChildren.json index 08510a416..5bfc706f1 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/hierarchicalChildren.json @@ -24,7 +24,7 @@ } }, "annotation": { - "hasDbXref": [ + "has_dbxref": [ "EFO:0004420" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/hierarchicalDescendants.json index 08510a416..5bfc706f1 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/hierarchicalDescendants.json @@ -24,7 +24,7 @@ } }, "annotation": { - "hasDbXref": [ + "has_dbxref": [ "EFO:0004420" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/hierarchicalParents.json index 72f9a70c1..6e71ce405 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/hierarchicalParents.json @@ -39,7 +39,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/parents.json index 72f9a70c1..6e71ce405 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021149/parents.json @@ -39,7 +39,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152.json index 3fb54844b..ef2c78338 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152.json @@ -12,7 +12,7 @@ "inherited genetic" ], "annotation": { - "hasDbXref": [ + "has_dbxref": [ "EFO:0004420" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152/ancestors.json index e12fb827b..cccd9fb87 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152/ancestors.json @@ -92,7 +92,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152/hierarchicalAncestors.json index e12fb827b..cccd9fb87 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0021152/hierarchicalAncestors.json @@ -92,7 +92,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/ancestors.json index 02b7677c6..432ad88d3 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -472,7 +472,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -757,7 +757,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/children.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/children.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/descendants.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/hierarchicalAncestors.json index 02b7677c6..432ad88d3 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -472,7 +472,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -757,7 +757,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/hierarchicalChildren.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/hierarchicalChildren.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/hierarchicalDescendants.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/hierarchicalParents.json index cc60c5759..2bc153954 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/hierarchicalParents.json @@ -49,7 +49,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/parents.json index cc60c5759..2bc153954 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100038/parents.json @@ -49,7 +49,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/ancestors.json index 9f7f09b5f..12e0abbb8 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -471,7 +471,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -728,7 +728,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -1013,7 +1013,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/children.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/children.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/descendants.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/hierarchicalAncestors.json index 9f7f09b5f..12e0abbb8 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -471,7 +471,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -728,7 +728,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -1013,7 +1013,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/hierarchicalChildren.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/hierarchicalChildren.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/hierarchicalDescendants.json index d624ce21d..7f65a742d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/hierarchicalParents.json index 50e53ad1c..e86ce0a23 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/hierarchicalParents.json @@ -49,7 +49,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -305,7 +305,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/parents.json index 50e53ad1c..e86ce0a23 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0100500/parents.json @@ -49,7 +49,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -305,7 +305,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092.json index 8ad80c0cc..31c7d4c7e 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092.json @@ -19,7 +19,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/ancestors.json index 80eab2554..4633f7e8d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -472,7 +472,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/descendants.json index 859191269..09788c25b 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/descendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/hierarchicalAncestors.json index 80eab2554..4633f7e8d 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", @@ -472,7 +472,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/hierarchicalDescendants.json index 859191269..09788c25b 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/hierarchicalDescendants.json @@ -36,7 +36,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/hierarchicalParents.json index 2b5a0cb53..644ef0d44 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/hierarchicalParents.json @@ -50,7 +50,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/parents.json index 2b5a0cb53..644ef0d44 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700092/parents.json @@ -50,7 +50,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/ancestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/ancestors.json index 9c891f4b1..e7752871a 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/ancestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/ancestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/children.json index 1c2cc347d..f912b21ee 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/children.json @@ -48,7 +48,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -288,7 +288,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -543,7 +543,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -786,7 +786,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -1069,7 +1069,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -1244,7 +1244,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -1513,7 +1513,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", @@ -1841,7 +1841,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/descendants.json index 809825eb9..e70614632 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/descendants.json @@ -43,7 +43,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -197,7 +197,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -437,7 +437,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -640,7 +640,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -849,7 +849,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -997,7 +997,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -1246,7 +1246,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -1367,7 +1367,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -1610,7 +1610,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -1893,7 +1893,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -2068,7 +2068,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -2322,7 +2322,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -2620,7 +2620,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -2796,7 +2796,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -2895,7 +2895,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -3006,7 +3006,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -3104,7 +3104,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -3230,7 +3230,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -3361,7 +3361,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -3457,7 +3457,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -3580,7 +3580,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -3706,7 +3706,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -4017,7 +4017,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", @@ -4345,7 +4345,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -4456,7 +4456,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -4711,7 +4711,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -4895,7 +4895,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" @@ -4991,7 +4991,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ @@ -5252,7 +5252,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/hierarchicalAncestors.json index 9c891f4b1..e7752871a 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/hierarchicalAncestors.json @@ -209,7 +209,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/hierarchicalChildren.json index 1c2cc347d..f912b21ee 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/hierarchicalChildren.json @@ -48,7 +48,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -288,7 +288,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -543,7 +543,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -786,7 +786,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -1069,7 +1069,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -1244,7 +1244,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -1513,7 +1513,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", @@ -1841,7 +1841,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/hierarchicalDescendants.json index 809825eb9..e70614632 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/hierarchicalDescendants.json @@ -43,7 +43,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -197,7 +197,7 @@ "http://purl.obolibrary.org/obo/DOID_225", "http://purl.obolibrary.org/obo/NCIT_C28193" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:225", "MESH:D013577", "NCIT:C28193", @@ -437,7 +437,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -640,7 +640,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -849,7 +849,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -997,7 +997,7 @@ "http://purl.obolibrary.org/obo/DOID_630", "http://purl.obolibrary.org/obo/NCIT_C3101" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:630", "EFO:0000508", "ICD9:799.89", @@ -1246,7 +1246,7 @@ "http://linkedlifedata.com/resource/umls/id/C1257763", "http://purl.obolibrary.org/obo/DOID_654" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:654", "ICD9:278.8", "MESH:D044343", @@ -1367,7 +1367,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -1610,7 +1610,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -1893,7 +1893,7 @@ "http://purl.obolibrary.org/obo/DOID_374", "http://purl.obolibrary.org/obo/NCIT_C26836" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:374", "EFO:0001069", "ICD9:783.9", @@ -2068,7 +2068,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -2322,7 +2322,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -2620,7 +2620,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -2796,7 +2796,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -2895,7 +2895,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -3006,7 +3006,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -3104,7 +3104,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -3230,7 +3230,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -3361,7 +3361,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -3457,7 +3457,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -3580,7 +3580,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -3706,7 +3706,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -4017,7 +4017,7 @@ "http://purl.obolibrary.org/obo/NCIT_C34470", "http://www.orpha.net/ORDO/Orphanet_68335" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0080014", "GARD:18874", "ICD10CM:Q90-Q99", @@ -4345,7 +4345,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -4456,7 +4456,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -4711,7 +4711,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -4895,7 +4895,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" @@ -4991,7 +4991,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ @@ -5252,7 +5252,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/hierarchicalParents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/hierarchicalParents.json index 8eff71052..d0301a186 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/hierarchicalParents.json @@ -44,7 +44,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/parents.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/parents.json index 8eff71052..d0301a186 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/parents.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMONDO_0700096/parents.json @@ -44,7 +44,7 @@ "http://purl.obolibrary.org/obo/NCIT_C2991", "http://www.orpha.net/ORDO/Orphanet_377788" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:4", "EFO:0000408", "ICD9:799.9", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031/children.json index a7a2bafc9..49e014b35 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031/children.json @@ -48,7 +48,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -291,7 +291,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -579,7 +579,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -842,7 +842,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -1021,7 +1021,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031/descendants.json index 33ad5d977..104d04a8f 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031/descendants.json @@ -43,7 +43,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -198,7 +198,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -401,7 +401,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -610,7 +610,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -757,7 +757,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -1000,7 +1000,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -1288,7 +1288,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -1542,7 +1542,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -1840,7 +1840,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -2016,7 +2016,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -2115,7 +2115,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -2226,7 +2226,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -2324,7 +2324,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -2450,7 +2450,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -2581,7 +2581,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -2677,7 +2677,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -2800,7 +2800,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -2926,7 +2926,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -3231,7 +3231,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -3342,7 +3342,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -3597,7 +3597,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -3781,7 +3781,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" @@ -3877,7 +3877,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ @@ -4138,7 +4138,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031/hierarchicalChildren.json index a7a2bafc9..49e014b35 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031/hierarchicalChildren.json @@ -48,7 +48,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -291,7 +291,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -579,7 +579,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -842,7 +842,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -1021,7 +1021,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031/hierarchicalDescendants.json index 33ad5d977..104d04a8f 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FOGMS_0000031/hierarchicalDescendants.json @@ -43,7 +43,7 @@ "http://purl.obolibrary.org/obo/DOID_1924", "http://purl.obolibrary.org/obo/NCIT_C9227" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:1924", "ICD9:253.4", "MESH:D007006", @@ -198,7 +198,7 @@ "http://purl.obolibrary.org/obo/DOID_2277", "http://purl.obolibrary.org/obo/NCIT_C26786" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2277", "MESH:D006058", "NCIT:C26786", @@ -401,7 +401,7 @@ "http://purl.obolibrary.org/obo/DOID_229", "http://purl.obolibrary.org/obo/NCIT_C27020" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:229", "ICD9:629.9", "MESH:D005831", @@ -610,7 +610,7 @@ "http://purl.obolibrary.org/obo/DOID_2490", "http://purl.obolibrary.org/obo/NCIT_C97172" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:2490", "ICD9:742", "NCIT:C97172" @@ -757,7 +757,7 @@ "http://purl.obolibrary.org/obo/DOID_15", "http://purl.obolibrary.org/obo/NCIT_C4875" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:15", "EFO:0000512", "NCIT:C4875", @@ -1000,7 +1000,7 @@ "http://purl.obolibrary.org/obo/DOID_863", "http://purl.obolibrary.org/obo/NCIT_C26835" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:863", "EFO:0000618", "ICD10CM:G00-G99", @@ -1288,7 +1288,7 @@ "http://purl.obolibrary.org/obo/DOID_28", "http://purl.obolibrary.org/obo/NCIT_C3009" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:28", "EFO:0001379", "ICD9:259.8", @@ -1542,7 +1542,7 @@ "http://www.orpha.net/ORDO/Orphanet_739", "https://omim.org/entry/176270" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:11983", "GARD:5575", "ICD9:759.81", @@ -1840,7 +1840,7 @@ "http://purl.obolibrary.org/obo/DOID_9970", "http://purl.obolibrary.org/obo/NCIT_C3283" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:9970", "EFO:0001073", "HP:0001513", @@ -2016,7 +2016,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_101957" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19801", "ICD10CM:E23.0", "Orphanet:101957", @@ -2115,7 +2115,7 @@ "IAO_0000233": [ "https://github.com/monarch-initiative/mondo/issues/4069" ], - "hasDbXref": [ + "has_dbxref": [ "Orphanet:102284" ], "id": [ @@ -2226,7 +2226,7 @@ "http://linkedlifedata.com/resource/umls/id/CN199360", "http://www.orpha.net/ORDO/Orphanet_139024" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19903", "Orphanet:139024", "UMLS:CN199360" @@ -2324,7 +2324,7 @@ "http://linkedlifedata.com/resource/umls/id/CN237424", "http://www.orpha.net/ORDO/Orphanet_156643" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20012", "MESH:D006130", "Orphanet:156643", @@ -2450,7 +2450,7 @@ "http://purl.obolibrary.org/obo/NCIT_C120162", "http://www.orpha.net/ORDO/Orphanet_174590" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20135", "ICD10CM:E23.0", "NCIT:C120162", @@ -2581,7 +2581,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_180208" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20200", "Orphanet:180208" ], @@ -2677,7 +2677,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_202940" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20341", "Orphanet:202940" ], @@ -2800,7 +2800,7 @@ "http://linkedlifedata.com/resource/umls/id/CN226963", "http://www.orpha.net/ORDO/Orphanet_240371" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:20650", "Orphanet:240371", "UMLS:CN226963" @@ -2926,7 +2926,7 @@ "http://www.orpha.net/ORDO/Orphanet_432", "https://omim.org/phenotypicSeries/PS147950" ], - "hasDbXref": [ + "has_dbxref": [ "DOID:0090070", "DOID:7455", "GARD:16533", @@ -3231,7 +3231,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_68341" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18876", "Orphanet:68341" ], @@ -3342,7 +3342,7 @@ "http://www.orpha.net/ORDO/Orphanet_77828", "https://omim.org/entry/601665" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:18935", "OMIM:601665", "Orphanet:77828" @@ -3597,7 +3597,7 @@ "http://purl.obolibrary.org/obo/NCIT_C99267", "http://www.orpha.net/ORDO/Orphanet_93890" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:22513", "ICD9:759.7", "NCIT:C99267", @@ -3781,7 +3781,7 @@ "has exact match": [ "http://www.orpha.net/ORDO/Orphanet_95488" ], - "hasDbXref": [ + "has_dbxref": [ "GARD:19272", "ICD10CM:E23.0", "Orphanet:95488" @@ -3877,7 +3877,7 @@ "has exact match": [ "http://purl.bioontology.org/ontology/ICD10CM/Q00-Q99" ], - "hasDbXref": [ + "has_dbxref": [ "ICD10CM:Q00-Q99" ], "id": [ @@ -4138,7 +4138,7 @@ "http://purl.obolibrary.org/obo/NCIT_C1535926", "http://purl.obolibrary.org/obo/NCIT_C89338" ], - "hasDbXref": [ + "has_dbxref": [ "MESH:D065886", "MedDRA:C1535926", "NCIT:C1535926", diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001/children.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001/children.json index 2643142cd..f10d1b14f 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001/children.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001/children.json @@ -39,7 +39,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001/descendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001/descendants.json index f3e0cf2b9..0ddeaa788 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001/descendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001/descendants.json @@ -39,7 +39,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ @@ -562,7 +562,7 @@ } }, "annotation": { - "hasDbXref": [ + "has_dbxref": [ "EFO:0004420" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001/hierarchicalChildren.json index 2643142cd..f10d1b14f 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001/hierarchicalChildren.json @@ -39,7 +39,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001/hierarchicalDescendants.json index f3e0cf2b9..0ddeaa788 100644 --- a/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/gitissue502/terms/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FPATO_0000001/hierarchicalDescendants.json @@ -39,7 +39,7 @@ "has exact match": [ "http://purl.obolibrary.org/obo/NCIT_C41009" ], - "hasDbXref": [ + "has_dbxref": [ "NCIT:C41009" ], "id": [ @@ -562,7 +562,7 @@ } }, "annotation": { - "hasDbXref": [ + "has_dbxref": [ "EFO:0004420" ], "id": [ diff --git a/testcases_expected_output_api/ontologies/individuals-anonymous-types-with-inverse/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523A.json b/testcases_expected_output_api/ontologies/individuals-anonymous-types-with-inverse/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523A.json index 0a92b55c3..b347b3445 100644 --- a/testcases_expected_output_api/ontologies/individuals-anonymous-types-with-inverse/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523A.json +++ b/testcases_expected_output_api/ontologies/individuals-anonymous-types-with-inverse/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/individuals-anonymous-types-with-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523a.json b/testcases_expected_output_api/ontologies/individuals-anonymous-types-with-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523a.json index 0a92b55c3..b347b3445 100644 --- a/testcases_expected_output_api/ontologies/individuals-anonymous-types-with-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523a.json +++ b/testcases_expected_output_api/ontologies/individuals-anonymous-types-with-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523a.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/individuals-anonymous-types-with-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523inverseRelation.json b/testcases_expected_output_api/ontologies/individuals-anonymous-types-with-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523inverseRelation.json index 0a92b55c3..b347b3445 100644 --- a/testcases_expected_output_api/ontologies/individuals-anonymous-types-with-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523inverseRelation.json +++ b/testcases_expected_output_api/ontologies/individuals-anonymous-types-with-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523inverseRelation.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/individuals-anonymous-types-with-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523relation.json b/testcases_expected_output_api/ontologies/individuals-anonymous-types-with-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523relation.json index 0a92b55c3..b347b3445 100644 --- a/testcases_expected_output_api/ontologies/individuals-anonymous-types-with-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523relation.json +++ b/testcases_expected_output_api/ontologies/individuals-anonymous-types-with-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Findividuals%252Fanonymous-types-with-inverse.owl%2523relation.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/isobsolete/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedClass.json b/testcases_expected_output_api/ontologies/isobsolete/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedClass.json index 0a92b55c3..b347b3445 100644 --- a/testcases_expected_output_api/ontologies/isobsolete/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedClass.json +++ b/testcases_expected_output_api/ontologies/isobsolete/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/isobsolete/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json b/testcases_expected_output_api/ontologies/isobsolete/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json index 0a92b55c3..b347b3445 100644 --- a/testcases_expected_output_api/ontologies/isobsolete/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json +++ b/testcases_expected_output_api/ontologies/isobsolete/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedClass.json b/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedClass.json index 0a92b55c3..b347b3445 100644 --- a/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedClass.json +++ b/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedDataProperty.json b/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedDataProperty.json index 0a92b55c3..b347b3445 100644 --- a/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedDataProperty.json +++ b/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedDataProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedIndividual.json b/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedIndividual.json index 0a92b55c3..b347b3445 100644 --- a/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedIndividual.json +++ b/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedIndividual.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedObjectProperty.json b/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedObjectProperty.json index 0a92b55c3..b347b3445 100644 --- a/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedObjectProperty.json +++ b/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fdefined-fields%252FisObsolete.rdf%2523NonDeprecatedObjectProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json b/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json index 0a92b55c3..b347b3445 100644 --- a/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json +++ b/testcases_expected_output_api/ontologies/isobsolete/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:04 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/label/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deLangClass.json b/testcases_expected_output_api/ontologies/label/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deLangClass.json index 358c35290..32d84af4f 100644 --- a/testcases_expected_output_api/ontologies/label/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deLangClass.json +++ b/testcases_expected_output_api/ontologies/label/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deLangClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/label/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enLabelClass.json b/testcases_expected_output_api/ontologies/label/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enLabelClass.json index 358c35290..32d84af4f 100644 --- a/testcases_expected_output_api/ontologies/label/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enLabelClass.json +++ b/testcases_expected_output_api/ontologies/label/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enLabelClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/label/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelClass.json b/testcases_expected_output_api/ontologies/label/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelClass.json index 358c35290..32d84af4f 100644 --- a/testcases_expected_output_api/ontologies/label/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelClass.json +++ b/testcases_expected_output_api/ontologies/label/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/label/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLangClass.json b/testcases_expected_output_api/ontologies/label/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLangClass.json index 358c35290..32d84af4f 100644 --- a/testcases_expected_output_api/ontologies/label/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLangClass.json +++ b/testcases_expected_output_api/ontologies/label/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLangClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deLangClass.json b/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deLangClass.json index 358c35290..32d84af4f 100644 --- a/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deLangClass.json +++ b/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deLangClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deProperty.json b/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deProperty.json index 358c35290..32d84af4f 100644 --- a/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deProperty.json +++ b/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523deProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enLabelClass.json b/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enLabelClass.json index 358c35290..32d84af4f 100644 --- a/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enLabelClass.json +++ b/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enLabelClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enProperty.json b/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enProperty.json index 358c35290..32d84af4f 100644 --- a/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enProperty.json +++ b/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523enProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelClass.json b/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelClass.json index 358c35290..32d84af4f 100644 --- a/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelClass.json +++ b/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelProperty.json b/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelProperty.json index 358c35290..32d84af4f 100644 --- a/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelProperty.json +++ b/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLabelProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLangClass.json b/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLangClass.json index 358c35290..32d84af4f 100644 --- a/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLangClass.json +++ b/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523noLangClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523property.json b/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523property.json index 358c35290..32d84af4f 100644 --- a/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523property.json +++ b/testcases_expected_output_api/ontologies/label/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Fols4%252Ftestcase%252Flabel%2523property.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:05 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref.json b/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition.json b/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json b/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset.json b/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym.json b/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType.json b/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/classes/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SubsetProperty.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SubsetProperty.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SubsetProperty.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymTypeProperty.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymTypeProperty.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymTypeProperty.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523consider.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523consider.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523consider.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDate.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDate.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDate.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefaultNamespace.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefaultNamespace.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefaultNamespace.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefinition.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefinition.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefinition.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSubset.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSubset.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSubset.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonym.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonym.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonym.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasURI.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasURI.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasURI.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasVersion.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasVersion.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasVersion.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523isCyclic.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523isCyclic.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523isCyclic.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523replacedBy.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523replacedBy.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523replacedBy.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523savedBy.json b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523savedBy.json new file mode 100644 index 000000000..32d84af4f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/entities/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523savedBy.json @@ -0,0 +1,3 @@ +{ + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/individuals.json b/testcases_expected_output_api/ontologies/oio/individuals.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/individuals.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties.json b/testcases_expected_output_api/ontologies/oio/properties.json new file mode 100644 index 000000000..18feaa937 --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties.json @@ -0,0 +1,1376 @@ +[ + { + "_links": { + "ancestors": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym/ancestors" + }, + "jstree": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym/jstree" + }, + "parents": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym/parents" + }, + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_broad_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:broad_synonym" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "An alias in which the alias is broader than the primary class name. Example: cell division is a broad synonym of cytokinesis" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": false, + "label": "has_broad_synonym", + "lang": "en", + "obo_id": "OIO:hasBroadSynonym", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_hasBroadSynonym", + "synonyms": [] + }, + { + "_links": { + "ancestors": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym/ancestors" + }, + "jstree": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym/jstree" + }, + "parents": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym/parents" + }, + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_exact_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:exact_synonym" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "An alias in which the alias exhibits true synonymy. Example: ornithine cycle is an exact synonym of urea cycle" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": false, + "label": "has_exact_synonym", + "lang": "en", + "obo_id": "OIO:hasExactSynonym", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_hasExactSynonym", + "synonyms": [] + }, + { + "_links": { + "ancestors": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym/ancestors" + }, + "jstree": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym/jstree" + }, + "parents": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym/parents" + }, + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_narrow_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:narrow_synonym" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "An alias in which the alias is narrower than the primary class name. Example: pyrimidine-dimer repair by photolyase is a narrow synonym of photoreactive repair" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": false, + "label": "has_narrow_synonym", + "lang": "en", + "obo_id": "OIO:hasNarrowSynonym", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_hasNarrowSynonym", + "synonyms": [] + }, + { + "_links": { + "ancestors": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym/ancestors" + }, + "jstree": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym/jstree" + }, + "parents": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym/parents" + }, + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_related_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:related_synonym" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "An alias in which the alias is related the primary class name, but not necessarily broader or narrower. Example: cytochrome bc1 complex is a related synonym of ubiquinol-cytochrome-c reductase activity; virulence is a related synonym of pathogenesis" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": false, + "label": "has_related_synonym", + "lang": "en", + "obo_id": "OIO:hasRelatedSynonym", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_hasRelatedSynonym", + "synonyms": [] + }, + { + "_links": { + "children": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonym/children" + }, + "descendants": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonym/descendants" + }, + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonym?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:synonym" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "A relation between a class and an alias term." + }, + "isObsolete": false + } + ] + }, + "description": [ + "Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL" + ], + "has_children": true, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "has_synonym", + "lang": "en", + "obo_id": "OIO:hasSynonym", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_hasSynonym", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty?lang=en" + } + }, + "annotation": { + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "pseudo-property. in the oboInOwl translation, all obsolete relations are subProperties of this class" + }, + "isObsolete": false + } + ] + }, + "description": [ + "Note that this is not a metaclass" + ], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "obsolete_property", + "lang": "en", + "obo_id": "OIO:ObsoleteProperty", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_ObsoleteProperty", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SubsetProperty?lang=en" + } + }, + "annotation": { + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "This annotation property groups all subsets declared in the ontology" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#SubsetProperty", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "subset_property", + "lang": "en", + "obo_id": "OIO:SubsetProperty", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_SubsetProperty", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymTypeProperty?lang=en" + } + }, + "annotation": { + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "This annotation property groups all synonym types declared in the ontology" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "synonym_type_property", + "lang": "en", + "obo_id": "OIO:SynonymTypeProperty", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_SynonymTypeProperty", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523consider?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_consider" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:consider" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "Gives a term which may be an appropriate substitute for an obsolete term, but needs to be looked at carefully by a human expert before the replacement is done" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#consider", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "consider", + "lang": "en", + "obo_id": "OIO:consider", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_consider", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_alt_id" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:alt_id" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "An alternative identifier for this class; should follow ID syntax. These can result from class merges" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "has_alternative_id", + "lang": "en", + "obo_id": "OIO:hasAlternativeId", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_hasAlternativeId", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDate?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_date" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:date" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDate", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "has_date", + "lang": "en", + "obo_id": "OIO:hasDate", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_hasDate", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref?lang=en" + } + }, + "annotation": { + "hasDbXref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_xref" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:xref" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDbXref", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "has_dbxref", + "lang": "en", + "obo_id": "OIO:hasDbXref", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_hasDbXref", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefaultNamespace?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_default-namespace" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:default-namespace" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDefaultNamespace", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "has_default_namespace", + "lang": "en", + "obo_id": "OIO:hasDefaultNamespace", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_hasDefaultNamespace", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefinition?lang=en" + } + }, + "annotation": { + "hasDefinition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "a relation between a class and an instance of a oboInOwl:Definition" + }, + "isObsolete": false + } + ], + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_def" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:def" + }, + "isObsolete": false + } + ] + }, + "description": [ + "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + ], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDefinition", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "has_definition", + "lang": "en", + "obo_id": "OIO:hasDefinition", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_hasDefinition", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_namespace" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:namespace" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "A relation between a class and an OBO namespace string. OBO namespaces are to be distinguished from IDspaces; for example, biological_process is a namespace, GO is an idspace." + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "has_obo_namespace", + "lang": "en", + "obo_id": "OIO:hasOBONamespace", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_hasOBONamespace", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSubset?lang=en" + } + }, + "annotation": { + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "relation between an ontology and a oboInOwl:Subset, indicating classes in the ontology belong to the subset" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSubset", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "has_subset", + "lang": "en", + "obo_id": "OIO:hasSubset", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_hasSubset", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://www.geneontology.org/GO.usage.shtml#type" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "URL:http://www.geneontology.org/GO.usage.shtml#type" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSynonymType", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "has_synonym_type", + "lang": "en", + "obo_id": "OIO:hasSynonymType", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_hasSynonymType", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasURI?lang=en" + } + }, + "annotation": {}, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasURI", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "has_URI", + "lang": "en", + "obo_id": "OIO:hasURI", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_hasURI", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasVersion?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_version" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:version" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasVersion", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "has_version", + "lang": "en", + "obo_id": "OIO:hasVersion", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_hasVersion", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_subset" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:subset" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "relation between a class and a oboInOwl:Subset, indicating the class belongs (is a member of) the subset" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#inSubset", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "in_subset", + "lang": "en", + "obo_id": "OIO:inSubset", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_inSubset", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523isCyclic?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_is_cyclic" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:is_cyclic" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#isCyclic", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "is_cyclic", + "lang": "en", + "obo_id": "OIO:isCyclic", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_isCyclic", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523replacedBy?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_replaced_by" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:replaced_by" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "Gives a term which replaces an obsolete term. The value is the id of the replacement term. The value of this tag can safely be used to automatically reassign links to an obsolete term. The replaced_by tag may only be specified for obsolete terms. A single obsolete term may have more than one replaced_by tag. This tag can be used in conjunction with the consider tag." + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#replacedBy", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "replaced_by", + "lang": "en", + "obo_id": "OIO:replacedBy", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_replacedBy", + "synonyms": [] + }, + { + "_links": { + "self": { + "href": "/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523savedBy?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_saved_by" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:saved_by" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#savedBy", + "is_defining_ontology": false, + "is_obsolete": false, + "is_root": true, + "label": "saved_by", + "lang": "en", + "obo_id": "OIO:savedBy", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_savedBy", + "synonyms": [] + } +] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty.json new file mode 100644 index 000000000..a27123151 --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty.json @@ -0,0 +1,55 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty", + "lang": "en", + "description": [ + "Note that this is not a metaclass" + ], + "synonyms": [], + "annotation": { + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "pseudo-property. in the oboInOwl translation, all obsolete relations are subProperties of this class", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "obsolete_property", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_ObsoleteProperty", + "obo_id": "OIO:ObsoleteProperty", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteProperty?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SubsetProperty.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SubsetProperty.json new file mode 100644 index 000000000..5084105da --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SubsetProperty.json @@ -0,0 +1,53 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#SubsetProperty", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "This annotation property groups all subsets declared in the ontology", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "subset_property", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_SubsetProperty", + "obo_id": "OIO:SubsetProperty", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SubsetProperty?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymTypeProperty.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymTypeProperty.json new file mode 100644 index 000000000..20dec5214 --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymTypeProperty.json @@ -0,0 +1,53 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "This annotation property groups all synonym types declared in the ontology", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "synonym_type_property", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_SynonymTypeProperty", + "obo_id": "OIO:SynonymTypeProperty", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymTypeProperty?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523consider.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523consider.json new file mode 100644 index 000000000..36d9cc51d --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523consider.json @@ -0,0 +1,72 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#consider", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_consider" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:consider" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "Gives a term which may be an appropriate substitute for an obsolete term, but needs to be looked at carefully by a human expert before the replacement is done", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "consider", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_consider", + "obo_id": "OIO:consider", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523consider?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId.json new file mode 100644 index 000000000..1a3c7fe7c --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId.json @@ -0,0 +1,72 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_alt_id" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:alt_id" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An alternative identifier for this class; should follow ID syntax. These can result from class merges", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "has_alternative_id", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_hasAlternativeId", + "obo_id": "OIO:hasAlternativeId", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasAlternativeId?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json new file mode 100644 index 000000000..2733b6689 --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym.json @@ -0,0 +1,81 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_broad_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:broad_synonym" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An alias in which the alias is broader than the primary class name. Example: cell division is a broad synonym of cytokinesis", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "has_broad_synonym", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": false, + "short_form": "OIO_hasBroadSynonym", + "obo_id": "OIO:hasBroadSynonym", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym?lang=en" + }, + "parents": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym/parents" + }, + "ancestors": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym/ancestors" + }, + "jstree": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasBroadSynonym/jstree" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDate.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDate.json new file mode 100644 index 000000000..cea9c2f19 --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDate.json @@ -0,0 +1,41 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDate", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_date" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:date" + }, + "isObsolete": false + } + ] + }, + "label": "has_date", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_hasDate", + "obo_id": "OIO:hasDate", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDate?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json new file mode 100644 index 000000000..f77d7aa4a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref.json @@ -0,0 +1,41 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDbXref", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "hasDbXref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_xref" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:xref" + }, + "isObsolete": false + } + ] + }, + "label": "has_dbxref", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_hasDbXref", + "obo_id": "OIO:hasDbXref", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDbXref?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefaultNamespace.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefaultNamespace.json new file mode 100644 index 000000000..5cc1a3b4a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefaultNamespace.json @@ -0,0 +1,41 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDefaultNamespace", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_default-namespace" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:default-namespace" + }, + "isObsolete": false + } + ] + }, + "label": "has_default_namespace", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_hasDefaultNamespace", + "obo_id": "OIO:hasDefaultNamespace", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefaultNamespace?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefinition.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefinition.json new file mode 100644 index 000000000..1a8cc176e --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefinition.json @@ -0,0 +1,74 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDefinition", + "lang": "en", + "description": [ + "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + ], + "synonyms": [], + "annotation": { + "hasDefinition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "a relation between a class and an instance of a oboInOwl:Definition", + "lang": "en" + }, + "isObsolete": false + } + ], + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_def" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:def" + }, + "isObsolete": false + } + ] + }, + "label": "has_definition", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_hasDefinition", + "obo_id": "OIO:hasDefinition", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasDefinition?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json new file mode 100644 index 000000000..0abe91966 --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym.json @@ -0,0 +1,81 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_exact_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:exact_synonym" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An alias in which the alias exhibits true synonymy. Example: ornithine cycle is an exact synonym of urea cycle", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "has_exact_synonym", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": false, + "short_form": "OIO_hasExactSynonym", + "obo_id": "OIO:hasExactSynonym", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym?lang=en" + }, + "parents": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym/parents" + }, + "ancestors": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym/ancestors" + }, + "jstree": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasExactSynonym/jstree" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json new file mode 100644 index 000000000..bffa51f12 --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym.json @@ -0,0 +1,81 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_narrow_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:narrow_synonym" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An alias in which the alias is narrower than the primary class name. Example: pyrimidine-dimer repair by photolyase is a narrow synonym of photoreactive repair", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "has_narrow_synonym", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": false, + "short_form": "OIO_hasNarrowSynonym", + "obo_id": "OIO:hasNarrowSynonym", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym?lang=en" + }, + "parents": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym/parents" + }, + "ancestors": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym/ancestors" + }, + "jstree": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasNarrowSynonym/jstree" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace.json new file mode 100644 index 000000000..338e5f85e --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace.json @@ -0,0 +1,72 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_namespace" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:namespace" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "A relation between a class and an OBO namespace string. OBO namespaces are to be distinguished from IDspaces; for example, biological_process is a namespace, GO is an idspace.", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "has_obo_namespace", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_hasOBONamespace", + "obo_id": "OIO:hasOBONamespace", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasOBONamespace?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json new file mode 100644 index 000000000..2111887db --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym.json @@ -0,0 +1,81 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_related_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:related_synonym" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An alias in which the alias is related the primary class name, but not necessarily broader or narrower. Example: cytochrome bc1 complex is a related synonym of ubiquinol-cytochrome-c reductase activity; virulence is a related synonym of pathogenesis", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "has_related_synonym", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": false, + "short_form": "OIO_hasRelatedSynonym", + "obo_id": "OIO:hasRelatedSynonym", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym?lang=en" + }, + "parents": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym/parents" + }, + "ancestors": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym/ancestors" + }, + "jstree": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasRelatedSynonym/jstree" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSubset.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSubset.json new file mode 100644 index 000000000..014e29110 --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSubset.json @@ -0,0 +1,53 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSubset", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "relation between an ontology and a oboInOwl:Subset, indicating classes in the ontology belong to the subset", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "has_subset", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_hasSubset", + "obo_id": "OIO:hasSubset", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSubset?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonym.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonym.json new file mode 100644 index 000000000..4bc166004 --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonym.json @@ -0,0 +1,80 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "lang": "en", + "description": [ + "Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL" + ], + "synonyms": [], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_synonym" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:synonym" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:GOC" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "A relation between a class and an alias term.", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "has_synonym", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": true, + "is_root": true, + "short_form": "OIO_hasSynonym", + "obo_id": "OIO:hasSynonym", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonym?lang=en" + }, + "children": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonym/children" + }, + "descendants": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonym/descendants" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json new file mode 100644 index 000000000..b61cb57c5 --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType.json @@ -0,0 +1,41 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSynonymType", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://www.geneontology.org/GO.usage.shtml#type" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "URL:http://www.geneontology.org/GO.usage.shtml#type" + }, + "isObsolete": false + } + ] + }, + "label": "has_synonym_type", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_hasSynonymType", + "obo_id": "OIO:hasSynonymType", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasSynonymType?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasURI.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasURI.json new file mode 100644 index 000000000..d97e108de --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasURI.json @@ -0,0 +1,21 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#hasURI", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": {}, + "label": "has_URI", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_hasURI", + "obo_id": "OIO:hasURI", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasURI?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasVersion.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasVersion.json new file mode 100644 index 000000000..94a764d33 --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasVersion.json @@ -0,0 +1,41 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#hasVersion", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_version" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:version" + }, + "isObsolete": false + } + ] + }, + "label": "has_version", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_hasVersion", + "obo_id": "OIO:hasVersion", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523hasVersion?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json new file mode 100644 index 000000000..00f2f2dcf --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset.json @@ -0,0 +1,72 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#inSubset", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_subset" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:subset" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "relation between a class and a oboInOwl:Subset, indicating the class belongs (is a member of) the subset", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "in_subset", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_inSubset", + "obo_id": "OIO:inSubset", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523inSubset?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523isCyclic.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523isCyclic.json new file mode 100644 index 000000000..102f46d66 --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523isCyclic.json @@ -0,0 +1,55 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#isCyclic", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_is_cyclic" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:is_cyclic" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "is_cyclic", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_isCyclic", + "obo_id": "OIO:isCyclic", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523isCyclic?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523replacedBy.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523replacedBy.json new file mode 100644 index 000000000..defb2f76d --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523replacedBy.json @@ -0,0 +1,72 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#replacedBy", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_replaced_by" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:replaced_by" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "Gives a term which replaces an obsolete term. The value is the id of the replacement term. The value of this tag can safely be used to automatically reassign links to an obsolete term. The replaced_by tag may only be specified for obsolete terms. A single obsolete term may have more than one replaced_by tag. This tag can be used in conjunction with the consider tag.", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "replaced_by", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_replacedBy", + "obo_id": "OIO:replacedBy", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523replacedBy?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523savedBy.json b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523savedBy.json new file mode 100644 index 000000000..b3de2f4aa --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523savedBy.json @@ -0,0 +1,41 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#savedBy", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_saved_by" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:saved_by" + }, + "isObsolete": false + } + ] + }, + "label": "saved_by", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": false, + "has_children": false, + "is_root": true, + "short_form": "OIO_savedBy", + "obo_id": "OIO:savedBy", + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/properties/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523savedBy?lang=en" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms.json b/testcases_expected_output_api/ontologies/oio/terms.json new file mode 100644 index 000000000..5ef5ef73a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms.json @@ -0,0 +1,339 @@ +[ + { + "_links": { + "graph": { + "href": "/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/graph" + }, + "self": { + "href": "/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref?lang=en" + } + }, + "annotation": {}, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "is_defining_ontology": true, + "is_obsolete": false, + "is_preferred_root": false, + "is_root": true, + "label": "database_cross_reference", + "lang": "en", + "obo_id": "OIO:DbXref", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_DbXref", + "synonyms": [] + }, + { + "_links": { + "graph": { + "href": "/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/graph" + }, + "self": { + "href": "/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://www.obofoundry.org/wiki/index.php/Definitions" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "URL:http://www.obofoundry.org/wiki/index.php/Definitions" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "The textual definition of the current term. There must be zero or one instances of this tag per term description" + }, + "isObsolete": false + } + ] + }, + "description": [ + "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + ], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#Definition", + "is_defining_ontology": true, + "is_obsolete": false, + "is_preferred_root": false, + "is_root": true, + "label": "definition", + "lang": "en", + "obo_id": "OIO:Definition", + "obo_xref": [ + { + "id": "http://www.obofoundry.org/wiki/index.php/Definitions", + "url": "http://www.obofoundry.org/wiki/index.php/Definitions" + } + ], + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_Definition", + "synonyms": [] + }, + { + "_links": { + "graph": { + "href": "/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/graph" + }, + "self": { + "href": "/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass?lang=en" + } + }, + "annotation": { + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "pseudo-class. in the oboInOwl translation, all obsolete classes are subclasses of this class. Note that this is not a metaclass" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#ObsoleteClass", + "is_defining_ontology": true, + "is_obsolete": false, + "is_preferred_root": false, + "is_root": true, + "label": "obsolete_class", + "lang": "en", + "obo_id": "OIO:ObsoleteClass", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_ObsoleteClass", + "synonyms": [] + }, + { + "_links": { + "graph": { + "href": "/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/graph" + }, + "self": { + "href": "/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset?lang=en" + } + }, + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_subsetdef" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:subsetdef" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "A grouping of terms from an ontology or ontologies. Note that this is not a metaclass - classes are linked to subsets via oboInOwl:inSubset" + }, + "isObsolete": false + } + ] + }, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#Subset", + "is_defining_ontology": true, + "is_obsolete": false, + "is_preferred_root": false, + "is_root": true, + "label": "subset", + "lang": "en", + "obo_id": "OIO:Subset", + "obo_xref": [ + { + "id": "http://purl.org/obo/owl/oboFormat#oboFormat_subsetdef", + "url": "http://purl.org/obo/owl/oboFormat#oboFormat_subsetdef" + } + ], + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_Subset", + "synonyms": [ + "GO-slim", + "partition", + "slim", + "view" + ] + }, + { + "_links": { + "graph": { + "href": "/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/graph" + }, + "self": { + "href": "/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym?lang=en" + } + }, + "annotation": { + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "type": [ + "literal" + ], + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "lang": "en", + "type": [ + "literal" + ], + "value": "An instance of synonym usage. synonym instances are linked to classes via oboInOwl:has*Synonym properties" + }, + "isObsolete": false + } + ] + }, + "description": [ + "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + ], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "is_defining_ontology": true, + "is_obsolete": false, + "is_preferred_root": false, + "is_root": true, + "label": "synonym", + "lang": "en", + "obo_id": "OIO:Synonym", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_Synonym", + "synonyms": [] + }, + { + "_links": { + "graph": { + "href": "/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/graph" + }, + "self": { + "href": "/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType?lang=en" + } + }, + "annotation": {}, + "description": [], + "has_children": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#SynonymType", + "is_defining_ontology": true, + "is_obsolete": false, + "is_preferred_root": false, + "is_root": true, + "label": "synonym_type", + "lang": "en", + "obo_id": "OIO:SynonymType", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "ontology_name": "oio", + "short_form": "OIO_SynonymType", + "synonyms": [] + } +] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref.json new file mode 100644 index 000000000..ac6c60b3e --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref.json @@ -0,0 +1,25 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": {}, + "label": "database_cross_reference", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": true, + "has_children": false, + "is_root": true, + "short_form": "OIO_DbXref", + "obo_id": "OIO:DbXref", + "is_preferred_root": false, + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref?lang=en" + }, + "graph": { + "href": "http://localhost:8080/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/graph" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/ancestors.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/ancestors.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/ancestors.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/children.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/children.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/children.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/descendants.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/descendants.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/descendants.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/hierarchicalAncestors.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/hierarchicalAncestors.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/hierarchicalChildren.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/hierarchicalChildren.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/hierarchicalDescendants.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/hierarchicalDescendants.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/hierarchicalParents.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/hierarchicalParents.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/hierarchicalParents.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/parents.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/parents.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523DbXref/parents.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition.json new file mode 100644 index 000000000..060155cc5 --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition.json @@ -0,0 +1,84 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#Definition", + "lang": "en", + "description": [ + "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + ], + "synonyms": [], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://www.obofoundry.org/wiki/index.php/Definitions" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "URL:http://www.obofoundry.org/wiki/index.php/Definitions" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "The textual definition of the current term. There must be zero or one instances of this tag per term description", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "definition", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": true, + "has_children": false, + "is_root": true, + "short_form": "OIO_Definition", + "obo_id": "OIO:Definition", + "obo_xref": [ + { + "id": "http://www.obofoundry.org/wiki/index.php/Definitions", + "url": "http://www.obofoundry.org/wiki/index.php/Definitions" + } + ], + "is_preferred_root": false, + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition?lang=en" + }, + "graph": { + "href": "http://localhost:8080/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/graph" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/ancestors.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/ancestors.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/ancestors.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/children.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/children.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/children.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/descendants.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/descendants.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/descendants.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/hierarchicalAncestors.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/hierarchicalAncestors.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/hierarchicalChildren.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/hierarchicalChildren.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/hierarchicalDescendants.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/hierarchicalDescendants.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/hierarchicalParents.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/hierarchicalParents.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/hierarchicalParents.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/parents.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/parents.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Definition/parents.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json new file mode 100644 index 000000000..222c6ba28 --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass.json @@ -0,0 +1,57 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#ObsoleteClass", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": { + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "pseudo-class. in the oboInOwl translation, all obsolete classes are subclasses of this class. Note that this is not a metaclass", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "obsolete_class", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": true, + "has_children": false, + "is_root": true, + "short_form": "OIO_ObsoleteClass", + "obo_id": "OIO:ObsoleteClass", + "is_preferred_root": false, + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass?lang=en" + }, + "graph": { + "href": "http://localhost:8080/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/graph" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/ancestors.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/ancestors.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/ancestors.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/children.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/children.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/children.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/descendants.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/descendants.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/descendants.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/hierarchicalAncestors.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/hierarchicalAncestors.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/hierarchicalChildren.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/hierarchicalChildren.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/hierarchicalDescendants.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/hierarchicalDescendants.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/hierarchicalParents.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/hierarchicalParents.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/hierarchicalParents.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/parents.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/parents.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523ObsoleteClass/parents.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset.json new file mode 100644 index 000000000..03abf636f --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset.json @@ -0,0 +1,87 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#Subset", + "lang": "en", + "description": [], + "synonyms": [ + "slim", + "GO-slim", + "view", + "partition" + ], + "annotation": { + "has_dbxref": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboFormat#oboFormat_subsetdef" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboFormat:subsetdef" + }, + "isObsolete": false + } + ], + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "A grouping of terms from an ontology or ontologies. Note that this is not a metaclass - classes are linked to subsets via oboInOwl:inSubset", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "subset", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": true, + "has_children": false, + "is_root": true, + "short_form": "OIO_Subset", + "obo_id": "OIO:Subset", + "obo_xref": [ + { + "id": "http://purl.org/obo/owl/oboFormat#oboFormat_subsetdef", + "url": "http://purl.org/obo/owl/oboFormat#oboFormat_subsetdef" + } + ], + "is_preferred_root": false, + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset?lang=en" + }, + "graph": { + "href": "http://localhost:8080/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/graph" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/ancestors.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/ancestors.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/ancestors.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/children.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/children.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/children.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/descendants.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/descendants.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/descendants.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/hierarchicalAncestors.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/hierarchicalAncestors.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/hierarchicalChildren.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/hierarchicalChildren.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/hierarchicalDescendants.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/hierarchicalDescendants.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/hierarchicalParents.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/hierarchicalParents.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/hierarchicalParents.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/parents.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/parents.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Subset/parents.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym.json new file mode 100644 index 000000000..a63f14403 --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym.json @@ -0,0 +1,59 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "lang": "en", + "description": [ + "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string" + ], + "synonyms": [], + "annotation": { + "has_definition": [ + { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/2001/XMLSchema#anyURI", + "value": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm" + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "value": "oboInOwl:cjm" + }, + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": { + "type": [ + "literal" + ], + "datatype": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString", + "value": "An instance of synonym usage. synonym instances are linked to classes via oboInOwl:has*Synonym properties", + "lang": "en" + }, + "isObsolete": false + } + ] + }, + "label": "synonym", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": true, + "has_children": false, + "is_root": true, + "short_form": "OIO_Synonym", + "obo_id": "OIO:Synonym", + "is_preferred_root": false, + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym?lang=en" + }, + "graph": { + "href": "http://localhost:8080/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/graph" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/ancestors.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/ancestors.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/ancestors.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/children.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/children.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/children.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/descendants.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/descendants.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/descendants.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/hierarchicalAncestors.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/hierarchicalAncestors.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/hierarchicalChildren.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/hierarchicalChildren.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/hierarchicalDescendants.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/hierarchicalDescendants.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/hierarchicalParents.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/hierarchicalParents.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/hierarchicalParents.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/parents.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/parents.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523Synonym/parents.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType.json new file mode 100644 index 000000000..cc50cdde0 --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType.json @@ -0,0 +1,25 @@ +{ + "iri": "http://www.geneontology.org/formats/oboInOwl#SynonymType", + "lang": "en", + "description": [], + "synonyms": [], + "annotation": {}, + "label": "synonym_type", + "ontology_name": "oio", + "ontology_iri": "http://www.geneontology.org/formats/oboInOwl", + "is_obsolete": false, + "is_defining_ontology": true, + "has_children": false, + "is_root": true, + "short_form": "OIO_SynonymType", + "obo_id": "OIO:SynonymType", + "is_preferred_root": false, + "_links": { + "self": { + "href": "http://localhost:8080/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType?lang=en" + }, + "graph": { + "href": "http://localhost:8080/api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/graph" + } + } +} \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/ancestors.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/ancestors.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/ancestors.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/children.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/children.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/children.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/descendants.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/descendants.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/descendants.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/hierarchicalAncestors.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/hierarchicalAncestors.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/hierarchicalChildren.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/hierarchicalChildren.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/hierarchicalDescendants.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/hierarchicalDescendants.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/hierarchicalParents.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/hierarchicalParents.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/hierarchicalParents.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/parents.json b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/parents.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/ontologies/oio/terms/http%253A%252F%252Fwww.geneontology.org%252Fformats%252FoboInOwl%2523SynonymType/parents.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AnnotationProperty.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AnnotationProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AnnotationProperty.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AnnotationProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DatatypeProperty.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DatatypeProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DatatypeProperty.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DatatypeProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedProperty.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedProperty.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523FunctionalProperty.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523FunctionalProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523FunctionalProperty.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523FunctionalProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523OntologyProperty.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523OntologyProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523OntologyProperty.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523OntologyProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty.json b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty.json +++ b/testcases_expected_output_api/ontologies/owl/classes/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json index 16bce0107..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent.json index 16bce0107..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses.json index 16bce0107..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties.json index 16bce0107..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation.json index 16bce0107..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AnnotationProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AnnotationProperty.json index 16bce0107..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AnnotationProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AnnotationProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty.json index 16bce0107..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom.json index 16bce0107..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class.json index 16bce0107..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:06 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DatatypeProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DatatypeProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DatatypeProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DatatypeProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523FunctionalProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523FunctionalProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523FunctionalProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523FunctionalProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523OntologyProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523OntologyProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523OntologyProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523OntologyProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523allValuesFrom.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523allValuesFrom.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523allValuesFrom.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523allValuesFrom.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedSource.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedSource.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedSource.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedSource.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedTarget.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedTarget.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedTarget.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedTarget.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523assertionProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523assertionProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523assertionProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523assertionProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523backwardCompatibleWith.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523backwardCompatibleWith.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523backwardCompatibleWith.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523backwardCompatibleWith.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomDataProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomDataProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomDataProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomDataProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomObjectProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomObjectProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomObjectProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomObjectProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523cardinality.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523cardinality.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523cardinality.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523cardinality.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523complementOf.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523complementOf.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523complementOf.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523complementOf.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523datatypeComplementOf.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523datatypeComplementOf.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523datatypeComplementOf.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523datatypeComplementOf.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523deprecated.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523deprecated.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523deprecated.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523deprecated.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523differentFrom.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523differentFrom.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523differentFrom.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523differentFrom.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointUnionOf.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointUnionOf.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointUnionOf.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointUnionOf.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointWith.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointWith.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointWith.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointWith.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523distinctMembers.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523distinctMembers.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523distinctMembers.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523distinctMembers.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentClass.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentClass.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentClass.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasKey.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasKey.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasKey.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasKey.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasSelf.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasSelf.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasSelf.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasSelf.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasValue.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasValue.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasValue.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasValue.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523incompatibleWith.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523incompatibleWith.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523incompatibleWith.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523incompatibleWith.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523intersectionOf.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523intersectionOf.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523intersectionOf.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523intersectionOf.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523inverseOf.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523inverseOf.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523inverseOf.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523inverseOf.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxCardinality.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxCardinality.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxCardinality.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxCardinality.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxQualifiedCardinality.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxQualifiedCardinality.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxQualifiedCardinality.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxQualifiedCardinality.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523members.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523members.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523members.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523members.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minCardinality.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minCardinality.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minCardinality.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minCardinality.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minQualifiedCardinality.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minQualifiedCardinality.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minQualifiedCardinality.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minQualifiedCardinality.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onClass.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onClass.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onClass.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onClass.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDataRange.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDataRange.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDataRange.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDataRange.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDatatype.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDatatype.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDatatype.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDatatype.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperties.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperties.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperties.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperties.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523oneOf.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523oneOf.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523oneOf.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523oneOf.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523priorVersion.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523priorVersion.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523priorVersion.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523priorVersion.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyChainAxiom.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyChainAxiom.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyChainAxiom.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyChainAxiom.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyDisjointWith.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyDisjointWith.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyDisjointWith.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyDisjointWith.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523qualifiedCardinality.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523qualifiedCardinality.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523qualifiedCardinality.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523qualifiedCardinality.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sameAs.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sameAs.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sameAs.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sameAs.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523someValuesFrom.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523someValuesFrom.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523someValuesFrom.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523someValuesFrom.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sourceIndividual.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sourceIndividual.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sourceIndividual.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sourceIndividual.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetIndividual.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetIndividual.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetIndividual.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetIndividual.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetValue.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetValue.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetValue.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetValue.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topDataProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topDataProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topDataProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topDataProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topObjectProperty.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topObjectProperty.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topObjectProperty.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topObjectProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523unionOf.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523unionOf.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523unionOf.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523unionOf.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523versionInfo.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523versionInfo.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523versionInfo.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523versionInfo.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523withRestrictions.json b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523withRestrictions.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523withRestrictions.json +++ b/testcases_expected_output_api/ontologies/owl/entities/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523withRestrictions.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/properties.json b/testcases_expected_output_api/ontologies/owl/properties.json index 15f9c98b9..f0858f4b6 100644 --- a/testcases_expected_output_api/ontologies/owl/properties.json +++ b/testcases_expected_output_api/ontologies/owl/properties.json @@ -25,10 +25,10 @@ "is_root": false, "label": "isDefinedBy", "lang": "en", - "obo_id": "isDefinedBy", + "obo_id": "RDFS:isDefinedBy", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "isDefinedBy", + "short_form": "RDFS_isDefinedBy", "synonyms": [] }, { @@ -54,10 +54,10 @@ "is_root": true, "label": "seeAlso", "lang": "en", - "obo_id": "seeAlso", + "obo_id": "RDFS:seeAlso", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "seeAlso", + "short_form": "RDFS_seeAlso", "synonyms": [] }, { @@ -77,10 +77,10 @@ "is_root": true, "label": "comment", "lang": "en", - "obo_id": "comment", + "obo_id": "RDFS:comment", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "comment", + "short_form": "RDFS_comment", "synonyms": [] }, { @@ -100,10 +100,10 @@ "is_root": true, "label": "domain", "lang": "en", - "obo_id": "domain", + "obo_id": "RDFS:domain", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "domain", + "short_form": "RDFS_domain", "synonyms": [] }, { @@ -123,10 +123,10 @@ "is_root": true, "label": "label", "lang": "en", - "obo_id": "label", + "obo_id": "RDFS:label", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "label", + "short_form": "RDFS_label", "synonyms": [] }, { @@ -146,10 +146,10 @@ "is_root": true, "label": "member", "lang": "en", - "obo_id": "member", + "obo_id": "RDFS:member", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "member", + "short_form": "RDFS_member", "synonyms": [] }, { @@ -169,10 +169,10 @@ "is_root": true, "label": "range", "lang": "en", - "obo_id": "range", + "obo_id": "RDFS:range", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "range", + "short_form": "RDFS_range", "synonyms": [] }, { @@ -192,10 +192,10 @@ "is_root": true, "label": "subClassOf", "lang": "en", - "obo_id": "subClassOf", + "obo_id": "RDFS:subClassOf", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "subClassOf", + "short_form": "RDFS_subClassOf", "synonyms": [] }, { @@ -215,10 +215,10 @@ "is_root": true, "label": "subPropertyOf", "lang": "en", - "obo_id": "subPropertyOf", + "obo_id": "RDFS:subPropertyOf", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "subPropertyOf", + "short_form": "RDFS_subPropertyOf", "synonyms": [] }, { @@ -238,10 +238,10 @@ "is_root": true, "label": "allValuesFrom", "lang": "en", - "obo_id": "allValuesFrom", + "obo_id": "OWL:allValuesFrom", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "allValuesFrom", + "short_form": "OWL_allValuesFrom", "synonyms": [] }, { @@ -261,10 +261,10 @@ "is_root": true, "label": "annotatedProperty", "lang": "en", - "obo_id": "annotatedProperty", + "obo_id": "OWL:annotatedProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "annotatedProperty", + "short_form": "OWL_annotatedProperty", "synonyms": [] }, { @@ -284,10 +284,10 @@ "is_root": true, "label": "annotatedSource", "lang": "en", - "obo_id": "annotatedSource", + "obo_id": "OWL:annotatedSource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "annotatedSource", + "short_form": "OWL_annotatedSource", "synonyms": [] }, { @@ -307,10 +307,10 @@ "is_root": true, "label": "annotatedTarget", "lang": "en", - "obo_id": "annotatedTarget", + "obo_id": "OWL:annotatedTarget", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "annotatedTarget", + "short_form": "OWL_annotatedTarget", "synonyms": [] }, { @@ -330,10 +330,10 @@ "is_root": true, "label": "assertionProperty", "lang": "en", - "obo_id": "assertionProperty", + "obo_id": "OWL:assertionProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "assertionProperty", + "short_form": "OWL_assertionProperty", "synonyms": [] }, { @@ -353,10 +353,10 @@ "is_root": true, "label": "backwardCompatibleWith", "lang": "en", - "obo_id": "backwardCompatibleWith", + "obo_id": "OWL:backwardCompatibleWith", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "backwardCompatibleWith", + "short_form": "OWL_backwardCompatibleWith", "synonyms": [] }, { @@ -376,10 +376,10 @@ "is_root": true, "label": "bottomDataProperty", "lang": "en", - "obo_id": "bottomDataProperty", + "obo_id": "OWL:bottomDataProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "bottomDataProperty", + "short_form": "OWL_bottomDataProperty", "synonyms": [] }, { @@ -399,10 +399,10 @@ "is_root": true, "label": "bottomObjectProperty", "lang": "en", - "obo_id": "bottomObjectProperty", + "obo_id": "OWL:bottomObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "bottomObjectProperty", + "short_form": "OWL_bottomObjectProperty", "synonyms": [] }, { @@ -422,10 +422,10 @@ "is_root": true, "label": "cardinality", "lang": "en", - "obo_id": "cardinality", + "obo_id": "OWL:cardinality", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "cardinality", + "short_form": "OWL_cardinality", "synonyms": [] }, { @@ -445,10 +445,10 @@ "is_root": true, "label": "complementOf", "lang": "en", - "obo_id": "complementOf", + "obo_id": "OWL:complementOf", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "complementOf", + "short_form": "OWL_complementOf", "synonyms": [] }, { @@ -468,10 +468,10 @@ "is_root": true, "label": "datatypeComplementOf", "lang": "en", - "obo_id": "datatypeComplementOf", + "obo_id": "OWL:datatypeComplementOf", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "datatypeComplementOf", + "short_form": "OWL_datatypeComplementOf", "synonyms": [] }, { @@ -491,10 +491,10 @@ "is_root": true, "label": "deprecated", "lang": "en", - "obo_id": "deprecated", + "obo_id": "OWL:deprecated", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "deprecated", + "short_form": "OWL_deprecated", "synonyms": [] }, { @@ -514,10 +514,10 @@ "is_root": true, "label": "differentFrom", "lang": "en", - "obo_id": "differentFrom", + "obo_id": "OWL:differentFrom", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "differentFrom", + "short_form": "OWL_differentFrom", "synonyms": [] }, { @@ -537,10 +537,10 @@ "is_root": true, "label": "disjointUnionOf", "lang": "en", - "obo_id": "disjointUnionOf", + "obo_id": "OWL:disjointUnionOf", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "disjointUnionOf", + "short_form": "OWL_disjointUnionOf", "synonyms": [] }, { @@ -560,10 +560,10 @@ "is_root": true, "label": "disjointWith", "lang": "en", - "obo_id": "disjointWith", + "obo_id": "OWL:disjointWith", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "disjointWith", + "short_form": "OWL_disjointWith", "synonyms": [] }, { @@ -583,10 +583,10 @@ "is_root": true, "label": "distinctMembers", "lang": "en", - "obo_id": "distinctMembers", + "obo_id": "OWL:distinctMembers", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "distinctMembers", + "short_form": "OWL_distinctMembers", "synonyms": [] }, { @@ -606,10 +606,10 @@ "is_root": true, "label": "equivalentClass", "lang": "en", - "obo_id": "equivalentClass", + "obo_id": "OWL:equivalentClass", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "equivalentClass", + "short_form": "OWL_equivalentClass", "synonyms": [] }, { @@ -629,10 +629,10 @@ "is_root": true, "label": "equivalentProperty", "lang": "en", - "obo_id": "equivalentProperty", + "obo_id": "OWL:equivalentProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "equivalentProperty", + "short_form": "OWL_equivalentProperty", "synonyms": [] }, { @@ -652,10 +652,10 @@ "is_root": true, "label": "hasKey", "lang": "en", - "obo_id": "hasKey", + "obo_id": "OWL:hasKey", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "hasKey", + "short_form": "OWL_hasKey", "synonyms": [] }, { @@ -675,10 +675,10 @@ "is_root": true, "label": "hasSelf", "lang": "en", - "obo_id": "hasSelf", + "obo_id": "OWL:hasSelf", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "hasSelf", + "short_form": "OWL_hasSelf", "synonyms": [] }, { @@ -698,10 +698,10 @@ "is_root": true, "label": "hasValue", "lang": "en", - "obo_id": "hasValue", + "obo_id": "OWL:hasValue", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "hasValue", + "short_form": "OWL_hasValue", "synonyms": [] }, { @@ -721,10 +721,10 @@ "is_root": true, "label": "incompatibleWith", "lang": "en", - "obo_id": "incompatibleWith", + "obo_id": "OWL:incompatibleWith", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "incompatibleWith", + "short_form": "OWL_incompatibleWith", "synonyms": [] }, { @@ -744,10 +744,10 @@ "is_root": true, "label": "intersectionOf", "lang": "en", - "obo_id": "intersectionOf", + "obo_id": "OWL:intersectionOf", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "intersectionOf", + "short_form": "OWL_intersectionOf", "synonyms": [] }, { @@ -767,10 +767,10 @@ "is_root": true, "label": "inverseOf", "lang": "en", - "obo_id": "inverseOf", + "obo_id": "OWL:inverseOf", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "inverseOf", + "short_form": "OWL_inverseOf", "synonyms": [] }, { @@ -790,10 +790,10 @@ "is_root": true, "label": "maxCardinality", "lang": "en", - "obo_id": "maxCardinality", + "obo_id": "OWL:maxCardinality", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "maxCardinality", + "short_form": "OWL_maxCardinality", "synonyms": [] }, { @@ -813,10 +813,10 @@ "is_root": true, "label": "maxQualifiedCardinality", "lang": "en", - "obo_id": "maxQualifiedCardinality", + "obo_id": "OWL:maxQualifiedCardinality", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "maxQualifiedCardinality", + "short_form": "OWL_maxQualifiedCardinality", "synonyms": [] }, { @@ -836,10 +836,10 @@ "is_root": true, "label": "members", "lang": "en", - "obo_id": "members", + "obo_id": "OWL:members", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "members", + "short_form": "OWL_members", "synonyms": [] }, { @@ -859,10 +859,10 @@ "is_root": true, "label": "minCardinality", "lang": "en", - "obo_id": "minCardinality", + "obo_id": "OWL:minCardinality", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "minCardinality", + "short_form": "OWL_minCardinality", "synonyms": [] }, { @@ -882,10 +882,10 @@ "is_root": true, "label": "minQualifiedCardinality", "lang": "en", - "obo_id": "minQualifiedCardinality", + "obo_id": "OWL:minQualifiedCardinality", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "minQualifiedCardinality", + "short_form": "OWL_minQualifiedCardinality", "synonyms": [] }, { @@ -905,10 +905,10 @@ "is_root": true, "label": "onClass", "lang": "en", - "obo_id": "onClass", + "obo_id": "OWL:onClass", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "onClass", + "short_form": "OWL_onClass", "synonyms": [] }, { @@ -928,10 +928,10 @@ "is_root": true, "label": "onDataRange", "lang": "en", - "obo_id": "onDataRange", + "obo_id": "OWL:onDataRange", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "onDataRange", + "short_form": "OWL_onDataRange", "synonyms": [] }, { @@ -951,10 +951,10 @@ "is_root": true, "label": "onDatatype", "lang": "en", - "obo_id": "onDatatype", + "obo_id": "OWL:onDatatype", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "onDatatype", + "short_form": "OWL_onDatatype", "synonyms": [] }, { @@ -974,10 +974,10 @@ "is_root": true, "label": "onProperties", "lang": "en", - "obo_id": "onProperties", + "obo_id": "OWL:onProperties", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "onProperties", + "short_form": "OWL_onProperties", "synonyms": [] }, { @@ -997,10 +997,10 @@ "is_root": true, "label": "onProperty", "lang": "en", - "obo_id": "onProperty", + "obo_id": "OWL:onProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "onProperty", + "short_form": "OWL_onProperty", "synonyms": [] }, { @@ -1020,10 +1020,10 @@ "is_root": true, "label": "oneOf", "lang": "en", - "obo_id": "oneOf", + "obo_id": "OWL:oneOf", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "oneOf", + "short_form": "OWL_oneOf", "synonyms": [] }, { @@ -1043,10 +1043,10 @@ "is_root": true, "label": "priorVersion", "lang": "en", - "obo_id": "priorVersion", + "obo_id": "OWL:priorVersion", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "priorVersion", + "short_form": "OWL_priorVersion", "synonyms": [] }, { @@ -1066,10 +1066,10 @@ "is_root": true, "label": "propertyChainAxiom", "lang": "en", - "obo_id": "propertyChainAxiom", + "obo_id": "OWL:propertyChainAxiom", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "propertyChainAxiom", + "short_form": "OWL_propertyChainAxiom", "synonyms": [] }, { @@ -1089,10 +1089,10 @@ "is_root": true, "label": "propertyDisjointWith", "lang": "en", - "obo_id": "propertyDisjointWith", + "obo_id": "OWL:propertyDisjointWith", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "propertyDisjointWith", + "short_form": "OWL_propertyDisjointWith", "synonyms": [] }, { @@ -1112,10 +1112,10 @@ "is_root": true, "label": "qualifiedCardinality", "lang": "en", - "obo_id": "qualifiedCardinality", + "obo_id": "OWL:qualifiedCardinality", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "qualifiedCardinality", + "short_form": "OWL_qualifiedCardinality", "synonyms": [] }, { @@ -1135,10 +1135,10 @@ "is_root": true, "label": "sameAs", "lang": "en", - "obo_id": "sameAs", + "obo_id": "OWL:sameAs", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "sameAs", + "short_form": "OWL_sameAs", "synonyms": [] }, { @@ -1158,10 +1158,10 @@ "is_root": true, "label": "someValuesFrom", "lang": "en", - "obo_id": "someValuesFrom", + "obo_id": "OWL:someValuesFrom", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "someValuesFrom", + "short_form": "OWL_someValuesFrom", "synonyms": [] }, { @@ -1181,10 +1181,10 @@ "is_root": true, "label": "sourceIndividual", "lang": "en", - "obo_id": "sourceIndividual", + "obo_id": "OWL:sourceIndividual", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "sourceIndividual", + "short_form": "OWL_sourceIndividual", "synonyms": [] }, { @@ -1204,10 +1204,10 @@ "is_root": true, "label": "targetIndividual", "lang": "en", - "obo_id": "targetIndividual", + "obo_id": "OWL:targetIndividual", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "targetIndividual", + "short_form": "OWL_targetIndividual", "synonyms": [] }, { @@ -1227,10 +1227,10 @@ "is_root": true, "label": "targetValue", "lang": "en", - "obo_id": "targetValue", + "obo_id": "OWL:targetValue", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "targetValue", + "short_form": "OWL_targetValue", "synonyms": [] }, { @@ -1250,10 +1250,10 @@ "is_root": true, "label": "topDataProperty", "lang": "en", - "obo_id": "topDataProperty", + "obo_id": "OWL:topDataProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "topDataProperty", + "short_form": "OWL_topDataProperty", "synonyms": [] }, { @@ -1273,10 +1273,10 @@ "is_root": true, "label": "topObjectProperty", "lang": "en", - "obo_id": "topObjectProperty", + "obo_id": "OWL:topObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "topObjectProperty", + "short_form": "OWL_topObjectProperty", "synonyms": [] }, { @@ -1296,10 +1296,10 @@ "is_root": true, "label": "unionOf", "lang": "en", - "obo_id": "unionOf", + "obo_id": "OWL:unionOf", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "unionOf", + "short_form": "OWL_unionOf", "synonyms": [] }, { @@ -1319,10 +1319,10 @@ "is_root": true, "label": "versionInfo", "lang": "en", - "obo_id": "versionInfo", + "obo_id": "OWL:versionInfo", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "versionInfo", + "short_form": "OWL_versionInfo", "synonyms": [] }, { @@ -1342,10 +1342,10 @@ "is_root": true, "label": "withRestrictions", "lang": "en", - "obo_id": "withRestrictions", + "obo_id": "OWL:withRestrictions", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "withRestrictions", + "short_form": "OWL_withRestrictions", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json index ba1af32d6..622dc1706 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "comment", - "obo_id": "comment", + "short_form": "RDFS_comment", + "obo_id": "RDFS:comment", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json index 6dd83159c..6db8398dc 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "domain", - "obo_id": "domain", + "short_form": "RDFS_domain", + "obo_id": "RDFS:domain", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json index 0f6b549ff..d4cdec4d0 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": false, - "short_form": "isDefinedBy", - "obo_id": "isDefinedBy", + "short_form": "RDFS_isDefinedBy", + "obo_id": "RDFS:isDefinedBy", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json index 4f2b579b5..22b7317c5 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "label", - "obo_id": "label", + "short_form": "RDFS_label", + "obo_id": "RDFS:label", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json index 0b683e475..13e8d8005 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "member", - "obo_id": "member", + "short_form": "RDFS_member", + "obo_id": "RDFS:member", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json index b4cb19e40..2cf98ee12 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "range", - "obo_id": "range", + "short_form": "RDFS_range", + "obo_id": "RDFS:range", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json index 682bad403..0e01922d7 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": true, "is_root": true, - "short_form": "seeAlso", - "obo_id": "seeAlso", + "short_form": "RDFS_seeAlso", + "obo_id": "RDFS:seeAlso", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json index 6d78a6caf..430edbdc5 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "subClassOf", - "obo_id": "subClassOf", + "short_form": "RDFS_subClassOf", + "obo_id": "RDFS:subClassOf", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json index f920537f8..f2a5a8867 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "subPropertyOf", - "obo_id": "subPropertyOf", + "short_form": "RDFS_subPropertyOf", + "obo_id": "RDFS:subPropertyOf", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523allValuesFrom.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523allValuesFrom.json index 131c0537c..3a707b2f1 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523allValuesFrom.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523allValuesFrom.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "allValuesFrom", - "obo_id": "allValuesFrom", + "short_form": "OWL_allValuesFrom", + "obo_id": "OWL:allValuesFrom", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523allValuesFrom?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedProperty.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedProperty.json index 583e218b9..2c5bbf794 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedProperty.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "annotatedProperty", - "obo_id": "annotatedProperty", + "short_form": "OWL_annotatedProperty", + "obo_id": "OWL:annotatedProperty", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedProperty?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedSource.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedSource.json index bb4c51e9f..421dbdc8e 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedSource.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedSource.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "annotatedSource", - "obo_id": "annotatedSource", + "short_form": "OWL_annotatedSource", + "obo_id": "OWL:annotatedSource", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedSource?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedTarget.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedTarget.json index 0ea6d9fb1..23b871554 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedTarget.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedTarget.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "annotatedTarget", - "obo_id": "annotatedTarget", + "short_form": "OWL_annotatedTarget", + "obo_id": "OWL:annotatedTarget", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523annotatedTarget?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523assertionProperty.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523assertionProperty.json index f6986ab19..92ff34726 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523assertionProperty.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523assertionProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "assertionProperty", - "obo_id": "assertionProperty", + "short_form": "OWL_assertionProperty", + "obo_id": "OWL:assertionProperty", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523assertionProperty?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523backwardCompatibleWith.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523backwardCompatibleWith.json index 9394cfa35..64303796b 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523backwardCompatibleWith.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523backwardCompatibleWith.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "backwardCompatibleWith", - "obo_id": "backwardCompatibleWith", + "short_form": "OWL_backwardCompatibleWith", + "obo_id": "OWL:backwardCompatibleWith", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523backwardCompatibleWith?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomDataProperty.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomDataProperty.json index da0a18ede..832cfe56f 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomDataProperty.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomDataProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "bottomDataProperty", - "obo_id": "bottomDataProperty", + "short_form": "OWL_bottomDataProperty", + "obo_id": "OWL:bottomDataProperty", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomDataProperty?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomObjectProperty.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomObjectProperty.json index d7e5405cd..d693670d8 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomObjectProperty.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomObjectProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "bottomObjectProperty", - "obo_id": "bottomObjectProperty", + "short_form": "OWL_bottomObjectProperty", + "obo_id": "OWL:bottomObjectProperty", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523bottomObjectProperty?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523cardinality.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523cardinality.json index 51cb10204..7b473feb3 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523cardinality.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523cardinality.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "cardinality", - "obo_id": "cardinality", + "short_form": "OWL_cardinality", + "obo_id": "OWL:cardinality", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523cardinality?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523complementOf.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523complementOf.json index 10365db44..e89a5bd94 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523complementOf.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523complementOf.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "complementOf", - "obo_id": "complementOf", + "short_form": "OWL_complementOf", + "obo_id": "OWL:complementOf", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523complementOf?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523datatypeComplementOf.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523datatypeComplementOf.json index dce30837c..86ee6cefa 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523datatypeComplementOf.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523datatypeComplementOf.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "datatypeComplementOf", - "obo_id": "datatypeComplementOf", + "short_form": "OWL_datatypeComplementOf", + "obo_id": "OWL:datatypeComplementOf", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523datatypeComplementOf?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523deprecated.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523deprecated.json index 3a51d1570..23823fabb 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523deprecated.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523deprecated.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "deprecated", - "obo_id": "deprecated", + "short_form": "OWL_deprecated", + "obo_id": "OWL:deprecated", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523deprecated?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523differentFrom.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523differentFrom.json index e538387b9..060919239 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523differentFrom.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523differentFrom.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "differentFrom", - "obo_id": "differentFrom", + "short_form": "OWL_differentFrom", + "obo_id": "OWL:differentFrom", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523differentFrom?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointUnionOf.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointUnionOf.json index 9ebafee62..eeb137108 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointUnionOf.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointUnionOf.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "disjointUnionOf", - "obo_id": "disjointUnionOf", + "short_form": "OWL_disjointUnionOf", + "obo_id": "OWL:disjointUnionOf", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointUnionOf?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointWith.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointWith.json index ab8323f6f..6c5e96b35 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointWith.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointWith.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "disjointWith", - "obo_id": "disjointWith", + "short_form": "OWL_disjointWith", + "obo_id": "OWL:disjointWith", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523disjointWith?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523distinctMembers.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523distinctMembers.json index 71179bf4e..9b204e983 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523distinctMembers.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523distinctMembers.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "distinctMembers", - "obo_id": "distinctMembers", + "short_form": "OWL_distinctMembers", + "obo_id": "OWL:distinctMembers", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523distinctMembers?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentClass.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentClass.json index 0c153a151..6f9f1afc2 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentClass.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentClass.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "equivalentClass", - "obo_id": "equivalentClass", + "short_form": "OWL_equivalentClass", + "obo_id": "OWL:equivalentClass", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentClass?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentProperty.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentProperty.json index 5afb3778d..e48eedc4e 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentProperty.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "equivalentProperty", - "obo_id": "equivalentProperty", + "short_form": "OWL_equivalentProperty", + "obo_id": "OWL:equivalentProperty", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523equivalentProperty?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasKey.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasKey.json index e90d70ac6..07a72a352 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasKey.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasKey.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "hasKey", - "obo_id": "hasKey", + "short_form": "OWL_hasKey", + "obo_id": "OWL:hasKey", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasKey?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasSelf.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasSelf.json index 4543f7634..5f23f5db6 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasSelf.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasSelf.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "hasSelf", - "obo_id": "hasSelf", + "short_form": "OWL_hasSelf", + "obo_id": "OWL:hasSelf", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasSelf?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasValue.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasValue.json index 0247d4199..4f119e898 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasValue.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasValue.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "hasValue", - "obo_id": "hasValue", + "short_form": "OWL_hasValue", + "obo_id": "OWL:hasValue", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523hasValue?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523incompatibleWith.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523incompatibleWith.json index ba15d17d3..264e8441d 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523incompatibleWith.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523incompatibleWith.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "incompatibleWith", - "obo_id": "incompatibleWith", + "short_form": "OWL_incompatibleWith", + "obo_id": "OWL:incompatibleWith", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523incompatibleWith?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523intersectionOf.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523intersectionOf.json index cc965e31c..9becf04c1 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523intersectionOf.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523intersectionOf.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "intersectionOf", - "obo_id": "intersectionOf", + "short_form": "OWL_intersectionOf", + "obo_id": "OWL:intersectionOf", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523intersectionOf?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523inverseOf.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523inverseOf.json index 447cb07c2..d0d9653ec 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523inverseOf.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523inverseOf.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "inverseOf", - "obo_id": "inverseOf", + "short_form": "OWL_inverseOf", + "obo_id": "OWL:inverseOf", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523inverseOf?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxCardinality.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxCardinality.json index b3a818ec4..efe501f52 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxCardinality.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxCardinality.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "maxCardinality", - "obo_id": "maxCardinality", + "short_form": "OWL_maxCardinality", + "obo_id": "OWL:maxCardinality", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxCardinality?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxQualifiedCardinality.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxQualifiedCardinality.json index 9cb1bb4db..8bc0a2266 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxQualifiedCardinality.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxQualifiedCardinality.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "maxQualifiedCardinality", - "obo_id": "maxQualifiedCardinality", + "short_form": "OWL_maxQualifiedCardinality", + "obo_id": "OWL:maxQualifiedCardinality", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523maxQualifiedCardinality?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523members.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523members.json index 04cc6d9ec..c5b4e62e5 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523members.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523members.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "members", - "obo_id": "members", + "short_form": "OWL_members", + "obo_id": "OWL:members", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523members?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minCardinality.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minCardinality.json index 009ae0e41..d4e4a545f 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minCardinality.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minCardinality.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "minCardinality", - "obo_id": "minCardinality", + "short_form": "OWL_minCardinality", + "obo_id": "OWL:minCardinality", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minCardinality?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minQualifiedCardinality.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minQualifiedCardinality.json index 6d7c1861a..b830d4f88 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minQualifiedCardinality.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minQualifiedCardinality.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "minQualifiedCardinality", - "obo_id": "minQualifiedCardinality", + "short_form": "OWL_minQualifiedCardinality", + "obo_id": "OWL:minQualifiedCardinality", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523minQualifiedCardinality?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onClass.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onClass.json index 240b1860f..cb9e3da1c 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onClass.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onClass.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "onClass", - "obo_id": "onClass", + "short_form": "OWL_onClass", + "obo_id": "OWL:onClass", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onClass?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDataRange.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDataRange.json index d98dc5dfd..8808a7fb4 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDataRange.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDataRange.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "onDataRange", - "obo_id": "onDataRange", + "short_form": "OWL_onDataRange", + "obo_id": "OWL:onDataRange", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDataRange?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDatatype.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDatatype.json index bf158df62..4ee21320e 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDatatype.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDatatype.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "onDatatype", - "obo_id": "onDatatype", + "short_form": "OWL_onDatatype", + "obo_id": "OWL:onDatatype", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onDatatype?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperties.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperties.json index dba0a821d..3b0b810b0 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperties.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperties.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "onProperties", - "obo_id": "onProperties", + "short_form": "OWL_onProperties", + "obo_id": "OWL:onProperties", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperties?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperty.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperty.json index ccf70b1c1..6f4712b36 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperty.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "onProperty", - "obo_id": "onProperty", + "short_form": "OWL_onProperty", + "obo_id": "OWL:onProperty", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523onProperty?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523oneOf.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523oneOf.json index 02c55f88b..f17bd80c6 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523oneOf.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523oneOf.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "oneOf", - "obo_id": "oneOf", + "short_form": "OWL_oneOf", + "obo_id": "OWL:oneOf", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523oneOf?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523priorVersion.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523priorVersion.json index 7f01f9e84..6f429ac56 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523priorVersion.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523priorVersion.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "priorVersion", - "obo_id": "priorVersion", + "short_form": "OWL_priorVersion", + "obo_id": "OWL:priorVersion", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523priorVersion?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyChainAxiom.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyChainAxiom.json index 999e49499..41d29b8c8 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyChainAxiom.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyChainAxiom.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "propertyChainAxiom", - "obo_id": "propertyChainAxiom", + "short_form": "OWL_propertyChainAxiom", + "obo_id": "OWL:propertyChainAxiom", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyChainAxiom?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyDisjointWith.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyDisjointWith.json index ca9d809d0..286cfeb44 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyDisjointWith.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyDisjointWith.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "propertyDisjointWith", - "obo_id": "propertyDisjointWith", + "short_form": "OWL_propertyDisjointWith", + "obo_id": "OWL:propertyDisjointWith", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523propertyDisjointWith?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523qualifiedCardinality.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523qualifiedCardinality.json index dcfba62fb..7f2a35bae 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523qualifiedCardinality.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523qualifiedCardinality.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "qualifiedCardinality", - "obo_id": "qualifiedCardinality", + "short_form": "OWL_qualifiedCardinality", + "obo_id": "OWL:qualifiedCardinality", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523qualifiedCardinality?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sameAs.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sameAs.json index 30a3be269..32f93fe90 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sameAs.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sameAs.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "sameAs", - "obo_id": "sameAs", + "short_form": "OWL_sameAs", + "obo_id": "OWL:sameAs", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sameAs?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523someValuesFrom.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523someValuesFrom.json index 254aec009..deda35204 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523someValuesFrom.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523someValuesFrom.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "someValuesFrom", - "obo_id": "someValuesFrom", + "short_form": "OWL_someValuesFrom", + "obo_id": "OWL:someValuesFrom", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523someValuesFrom?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sourceIndividual.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sourceIndividual.json index e1dd8b27c..8a2529218 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sourceIndividual.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sourceIndividual.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "sourceIndividual", - "obo_id": "sourceIndividual", + "short_form": "OWL_sourceIndividual", + "obo_id": "OWL:sourceIndividual", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523sourceIndividual?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetIndividual.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetIndividual.json index 201189c69..5658a2fc7 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetIndividual.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetIndividual.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "targetIndividual", - "obo_id": "targetIndividual", + "short_form": "OWL_targetIndividual", + "obo_id": "OWL:targetIndividual", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetIndividual?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetValue.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetValue.json index e84af27e9..6a4248655 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetValue.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetValue.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "targetValue", - "obo_id": "targetValue", + "short_form": "OWL_targetValue", + "obo_id": "OWL:targetValue", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523targetValue?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topDataProperty.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topDataProperty.json index e24be3ddc..c9ef41feb 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topDataProperty.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topDataProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "topDataProperty", - "obo_id": "topDataProperty", + "short_form": "OWL_topDataProperty", + "obo_id": "OWL:topDataProperty", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topDataProperty?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topObjectProperty.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topObjectProperty.json index cffbd6222..9f46fc65b 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topObjectProperty.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topObjectProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "topObjectProperty", - "obo_id": "topObjectProperty", + "short_form": "OWL_topObjectProperty", + "obo_id": "OWL:topObjectProperty", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523topObjectProperty?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523unionOf.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523unionOf.json index 0dd0d2bec..1b84c9005 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523unionOf.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523unionOf.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "unionOf", - "obo_id": "unionOf", + "short_form": "OWL_unionOf", + "obo_id": "OWL:unionOf", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523unionOf?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523versionInfo.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523versionInfo.json index eb8274d68..58827866f 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523versionInfo.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523versionInfo.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "versionInfo", - "obo_id": "versionInfo", + "short_form": "OWL_versionInfo", + "obo_id": "OWL:versionInfo", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523versionInfo?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523withRestrictions.json b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523withRestrictions.json index 76e46a780..73bca9008 100644 --- a/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523withRestrictions.json +++ b/testcases_expected_output_api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523withRestrictions.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "withRestrictions", - "obo_id": "withRestrictions", + "short_form": "OWL_withRestrictions", + "obo_id": "OWL:withRestrictions", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/owl/properties/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523withRestrictions?lang=en" diff --git a/testcases_expected_output_api/ontologies/owl/terms.json b/testcases_expected_output_api/ontologies/owl/terms.json index 6ae4525e3..f3215a8bc 100644 --- a/testcases_expected_output_api/ontologies/owl/terms.json +++ b/testcases_expected_output_api/ontologies/owl/terms.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -89,10 +89,10 @@ "is_root": false, "label": "Container", "lang": "en", - "obo_id": "Container", + "obo_id": "RDFS:Container", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Container", + "short_form": "RDFS_Container", "synonyms": [] }, { @@ -143,10 +143,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] }, { @@ -185,10 +185,10 @@ "is_root": false, "label": "Literal", "lang": "en", - "obo_id": "Literal", + "obo_id": "RDFS:Literal", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Literal", + "short_form": "RDFS_Literal", "synonyms": [] }, { @@ -227,10 +227,10 @@ "is_root": false, "label": "AllDifferent", "lang": "en", - "obo_id": "AllDifferent", + "obo_id": "OWL:AllDifferent", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AllDifferent", + "short_form": "OWL_AllDifferent", "synonyms": [] }, { @@ -269,10 +269,10 @@ "is_root": false, "label": "AllDisjointClasses", "lang": "en", - "obo_id": "AllDisjointClasses", + "obo_id": "OWL:AllDisjointClasses", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AllDisjointClasses", + "short_form": "OWL_AllDisjointClasses", "synonyms": [] }, { @@ -311,10 +311,10 @@ "is_root": false, "label": "AllDisjointProperties", "lang": "en", - "obo_id": "AllDisjointProperties", + "obo_id": "OWL:AllDisjointProperties", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AllDisjointProperties", + "short_form": "OWL_AllDisjointProperties", "synonyms": [] }, { @@ -353,10 +353,10 @@ "is_root": false, "label": "Annotation", "lang": "en", - "obo_id": "Annotation", + "obo_id": "OWL:Annotation", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Annotation", + "short_form": "OWL_Annotation", "synonyms": [] }, { @@ -395,10 +395,10 @@ "is_root": false, "label": "AsymmetricProperty", "lang": "en", - "obo_id": "AsymmetricProperty", + "obo_id": "OWL:AsymmetricProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AsymmetricProperty", + "short_form": "OWL_AsymmetricProperty", "synonyms": [] }, { @@ -437,10 +437,10 @@ "is_root": false, "label": "Axiom", "lang": "en", - "obo_id": "Axiom", + "obo_id": "OWL:Axiom", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Axiom", + "short_form": "OWL_Axiom", "synonyms": [] }, { @@ -491,10 +491,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "OWL:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "OWL_Class", "synonyms": [] }, { @@ -533,10 +533,10 @@ "is_root": false, "label": "DataRange", "lang": "en", - "obo_id": "DataRange", + "obo_id": "OWL:DataRange", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DataRange", + "short_form": "OWL_DataRange", "synonyms": [] }, { @@ -575,10 +575,10 @@ "is_root": false, "label": "DeprecatedClass", "lang": "en", - "obo_id": "DeprecatedClass", + "obo_id": "OWL:DeprecatedClass", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DeprecatedClass", + "short_form": "OWL_DeprecatedClass", "synonyms": [] }, { @@ -617,10 +617,10 @@ "is_root": false, "label": "InverseFunctionalProperty", "lang": "en", - "obo_id": "InverseFunctionalProperty", + "obo_id": "OWL:InverseFunctionalProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "InverseFunctionalProperty", + "short_form": "OWL_InverseFunctionalProperty", "synonyms": [] }, { @@ -659,10 +659,10 @@ "is_root": false, "label": "IrreflexiveProperty", "lang": "en", - "obo_id": "IrreflexiveProperty", + "obo_id": "OWL:IrreflexiveProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "IrreflexiveProperty", + "short_form": "OWL_IrreflexiveProperty", "synonyms": [] }, { @@ -701,10 +701,10 @@ "is_root": false, "label": "NegativePropertyAssertion", "lang": "en", - "obo_id": "NegativePropertyAssertion", + "obo_id": "OWL:NegativePropertyAssertion", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "NegativePropertyAssertion", + "short_form": "OWL_NegativePropertyAssertion", "synonyms": [] }, { @@ -743,10 +743,10 @@ "is_root": false, "label": "Ontology", "lang": "en", - "obo_id": "Ontology", + "obo_id": "OWL:Ontology", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Ontology", + "short_form": "OWL_Ontology", "synonyms": [] }, { @@ -785,10 +785,10 @@ "is_root": false, "label": "ReflexiveProperty", "lang": "en", - "obo_id": "ReflexiveProperty", + "obo_id": "OWL:ReflexiveProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ReflexiveProperty", + "short_form": "OWL_ReflexiveProperty", "synonyms": [] }, { @@ -827,10 +827,10 @@ "is_root": false, "label": "Restriction", "lang": "en", - "obo_id": "Restriction", + "obo_id": "OWL:Restriction", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Restriction", + "short_form": "OWL_Restriction", "synonyms": [] }, { @@ -869,10 +869,10 @@ "is_root": false, "label": "SymmetricProperty", "lang": "en", - "obo_id": "SymmetricProperty", + "obo_id": "OWL:SymmetricProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "SymmetricProperty", + "short_form": "OWL_SymmetricProperty", "synonyms": [] }, { @@ -911,10 +911,10 @@ "is_root": false, "label": "TransitiveProperty", "lang": "en", - "obo_id": "TransitiveProperty", + "obo_id": "OWL:TransitiveProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "TransitiveProperty", + "short_form": "OWL_TransitiveProperty", "synonyms": [] }, { @@ -950,10 +950,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] }, { @@ -989,10 +989,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] }, { @@ -1016,10 +1016,10 @@ "is_root": true, "label": "ContainerMembershipProperty", "lang": "en", - "obo_id": "ContainerMembershipProperty", + "obo_id": "RDFS:ContainerMembershipProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ContainerMembershipProperty", + "short_form": "RDFS_ContainerMembershipProperty", "synonyms": [] }, { @@ -1043,10 +1043,10 @@ "is_root": true, "label": "AnnotationProperty", "lang": "en", - "obo_id": "AnnotationProperty", + "obo_id": "OWL:AnnotationProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AnnotationProperty", + "short_form": "OWL_AnnotationProperty", "synonyms": [] }, { @@ -1070,10 +1070,10 @@ "is_root": true, "label": "DatatypeProperty", "lang": "en", - "obo_id": "DatatypeProperty", + "obo_id": "OWL:DatatypeProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DatatypeProperty", + "short_form": "OWL_DatatypeProperty", "synonyms": [] }, { @@ -1097,10 +1097,10 @@ "is_root": true, "label": "DeprecatedProperty", "lang": "en", - "obo_id": "DeprecatedProperty", + "obo_id": "OWL:DeprecatedProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DeprecatedProperty", + "short_form": "OWL_DeprecatedProperty", "synonyms": [] }, { @@ -1124,10 +1124,10 @@ "is_root": true, "label": "FunctionalProperty", "lang": "en", - "obo_id": "FunctionalProperty", + "obo_id": "OWL:FunctionalProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "FunctionalProperty", + "short_form": "OWL_FunctionalProperty", "synonyms": [] }, { @@ -1151,10 +1151,10 @@ "is_root": true, "label": "NamedIndividual", "lang": "en", - "obo_id": "NamedIndividual", + "obo_id": "OWL:NamedIndividual", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "NamedIndividual", + "short_form": "OWL_NamedIndividual", "synonyms": [] }, { @@ -1178,10 +1178,10 @@ "is_root": true, "label": "Nothing", "lang": "en", - "obo_id": "Nothing", + "obo_id": "OWL:Nothing", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Nothing", + "short_form": "OWL_Nothing", "synonyms": [] }, { @@ -1205,10 +1205,10 @@ "is_root": true, "label": "OntologyProperty", "lang": "en", - "obo_id": "OntologyProperty", + "obo_id": "OWL:OntologyProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "OntologyProperty", + "short_form": "OWL_OntologyProperty", "synonyms": [] }, { @@ -1232,10 +1232,10 @@ "is_root": true, "label": "Thing", "lang": "en", - "obo_id": "Thing", + "obo_id": "OWL:Thing", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Thing", + "short_form": "OWL_Thing", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json index 894741d5c..1db5dfe84 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": true, "is_root": false, - "short_form": "Class", - "obo_id": "Class", + "short_form": "RDFS_Class", + "obo_id": "RDFS:Class", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/ancestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/children.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/children.json index 78ba2df00..e6b8ff80d 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/children.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/children.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] }, { @@ -101,10 +101,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "OWL:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "OWL_Class", "synonyms": [] }, { @@ -143,10 +143,10 @@ "is_root": false, "label": "DeprecatedClass", "lang": "en", - "obo_id": "DeprecatedClass", + "obo_id": "OWL:DeprecatedClass", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DeprecatedClass", + "short_form": "OWL_DeprecatedClass", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/descendants.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/descendants.json index e5fc4be62..19a9436bb 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/descendants.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/descendants.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] }, { @@ -101,10 +101,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "OWL:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "OWL_Class", "synonyms": [] }, { @@ -143,10 +143,10 @@ "is_root": false, "label": "DataRange", "lang": "en", - "obo_id": "DataRange", + "obo_id": "OWL:DataRange", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DataRange", + "short_form": "OWL_DataRange", "synonyms": [] }, { @@ -185,10 +185,10 @@ "is_root": false, "label": "DeprecatedClass", "lang": "en", - "obo_id": "DeprecatedClass", + "obo_id": "OWL:DeprecatedClass", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DeprecatedClass", + "short_form": "OWL_DeprecatedClass", "synonyms": [] }, { @@ -227,10 +227,10 @@ "is_root": false, "label": "Restriction", "lang": "en", - "obo_id": "Restriction", + "obo_id": "OWL:Restriction", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Restriction", + "short_form": "OWL_Restriction", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalAncestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalChildren.json index 78ba2df00..e6b8ff80d 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalChildren.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] }, { @@ -101,10 +101,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "OWL:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "OWL_Class", "synonyms": [] }, { @@ -143,10 +143,10 @@ "is_root": false, "label": "DeprecatedClass", "lang": "en", - "obo_id": "DeprecatedClass", + "obo_id": "OWL:DeprecatedClass", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DeprecatedClass", + "short_form": "OWL_DeprecatedClass", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalDescendants.json index e5fc4be62..19a9436bb 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalDescendants.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] }, { @@ -101,10 +101,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "OWL:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "OWL_Class", "synonyms": [] }, { @@ -143,10 +143,10 @@ "is_root": false, "label": "DataRange", "lang": "en", - "obo_id": "DataRange", + "obo_id": "OWL:DataRange", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DataRange", + "short_form": "OWL_DataRange", "synonyms": [] }, { @@ -185,10 +185,10 @@ "is_root": false, "label": "DeprecatedClass", "lang": "en", - "obo_id": "DeprecatedClass", + "obo_id": "OWL:DeprecatedClass", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DeprecatedClass", + "short_form": "OWL_DeprecatedClass", "synonyms": [] }, { @@ -227,10 +227,10 @@ "is_root": false, "label": "Restriction", "lang": "en", - "obo_id": "Restriction", + "obo_id": "OWL:Restriction", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Restriction", + "short_form": "OWL_Restriction", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalParents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/parents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json index 5f5afd255..83cf8d839 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": false, - "short_form": "Container", - "obo_id": "Container", + "short_form": "RDFS_Container", + "obo_id": "RDFS:Container", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/ancestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/hierarchicalAncestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/hierarchicalParents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/parents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json index 99bd2850e..363f36306 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "ContainerMembershipProperty", - "obo_id": "ContainerMembershipProperty", + "short_form": "RDFS_ContainerMembershipProperty", + "obo_id": "RDFS:ContainerMembershipProperty", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json index 1e4b76456..aa1f91291 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": true, "is_root": false, - "short_form": "Datatype", - "obo_id": "Datatype", + "short_form": "RDFS_Datatype", + "obo_id": "RDFS:Datatype", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/ancestors.json index 1a73c70fa..c0da640e6 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/ancestors.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -86,10 +86,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/children.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/children.json index db2506da3..a86933e54 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/children.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/children.json @@ -35,10 +35,10 @@ "is_root": false, "label": "DataRange", "lang": "en", - "obo_id": "DataRange", + "obo_id": "OWL:DataRange", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DataRange", + "short_form": "OWL_DataRange", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/descendants.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/descendants.json index db2506da3..a86933e54 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/descendants.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/descendants.json @@ -35,10 +35,10 @@ "is_root": false, "label": "DataRange", "lang": "en", - "obo_id": "DataRange", + "obo_id": "OWL:DataRange", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DataRange", + "short_form": "OWL_DataRange", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalAncestors.json index 1a73c70fa..c0da640e6 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalAncestors.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -86,10 +86,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalChildren.json index db2506da3..a86933e54 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalChildren.json @@ -35,10 +35,10 @@ "is_root": false, "label": "DataRange", "lang": "en", - "obo_id": "DataRange", + "obo_id": "OWL:DataRange", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DataRange", + "short_form": "OWL_DataRange", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalDescendants.json index db2506da3..a86933e54 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalDescendants.json @@ -35,10 +35,10 @@ "is_root": false, "label": "DataRange", "lang": "en", - "obo_id": "DataRange", + "obo_id": "OWL:DataRange", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DataRange", + "short_form": "OWL_DataRange", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalParents.json index 95376b56e..ba2c43920 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalParents.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/parents.json index 95376b56e..ba2c43920 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/parents.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json index 2925e594f..eb6d98f56 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": false, - "short_form": "Literal", - "obo_id": "Literal", + "short_form": "RDFS_Literal", + "obo_id": "RDFS:Literal", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/ancestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/hierarchicalAncestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/hierarchicalParents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/parents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json index ca9eed5b6..826482a39 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": true, "is_root": true, - "short_form": "Resource", - "obo_id": "Resource", + "short_form": "RDFS_Resource", + "obo_id": "RDFS:Resource", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/children.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/children.json index c3e9a8fef..6b8b7c810 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/children.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/children.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -89,10 +89,10 @@ "is_root": false, "label": "Container", "lang": "en", - "obo_id": "Container", + "obo_id": "RDFS:Container", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Container", + "short_form": "RDFS_Container", "synonyms": [] }, { @@ -131,10 +131,10 @@ "is_root": false, "label": "Literal", "lang": "en", - "obo_id": "Literal", + "obo_id": "RDFS:Literal", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Literal", + "short_form": "RDFS_Literal", "synonyms": [] }, { @@ -173,10 +173,10 @@ "is_root": false, "label": "AllDifferent", "lang": "en", - "obo_id": "AllDifferent", + "obo_id": "OWL:AllDifferent", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AllDifferent", + "short_form": "OWL_AllDifferent", "synonyms": [] }, { @@ -215,10 +215,10 @@ "is_root": false, "label": "AllDisjointClasses", "lang": "en", - "obo_id": "AllDisjointClasses", + "obo_id": "OWL:AllDisjointClasses", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AllDisjointClasses", + "short_form": "OWL_AllDisjointClasses", "synonyms": [] }, { @@ -257,10 +257,10 @@ "is_root": false, "label": "AllDisjointProperties", "lang": "en", - "obo_id": "AllDisjointProperties", + "obo_id": "OWL:AllDisjointProperties", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AllDisjointProperties", + "short_form": "OWL_AllDisjointProperties", "synonyms": [] }, { @@ -299,10 +299,10 @@ "is_root": false, "label": "Annotation", "lang": "en", - "obo_id": "Annotation", + "obo_id": "OWL:Annotation", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Annotation", + "short_form": "OWL_Annotation", "synonyms": [] }, { @@ -341,10 +341,10 @@ "is_root": false, "label": "Axiom", "lang": "en", - "obo_id": "Axiom", + "obo_id": "OWL:Axiom", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Axiom", + "short_form": "OWL_Axiom", "synonyms": [] }, { @@ -383,10 +383,10 @@ "is_root": false, "label": "NegativePropertyAssertion", "lang": "en", - "obo_id": "NegativePropertyAssertion", + "obo_id": "OWL:NegativePropertyAssertion", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "NegativePropertyAssertion", + "short_form": "OWL_NegativePropertyAssertion", "synonyms": [] }, { @@ -425,10 +425,10 @@ "is_root": false, "label": "Ontology", "lang": "en", - "obo_id": "Ontology", + "obo_id": "OWL:Ontology", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Ontology", + "short_form": "OWL_Ontology", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/descendants.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/descendants.json index 56046bb64..548f2dd5a 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/descendants.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/descendants.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -89,10 +89,10 @@ "is_root": false, "label": "Container", "lang": "en", - "obo_id": "Container", + "obo_id": "RDFS:Container", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Container", + "short_form": "RDFS_Container", "synonyms": [] }, { @@ -143,10 +143,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] }, { @@ -185,10 +185,10 @@ "is_root": false, "label": "Literal", "lang": "en", - "obo_id": "Literal", + "obo_id": "RDFS:Literal", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Literal", + "short_form": "RDFS_Literal", "synonyms": [] }, { @@ -227,10 +227,10 @@ "is_root": false, "label": "AllDifferent", "lang": "en", - "obo_id": "AllDifferent", + "obo_id": "OWL:AllDifferent", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AllDifferent", + "short_form": "OWL_AllDifferent", "synonyms": [] }, { @@ -269,10 +269,10 @@ "is_root": false, "label": "AllDisjointClasses", "lang": "en", - "obo_id": "AllDisjointClasses", + "obo_id": "OWL:AllDisjointClasses", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AllDisjointClasses", + "short_form": "OWL_AllDisjointClasses", "synonyms": [] }, { @@ -311,10 +311,10 @@ "is_root": false, "label": "AllDisjointProperties", "lang": "en", - "obo_id": "AllDisjointProperties", + "obo_id": "OWL:AllDisjointProperties", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AllDisjointProperties", + "short_form": "OWL_AllDisjointProperties", "synonyms": [] }, { @@ -353,10 +353,10 @@ "is_root": false, "label": "Annotation", "lang": "en", - "obo_id": "Annotation", + "obo_id": "OWL:Annotation", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Annotation", + "short_form": "OWL_Annotation", "synonyms": [] }, { @@ -395,10 +395,10 @@ "is_root": false, "label": "Axiom", "lang": "en", - "obo_id": "Axiom", + "obo_id": "OWL:Axiom", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Axiom", + "short_form": "OWL_Axiom", "synonyms": [] }, { @@ -449,10 +449,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "OWL:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "OWL_Class", "synonyms": [] }, { @@ -491,10 +491,10 @@ "is_root": false, "label": "DataRange", "lang": "en", - "obo_id": "DataRange", + "obo_id": "OWL:DataRange", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DataRange", + "short_form": "OWL_DataRange", "synonyms": [] }, { @@ -533,10 +533,10 @@ "is_root": false, "label": "DeprecatedClass", "lang": "en", - "obo_id": "DeprecatedClass", + "obo_id": "OWL:DeprecatedClass", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DeprecatedClass", + "short_form": "OWL_DeprecatedClass", "synonyms": [] }, { @@ -575,10 +575,10 @@ "is_root": false, "label": "NegativePropertyAssertion", "lang": "en", - "obo_id": "NegativePropertyAssertion", + "obo_id": "OWL:NegativePropertyAssertion", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "NegativePropertyAssertion", + "short_form": "OWL_NegativePropertyAssertion", "synonyms": [] }, { @@ -617,10 +617,10 @@ "is_root": false, "label": "Ontology", "lang": "en", - "obo_id": "Ontology", + "obo_id": "OWL:Ontology", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Ontology", + "short_form": "OWL_Ontology", "synonyms": [] }, { @@ -659,10 +659,10 @@ "is_root": false, "label": "Restriction", "lang": "en", - "obo_id": "Restriction", + "obo_id": "OWL:Restriction", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Restriction", + "short_form": "OWL_Restriction", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/hierarchicalChildren.json index c3e9a8fef..6b8b7c810 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/hierarchicalChildren.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -89,10 +89,10 @@ "is_root": false, "label": "Container", "lang": "en", - "obo_id": "Container", + "obo_id": "RDFS:Container", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Container", + "short_form": "RDFS_Container", "synonyms": [] }, { @@ -131,10 +131,10 @@ "is_root": false, "label": "Literal", "lang": "en", - "obo_id": "Literal", + "obo_id": "RDFS:Literal", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Literal", + "short_form": "RDFS_Literal", "synonyms": [] }, { @@ -173,10 +173,10 @@ "is_root": false, "label": "AllDifferent", "lang": "en", - "obo_id": "AllDifferent", + "obo_id": "OWL:AllDifferent", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AllDifferent", + "short_form": "OWL_AllDifferent", "synonyms": [] }, { @@ -215,10 +215,10 @@ "is_root": false, "label": "AllDisjointClasses", "lang": "en", - "obo_id": "AllDisjointClasses", + "obo_id": "OWL:AllDisjointClasses", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AllDisjointClasses", + "short_form": "OWL_AllDisjointClasses", "synonyms": [] }, { @@ -257,10 +257,10 @@ "is_root": false, "label": "AllDisjointProperties", "lang": "en", - "obo_id": "AllDisjointProperties", + "obo_id": "OWL:AllDisjointProperties", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AllDisjointProperties", + "short_form": "OWL_AllDisjointProperties", "synonyms": [] }, { @@ -299,10 +299,10 @@ "is_root": false, "label": "Annotation", "lang": "en", - "obo_id": "Annotation", + "obo_id": "OWL:Annotation", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Annotation", + "short_form": "OWL_Annotation", "synonyms": [] }, { @@ -341,10 +341,10 @@ "is_root": false, "label": "Axiom", "lang": "en", - "obo_id": "Axiom", + "obo_id": "OWL:Axiom", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Axiom", + "short_form": "OWL_Axiom", "synonyms": [] }, { @@ -383,10 +383,10 @@ "is_root": false, "label": "NegativePropertyAssertion", "lang": "en", - "obo_id": "NegativePropertyAssertion", + "obo_id": "OWL:NegativePropertyAssertion", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "NegativePropertyAssertion", + "short_form": "OWL_NegativePropertyAssertion", "synonyms": [] }, { @@ -425,10 +425,10 @@ "is_root": false, "label": "Ontology", "lang": "en", - "obo_id": "Ontology", + "obo_id": "OWL:Ontology", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Ontology", + "short_form": "OWL_Ontology", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/hierarchicalDescendants.json index 56046bb64..548f2dd5a 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/hierarchicalDescendants.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -89,10 +89,10 @@ "is_root": false, "label": "Container", "lang": "en", - "obo_id": "Container", + "obo_id": "RDFS:Container", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Container", + "short_form": "RDFS_Container", "synonyms": [] }, { @@ -143,10 +143,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] }, { @@ -185,10 +185,10 @@ "is_root": false, "label": "Literal", "lang": "en", - "obo_id": "Literal", + "obo_id": "RDFS:Literal", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Literal", + "short_form": "RDFS_Literal", "synonyms": [] }, { @@ -227,10 +227,10 @@ "is_root": false, "label": "AllDifferent", "lang": "en", - "obo_id": "AllDifferent", + "obo_id": "OWL:AllDifferent", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AllDifferent", + "short_form": "OWL_AllDifferent", "synonyms": [] }, { @@ -269,10 +269,10 @@ "is_root": false, "label": "AllDisjointClasses", "lang": "en", - "obo_id": "AllDisjointClasses", + "obo_id": "OWL:AllDisjointClasses", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AllDisjointClasses", + "short_form": "OWL_AllDisjointClasses", "synonyms": [] }, { @@ -311,10 +311,10 @@ "is_root": false, "label": "AllDisjointProperties", "lang": "en", - "obo_id": "AllDisjointProperties", + "obo_id": "OWL:AllDisjointProperties", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AllDisjointProperties", + "short_form": "OWL_AllDisjointProperties", "synonyms": [] }, { @@ -353,10 +353,10 @@ "is_root": false, "label": "Annotation", "lang": "en", - "obo_id": "Annotation", + "obo_id": "OWL:Annotation", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Annotation", + "short_form": "OWL_Annotation", "synonyms": [] }, { @@ -395,10 +395,10 @@ "is_root": false, "label": "Axiom", "lang": "en", - "obo_id": "Axiom", + "obo_id": "OWL:Axiom", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Axiom", + "short_form": "OWL_Axiom", "synonyms": [] }, { @@ -449,10 +449,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "OWL:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "OWL_Class", "synonyms": [] }, { @@ -491,10 +491,10 @@ "is_root": false, "label": "DataRange", "lang": "en", - "obo_id": "DataRange", + "obo_id": "OWL:DataRange", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DataRange", + "short_form": "OWL_DataRange", "synonyms": [] }, { @@ -533,10 +533,10 @@ "is_root": false, "label": "DeprecatedClass", "lang": "en", - "obo_id": "DeprecatedClass", + "obo_id": "OWL:DeprecatedClass", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "DeprecatedClass", + "short_form": "OWL_DeprecatedClass", "synonyms": [] }, { @@ -575,10 +575,10 @@ "is_root": false, "label": "NegativePropertyAssertion", "lang": "en", - "obo_id": "NegativePropertyAssertion", + "obo_id": "OWL:NegativePropertyAssertion", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "NegativePropertyAssertion", + "short_form": "OWL_NegativePropertyAssertion", "synonyms": [] }, { @@ -617,10 +617,10 @@ "is_root": false, "label": "Ontology", "lang": "en", - "obo_id": "Ontology", + "obo_id": "OWL:Ontology", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Ontology", + "short_form": "OWL_Ontology", "synonyms": [] }, { @@ -659,10 +659,10 @@ "is_root": false, "label": "Restriction", "lang": "en", - "obo_id": "Restriction", + "obo_id": "OWL:Restriction", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Restriction", + "short_form": "OWL_Restriction", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent.json index 9fa41837a..89c7e9a1e 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "AllDifferent", - "obo_id": "AllDifferent", + "short_form": "OWL_AllDifferent", + "obo_id": "OWL:AllDifferent", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent/ancestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent/hierarchicalAncestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent/hierarchicalParents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent/parents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDifferent/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses.json index d83541a7e..4a621b20d 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "AllDisjointClasses", - "obo_id": "AllDisjointClasses", + "short_form": "OWL_AllDisjointClasses", + "obo_id": "OWL:AllDisjointClasses", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses/ancestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses/hierarchicalAncestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses/hierarchicalParents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses/parents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointClasses/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties.json index 90a8e4f4d..36ffeaf14 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "AllDisjointProperties", - "obo_id": "AllDisjointProperties", + "short_form": "OWL_AllDisjointProperties", + "obo_id": "OWL:AllDisjointProperties", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties/ancestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties/hierarchicalAncestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties/hierarchicalParents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties/parents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AllDisjointProperties/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation.json index 79336adcc..73fcb6a89 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "Annotation", - "obo_id": "Annotation", + "short_form": "OWL_Annotation", + "obo_id": "OWL:Annotation", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation/ancestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation/hierarchicalAncestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation/hierarchicalParents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation/parents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Annotation/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AnnotationProperty.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AnnotationProperty.json index 83e69684f..ae74be0e2 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AnnotationProperty.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AnnotationProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": true, - "short_form": "AnnotationProperty", - "obo_id": "AnnotationProperty", + "short_form": "OWL_AnnotationProperty", + "obo_id": "OWL:AnnotationProperty", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty.json index a97b18315..d270db795 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "AsymmetricProperty", - "obo_id": "AsymmetricProperty", + "short_form": "OWL_AsymmetricProperty", + "obo_id": "OWL:AsymmetricProperty", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty/ancestors.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty/hierarchicalAncestors.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty/hierarchicalParents.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty/parents.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523AsymmetricProperty/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom.json index 455019869..07c722e38 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "Axiom", - "obo_id": "Axiom", + "short_form": "OWL_Axiom", + "obo_id": "OWL:Axiom", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom/ancestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom/hierarchicalAncestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom/hierarchicalParents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom/parents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Axiom/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class.json index 639f75d0d..b9562efaa 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": true, "is_root": false, - "short_form": "Class", - "obo_id": "Class", + "short_form": "OWL_Class", + "obo_id": "OWL:Class", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/ancestors.json index 1a73c70fa..c0da640e6 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/ancestors.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -86,10 +86,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/children.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/children.json index d3c60f4df..12a3212d0 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/children.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/children.json @@ -35,10 +35,10 @@ "is_root": false, "label": "Restriction", "lang": "en", - "obo_id": "Restriction", + "obo_id": "OWL:Restriction", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Restriction", + "short_form": "OWL_Restriction", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/descendants.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/descendants.json index d3c60f4df..12a3212d0 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/descendants.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/descendants.json @@ -35,10 +35,10 @@ "is_root": false, "label": "Restriction", "lang": "en", - "obo_id": "Restriction", + "obo_id": "OWL:Restriction", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Restriction", + "short_form": "OWL_Restriction", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/hierarchicalAncestors.json index 1a73c70fa..c0da640e6 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/hierarchicalAncestors.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -86,10 +86,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/hierarchicalChildren.json index d3c60f4df..12a3212d0 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/hierarchicalChildren.json @@ -35,10 +35,10 @@ "is_root": false, "label": "Restriction", "lang": "en", - "obo_id": "Restriction", + "obo_id": "OWL:Restriction", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Restriction", + "short_form": "OWL_Restriction", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/hierarchicalDescendants.json index d3c60f4df..12a3212d0 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/hierarchicalDescendants.json @@ -35,10 +35,10 @@ "is_root": false, "label": "Restriction", "lang": "en", - "obo_id": "Restriction", + "obo_id": "OWL:Restriction", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Restriction", + "short_form": "OWL_Restriction", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/hierarchicalParents.json index 95376b56e..ba2c43920 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/hierarchicalParents.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/parents.json index 95376b56e..ba2c43920 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Class/parents.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange.json index 668a5b65f..f8be2f736 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "DataRange", - "obo_id": "DataRange", + "short_form": "OWL_DataRange", + "obo_id": "OWL:DataRange", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange/ancestors.json index 9bc9685e0..3a60b428d 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange/ancestors.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -101,10 +101,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] }, { @@ -140,10 +140,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange/hierarchicalAncestors.json index 9bc9685e0..3a60b428d 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange/hierarchicalAncestors.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -101,10 +101,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] }, { @@ -140,10 +140,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange/hierarchicalParents.json index 5e874d81f..b9a39e15d 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange/hierarchicalParents.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange/parents.json index 5e874d81f..b9a39e15d 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DataRange/parents.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DatatypeProperty.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DatatypeProperty.json index 94c7bbe01..6f7b4848b 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DatatypeProperty.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DatatypeProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": true, - "short_form": "DatatypeProperty", - "obo_id": "DatatypeProperty", + "short_form": "OWL_DatatypeProperty", + "obo_id": "OWL:DatatypeProperty", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass.json index 7648aef15..2196aeb1e 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "DeprecatedClass", - "obo_id": "DeprecatedClass", + "short_form": "OWL_DeprecatedClass", + "obo_id": "OWL:DeprecatedClass", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass/ancestors.json index 1a73c70fa..c0da640e6 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass/ancestors.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -86,10 +86,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass/hierarchicalAncestors.json index 1a73c70fa..c0da640e6 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass/hierarchicalAncestors.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -86,10 +86,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass/hierarchicalParents.json index 95376b56e..ba2c43920 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass/hierarchicalParents.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass/parents.json index 95376b56e..ba2c43920 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedClass/parents.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedProperty.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedProperty.json index 26ecc06a0..e170ac239 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedProperty.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523DeprecatedProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": true, - "short_form": "DeprecatedProperty", - "obo_id": "DeprecatedProperty", + "short_form": "OWL_DeprecatedProperty", + "obo_id": "OWL:DeprecatedProperty", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523FunctionalProperty.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523FunctionalProperty.json index d595e8c60..92fa0f409 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523FunctionalProperty.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523FunctionalProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": true, - "short_form": "FunctionalProperty", - "obo_id": "FunctionalProperty", + "short_form": "OWL_FunctionalProperty", + "obo_id": "OWL:FunctionalProperty", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty.json index 0f09e6be3..ea0dbb79a 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "InverseFunctionalProperty", - "obo_id": "InverseFunctionalProperty", + "short_form": "OWL_InverseFunctionalProperty", + "obo_id": "OWL:InverseFunctionalProperty", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty/ancestors.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty/hierarchicalAncestors.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty/hierarchicalParents.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty/parents.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523InverseFunctionalProperty/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty.json index 420ca1b7c..2f0bf1abf 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "IrreflexiveProperty", - "obo_id": "IrreflexiveProperty", + "short_form": "OWL_IrreflexiveProperty", + "obo_id": "OWL:IrreflexiveProperty", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty/ancestors.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty/hierarchicalAncestors.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty/hierarchicalParents.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty/parents.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523IrreflexiveProperty/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual.json index e6a050536..01311cda4 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": true, - "short_form": "NamedIndividual", - "obo_id": "NamedIndividual", + "short_form": "OWL_NamedIndividual", + "obo_id": "OWL:NamedIndividual", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual/ancestors.json index 735b4dfae..e91c7add2 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual/ancestors.json @@ -20,10 +20,10 @@ "is_root": true, "label": "Thing", "lang": "en", - "obo_id": "Thing", + "obo_id": "OWL:Thing", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Thing", + "short_form": "OWL_Thing", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual/hierarchicalAncestors.json index 735b4dfae..e91c7add2 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual/hierarchicalAncestors.json @@ -20,10 +20,10 @@ "is_root": true, "label": "Thing", "lang": "en", - "obo_id": "Thing", + "obo_id": "OWL:Thing", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Thing", + "short_form": "OWL_Thing", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual/hierarchicalParents.json index 735b4dfae..e91c7add2 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual/hierarchicalParents.json @@ -20,10 +20,10 @@ "is_root": true, "label": "Thing", "lang": "en", - "obo_id": "Thing", + "obo_id": "OWL:Thing", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Thing", + "short_form": "OWL_Thing", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual/parents.json index 735b4dfae..e91c7add2 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NamedIndividual/parents.json @@ -20,10 +20,10 @@ "is_root": true, "label": "Thing", "lang": "en", - "obo_id": "Thing", + "obo_id": "OWL:Thing", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Thing", + "short_form": "OWL_Thing", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion.json index 226885829..01a7c00a7 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "NegativePropertyAssertion", - "obo_id": "NegativePropertyAssertion", + "short_form": "OWL_NegativePropertyAssertion", + "obo_id": "OWL:NegativePropertyAssertion", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion/ancestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion/hierarchicalAncestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion/hierarchicalParents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion/parents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523NegativePropertyAssertion/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing.json index 075aec593..b94839c77 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": true, - "short_form": "Nothing", - "obo_id": "Nothing", + "short_form": "OWL_Nothing", + "obo_id": "OWL:Nothing", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing/ancestors.json index 735b4dfae..e91c7add2 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing/ancestors.json @@ -20,10 +20,10 @@ "is_root": true, "label": "Thing", "lang": "en", - "obo_id": "Thing", + "obo_id": "OWL:Thing", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Thing", + "short_form": "OWL_Thing", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing/hierarchicalAncestors.json index 735b4dfae..e91c7add2 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing/hierarchicalAncestors.json @@ -20,10 +20,10 @@ "is_root": true, "label": "Thing", "lang": "en", - "obo_id": "Thing", + "obo_id": "OWL:Thing", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Thing", + "short_form": "OWL_Thing", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing/hierarchicalParents.json index 735b4dfae..e91c7add2 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing/hierarchicalParents.json @@ -20,10 +20,10 @@ "is_root": true, "label": "Thing", "lang": "en", - "obo_id": "Thing", + "obo_id": "OWL:Thing", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Thing", + "short_form": "OWL_Thing", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing/parents.json index 735b4dfae..e91c7add2 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Nothing/parents.json @@ -20,10 +20,10 @@ "is_root": true, "label": "Thing", "lang": "en", - "obo_id": "Thing", + "obo_id": "OWL:Thing", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Thing", + "short_form": "OWL_Thing", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty.json index 1a367f020..260798e92 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": true, "is_root": true, - "short_form": "ObjectProperty", - "obo_id": "ObjectProperty", + "short_form": "OWL_ObjectProperty", + "obo_id": "OWL:ObjectProperty", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty/children.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty/children.json index a63badb5a..6d616d539 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty/children.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty/children.json @@ -35,10 +35,10 @@ "is_root": false, "label": "AsymmetricProperty", "lang": "en", - "obo_id": "AsymmetricProperty", + "obo_id": "OWL:AsymmetricProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AsymmetricProperty", + "short_form": "OWL_AsymmetricProperty", "synonyms": [] }, { @@ -77,10 +77,10 @@ "is_root": false, "label": "InverseFunctionalProperty", "lang": "en", - "obo_id": "InverseFunctionalProperty", + "obo_id": "OWL:InverseFunctionalProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "InverseFunctionalProperty", + "short_form": "OWL_InverseFunctionalProperty", "synonyms": [] }, { @@ -119,10 +119,10 @@ "is_root": false, "label": "IrreflexiveProperty", "lang": "en", - "obo_id": "IrreflexiveProperty", + "obo_id": "OWL:IrreflexiveProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "IrreflexiveProperty", + "short_form": "OWL_IrreflexiveProperty", "synonyms": [] }, { @@ -161,10 +161,10 @@ "is_root": false, "label": "ReflexiveProperty", "lang": "en", - "obo_id": "ReflexiveProperty", + "obo_id": "OWL:ReflexiveProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ReflexiveProperty", + "short_form": "OWL_ReflexiveProperty", "synonyms": [] }, { @@ -203,10 +203,10 @@ "is_root": false, "label": "SymmetricProperty", "lang": "en", - "obo_id": "SymmetricProperty", + "obo_id": "OWL:SymmetricProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "SymmetricProperty", + "short_form": "OWL_SymmetricProperty", "synonyms": [] }, { @@ -245,10 +245,10 @@ "is_root": false, "label": "TransitiveProperty", "lang": "en", - "obo_id": "TransitiveProperty", + "obo_id": "OWL:TransitiveProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "TransitiveProperty", + "short_form": "OWL_TransitiveProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty/descendants.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty/descendants.json index a63badb5a..6d616d539 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty/descendants.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty/descendants.json @@ -35,10 +35,10 @@ "is_root": false, "label": "AsymmetricProperty", "lang": "en", - "obo_id": "AsymmetricProperty", + "obo_id": "OWL:AsymmetricProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AsymmetricProperty", + "short_form": "OWL_AsymmetricProperty", "synonyms": [] }, { @@ -77,10 +77,10 @@ "is_root": false, "label": "InverseFunctionalProperty", "lang": "en", - "obo_id": "InverseFunctionalProperty", + "obo_id": "OWL:InverseFunctionalProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "InverseFunctionalProperty", + "short_form": "OWL_InverseFunctionalProperty", "synonyms": [] }, { @@ -119,10 +119,10 @@ "is_root": false, "label": "IrreflexiveProperty", "lang": "en", - "obo_id": "IrreflexiveProperty", + "obo_id": "OWL:IrreflexiveProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "IrreflexiveProperty", + "short_form": "OWL_IrreflexiveProperty", "synonyms": [] }, { @@ -161,10 +161,10 @@ "is_root": false, "label": "ReflexiveProperty", "lang": "en", - "obo_id": "ReflexiveProperty", + "obo_id": "OWL:ReflexiveProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ReflexiveProperty", + "short_form": "OWL_ReflexiveProperty", "synonyms": [] }, { @@ -203,10 +203,10 @@ "is_root": false, "label": "SymmetricProperty", "lang": "en", - "obo_id": "SymmetricProperty", + "obo_id": "OWL:SymmetricProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "SymmetricProperty", + "short_form": "OWL_SymmetricProperty", "synonyms": [] }, { @@ -245,10 +245,10 @@ "is_root": false, "label": "TransitiveProperty", "lang": "en", - "obo_id": "TransitiveProperty", + "obo_id": "OWL:TransitiveProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "TransitiveProperty", + "short_form": "OWL_TransitiveProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty/hierarchicalChildren.json index a63badb5a..6d616d539 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty/hierarchicalChildren.json @@ -35,10 +35,10 @@ "is_root": false, "label": "AsymmetricProperty", "lang": "en", - "obo_id": "AsymmetricProperty", + "obo_id": "OWL:AsymmetricProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AsymmetricProperty", + "short_form": "OWL_AsymmetricProperty", "synonyms": [] }, { @@ -77,10 +77,10 @@ "is_root": false, "label": "InverseFunctionalProperty", "lang": "en", - "obo_id": "InverseFunctionalProperty", + "obo_id": "OWL:InverseFunctionalProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "InverseFunctionalProperty", + "short_form": "OWL_InverseFunctionalProperty", "synonyms": [] }, { @@ -119,10 +119,10 @@ "is_root": false, "label": "IrreflexiveProperty", "lang": "en", - "obo_id": "IrreflexiveProperty", + "obo_id": "OWL:IrreflexiveProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "IrreflexiveProperty", + "short_form": "OWL_IrreflexiveProperty", "synonyms": [] }, { @@ -161,10 +161,10 @@ "is_root": false, "label": "ReflexiveProperty", "lang": "en", - "obo_id": "ReflexiveProperty", + "obo_id": "OWL:ReflexiveProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ReflexiveProperty", + "short_form": "OWL_ReflexiveProperty", "synonyms": [] }, { @@ -203,10 +203,10 @@ "is_root": false, "label": "SymmetricProperty", "lang": "en", - "obo_id": "SymmetricProperty", + "obo_id": "OWL:SymmetricProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "SymmetricProperty", + "short_form": "OWL_SymmetricProperty", "synonyms": [] }, { @@ -245,10 +245,10 @@ "is_root": false, "label": "TransitiveProperty", "lang": "en", - "obo_id": "TransitiveProperty", + "obo_id": "OWL:TransitiveProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "TransitiveProperty", + "short_form": "OWL_TransitiveProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty/hierarchicalDescendants.json index a63badb5a..6d616d539 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ObjectProperty/hierarchicalDescendants.json @@ -35,10 +35,10 @@ "is_root": false, "label": "AsymmetricProperty", "lang": "en", - "obo_id": "AsymmetricProperty", + "obo_id": "OWL:AsymmetricProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "AsymmetricProperty", + "short_form": "OWL_AsymmetricProperty", "synonyms": [] }, { @@ -77,10 +77,10 @@ "is_root": false, "label": "InverseFunctionalProperty", "lang": "en", - "obo_id": "InverseFunctionalProperty", + "obo_id": "OWL:InverseFunctionalProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "InverseFunctionalProperty", + "short_form": "OWL_InverseFunctionalProperty", "synonyms": [] }, { @@ -119,10 +119,10 @@ "is_root": false, "label": "IrreflexiveProperty", "lang": "en", - "obo_id": "IrreflexiveProperty", + "obo_id": "OWL:IrreflexiveProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "IrreflexiveProperty", + "short_form": "OWL_IrreflexiveProperty", "synonyms": [] }, { @@ -161,10 +161,10 @@ "is_root": false, "label": "ReflexiveProperty", "lang": "en", - "obo_id": "ReflexiveProperty", + "obo_id": "OWL:ReflexiveProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ReflexiveProperty", + "short_form": "OWL_ReflexiveProperty", "synonyms": [] }, { @@ -203,10 +203,10 @@ "is_root": false, "label": "SymmetricProperty", "lang": "en", - "obo_id": "SymmetricProperty", + "obo_id": "OWL:SymmetricProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "SymmetricProperty", + "short_form": "OWL_SymmetricProperty", "synonyms": [] }, { @@ -245,10 +245,10 @@ "is_root": false, "label": "TransitiveProperty", "lang": "en", - "obo_id": "TransitiveProperty", + "obo_id": "OWL:TransitiveProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "TransitiveProperty", + "short_form": "OWL_TransitiveProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology.json index cd38ba98a..b2df4bcde 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "Ontology", - "obo_id": "Ontology", + "short_form": "OWL_Ontology", + "obo_id": "OWL:Ontology", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology/ancestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology/hierarchicalAncestors.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology/hierarchicalParents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology/parents.json index e789565df..c2441b1f9 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Ontology/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523OntologyProperty.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523OntologyProperty.json index 69f205766..2cbd90972 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523OntologyProperty.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523OntologyProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": true, - "short_form": "OntologyProperty", - "obo_id": "OntologyProperty", + "short_form": "OWL_OntologyProperty", + "obo_id": "OWL:OntologyProperty", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty.json index 89e68a566..aa0aac1f1 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "ReflexiveProperty", - "obo_id": "ReflexiveProperty", + "short_form": "OWL_ReflexiveProperty", + "obo_id": "OWL:ReflexiveProperty", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty/ancestors.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty/hierarchicalAncestors.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty/hierarchicalParents.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty/parents.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523ReflexiveProperty/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction.json index 9b7288119..05425949d 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "Restriction", - "obo_id": "Restriction", + "short_form": "OWL_Restriction", + "obo_id": "OWL:Restriction", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction/ancestors.json index b26f5bbb0..b7cd3421d 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction/ancestors.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -101,10 +101,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "OWL:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "OWL_Class", "synonyms": [] }, { @@ -140,10 +140,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction/hierarchicalAncestors.json index b26f5bbb0..b7cd3421d 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction/hierarchicalAncestors.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -101,10 +101,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "OWL:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "OWL_Class", "synonyms": [] }, { @@ -140,10 +140,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction/hierarchicalParents.json index f1aa7dc88..eb4a89df6 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction/hierarchicalParents.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "OWL:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "OWL_Class", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction/parents.json index f1aa7dc88..eb4a89df6 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Restriction/parents.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "OWL:Class", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Class", + "short_form": "OWL_Class", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty.json index 916f7575c..df67e4a69 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "SymmetricProperty", - "obo_id": "SymmetricProperty", + "short_form": "OWL_SymmetricProperty", + "obo_id": "OWL:SymmetricProperty", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty/ancestors.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty/hierarchicalAncestors.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty/hierarchicalParents.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty/parents.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523SymmetricProperty/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json index 1aeb0153c..41cb38210 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": true, - "short_form": "Thing", - "obo_id": "Thing", + "short_form": "OWL_Thing", + "obo_id": "OWL:Thing", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing/children.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing/children.json index d5da24144..9572d1717 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing/children.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing/children.json @@ -20,10 +20,10 @@ "is_root": true, "label": "NamedIndividual", "lang": "en", - "obo_id": "NamedIndividual", + "obo_id": "OWL:NamedIndividual", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "NamedIndividual", + "short_form": "OWL_NamedIndividual", "synonyms": [] }, { @@ -47,10 +47,10 @@ "is_root": true, "label": "Nothing", "lang": "en", - "obo_id": "Nothing", + "obo_id": "OWL:Nothing", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Nothing", + "short_form": "OWL_Nothing", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing/descendants.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing/descendants.json index d5da24144..9572d1717 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing/descendants.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing/descendants.json @@ -20,10 +20,10 @@ "is_root": true, "label": "NamedIndividual", "lang": "en", - "obo_id": "NamedIndividual", + "obo_id": "OWL:NamedIndividual", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "NamedIndividual", + "short_form": "OWL_NamedIndividual", "synonyms": [] }, { @@ -47,10 +47,10 @@ "is_root": true, "label": "Nothing", "lang": "en", - "obo_id": "Nothing", + "obo_id": "OWL:Nothing", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Nothing", + "short_form": "OWL_Nothing", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing/hierarchicalChildren.json index d5da24144..9572d1717 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing/hierarchicalChildren.json @@ -20,10 +20,10 @@ "is_root": true, "label": "NamedIndividual", "lang": "en", - "obo_id": "NamedIndividual", + "obo_id": "OWL:NamedIndividual", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "NamedIndividual", + "short_form": "OWL_NamedIndividual", "synonyms": [] }, { @@ -47,10 +47,10 @@ "is_root": true, "label": "Nothing", "lang": "en", - "obo_id": "Nothing", + "obo_id": "OWL:Nothing", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Nothing", + "short_form": "OWL_Nothing", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing/hierarchicalDescendants.json index d5da24144..9572d1717 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523Thing/hierarchicalDescendants.json @@ -20,10 +20,10 @@ "is_root": true, "label": "NamedIndividual", "lang": "en", - "obo_id": "NamedIndividual", + "obo_id": "OWL:NamedIndividual", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "NamedIndividual", + "short_form": "OWL_NamedIndividual", "synonyms": [] }, { @@ -47,10 +47,10 @@ "is_root": true, "label": "Nothing", "lang": "en", - "obo_id": "Nothing", + "obo_id": "OWL:Nothing", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "Nothing", + "short_form": "OWL_Nothing", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty.json index 5beef742e..ab9dd4454 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "TransitiveProperty", - "obo_id": "TransitiveProperty", + "short_form": "OWL_TransitiveProperty", + "obo_id": "OWL:TransitiveProperty", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty/ancestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty/ancestors.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty/ancestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty/hierarchicalAncestors.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty/hierarchicalParents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty/hierarchicalParents.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty/parents.json b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty/parents.json index ccd4f3b9a..bf45bbf12 100644 --- a/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty/parents.json +++ b/testcases_expected_output_api/ontologies/owl/terms/http%253A%252F%252Fwww.w3.org%252F2002%252F07%252Fowl%2523TransitiveProperty/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "ObjectProperty", "lang": "en", - "obo_id": "ObjectProperty", + "obo_id": "OWL:ObjectProperty", "ontology_iri": "http://www.w3.org/2002/07/owl", "ontology_name": "owl", - "short_form": "ObjectProperty", + "short_form": "OWL_ObjectProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Man.json b/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Man.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Man.json +++ b/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Man.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Person.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Woman.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Man.json b/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Man.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Man.json +++ b/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Man.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Person.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Woman.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-alldisjointclasses/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointClasses%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523Dummy.json b/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523Dummy.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523Dummy.json +++ b/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523Dummy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523Dummy.json b/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523Dummy.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523Dummy.json +++ b/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523Dummy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propA.json b/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propA.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propA.json +++ b/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propA.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propB.json b/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propB.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propB.json +++ b/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propB.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propC.json b/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propC.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propC.json +++ b/testcases_expected_output_api/ontologies/owl2primer-alldisjointdataproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointDataProperties.owl%2523propC.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-alldisjointobjectproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propA.json b/testcases_expected_output_api/ontologies/owl2primer-alldisjointobjectproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propA.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-alldisjointobjectproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propA.json +++ b/testcases_expected_output_api/ontologies/owl2primer-alldisjointobjectproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propA.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-alldisjointobjectproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propB.json b/testcases_expected_output_api/ontologies/owl2primer-alldisjointobjectproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propB.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-alldisjointobjectproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propB.json +++ b/testcases_expected_output_api/ontologies/owl2primer-alldisjointobjectproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propB.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-alldisjointobjectproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propC.json b/testcases_expected_output_api/ontologies/owl2primer-alldisjointobjectproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propC.json index ae7454b34..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-alldisjointobjectproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propC.json +++ b/testcases_expected_output_api/ontologies/owl2primer-alldisjointobjectproperties/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FallDisjointObjectProperties.owl%2523propC.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:07 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Dead.json b/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Dead.json index 98a1ff9b2..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Dead.json +++ b/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Dead.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Orphan.json b/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Orphan.json index 98a1ff9b2..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Orphan.json +++ b/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Orphan.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Dead.json b/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Dead.json index 98a1ff9b2..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Dead.json +++ b/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Dead.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Orphan.json b/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Orphan.json index 98a1ff9b2..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Orphan.json +++ b/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523Orphan.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523hasChild.json b/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523hasChild.json index 98a1ff9b2..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523hasChild.json +++ b/testcases_expected_output_api/ontologies/owl2primer-anonymous-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fanonymous-inverse-object-property.rdf%2523hasChild.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-asymmetric-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fasymmetric-object-property.rdf%2523hasChild.json b/testcases_expected_output_api/ontologies/owl2primer-asymmetric-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fasymmetric-object-property.rdf%2523hasChild.json index 98a1ff9b2..00ada3a7d 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-asymmetric-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fasymmetric-object-property.rdf%2523hasChild.json +++ b/testcases_expected_output_api/ontologies/owl2primer-asymmetric-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fasymmetric-object-property.rdf%2523hasChild.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-class-assertion/classes/http%253A%252F%252Fexample.com%252Fowl2primer%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-class-assertion/classes/http%253A%252F%252Fexample.com%252Fowl2primer%2523Person.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-class-assertion/classes/http%253A%252F%252Fexample.com%252Fowl2primer%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-class-assertion/classes/http%253A%252F%252Fexample.com%252Fowl2primer%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-class-assertion/entities/http%253A%252F%252Fexample.com%252Fowl2primer%2523Mary.json b/testcases_expected_output_api/ontologies/owl2primer-class-assertion/entities/http%253A%252F%252Fexample.com%252Fowl2primer%2523Mary.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-class-assertion/entities/http%253A%252F%252Fexample.com%252Fowl2primer%2523Mary.json +++ b/testcases_expected_output_api/ontologies/owl2primer-class-assertion/entities/http%253A%252F%252Fexample.com%252Fowl2primer%2523Mary.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-class-assertion/entities/http%253A%252F%252Fexample.com%252Fowl2primer%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-class-assertion/entities/http%253A%252F%252Fexample.com%252Fowl2primer%2523Person.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-class-assertion/entities/http%253A%252F%252Fexample.com%252Fowl2primer%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-class-assertion/entities/http%253A%252F%252Fexample.com%252Fowl2primer%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-class-expression-based-on-datatype-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523Teenager.json b/testcases_expected_output_api/ontologies/owl2primer-class-expression-based-on-datatype-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523Teenager.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-class-expression-based-on-datatype-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523Teenager.json +++ b/testcases_expected_output_api/ontologies/owl2primer-class-expression-based-on-datatype-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523Teenager.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-class-expression-based-on-datatype-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523Teenager.json b/testcases_expected_output_api/ontologies/owl2primer-class-expression-based-on-datatype-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523Teenager.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-class-expression-based-on-datatype-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523Teenager.json +++ b/testcases_expected_output_api/ontologies/owl2primer-class-expression-based-on-datatype-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523Teenager.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-class-expression-based-on-datatype-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523hasAge.json b/testcases_expected_output_api/ontologies/owl2primer-class-expression-based-on-datatype-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523hasAge.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-class-expression-based-on-datatype-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523hasAge.json +++ b/testcases_expected_output_api/ontologies/owl2primer-class-expression-based-on-datatype-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass-expression-based-on-datatype-restriction.rdf%2523hasAge.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-class/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-class/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass%2523Person.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-class/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-class/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-class/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-class/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass%2523Person.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-class/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-class/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fclass%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Parent.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Person.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Jack.json b/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Jack.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Jack.json +++ b/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Jack.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Parent.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Person.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-complex-class-assertions-with-negation/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fcomplex-class-assertions-with-negation.rdf%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-data-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-data-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523Person.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-data-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-data-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523John.json b/testcases_expected_output_api/ontologies/owl2primer-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523John.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523John.json +++ b/testcases_expected_output_api/ontologies/owl2primer-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523John.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523Person.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523hasAge.json b/testcases_expected_output_api/ontologies/owl2primer-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523hasAge.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523hasAge.json +++ b/testcases_expected_output_api/ontologies/owl2primer-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdata-property-assertion%2523hasAge.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-dataproperty-functional/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523Dummy.json b/testcases_expected_output_api/ontologies/owl2primer-dataproperty-functional/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523Dummy.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-dataproperty-functional/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523Dummy.json +++ b/testcases_expected_output_api/ontologies/owl2primer-dataproperty-functional/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523Dummy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-dataproperty-functional/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523Dummy.json b/testcases_expected_output_api/ontologies/owl2primer-dataproperty-functional/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523Dummy.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-dataproperty-functional/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523Dummy.json +++ b/testcases_expected_output_api/ontologies/owl2primer-dataproperty-functional/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523Dummy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-dataproperty-functional/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523numberOfChildren.json b/testcases_expected_output_api/ontologies/owl2primer-dataproperty-functional/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523numberOfChildren.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-dataproperty-functional/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523numberOfChildren.json +++ b/testcases_expected_output_api/ontologies/owl2primer-dataproperty-functional/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdataProperty-functional.owl%2523numberOfChildren.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration-nesting-issue/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration-nesting-issue/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration-nesting-issue/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration-nesting-issue/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523ageOfToddler.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523ageOfToddler.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523ageOfToddler.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523ageOfToddler.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523Dummy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523ageOfToddler.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523ageOfToddler.json index 98a1ff9b2..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523ageOfToddler.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-enumeration/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-enumeration.owl%2523ageOfToddler.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:08 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion-nesting-issue/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion-nesting-issue/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json index 492b943ba..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion-nesting-issue/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion-nesting-issue/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json index 492b943ba..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523ageOfAdult.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523ageOfAdult.json index 492b943ba..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523ageOfAdult.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523ageOfAdult.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json index 492b943ba..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json index 492b943ba..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523Dummy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523ageOfAdult.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523ageOfAdult.json index 492b943ba..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523ageOfAdult.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-exclusion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-exclusion.owl%2523ageOfAdult.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax-nesting-issue/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax-nesting-issue/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json index 492b943ba..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax-nesting-issue/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax-nesting-issue/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json index 492b943ba..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523hasAge.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523hasAge.json index 492b943ba..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523hasAge.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523hasAge.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json index 492b943ba..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json index 492b943ba..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523Dummy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523hasAge.json b/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523hasAge.json index 492b943ba..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523hasAge.json +++ b/testcases_expected_output_api/ontologies/owl2primer-datatype-minmax/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdatatype-minmax.owl%2523hasAge.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-different-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdifferent-individuals%2523Bill.json b/testcases_expected_output_api/ontologies/owl2primer-different-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdifferent-individuals%2523Bill.json index 492b943ba..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-different-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdifferent-individuals%2523Bill.json +++ b/testcases_expected_output_api/ontologies/owl2primer-different-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdifferent-individuals%2523Bill.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-different-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdifferent-individuals%2523John.json b/testcases_expected_output_api/ontologies/owl2primer-different-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdifferent-individuals%2523John.json index 492b943ba..f2785b934 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-different-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdifferent-individuals%2523John.json +++ b/testcases_expected_output_api/ontologies/owl2primer-different-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdifferent-individuals%2523John.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Man.json b/testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Man.json index 492b943ba..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Man.json +++ b/testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Man.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Woman.json index 492b943ba..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Man.json b/testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Man.json index 492b943ba..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Man.json +++ b/testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Man.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Woman.json index 492b943ba..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-disjoint-classes/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fdisjoint-classes.rdf%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Father.json b/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Father.json index 492b943ba..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Father.json +++ b/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Father.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Mother.json b/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Mother.json index 492b943ba..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Mother.json +++ b/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Mother.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Parent.json index 492b943ba..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Father.json b/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Father.json index 492b943ba..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Father.json +++ b/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Father.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Mother.json b/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Mother.json index 492b943ba..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Mother.json +++ b/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Mother.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Parent.json index 492b943ba..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-disjointunionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FdisjointUnionOf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523MyBirthdayGuests.json b/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523MyBirthdayGuests.json index 492b943ba..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523MyBirthdayGuests.json +++ b/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523MyBirthdayGuests.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523Bill.json b/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523Bill.json index 492b943ba..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523Bill.json +++ b/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523Bill.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523John.json b/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523John.json index 492b943ba..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523John.json +++ b/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523John.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523Mary.json b/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523Mary.json index 492b943ba..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523Mary.json +++ b/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523Mary.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523MyBirthdayGuests.json b/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523MyBirthdayGuests.json index 492b943ba..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523MyBirthdayGuests.json +++ b/testcases_expected_output_api/ontologies/owl2primer-enumeration-of-individuals/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fenumeration-of-individuals.rdf%2523MyBirthdayGuests.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:09 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523ChildlessPerson.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523ChildlessPerson.json index 08a426fe5..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523ChildlessPerson.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523ChildlessPerson.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Parent.json index 08a426fe5..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Person.json index 08a426fe5..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523ChildlessPerson.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523ChildlessPerson.json index 08a426fe5..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523ChildlessPerson.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523ChildlessPerson.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Parent.json index 08a426fe5..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Person.json index 08a426fe5..e919cc213 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof-complementof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf-complementOf%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Mother.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Mother.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Mother.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Mother.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Parent.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Woman.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Mother.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Mother.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Mother.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Mother.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Parent.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Woman.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-intersectionOf.owl%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523HappyPerson.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523HappyPerson.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523HappyPerson.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523HappyPerson.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523Person.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523HappyPerson.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523HappyPerson.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523HappyPerson.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523HappyPerson.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523Person.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523hasChild.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523hasChild.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523hasChild.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-allvaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-allValuesFrom.owl%2523hasChild.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Parent.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Person.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Parent.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Person.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523hasChild.json b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523hasChild.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523hasChild.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalent-propertyrestriction-somevaluesfrom/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fequivalent-propertyRestriction-someValuesFrom.owl%2523hasChild.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523MyBirthdayGuests.json b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523MyBirthdayGuests.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523MyBirthdayGuests.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523MyBirthdayGuests.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523Bill.json b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523Bill.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523Bill.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523Bill.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523John.json b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523John.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523John.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523John.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523Mary.json b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523Mary.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523Mary.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523Mary.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523MyBirthdayGuests.json b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523MyBirthdayGuests.json index 08a426fe5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523MyBirthdayGuests.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass-collection/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass-collection.owl%2523MyBirthdayGuests.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:10 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Human.json b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Human.json index 2fbabc7e5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Human.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Human.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Person.json index 2fbabc7e5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Human.json b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Human.json index 2fbabc7e5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Human.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Human.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Person.json index 2fbabc7e5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalentclass/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalentclass/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentClass%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalentobjectproperty/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523John.json b/testcases_expected_output_api/ontologies/owl2primer-equivalentobjectproperty/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523John.json index 2fbabc7e5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalentobjectproperty/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523John.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalentobjectproperty/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523John.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalentobjectproperty/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523Mary.json b/testcases_expected_output_api/ontologies/owl2primer-equivalentobjectproperty/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523Mary.json index 2fbabc7e5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalentobjectproperty/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523Mary.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalentobjectproperty/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523Mary.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalentobjectproperty/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523hasLifePartner.json b/testcases_expected_output_api/ontologies/owl2primer-equivalentobjectproperty/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523hasLifePartner.json index 2fbabc7e5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalentobjectproperty/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523hasLifePartner.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalentobjectproperty/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523hasLifePartner.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-equivalentobjectproperty/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523hasSpouse.json b/testcases_expected_output_api/ontologies/owl2primer-equivalentobjectproperty/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523hasSpouse.json index 2fbabc7e5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-equivalentobjectproperty/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523hasSpouse.json +++ b/testcases_expected_output_api/ontologies/owl2primer-equivalentobjectproperty/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FequivalentObjectProperty%2523hasSpouse.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-functional-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ffunctional-data-property.rdf%2523numberOfChildren.json b/testcases_expected_output_api/ontologies/owl2primer-functional-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ffunctional-data-property.rdf%2523numberOfChildren.json index 2fbabc7e5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-functional-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ffunctional-data-property.rdf%2523numberOfChildren.json +++ b/testcases_expected_output_api/ontologies/owl2primer-functional-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ffunctional-data-property.rdf%2523numberOfChildren.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-functional-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ffunctional-object-property.rdf%2523hasHusband.json b/testcases_expected_output_api/ontologies/owl2primer-functional-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ffunctional-object-property.rdf%2523hasHusband.json index 2fbabc7e5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-functional-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ffunctional-object-property.rdf%2523hasHusband.json +++ b/testcases_expected_output_api/ontologies/owl2primer-functional-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ffunctional-object-property.rdf%2523hasHusband.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FnamedIndividual%2523Mary.json b/testcases_expected_output_api/ontologies/owl2primer-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FnamedIndividual%2523Mary.json index 2fbabc7e5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FnamedIndividual%2523Mary.json +++ b/testcases_expected_output_api/ontologies/owl2primer-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FnamedIndividual%2523Mary.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Mother.json b/testcases_expected_output_api/ontologies/owl2primer-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Mother.json index 2fbabc7e5..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Mother.json +++ b/testcases_expected_output_api/ontologies/owl2primer-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Mother.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Parent.json index 2fbabc7e5..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Woman.json index 2fbabc7e5..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Mother.json b/testcases_expected_output_api/ontologies/owl2primer-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Mother.json index 2fbabc7e5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Mother.json +++ b/testcases_expected_output_api/ontologies/owl2primer-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Mother.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Parent.json index 2fbabc7e5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Woman.json index 2fbabc7e5..a8b8fba23 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FintersectionOf%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-inverse-inverse-functional-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-functional-object-property.rdf%2523hasHusband.json b/testcases_expected_output_api/ontologies/owl2primer-inverse-inverse-functional-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-functional-object-property.rdf%2523hasHusband.json index 2fbabc7e5..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-inverse-inverse-functional-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-functional-object-property.rdf%2523hasHusband.json +++ b/testcases_expected_output_api/ontologies/owl2primer-inverse-inverse-functional-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-functional-object-property.rdf%2523hasHusband.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-object-property.rdf%2523hasChild.json b/testcases_expected_output_api/ontologies/owl2primer-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-object-property.rdf%2523hasChild.json index 2fbabc7e5..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-object-property.rdf%2523hasChild.json +++ b/testcases_expected_output_api/ontologies/owl2primer-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-object-property.rdf%2523hasChild.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-object-property.rdf%2523hasParent.json b/testcases_expected_output_api/ontologies/owl2primer-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-object-property.rdf%2523hasParent.json index 2fbabc7e5..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-object-property.rdf%2523hasParent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-inverse-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Finverse-object-property.rdf%2523hasParent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-irreflexive-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Firreflexive-object-property.rdf%2523parentOf.json b/testcases_expected_output_api/ontologies/owl2primer-irreflexive-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Firreflexive-object-property.rdf%2523parentOf.json index 2fbabc7e5..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-irreflexive-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Firreflexive-object-property.rdf%2523parentOf.json +++ b/testcases_expected_output_api/ontologies/owl2primer-irreflexive-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Firreflexive-object-property.rdf%2523parentOf.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Person.json index 2fbabc7e5..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property%2523Anne.json b/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property%2523Anne.json index 2fbabc7e5..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property%2523Anne.json +++ b/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property%2523Anne.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property%2523hasSSN.json b/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property%2523hasSSN.json index 2fbabc7e5..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property%2523hasSSN.json +++ b/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property%2523hasSSN.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Annie.json b/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Annie.json index 2fbabc7e5..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Annie.json +++ b/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Annie.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Person.json index 2fbabc7e5..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-key-constraint-on-data-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fkey-constraint-on-data-property.owl%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-negative-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-data-property-assertion.rdf%2523Jack.json b/testcases_expected_output_api/ontologies/owl2primer-negative-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-data-property-assertion.rdf%2523Jack.json index 2fbabc7e5..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-negative-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-data-property-assertion.rdf%2523Jack.json +++ b/testcases_expected_output_api/ontologies/owl2primer-negative-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-data-property-assertion.rdf%2523Jack.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-negative-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-data-property-assertion.rdf%2523hasAge.json b/testcases_expected_output_api/ontologies/owl2primer-negative-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-data-property-assertion.rdf%2523hasAge.json index 2fbabc7e5..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-negative-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-data-property-assertion.rdf%2523hasAge.json +++ b/testcases_expected_output_api/ontologies/owl2primer-negative-data-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-data-property-assertion.rdf%2523hasAge.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:11 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Man.json b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Man.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Man.json +++ b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Man.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Person.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Woman.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Bill.json b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Bill.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Bill.json +++ b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Bill.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Man.json b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Man.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Man.json +++ b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Man.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Mary.json b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Mary.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Mary.json +++ b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Mary.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Person.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Woman.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523hasWife.json b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523hasWife.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523hasWife.json +++ b/testcases_expected_output_api/ontologies/owl2primer-negative-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fnegative-object-property-assertion%2523hasWife.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Man.json b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Man.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Man.json +++ b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Man.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Person.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Woman.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523John.json b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523John.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523John.json +++ b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523John.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Man.json b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Man.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Man.json +++ b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Man.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Mary.json b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Mary.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Mary.json +++ b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Mary.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Person.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Woman.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523hasWife.json b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523hasWife.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523hasWife.json +++ b/testcases_expected_output_api/ontologies/owl2primer-object-property-assertion/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-assertion%2523hasWife.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Man.json b/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Man.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Man.json +++ b/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Man.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Person.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Woman.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Man.json b/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Man.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Man.json +++ b/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Man.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Person.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Woman.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523hasWife.json b/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523hasWife.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523hasWife.json +++ b/testcases_expected_output_api/ontologies/owl2primer-object-property-domain-range-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fobject-property-domain-range-restriction%2523hasWife.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-asymmetric/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-asymmetric.owl%2523hasChild.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-asymmetric/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-asymmetric.owl%2523hasChild.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-asymmetric/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-asymmetric.owl%2523hasChild.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-asymmetric/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-asymmetric.owl%2523hasChild.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-disjoint/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-disjoint.owl%2523hasParent.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-disjoint/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-disjoint.owl%2523hasParent.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-disjoint/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-disjoint.owl%2523hasParent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-disjoint/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-disjoint.owl%2523hasParent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-disjoint/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-disjoint.owl%2523hasSpouse.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-disjoint/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-disjoint.owl%2523hasSpouse.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-disjoint/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-disjoint.owl%2523hasSpouse.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-disjoint/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-disjoint.owl%2523hasSpouse.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-functional/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-functional.owl%2523hasHusband.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-functional/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-functional.owl%2523hasHusband.json index 58b2e51e0..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-functional/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-functional.owl%2523hasHusband.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-functional/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-functional.owl%2523hasHusband.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Address.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Address.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Address.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Address.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Business.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Business.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Business.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Business.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Address.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Address.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Address.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Address.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Business.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Business.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Business.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523Business.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523a.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523a.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523a.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523a.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523b1.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523b1.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523b1.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523b1.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523b2.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523b2.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523b2.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523b2.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523businessAddress.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523businessAddress.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523businessAddress.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523businessAddress.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523hasSSN.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523hasSSN.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523hasSSN.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-haskey/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-hasKey.owl%2523hasSSN.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Dead.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Dead.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Dead.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Dead.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Orphan.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Orphan.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Orphan.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Orphan.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Dead.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Dead.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Dead.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Dead.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Orphan.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Orphan.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Orphan.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523Orphan.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523hasChild.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523hasChild.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523hasChild.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse-withoutassignedname/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse-withoutAssignedName.owl%2523hasChild.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse.owl%2523hasChild.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse.owl%2523hasChild.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse.owl%2523hasChild.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse.owl%2523hasChild.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse.owl%2523hasParent.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse.owl%2523hasParent.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse.owl%2523hasParent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inverse/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverse.owl%2523hasParent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inversefunctional/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverseFunctional.owl%2523hasHusband.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inversefunctional/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverseFunctional.owl%2523hasHusband.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inversefunctional/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverseFunctional.owl%2523hasHusband.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-inversefunctional/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-inverseFunctional.owl%2523hasHusband.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-irreflexive/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-irreflexive.owl%2523hasParent.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-irreflexive/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-irreflexive.owl%2523hasParent.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-irreflexive/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-irreflexive.owl%2523hasParent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-irreflexive/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-irreflexive.owl%2523hasParent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-reflexive/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-reflexive.owl%2523hasRelative.json b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-reflexive/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-reflexive.owl%2523hasRelative.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-objectproperty-reflexive/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-reflexive.owl%2523hasRelative.json +++ b/testcases_expected_output_api/ontologies/owl2primer-objectproperty-reflexive/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FobjectProperty-reflexive.owl%2523hasRelative.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-property-chain/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fproperty-chain.owl%2523hasGrandParent.json b/testcases_expected_output_api/ontologies/owl2primer-property-chain/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fproperty-chain.owl%2523hasGrandParent.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-property-chain/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fproperty-chain.owl%2523hasGrandParent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-property-chain/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fproperty-chain.owl%2523hasGrandParent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-property-chain/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fproperty-chain.owl%2523hasParent.json b/testcases_expected_output_api/ontologies/owl2primer-property-chain/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fproperty-chain.owl%2523hasParent.json index bfde57c73..287b2fee7 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-property-chain/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fproperty-chain.owl%2523hasParent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-property-chain/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fproperty-chain.owl%2523hasParent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:12 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-cardinality/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-cardinality/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523Parent.json index bfde57c73..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-cardinality/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-cardinality/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-cardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523John.json b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-cardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523John.json index bfde57c73..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-cardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523John.json +++ b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-cardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523John.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-cardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-cardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523Parent.json index bfde57c73..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-cardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-cardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-cardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523hasChild.json b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-cardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523hasChild.json index bfde57c73..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-cardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523hasChild.json +++ b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-cardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-cardinality.owl%2523hasChild.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-maxqualifiedcardinality/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-maxqualifiedcardinality/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523Parent.json index bfde57c73..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-maxqualifiedcardinality/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-maxqualifiedcardinality/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-maxqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523John.json b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-maxqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523John.json index bfde57c73..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-maxqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523John.json +++ b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-maxqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523John.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-maxqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-maxqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523Parent.json index bfde57c73..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-maxqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-maxqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-maxqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523hasChild.json b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-maxqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523hasChild.json index bfde57c73..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-maxqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523hasChild.json +++ b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-maxqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-maxQualifiedCardinality.owl%2523hasChild.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-minqualifiedcardinality/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-minqualifiedcardinality/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523Parent.json index bfde57c73..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-minqualifiedcardinality/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-minqualifiedcardinality/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-minqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523John.json b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-minqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523John.json index bfde57c73..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-minqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523John.json +++ b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-minqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523John.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-minqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-minqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523Parent.json index bfde57c73..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-minqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-minqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-minqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523hasChild.json b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-minqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523hasChild.json index bfde57c73..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-minqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523hasChild.json +++ b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-minqualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-minQualifiedCardinality.owl%2523hasChild.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-qualifiedcardinality/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-qualifiedcardinality/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523Parent.json index bfde57c73..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-qualifiedcardinality/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-qualifiedcardinality/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-qualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523John.json b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-qualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523John.json index bfde57c73..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-qualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523John.json +++ b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-qualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523John.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-qualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-qualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523Parent.json index bfde57c73..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-qualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-qualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-qualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523hasChild.json b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-qualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523hasChild.json index bfde57c73..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-qualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523hasChild.json +++ b/testcases_expected_output_api/ontologies/owl2primer-propertyrestriction-qualifiedcardinality/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FpropertyRestriction-qualifiedCardinality.owl%2523hasChild.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-exact-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-exact-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523Parent.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-exact-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-exact-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523Parent.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523hasChild.json b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523hasChild.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523hasChild.json +++ b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523hasChild.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523john.json b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523john.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523john.json +++ b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-exact-restriction.rdf%2523john.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-max-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-max-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523Parent.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-max-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-max-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-max-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-max-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523Parent.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-max-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-max-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-max-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523hasChild.json b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-max-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523hasChild.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-max-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523hasChild.json +++ b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-max-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523hasChild.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-max-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523john.json b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-max-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523john.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-max-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523john.json +++ b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-max-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-max-restriction.rdf%2523john.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-min-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-min-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523Parent.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-min-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-min-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-min-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-min-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523Parent.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-min-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-min-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-min-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523hasChild.json b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-min-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523hasChild.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-min-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523hasChild.json +++ b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-min-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523hasChild.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-min-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523john.json b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-min-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523john.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-min-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523john.json +++ b/testcases_expected_output_api/ontologies/owl2primer-qualified-cardinality-min-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fqualified-cardinality-min-restriction.rdf%2523john.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-reflexive-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Freflexive-object-property.rdf%2523hasRelative.json b/testcases_expected_output_api/ontologies/owl2primer-reflexive-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Freflexive-object-property.rdf%2523hasRelative.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-reflexive-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Freflexive-object-property.rdf%2523hasRelative.json +++ b/testcases_expected_output_api/ontologies/owl2primer-reflexive-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Freflexive-object-property.rdf%2523hasRelative.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-same-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsame-individual%2523James.json b/testcases_expected_output_api/ontologies/owl2primer-same-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsame-individual%2523James.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-same-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsame-individual%2523James.json +++ b/testcases_expected_output_api/ontologies/owl2primer-same-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsame-individual%2523James.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-same-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsame-individual%2523Jim.json b/testcases_expected_output_api/ontologies/owl2primer-same-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsame-individual%2523Jim.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-same-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsame-individual%2523Jim.json +++ b/testcases_expected_output_api/ontologies/owl2primer-same-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsame-individual%2523Jim.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-self-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523NarcisticPerson.json b/testcases_expected_output_api/ontologies/owl2primer-self-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523NarcisticPerson.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-self-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523NarcisticPerson.json +++ b/testcases_expected_output_api/ontologies/owl2primer-self-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523NarcisticPerson.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-self-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523NarcisticPerson.json b/testcases_expected_output_api/ontologies/owl2primer-self-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523NarcisticPerson.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-self-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523NarcisticPerson.json +++ b/testcases_expected_output_api/ontologies/owl2primer-self-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523NarcisticPerson.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-self-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523loves.json b/testcases_expected_output_api/ontologies/owl2primer-self-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523loves.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-self-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523loves.json +++ b/testcases_expected_output_api/ontologies/owl2primer-self-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fself-restriction.owl%2523loves.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Man.json b/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Man.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Man.json +++ b/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Man.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Person.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Woman.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Man.json b/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Man.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Man.json +++ b/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Man.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Person.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Woman.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523hasSpouse.json b/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523hasSpouse.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523hasSpouse.json +++ b/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523hasSpouse.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523hasWife.json b/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523hasWife.json index a24955913..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523hasWife.json +++ b/testcases_expected_output_api/ontologies/owl2primer-sub-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsub-object-property%2523hasWife.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Grandfather.json b/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Grandfather.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Grandfather.json +++ b/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Grandfather.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Man.json b/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Man.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Man.json +++ b/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Man.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Parent.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Grandfather.json b/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Grandfather.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Grandfather.json +++ b/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Grandfather.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Man.json b/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Man.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Man.json +++ b/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Man.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Parent.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-subclassof-intersectionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf-intersectionOf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-subclassof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Mother.json b/testcases_expected_output_api/ontologies/owl2primer-subclassof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Mother.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-subclassof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Mother.json +++ b/testcases_expected_output_api/ontologies/owl2primer-subclassof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Mother.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-subclassof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-subclassof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Person.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-subclassof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-subclassof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-subclassof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-subclassof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Woman.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-subclassof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-subclassof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-subclassof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Mother.json b/testcases_expected_output_api/ontologies/owl2primer-subclassof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Mother.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-subclassof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Mother.json +++ b/testcases_expected_output_api/ontologies/owl2primer-subclassof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Mother.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-subclassof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Person.json b/testcases_expected_output_api/ontologies/owl2primer-subclassof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Person.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-subclassof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Person.json +++ b/testcases_expected_output_api/ontologies/owl2primer-subclassof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Person.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-subclassof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Woman.json b/testcases_expected_output_api/ontologies/owl2primer-subclassof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Woman.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-subclassof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Woman.json +++ b/testcases_expected_output_api/ontologies/owl2primer-subclassof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FsubClassOf%2523Woman.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-symmetric-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsymmetric-object-property.rdf%2523hasSpouse.json b/testcases_expected_output_api/ontologies/owl2primer-symmetric-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsymmetric-object-property.rdf%2523hasSpouse.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-symmetric-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsymmetric-object-property.rdf%2523hasSpouse.json +++ b/testcases_expected_output_api/ontologies/owl2primer-symmetric-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fsymmetric-object-property.rdf%2523hasSpouse.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-transitive-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ftransitive-object-property.rdf%2523hasAncestor.json b/testcases_expected_output_api/ontologies/owl2primer-transitive-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ftransitive-object-property.rdf%2523hasAncestor.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-transitive-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ftransitive-object-property.rdf%2523hasAncestor.json +++ b/testcases_expected_output_api/ontologies/owl2primer-transitive-object-property/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Ftransitive-object-property.rdf%2523hasAncestor.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-unionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Father.json b/testcases_expected_output_api/ontologies/owl2primer-unionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Father.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-unionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Father.json +++ b/testcases_expected_output_api/ontologies/owl2primer-unionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Father.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-unionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Mother.json b/testcases_expected_output_api/ontologies/owl2primer-unionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Mother.json index aaa3590c0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-unionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Mother.json +++ b/testcases_expected_output_api/ontologies/owl2primer-unionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Mother.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-unionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-unionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Parent.json index aaa3590c0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-unionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-unionof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-unionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Father.json b/testcases_expected_output_api/ontologies/owl2primer-unionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Father.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-unionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Father.json +++ b/testcases_expected_output_api/ontologies/owl2primer-unionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Father.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-unionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Mother.json b/testcases_expected_output_api/ontologies/owl2primer-unionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Mother.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-unionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Mother.json +++ b/testcases_expected_output_api/ontologies/owl2primer-unionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Mother.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-unionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-unionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Parent.json index aaa3590c0..df29b2d7c 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-unionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-unionof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252FunionOf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:13 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-unqualified-cardinality-exact-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-unqualified-cardinality-exact-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523Parent.json index aaa3590c0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-unqualified-cardinality-exact-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-unqualified-cardinality-exact-restriction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-unqualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523Parent.json b/testcases_expected_output_api/ontologies/owl2primer-unqualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523Parent.json index aaa3590c0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-unqualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523Parent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-unqualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523Parent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-unqualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523hasChild.json b/testcases_expected_output_api/ontologies/owl2primer-unqualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523hasChild.json index aaa3590c0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-unqualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523hasChild.json +++ b/testcases_expected_output_api/ontologies/owl2primer-unqualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523hasChild.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-unqualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523john.json b/testcases_expected_output_api/ontologies/owl2primer-unqualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523john.json index aaa3590c0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-unqualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523john.json +++ b/testcases_expected_output_api/ontologies/owl2primer-unqualified-cardinality-exact-restriction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Funqualified-cardinality-exact-restriction.rdf%2523john.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-user-defined-data-type-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fuser-defined-data-type.rdf%2523hasToddlerAge.json b/testcases_expected_output_api/ontologies/owl2primer-user-defined-data-type-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fuser-defined-data-type.rdf%2523hasToddlerAge.json index aaa3590c0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-user-defined-data-type-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fuser-defined-data-type.rdf%2523hasToddlerAge.json +++ b/testcases_expected_output_api/ontologies/owl2primer-user-defined-data-type-nesting-issue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fuser-defined-data-type.rdf%2523hasToddlerAge.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-user-defined-data-type/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fuser-defined-data-type.rdf%2523hasToddlerAge.json b/testcases_expected_output_api/ontologies/owl2primer-user-defined-data-type/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fuser-defined-data-type.rdf%2523hasToddlerAge.json index aaa3590c0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-user-defined-data-type/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fuser-defined-data-type.rdf%2523hasToddlerAge.json +++ b/testcases_expected_output_api/ontologies/owl2primer-user-defined-data-type/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fuser-defined-data-type.rdf%2523hasToddlerAge.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-value-restriction-on-individual/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523JohnsChildren.json b/testcases_expected_output_api/ontologies/owl2primer-value-restriction-on-individual/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523JohnsChildren.json index aaa3590c0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-value-restriction-on-individual/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523JohnsChildren.json +++ b/testcases_expected_output_api/ontologies/owl2primer-value-restriction-on-individual/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523JohnsChildren.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-value-restriction-on-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523John.json b/testcases_expected_output_api/ontologies/owl2primer-value-restriction-on-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523John.json index aaa3590c0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-value-restriction-on-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523John.json +++ b/testcases_expected_output_api/ontologies/owl2primer-value-restriction-on-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523John.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-value-restriction-on-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523JohnsChildren.json b/testcases_expected_output_api/ontologies/owl2primer-value-restriction-on-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523JohnsChildren.json index aaa3590c0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-value-restriction-on-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523JohnsChildren.json +++ b/testcases_expected_output_api/ontologies/owl2primer-value-restriction-on-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523JohnsChildren.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/owl2primer-value-restriction-on-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523hasParent.json b/testcases_expected_output_api/ontologies/owl2primer-value-restriction-on-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523hasParent.json index aaa3590c0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/owl2primer-value-restriction-on-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523hasParent.json +++ b/testcases_expected_output_api/ontologies/owl2primer-value-restriction-on-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fowl2primer%252Fvalue-restriction-on-individual.rdf%2523hasParent.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/partof/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1000353.json b/testcases_expected_output_api/ontologies/partof/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1000353.json index 97a443dc8..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/partof/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1000353.json +++ b/testcases_expected_output_api/ontologies/partof/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1000353.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:16 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/partof/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1003056.json b/testcases_expected_output_api/ontologies/partof/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1003056.json index 97a443dc8..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/partof/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1003056.json +++ b/testcases_expected_output_api/ontologies/partof/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1003056.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:16 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/partof/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json b/testcases_expected_output_api/ontologies/partof/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json index 97a443dc8..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/partof/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json +++ b/testcases_expected_output_api/ontologies/partof/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:16 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/partof/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003684.json b/testcases_expected_output_api/ontologies/partof/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003684.json index 97a443dc8..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/partof/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003684.json +++ b/testcases_expected_output_api/ontologies/partof/classes/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003684.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:16 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json b/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json index 97a443dc8..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json +++ b/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FBFO_0000050.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:16 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1000353.json b/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1000353.json index 97a443dc8..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1000353.json +++ b/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1000353.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:16 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1003056.json b/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1003056.json index 97a443dc8..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1003056.json +++ b/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FMS_1003056.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:16 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json b/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json index 97a443dc8..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json +++ b/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0000916.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:16 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003684.json b/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003684.json index 97a443dc8..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003684.json +++ b/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252FUBERON_0003684.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:16 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fms%2523part_of.json b/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fms%2523part_of.json index 97a443dc8..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fms%2523part_of.json +++ b/testcases_expected_output_api/ontologies/partof/entities/http%253A%252F%252Fpurl.obolibrary.org%252Fobo%252Fms%2523part_of.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:16 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/punning-class-individual/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523Quantity.json b/testcases_expected_output_api/ontologies/punning-class-individual/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523Quantity.json index 97a443dc8..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/punning-class-individual/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523Quantity.json +++ b/testcases_expected_output_api/ontologies/punning-class-individual/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523Quantity.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:16 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/punning-class-individual/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523ThermodynamicTemperature.json b/testcases_expected_output_api/ontologies/punning-class-individual/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523ThermodynamicTemperature.json index 97a443dc8..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/punning-class-individual/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523ThermodynamicTemperature.json +++ b/testcases_expected_output_api/ontologies/punning-class-individual/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523ThermodynamicTemperature.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:16 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523Quantity.json b/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523Quantity.json index 97a443dc8..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523Quantity.json +++ b/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523Quantity.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:16 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523ThermodynamicTemperature.json b/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523ThermodynamicTemperature.json index 97a443dc8..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523ThermodynamicTemperature.json +++ b/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523ThermodynamicTemperature.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:16 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523commonlyHasUnit.json b/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523commonlyHasUnit.json index 97a443dc8..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523commonlyHasUnit.json +++ b/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523commonlyHasUnit.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:16 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523terakelvin.json b/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523terakelvin.json index 97a443dc8..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523terakelvin.json +++ b/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523terakelvin.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:16 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523thermodynamicTemperatureOfTheTriplePointOfWater.json b/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523thermodynamicTemperatureOfTheTriplePointOfWater.json index 97a443dc8..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523thermodynamicTemperatureOfTheTriplePointOfWater.json +++ b/testcases_expected_output_api/ontologies/punning-class-individual/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Fpunning%252Fclass-individual.owl%2523thermodynamicTemperatureOfTheTriplePointOfWater.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:16 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json b/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json +++ b/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json b/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json +++ b/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json b/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json +++ b/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json b/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json +++ b/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json b/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json +++ b/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json b/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json +++ b/testcases_expected_output_api/ontologies/rdfs/classes/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json +++ b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json +++ b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json +++ b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json +++ b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json +++ b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json +++ b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json +++ b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json +++ b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json +++ b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json +++ b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json +++ b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json +++ b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json +++ b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json +++ b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json +++ b/testcases_expected_output_api/ontologies/rdfs/entities/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/properties.json b/testcases_expected_output_api/ontologies/rdfs/properties.json index de65480fa..8ed248efe 100644 --- a/testcases_expected_output_api/ontologies/rdfs/properties.json +++ b/testcases_expected_output_api/ontologies/rdfs/properties.json @@ -25,10 +25,10 @@ "is_root": false, "label": "isDefinedBy", "lang": "en", - "obo_id": "isDefinedBy", + "obo_id": "RDFS:isDefinedBy", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "isDefinedBy", + "short_form": "RDFS_isDefinedBy", "synonyms": [] }, { @@ -54,10 +54,10 @@ "is_root": true, "label": "seeAlso", "lang": "en", - "obo_id": "seeAlso", + "obo_id": "RDFS:seeAlso", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "seeAlso", + "short_form": "RDFS_seeAlso", "synonyms": [] }, { @@ -77,10 +77,10 @@ "is_root": true, "label": "comment", "lang": "en", - "obo_id": "comment", + "obo_id": "RDFS:comment", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "comment", + "short_form": "RDFS_comment", "synonyms": [] }, { @@ -100,10 +100,10 @@ "is_root": true, "label": "domain", "lang": "en", - "obo_id": "domain", + "obo_id": "RDFS:domain", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "domain", + "short_form": "RDFS_domain", "synonyms": [] }, { @@ -123,10 +123,10 @@ "is_root": true, "label": "label", "lang": "en", - "obo_id": "label", + "obo_id": "RDFS:label", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "label", + "short_form": "RDFS_label", "synonyms": [] }, { @@ -146,10 +146,10 @@ "is_root": true, "label": "member", "lang": "en", - "obo_id": "member", + "obo_id": "RDFS:member", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "member", + "short_form": "RDFS_member", "synonyms": [] }, { @@ -169,10 +169,10 @@ "is_root": true, "label": "range", "lang": "en", - "obo_id": "range", + "obo_id": "RDFS:range", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "range", + "short_form": "RDFS_range", "synonyms": [] }, { @@ -192,10 +192,10 @@ "is_root": true, "label": "subClassOf", "lang": "en", - "obo_id": "subClassOf", + "obo_id": "RDFS:subClassOf", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "subClassOf", + "short_form": "RDFS_subClassOf", "synonyms": [] }, { @@ -215,10 +215,10 @@ "is_root": true, "label": "subPropertyOf", "lang": "en", - "obo_id": "subPropertyOf", + "obo_id": "RDFS:subPropertyOf", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "subPropertyOf", + "short_form": "RDFS_subPropertyOf", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json index 48fb48c45..0e4e3415b 100644 --- a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json +++ b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "comment", - "obo_id": "comment", + "short_form": "RDFS_comment", + "obo_id": "RDFS:comment", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523comment?lang=en" diff --git a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json index f9252e479..2d100bd4f 100644 --- a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json +++ b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "domain", - "obo_id": "domain", + "short_form": "RDFS_domain", + "obo_id": "RDFS:domain", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523domain?lang=en" diff --git a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json index e7b745a53..25da4d8b7 100644 --- a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json +++ b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": false, - "short_form": "isDefinedBy", - "obo_id": "isDefinedBy", + "short_form": "RDFS_isDefinedBy", + "obo_id": "RDFS:isDefinedBy", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523isDefinedBy?lang=en" diff --git a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json index 66a2b3790..97775c9f6 100644 --- a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json +++ b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "label", - "obo_id": "label", + "short_form": "RDFS_label", + "obo_id": "RDFS:label", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523label?lang=en" diff --git a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json index b80f2d4c4..cdc9a0824 100644 --- a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json +++ b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "member", - "obo_id": "member", + "short_form": "RDFS_member", + "obo_id": "RDFS:member", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523member?lang=en" diff --git a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json index 1d5921dcf..178c94024 100644 --- a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json +++ b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "range", - "obo_id": "range", + "short_form": "RDFS_range", + "obo_id": "RDFS:range", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523range?lang=en" diff --git a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json index 472378842..389f6d043 100644 --- a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json +++ b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": true, "is_root": true, - "short_form": "seeAlso", - "obo_id": "seeAlso", + "short_form": "RDFS_seeAlso", + "obo_id": "RDFS:seeAlso", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523seeAlso?lang=en" diff --git a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json index f313bb574..eb7019b76 100644 --- a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json +++ b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "subClassOf", - "obo_id": "subClassOf", + "short_form": "RDFS_subClassOf", + "obo_id": "RDFS:subClassOf", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subClassOf?lang=en" diff --git a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json index 59ea54fb8..302618a82 100644 --- a/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json +++ b/testcases_expected_output_api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf.json @@ -13,8 +13,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "subPropertyOf", - "obo_id": "subPropertyOf", + "short_form": "RDFS_subPropertyOf", + "obo_id": "RDFS:subPropertyOf", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/rdfs/properties/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523subPropertyOf?lang=en" diff --git a/testcases_expected_output_api/ontologies/rdfs/terms.json b/testcases_expected_output_api/ontologies/rdfs/terms.json index 15f63439b..2c8c605f3 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -89,10 +89,10 @@ "is_root": false, "label": "Container", "lang": "en", - "obo_id": "Container", + "obo_id": "RDFS:Container", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Container", + "short_form": "RDFS_Container", "synonyms": [] }, { @@ -131,10 +131,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] }, { @@ -173,10 +173,10 @@ "is_root": false, "label": "Literal", "lang": "en", - "obo_id": "Literal", + "obo_id": "RDFS:Literal", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Literal", + "short_form": "RDFS_Literal", "synonyms": [] }, { @@ -212,10 +212,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] }, { @@ -239,10 +239,10 @@ "is_root": true, "label": "ContainerMembershipProperty", "lang": "en", - "obo_id": "ContainerMembershipProperty", + "obo_id": "RDFS:ContainerMembershipProperty", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "ContainerMembershipProperty", + "short_form": "RDFS_ContainerMembershipProperty", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json index b40721b9b..64de7274b 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": true, "is_root": false, - "short_form": "Class", - "obo_id": "Class", + "short_form": "RDFS_Class", + "obo_id": "RDFS:Class", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/ancestors.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/ancestors.json index 994d45598..7c86dbae1 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/ancestors.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/children.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/children.json index 11d208dd7..3a4bcfa5a 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/children.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/children.json @@ -35,10 +35,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/descendants.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/descendants.json index 11d208dd7..3a4bcfa5a 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/descendants.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/descendants.json @@ -35,10 +35,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalAncestors.json index 994d45598..7c86dbae1 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalChildren.json index 11d208dd7..3a4bcfa5a 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalChildren.json @@ -35,10 +35,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalDescendants.json index 11d208dd7..3a4bcfa5a 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalDescendants.json @@ -35,10 +35,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalParents.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalParents.json index 994d45598..7c86dbae1 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/parents.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/parents.json index 994d45598..7c86dbae1 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/parents.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Class/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json index 095fc5a7c..9d9ca2ce3 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "Container", - "obo_id": "Container", + "short_form": "RDFS_Container", + "obo_id": "RDFS:Container", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/ancestors.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/ancestors.json index 994d45598..7c86dbae1 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/ancestors.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/hierarchicalAncestors.json index 994d45598..7c86dbae1 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/hierarchicalParents.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/hierarchicalParents.json index 994d45598..7c86dbae1 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/parents.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/parents.json index 994d45598..7c86dbae1 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/parents.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Container/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json index eb18f2830..4f2566a5b 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523ContainerMembershipProperty.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": true, - "short_form": "ContainerMembershipProperty", - "obo_id": "ContainerMembershipProperty", + "short_form": "RDFS_ContainerMembershipProperty", + "obo_id": "RDFS:ContainerMembershipProperty", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json index e9d8f45d9..b50542a1a 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "Datatype", - "obo_id": "Datatype", + "short_form": "RDFS_Datatype", + "obo_id": "RDFS:Datatype", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/ancestors.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/ancestors.json index 9cbf2a4c6..c64ef2b3b 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/ancestors.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/ancestors.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -86,10 +86,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalAncestors.json index 9cbf2a4c6..c64ef2b3b 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalAncestors.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -86,10 +86,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalParents.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalParents.json index 299e7bb07..9184bd1df 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/hierarchicalParents.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/parents.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/parents.json index 299e7bb07..9184bd1df 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/parents.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Datatype/parents.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json index 60f73e72e..13b8f7f53 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "Literal", - "obo_id": "Literal", + "short_form": "RDFS_Literal", + "obo_id": "RDFS:Literal", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/ancestors.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/ancestors.json index 994d45598..7c86dbae1 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/ancestors.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/ancestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/hierarchicalAncestors.json index 994d45598..7c86dbae1 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/hierarchicalAncestors.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/hierarchicalParents.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/hierarchicalParents.json index 994d45598..7c86dbae1 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/hierarchicalParents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/parents.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/parents.json index 994d45598..7c86dbae1 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/parents.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Literal/parents.json @@ -32,10 +32,10 @@ "is_root": true, "label": "Resource", "lang": "en", - "obo_id": "Resource", + "obo_id": "RDFS:Resource", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Resource", + "short_form": "RDFS_Resource", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json index 934439f18..1bb2cfa43 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource.json @@ -13,8 +13,8 @@ "is_defining_ontology": true, "has_children": true, "is_root": true, - "short_form": "Resource", - "obo_id": "Resource", + "short_form": "RDFS_Resource", + "obo_id": "RDFS:Resource", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/children.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/children.json index a3dc05619..e32864a7b 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/children.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/children.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -89,10 +89,10 @@ "is_root": false, "label": "Container", "lang": "en", - "obo_id": "Container", + "obo_id": "RDFS:Container", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Container", + "short_form": "RDFS_Container", "synonyms": [] }, { @@ -131,10 +131,10 @@ "is_root": false, "label": "Literal", "lang": "en", - "obo_id": "Literal", + "obo_id": "RDFS:Literal", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Literal", + "short_form": "RDFS_Literal", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/descendants.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/descendants.json index 0fc34c708..b127bd633 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/descendants.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/descendants.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -89,10 +89,10 @@ "is_root": false, "label": "Container", "lang": "en", - "obo_id": "Container", + "obo_id": "RDFS:Container", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Container", + "short_form": "RDFS_Container", "synonyms": [] }, { @@ -131,10 +131,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] }, { @@ -173,10 +173,10 @@ "is_root": false, "label": "Literal", "lang": "en", - "obo_id": "Literal", + "obo_id": "RDFS:Literal", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Literal", + "short_form": "RDFS_Literal", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/hierarchicalChildren.json index a3dc05619..e32864a7b 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/hierarchicalChildren.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -89,10 +89,10 @@ "is_root": false, "label": "Container", "lang": "en", - "obo_id": "Container", + "obo_id": "RDFS:Container", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Container", + "short_form": "RDFS_Container", "synonyms": [] }, { @@ -131,10 +131,10 @@ "is_root": false, "label": "Literal", "lang": "en", - "obo_id": "Literal", + "obo_id": "RDFS:Literal", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Literal", + "short_form": "RDFS_Literal", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/hierarchicalDescendants.json index 0fc34c708..b127bd633 100644 --- a/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/rdfs/terms/http%253A%252F%252Fwww.w3.org%252F2000%252F01%252Frdf-schema%2523Resource/hierarchicalDescendants.json @@ -47,10 +47,10 @@ "is_root": false, "label": "Class", "lang": "en", - "obo_id": "Class", + "obo_id": "RDFS:Class", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Class", + "short_form": "RDFS_Class", "synonyms": [] }, { @@ -89,10 +89,10 @@ "is_root": false, "label": "Container", "lang": "en", - "obo_id": "Container", + "obo_id": "RDFS:Container", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Container", + "short_form": "RDFS_Container", "synonyms": [] }, { @@ -131,10 +131,10 @@ "is_root": false, "label": "Datatype", "lang": "en", - "obo_id": "Datatype", + "obo_id": "RDFS:Datatype", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Datatype", + "short_form": "RDFS_Datatype", "synonyms": [] }, { @@ -173,10 +173,10 @@ "is_root": false, "label": "Literal", "lang": "en", - "obo_id": "Literal", + "obo_id": "RDFS:Literal", "ontology_iri": "http://www.w3.org/2000/01/rdf-schema#", "ontology_name": "rdfs", - "short_form": "Literal", + "short_form": "RDFS_Literal", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/reified-bnode/classes/http%253A%252F%252Fexample.com%252Freified-bnode%2523cell.json b/testcases_expected_output_api/ontologies/reified-bnode/classes/http%253A%252F%252Fexample.com%252Freified-bnode%2523cell.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/reified-bnode/classes/http%253A%252F%252Fexample.com%252Freified-bnode%2523cell.json +++ b/testcases_expected_output_api/ontologies/reified-bnode/classes/http%253A%252F%252Fexample.com%252Freified-bnode%2523cell.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/reified-bnode/classes/http%253A%252F%252Fexample.com%252Freified-bnode%2523cell_part.json b/testcases_expected_output_api/ontologies/reified-bnode/classes/http%253A%252F%252Fexample.com%252Freified-bnode%2523cell_part.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/reified-bnode/classes/http%253A%252F%252Fexample.com%252Freified-bnode%2523cell_part.json +++ b/testcases_expected_output_api/ontologies/reified-bnode/classes/http%253A%252F%252Fexample.com%252Freified-bnode%2523cell_part.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/reified-bnode/entities/http%253A%252F%252Fexample.com%252Freified-bnode%2523cell.json b/testcases_expected_output_api/ontologies/reified-bnode/entities/http%253A%252F%252Fexample.com%252Freified-bnode%2523cell.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/reified-bnode/entities/http%253A%252F%252Fexample.com%252Freified-bnode%2523cell.json +++ b/testcases_expected_output_api/ontologies/reified-bnode/entities/http%253A%252F%252Fexample.com%252Freified-bnode%2523cell.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/reified-bnode/entities/http%253A%252F%252Fexample.com%252Freified-bnode%2523cell_part.json b/testcases_expected_output_api/ontologies/reified-bnode/entities/http%253A%252F%252Fexample.com%252Freified-bnode%2523cell_part.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/reified-bnode/entities/http%253A%252F%252Fexample.com%252Freified-bnode%2523cell_part.json +++ b/testcases_expected_output_api/ontologies/reified-bnode/entities/http%253A%252F%252Fexample.com%252Freified-bnode%2523cell_part.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/reified-bnode/entities/http%253A%252F%252Fexample.com%252Freified-bnode%2523part_of.json b/testcases_expected_output_api/ontologies/reified-bnode/entities/http%253A%252F%252Fexample.com%252Freified-bnode%2523part_of.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/reified-bnode/entities/http%253A%252F%252Fexample.com%252Freified-bnode%2523part_of.json +++ b/testcases_expected_output_api/ontologies/reified-bnode/entities/http%253A%252F%252Fexample.com%252Freified-bnode%2523part_of.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-hasvalue/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523A.json b/testcases_expected_output_api/ontologies/related-hasvalue/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523A.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/related-hasvalue/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523A.json +++ b/testcases_expected_output_api/ontologies/related-hasvalue/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-hasvalue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523A.json b/testcases_expected_output_api/ontologies/related-hasvalue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523A.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/related-hasvalue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523A.json +++ b/testcases_expected_output_api/ontologies/related-hasvalue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-hasvalue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523b1.json b/testcases_expected_output_api/ontologies/related-hasvalue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523b1.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/related-hasvalue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523b1.json +++ b/testcases_expected_output_api/ontologies/related-hasvalue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523b1.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-hasvalue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523r.json b/testcases_expected_output_api/ontologies/related-hasvalue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523r.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/related-hasvalue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523r.json +++ b/testcases_expected_output_api/ontologies/related-hasvalue/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FhasValue.owl%2523r.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-oneof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523A.json b/testcases_expected_output_api/ontologies/related-oneof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523A.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/related-oneof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523A.json +++ b/testcases_expected_output_api/ontologies/related-oneof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523A.json b/testcases_expected_output_api/ontologies/related-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523A.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/related-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523A.json +++ b/testcases_expected_output_api/ontologies/related-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b1.json b/testcases_expected_output_api/ontologies/related-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b1.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/related-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b1.json +++ b/testcases_expected_output_api/ontologies/related-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b1.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b2.json b/testcases_expected_output_api/ontologies/related-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b2.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/related-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b2.json +++ b/testcases_expected_output_api/ontologies/related-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b2.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b3.json b/testcases_expected_output_api/ontologies/related-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b3.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/related-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b3.json +++ b/testcases_expected_output_api/ontologies/related-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FoneOf.owl%2523b3.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523A.json b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523A.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523A.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523B.json b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523B.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523B.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523B.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523C.json b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523C.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523C.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523C.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523A.json b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523A.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523A.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523B.json b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523B.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523B.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523B.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523C.json b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523C.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523C.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523C.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523r.json b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523r.json index 88b7b4fb0..5688d8428 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523r.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerAnonymousConjunction.owl%2523r.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:17 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:14 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523A.json b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523A.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523A.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523B.json b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523B.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523B.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523B.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523C.json b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523C.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523C.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523C.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523A.json b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523A.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523A.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523B.json b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523B.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523B.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523B.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523C.json b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523C.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523C.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523C.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523p.json b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523p.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523p.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-filleranonymousdisjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252Fv.0.0.1%252FsomeValuesOf-fillerAnonymousDisjunction%2523p.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523A.json b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523A.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523A.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523B.json b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523B.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523B.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523B.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523C.json b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523C.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523C.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523C.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523D.json b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523D.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523D.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523D.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523A.json b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523A.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523A.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523B.json b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523B.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523B.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523B.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523C.json b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523C.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523C.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523C.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523D.json b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523D.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523D.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523D.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523p.json b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523p.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523p.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523p.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523r.json b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523r.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523r.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-fillernestedanonymousconjunction/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-fillerNestedAnonymousConjunction.owl%2523r.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical-relatedtoself/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523A.json b/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical-relatedtoself/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523A.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical-relatedtoself/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523A.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical-relatedtoself/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical-relatedtoself/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523A.json b/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical-relatedtoself/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523A.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical-relatedtoself/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523A.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical-relatedtoself/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical-relatedtoself/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523r.json b/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical-relatedtoself/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523r.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical-relatedtoself/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523r.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical-relatedtoself/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical-relatedToSelf.owl%2523r.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523A.json b/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523A.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523A.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523B.json b/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523B.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523B.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523B.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523A.json b/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523A.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523A.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523B.json b/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523B.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523B.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523B.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523r.json b/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523r.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523r.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-hierarchical/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-hierarchical.owl%2523r.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523A.json b/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523A.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523A.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523A.json b/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523A.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523A.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b1.json b/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b1.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b1.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b1.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b2.json b/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b2.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b2.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b2.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b3.json b/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b3.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b3.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523b3.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523r.json b/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523r.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523r.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof-oneof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf-oneOf.owl%2523r.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523A.json b/testcases_expected_output_api/ontologies/related-somevaluesof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523A.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523A.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523B.json b/testcases_expected_output_api/ontologies/related-somevaluesof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523B.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523B.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof/classes/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523B.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523A.json b/testcases_expected_output_api/ontologies/related-somevaluesof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523A.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523A.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523A.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523B.json b/testcases_expected_output_api/ontologies/related-somevaluesof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523B.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523B.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523B.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/related-somevaluesof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523r.json b/testcases_expected_output_api/ontologies/related-somevaluesof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523r.json index d46a46334..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/related-somevaluesof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523r.json +++ b/testcases_expected_output_api/ontologies/related-somevaluesof/entities/http%253A%252F%252Fwww.ebi.ac.uk%252Ftestcases%252Frelated%252FsomeValuesOf.owl%2523r.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:18 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/classes/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection.json b/testcases_expected_output_api/ontologies/skos/classes/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/classes/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection.json +++ b/testcases_expected_output_api/ontologies/skos/classes/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/classes/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Concept.json b/testcases_expected_output_api/ontologies/skos/classes/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Concept.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/classes/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Concept.json +++ b/testcases_expected_output_api/ontologies/skos/classes/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Concept.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/classes/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523ConceptScheme.json b/testcases_expected_output_api/ontologies/skos/classes/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523ConceptScheme.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/classes/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523ConceptScheme.json +++ b/testcases_expected_output_api/ontologies/skos/classes/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523ConceptScheme.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/classes/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection.json b/testcases_expected_output_api/ontologies/skos/classes/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/classes/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection.json +++ b/testcases_expected_output_api/ontologies/skos/classes/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Concept.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Concept.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Concept.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Concept.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523ConceptScheme.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523ConceptScheme.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523ConceptScheme.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523ConceptScheme.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523altLabel.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523altLabel.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523altLabel.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523altLabel.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broadMatch.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broadMatch.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broadMatch.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broadMatch.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broader.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broader.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broader.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broader.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broaderTransitive.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broaderTransitive.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broaderTransitive.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broaderTransitive.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523changeNote.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523changeNote.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523changeNote.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523changeNote.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523definition.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523definition.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523definition.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523definition.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523editorialNote.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523editorialNote.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523editorialNote.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523editorialNote.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523example.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523example.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523example.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523example.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hasTopConcept.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hasTopConcept.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hasTopConcept.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hasTopConcept.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hiddenLabel.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hiddenLabel.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hiddenLabel.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hiddenLabel.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523historyNote.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523historyNote.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523historyNote.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523historyNote.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523inScheme.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523inScheme.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523inScheme.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523inScheme.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523mappingRelation.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523mappingRelation.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523mappingRelation.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523mappingRelation.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523member.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523member.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523member.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523member.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523memberList.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523memberList.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523memberList.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523memberList.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowMatch.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowMatch.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowMatch.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowMatch.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrower.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrower.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrower.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrower.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowerTransitive.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowerTransitive.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowerTransitive.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowerTransitive.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523notation.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523notation.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523notation.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523notation.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523note.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523note.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523note.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523note.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523prefLabel.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523prefLabel.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523prefLabel.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523prefLabel.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523related.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523related.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523related.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523related.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523relatedMatch.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523relatedMatch.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523relatedMatch.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523relatedMatch.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523scopeNote.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523scopeNote.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523scopeNote.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523scopeNote.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523semanticRelation.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523semanticRelation.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523semanticRelation.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523semanticRelation.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523topConceptOf.json b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523topConceptOf.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523topConceptOf.json +++ b/testcases_expected_output_api/ontologies/skos/entities/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523topConceptOf.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/properties.json b/testcases_expected_output_api/ontologies/skos/properties.json index dd31ce6ab..53cc50cca 100644 --- a/testcases_expected_output_api/ontologies/skos/properties.json +++ b/testcases_expected_output_api/ontologies/skos/properties.json @@ -27,10 +27,10 @@ "is_root": false, "label": "has broader match", "lang": "en", - "obo_id": "broadMatch", + "obo_id": "SKOS:broadMatch", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "broadMatch", + "short_form": "SKOS_broadMatch", "synonyms": [] }, { @@ -72,10 +72,10 @@ "is_root": false, "label": "has broader", "lang": "en", - "obo_id": "broader", + "obo_id": "SKOS:broader", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "broader", + "short_form": "SKOS_broader", "synonyms": [] }, { @@ -115,10 +115,10 @@ "is_root": false, "label": "has broader transitive", "lang": "en", - "obo_id": "broaderTransitive", + "obo_id": "SKOS:broaderTransitive", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "broaderTransitive", + "short_form": "SKOS_broaderTransitive", "synonyms": [] }, { @@ -149,10 +149,10 @@ "is_root": false, "label": "change note", "lang": "en", - "obo_id": "changeNote", + "obo_id": "SKOS:changeNote", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "changeNote", + "short_form": "SKOS_changeNote", "synonyms": [] }, { @@ -189,10 +189,10 @@ "is_root": false, "label": "has close match", "lang": "en", - "obo_id": "closeMatch", + "obo_id": "SKOS:closeMatch", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "closeMatch", + "short_form": "SKOS_closeMatch", "synonyms": [] }, { @@ -223,10 +223,10 @@ "is_root": false, "label": "definition", "lang": "en", - "obo_id": "definition", + "obo_id": "SKOS:definition", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "definition", + "short_form": "SKOS_definition", "synonyms": [] }, { @@ -257,10 +257,10 @@ "is_root": false, "label": "editorial note", "lang": "en", - "obo_id": "editorialNote", + "obo_id": "SKOS:editorialNote", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "editorialNote", + "short_form": "SKOS_editorialNote", "synonyms": [] }, { @@ -293,10 +293,10 @@ "is_root": false, "label": "has exact match", "lang": "en", - "obo_id": "exactMatch", + "obo_id": "SKOS:exactMatch", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "exactMatch", + "short_form": "SKOS_exactMatch", "synonyms": [] }, { @@ -327,10 +327,10 @@ "is_root": false, "label": "example", "lang": "en", - "obo_id": "example", + "obo_id": "SKOS:example", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "example", + "short_form": "SKOS_example", "synonyms": [] }, { @@ -361,10 +361,10 @@ "is_root": false, "label": "history note", "lang": "en", - "obo_id": "historyNote", + "obo_id": "SKOS:historyNote", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "historyNote", + "short_form": "SKOS_historyNote", "synonyms": [] }, { @@ -403,10 +403,10 @@ "is_root": false, "label": "is in mapping relation with", "lang": "en", - "obo_id": "mappingRelation", + "obo_id": "SKOS:mappingRelation", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "mappingRelation", + "short_form": "SKOS_mappingRelation", "synonyms": [] }, { @@ -437,10 +437,10 @@ "is_root": false, "label": "has narrower match", "lang": "en", - "obo_id": "narrowMatch", + "obo_id": "SKOS:narrowMatch", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "narrowMatch", + "short_form": "SKOS_narrowMatch", "synonyms": [] }, { @@ -482,10 +482,10 @@ "is_root": false, "label": "has narrower", "lang": "en", - "obo_id": "narrower", + "obo_id": "SKOS:narrower", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "narrower", + "short_form": "SKOS_narrower", "synonyms": [] }, { @@ -525,10 +525,10 @@ "is_root": false, "label": "has narrower transitive", "lang": "en", - "obo_id": "narrowerTransitive", + "obo_id": "SKOS:narrowerTransitive", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "narrowerTransitive", + "short_form": "SKOS_narrowerTransitive", "synonyms": [] }, { @@ -567,10 +567,10 @@ "is_root": false, "label": "has related", "lang": "en", - "obo_id": "related", + "obo_id": "SKOS:related", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "related", + "short_form": "SKOS_related", "synonyms": [] }, { @@ -601,10 +601,10 @@ "is_root": false, "label": "has related match", "lang": "en", - "obo_id": "relatedMatch", + "obo_id": "SKOS:relatedMatch", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "relatedMatch", + "short_form": "SKOS_relatedMatch", "synonyms": [] }, { @@ -635,10 +635,10 @@ "is_root": false, "label": "scope note", "lang": "en", - "obo_id": "scopeNote", + "obo_id": "SKOS:scopeNote", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "scopeNote", + "short_form": "SKOS_scopeNote", "synonyms": [] }, { @@ -669,10 +669,10 @@ "is_root": false, "label": "is top concept in scheme", "lang": "en", - "obo_id": "topConceptOf", + "obo_id": "SKOS:topConceptOf", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "topConceptOf", + "short_form": "SKOS_topConceptOf", "synonyms": [] }, { @@ -703,10 +703,10 @@ "is_root": true, "label": "is in scheme", "lang": "en", - "obo_id": "inScheme", + "obo_id": "SKOS:inScheme", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "inScheme", + "short_form": "SKOS_inScheme", "synonyms": [] }, { @@ -737,10 +737,10 @@ "is_root": true, "label": "note", "lang": "en", - "obo_id": "note", + "obo_id": "SKOS:note", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "note", + "short_form": "SKOS_note", "synonyms": [] }, { @@ -771,10 +771,10 @@ "is_root": true, "label": "is in semantic relation with", "lang": "en", - "obo_id": "semanticRelation", + "obo_id": "SKOS:semanticRelation", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "semanticRelation", + "short_form": "SKOS_semanticRelation", "synonyms": [] }, { @@ -802,10 +802,10 @@ "is_root": true, "label": "alternative label", "lang": "en", - "obo_id": "altLabel", + "obo_id": "SKOS:altLabel", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "altLabel", + "short_form": "SKOS_altLabel", "synonyms": [] }, { @@ -827,10 +827,10 @@ "is_root": true, "label": "has top concept", "lang": "en", - "obo_id": "hasTopConcept", + "obo_id": "SKOS:hasTopConcept", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "hasTopConcept", + "short_form": "SKOS_hasTopConcept", "synonyms": [] }, { @@ -855,10 +855,10 @@ "is_root": true, "label": "hidden label", "lang": "en", - "obo_id": "hiddenLabel", + "obo_id": "SKOS:hiddenLabel", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "hiddenLabel", + "short_form": "SKOS_hiddenLabel", "synonyms": [] }, { @@ -880,10 +880,10 @@ "is_root": true, "label": "has member", "lang": "en", - "obo_id": "member", + "obo_id": "SKOS:member", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "member", + "short_form": "SKOS_member", "synonyms": [] }, { @@ -907,10 +907,10 @@ "is_root": true, "label": "has member list", "lang": "en", - "obo_id": "memberList", + "obo_id": "SKOS:memberList", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "memberList", + "short_form": "SKOS_memberList", "synonyms": [] }, { @@ -935,10 +935,10 @@ "is_root": true, "label": "notation", "lang": "en", - "obo_id": "notation", + "obo_id": "SKOS:notation", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "notation", + "short_form": "SKOS_notation", "synonyms": [] }, { @@ -964,10 +964,10 @@ "is_root": true, "label": "preferred label", "lang": "en", - "obo_id": "prefLabel", + "obo_id": "SKOS:prefLabel", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "prefLabel", + "short_form": "SKOS_prefLabel", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523altLabel.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523altLabel.json index ccb9dd8b9..40982cb25 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523altLabel.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523altLabel.json @@ -21,8 +21,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "altLabel", - "obo_id": "altLabel", + "short_form": "SKOS_altLabel", + "obo_id": "SKOS:altLabel", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523altLabel?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broadMatch.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broadMatch.json index 085f60b77..337bfc278 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broadMatch.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broadMatch.json @@ -15,8 +15,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": false, - "short_form": "broadMatch", - "obo_id": "broadMatch", + "short_form": "SKOS_broadMatch", + "obo_id": "SKOS:broadMatch", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broadMatch?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broader.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broader.json index d415a9399..463132f69 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broader.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broader.json @@ -20,8 +20,8 @@ "is_defining_ontology": false, "has_children": true, "is_root": false, - "short_form": "broader", - "obo_id": "broader", + "short_form": "SKOS_broader", + "obo_id": "SKOS:broader", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broader?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broaderTransitive.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broaderTransitive.json index daad738e9..48ee8cbc9 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broaderTransitive.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broaderTransitive.json @@ -18,8 +18,8 @@ "is_defining_ontology": false, "has_children": true, "is_root": false, - "short_form": "broaderTransitive", - "obo_id": "broaderTransitive", + "short_form": "SKOS_broaderTransitive", + "obo_id": "SKOS:broaderTransitive", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523broaderTransitive?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523changeNote.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523changeNote.json index 9b546254a..3899e68e4 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523changeNote.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523changeNote.json @@ -15,8 +15,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": false, - "short_form": "changeNote", - "obo_id": "changeNote", + "short_form": "SKOS_changeNote", + "obo_id": "SKOS:changeNote", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523changeNote?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json index 6ea8a7e2e..509b8e618 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch.json @@ -15,8 +15,8 @@ "is_defining_ontology": false, "has_children": true, "is_root": false, - "short_form": "closeMatch", - "obo_id": "closeMatch", + "short_form": "SKOS_closeMatch", + "obo_id": "SKOS:closeMatch", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523closeMatch?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523definition.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523definition.json index 4defd7f2a..afb523fad 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523definition.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523definition.json @@ -15,8 +15,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": false, - "short_form": "definition", - "obo_id": "definition", + "short_form": "SKOS_definition", + "obo_id": "SKOS:definition", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523definition?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523editorialNote.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523editorialNote.json index 8100b5937..4c592eea0 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523editorialNote.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523editorialNote.json @@ -15,8 +15,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": false, - "short_form": "editorialNote", - "obo_id": "editorialNote", + "short_form": "SKOS_editorialNote", + "obo_id": "SKOS:editorialNote", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523editorialNote?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json index 2b8e039da..41f2f19b0 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch.json @@ -17,8 +17,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": false, - "short_form": "exactMatch", - "obo_id": "exactMatch", + "short_form": "SKOS_exactMatch", + "obo_id": "SKOS:exactMatch", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523exactMatch?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523example.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523example.json index a0e71ee54..83223fb03 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523example.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523example.json @@ -15,8 +15,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": false, - "short_form": "example", - "obo_id": "example", + "short_form": "SKOS_example", + "obo_id": "SKOS:example", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523example?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hasTopConcept.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hasTopConcept.json index 01ca82b9e..83bec0518 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hasTopConcept.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hasTopConcept.json @@ -15,8 +15,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "hasTopConcept", - "obo_id": "hasTopConcept", + "short_form": "SKOS_hasTopConcept", + "obo_id": "SKOS:hasTopConcept", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hasTopConcept?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hiddenLabel.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hiddenLabel.json index 128e77c06..f94ec92fb 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hiddenLabel.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hiddenLabel.json @@ -18,8 +18,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "hiddenLabel", - "obo_id": "hiddenLabel", + "short_form": "SKOS_hiddenLabel", + "obo_id": "SKOS:hiddenLabel", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523hiddenLabel?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523historyNote.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523historyNote.json index 865077945..f09832353 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523historyNote.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523historyNote.json @@ -15,8 +15,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": false, - "short_form": "historyNote", - "obo_id": "historyNote", + "short_form": "SKOS_historyNote", + "obo_id": "SKOS:historyNote", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523historyNote?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523inScheme.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523inScheme.json index 467c3a62a..fe5b88f15 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523inScheme.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523inScheme.json @@ -18,8 +18,8 @@ "is_defining_ontology": false, "has_children": true, "is_root": true, - "short_form": "inScheme", - "obo_id": "inScheme", + "short_form": "SKOS_inScheme", + "obo_id": "SKOS:inScheme", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523inScheme?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523mappingRelation.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523mappingRelation.json index 89831583f..b1540d9fa 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523mappingRelation.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523mappingRelation.json @@ -17,8 +17,8 @@ "is_defining_ontology": false, "has_children": true, "is_root": false, - "short_form": "mappingRelation", - "obo_id": "mappingRelation", + "short_form": "SKOS_mappingRelation", + "obo_id": "SKOS:mappingRelation", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523mappingRelation?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523member.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523member.json index 23d9bb994..61dc82999 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523member.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523member.json @@ -15,8 +15,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "member", - "obo_id": "member", + "short_form": "SKOS_member", + "obo_id": "SKOS:member", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523member?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523memberList.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523memberList.json index 07a5cc039..fe1d83de3 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523memberList.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523memberList.json @@ -17,8 +17,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "memberList", - "obo_id": "memberList", + "short_form": "SKOS_memberList", + "obo_id": "SKOS:memberList", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523memberList?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowMatch.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowMatch.json index 9ad8e3951..f93ca368e 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowMatch.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowMatch.json @@ -15,8 +15,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": false, - "short_form": "narrowMatch", - "obo_id": "narrowMatch", + "short_form": "SKOS_narrowMatch", + "obo_id": "SKOS:narrowMatch", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowMatch?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrower.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrower.json index 63a6fdf95..e4b5f71a2 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrower.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrower.json @@ -20,8 +20,8 @@ "is_defining_ontology": false, "has_children": true, "is_root": false, - "short_form": "narrower", - "obo_id": "narrower", + "short_form": "SKOS_narrower", + "obo_id": "SKOS:narrower", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrower?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowerTransitive.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowerTransitive.json index 5ace00da9..5b8823ce0 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowerTransitive.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowerTransitive.json @@ -18,8 +18,8 @@ "is_defining_ontology": false, "has_children": true, "is_root": false, - "short_form": "narrowerTransitive", - "obo_id": "narrowerTransitive", + "short_form": "SKOS_narrowerTransitive", + "obo_id": "SKOS:narrowerTransitive", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523narrowerTransitive?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523notation.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523notation.json index b99fb9bf3..be13a78a1 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523notation.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523notation.json @@ -18,8 +18,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "notation", - "obo_id": "notation", + "short_form": "SKOS_notation", + "obo_id": "SKOS:notation", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523notation?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523note.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523note.json index 60fdc9b33..e49030b2f 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523note.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523note.json @@ -18,8 +18,8 @@ "is_defining_ontology": false, "has_children": true, "is_root": true, - "short_form": "note", - "obo_id": "note", + "short_form": "SKOS_note", + "obo_id": "SKOS:note", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523note?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523prefLabel.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523prefLabel.json index 4d967c71c..6c0dcfee9 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523prefLabel.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523prefLabel.json @@ -19,8 +19,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": true, - "short_form": "prefLabel", - "obo_id": "prefLabel", + "short_form": "SKOS_prefLabel", + "obo_id": "SKOS:prefLabel", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523prefLabel?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523related.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523related.json index e5a4bbb18..a6df847d6 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523related.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523related.json @@ -17,8 +17,8 @@ "is_defining_ontology": false, "has_children": true, "is_root": false, - "short_form": "related", - "obo_id": "related", + "short_form": "SKOS_related", + "obo_id": "SKOS:related", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523related?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523relatedMatch.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523relatedMatch.json index e072184f4..2b4e8278b 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523relatedMatch.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523relatedMatch.json @@ -15,8 +15,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": false, - "short_form": "relatedMatch", - "obo_id": "relatedMatch", + "short_form": "SKOS_relatedMatch", + "obo_id": "SKOS:relatedMatch", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523relatedMatch?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523scopeNote.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523scopeNote.json index 9c7007cb3..8cb1bde98 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523scopeNote.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523scopeNote.json @@ -15,8 +15,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": false, - "short_form": "scopeNote", - "obo_id": "scopeNote", + "short_form": "SKOS_scopeNote", + "obo_id": "SKOS:scopeNote", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523scopeNote?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523semanticRelation.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523semanticRelation.json index d2ccc36c2..ee575dea8 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523semanticRelation.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523semanticRelation.json @@ -18,8 +18,8 @@ "is_defining_ontology": false, "has_children": true, "is_root": true, - "short_form": "semanticRelation", - "obo_id": "semanticRelation", + "short_form": "SKOS_semanticRelation", + "obo_id": "SKOS:semanticRelation", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523semanticRelation?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523topConceptOf.json b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523topConceptOf.json index df23a57c1..234c656cb 100644 --- a/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523topConceptOf.json +++ b/testcases_expected_output_api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523topConceptOf.json @@ -15,8 +15,8 @@ "is_defining_ontology": false, "has_children": false, "is_root": false, - "short_form": "topConceptOf", - "obo_id": "topConceptOf", + "short_form": "SKOS_topConceptOf", + "obo_id": "SKOS:topConceptOf", "_links": { "self": { "href": "http://localhost:8080/api/ontologies/skos/properties/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523topConceptOf?lang=en" diff --git a/testcases_expected_output_api/ontologies/skos/terms.json b/testcases_expected_output_api/ontologies/skos/terms.json index a453b3360..13b74a2a0 100644 --- a/testcases_expected_output_api/ontologies/skos/terms.json +++ b/testcases_expected_output_api/ontologies/skos/terms.json @@ -40,10 +40,10 @@ "is_root": false, "label": "Ordered Collection", "lang": "en", - "obo_id": "OrderedCollection", + "obo_id": "SKOS:OrderedCollection", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "OrderedCollection", + "short_form": "SKOS_OrderedCollection", "synonyms": [] }, { @@ -84,10 +84,10 @@ "is_root": true, "label": "Collection", "lang": "en", - "obo_id": "Collection", + "obo_id": "SKOS:Collection", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "Collection", + "short_form": "SKOS_Collection", "synonyms": [] }, { @@ -113,10 +113,10 @@ "is_root": true, "label": "Concept", "lang": "en", - "obo_id": "Concept", + "obo_id": "SKOS:Concept", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "Concept", + "short_form": "SKOS_Concept", "synonyms": [] }, { @@ -148,10 +148,10 @@ "is_root": true, "label": "Concept Scheme", "lang": "en", - "obo_id": "ConceptScheme", + "obo_id": "SKOS:ConceptScheme", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "ConceptScheme", + "short_form": "SKOS_ConceptScheme", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection.json b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection.json index c8ed6a3f0..b20128b72 100644 --- a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection.json +++ b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection.json @@ -18,8 +18,8 @@ "is_defining_ontology": true, "has_children": true, "is_root": true, - "short_form": "Collection", - "obo_id": "Collection", + "short_form": "SKOS_Collection", + "obo_id": "SKOS:Collection", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection/children.json b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection/children.json index 176a8bbd9..e48eb12fe 100644 --- a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection/children.json +++ b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection/children.json @@ -40,10 +40,10 @@ "is_root": false, "label": "Ordered Collection", "lang": "en", - "obo_id": "OrderedCollection", + "obo_id": "SKOS:OrderedCollection", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "OrderedCollection", + "short_form": "SKOS_OrderedCollection", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection/descendants.json b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection/descendants.json index 176a8bbd9..e48eb12fe 100644 --- a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection/descendants.json +++ b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection/descendants.json @@ -40,10 +40,10 @@ "is_root": false, "label": "Ordered Collection", "lang": "en", - "obo_id": "OrderedCollection", + "obo_id": "SKOS:OrderedCollection", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "OrderedCollection", + "short_form": "SKOS_OrderedCollection", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection/hierarchicalChildren.json b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection/hierarchicalChildren.json index 176a8bbd9..e48eb12fe 100644 --- a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection/hierarchicalChildren.json +++ b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection/hierarchicalChildren.json @@ -40,10 +40,10 @@ "is_root": false, "label": "Ordered Collection", "lang": "en", - "obo_id": "OrderedCollection", + "obo_id": "SKOS:OrderedCollection", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "OrderedCollection", + "short_form": "SKOS_OrderedCollection", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection/hierarchicalDescendants.json b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection/hierarchicalDescendants.json index 176a8bbd9..e48eb12fe 100644 --- a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection/hierarchicalDescendants.json +++ b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Collection/hierarchicalDescendants.json @@ -40,10 +40,10 @@ "is_root": false, "label": "Ordered Collection", "lang": "en", - "obo_id": "OrderedCollection", + "obo_id": "SKOS:OrderedCollection", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "OrderedCollection", + "short_form": "SKOS_OrderedCollection", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Concept.json b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Concept.json index 4f2081133..b1f026225 100644 --- a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Concept.json +++ b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523Concept.json @@ -15,8 +15,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": true, - "short_form": "Concept", - "obo_id": "Concept", + "short_form": "SKOS_Concept", + "obo_id": "SKOS:Concept", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523ConceptScheme.json b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523ConceptScheme.json index 3297f6b4f..e8658273e 100644 --- a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523ConceptScheme.json +++ b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523ConceptScheme.json @@ -21,8 +21,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": true, - "short_form": "ConceptScheme", - "obo_id": "ConceptScheme", + "short_form": "SKOS_ConceptScheme", + "obo_id": "SKOS:ConceptScheme", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection.json b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection.json index 389cf83ba..b771e28c2 100644 --- a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection.json +++ b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection.json @@ -18,8 +18,8 @@ "is_defining_ontology": true, "has_children": false, "is_root": false, - "short_form": "OrderedCollection", - "obo_id": "OrderedCollection", + "short_form": "SKOS_OrderedCollection", + "obo_id": "SKOS:OrderedCollection", "is_preferred_root": false, "_links": { "self": { diff --git a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection/ancestors.json b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection/ancestors.json index 86b539888..2f5eb524d 100644 --- a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection/ancestors.json +++ b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection/ancestors.json @@ -37,10 +37,10 @@ "is_root": true, "label": "Collection", "lang": "en", - "obo_id": "Collection", + "obo_id": "SKOS:Collection", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "Collection", + "short_form": "SKOS_Collection", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection/hierarchicalAncestors.json b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection/hierarchicalAncestors.json index 86b539888..2f5eb524d 100644 --- a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection/hierarchicalAncestors.json +++ b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection/hierarchicalAncestors.json @@ -37,10 +37,10 @@ "is_root": true, "label": "Collection", "lang": "en", - "obo_id": "Collection", + "obo_id": "SKOS:Collection", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "Collection", + "short_form": "SKOS_Collection", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection/hierarchicalParents.json b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection/hierarchicalParents.json index 86b539888..2f5eb524d 100644 --- a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection/hierarchicalParents.json +++ b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection/hierarchicalParents.json @@ -37,10 +37,10 @@ "is_root": true, "label": "Collection", "lang": "en", - "obo_id": "Collection", + "obo_id": "SKOS:Collection", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "Collection", + "short_form": "SKOS_Collection", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection/parents.json b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection/parents.json index 86b539888..2f5eb524d 100644 --- a/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection/parents.json +++ b/testcases_expected_output_api/ontologies/skos/terms/http%253A%252F%252Fwww.w3.org%252F2004%252F02%252Fskos%252Fcore%2523OrderedCollection/parents.json @@ -37,10 +37,10 @@ "is_root": true, "label": "Collection", "lang": "en", - "obo_id": "Collection", + "obo_id": "SKOS:Collection", "ontology_iri": "http://www.w3.org/2004/02/skos/core", "ontology_name": "skos", - "short_form": "Collection", + "short_form": "SKOS_Collection", "synonyms": [] } ] \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/xmpl/classes/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000001.json b/testcases_expected_output_api/ontologies/xmpl/classes/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000001.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/xmpl/classes/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000001.json +++ b/testcases_expected_output_api/ontologies/xmpl/classes/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/xmpl/classes/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000002.json b/testcases_expected_output_api/ontologies/xmpl/classes/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000002.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/xmpl/classes/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000002.json +++ b/testcases_expected_output_api/ontologies/xmpl/classes/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000002.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/xmpl/classes/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000003.json b/testcases_expected_output_api/ontologies/xmpl/classes/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000003.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/xmpl/classes/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000003.json +++ b/testcases_expected_output_api/ontologies/xmpl/classes/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FPreferred_name.json b/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FPreferred_name.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FPreferred_name.json +++ b/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FPreferred_name.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FSynonym.json b/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FSynonym.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FSynonym.json +++ b/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FSynonym.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000001.json b/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000001.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000001.json +++ b/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000001.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000002.json b/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000002.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000002.json +++ b/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000002.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000003.json b/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000003.json index 0e0eb8c25..b6bca417d 100644 --- a/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000003.json +++ b/testcases_expected_output_api/ontologies/xmpl/entities/http%253A%252F%252Fexmpl.org%252Fxmpl%252FXMPL000003.json @@ -1,3 +1,3 @@ { - "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Tue Aug 13 12:16:19 BST 2024
There was an unexpected error (type=Not Found, status=404).
" + "error": "

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.

Fri Aug 30 13:22:15 BST 2024
There was an unexpected error (type=Not Found, status=404).
" } \ No newline at end of file diff --git a/testcases_expected_output_api/v2/ontologies.json b/testcases_expected_output_api/v2/ontologies.json index 2326b9a32..65577767a 100644 --- a/testcases_expected_output_api/v2/ontologies.json +++ b/testcases_expected_output_api/v2/ontologies.json @@ -217,6 +217,71 @@ ], "uri": "http://exmpl.org/xmpl/" }, + { + "base_uri": [ + "http://www.geneontology.org/formats/oboInOwl#" + ], + "definition": [ + "OBO Format metamodel. This meta-ontology is self-describing. OBO metamodel properties are described using OBO metamodel properties", + "\n This is an OWL translation of an ontology whose native representational form is .obo. The translation was performed using the oboInOwl xslt library. For details, see http://www.berkeleybop.org/obo-conv.cgi\n " + ], + "exportsTo": [ + "gitissue502" + ], + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Ontology", + "http://www.w3.org/2000/01/rdf-schema#comment": [ + "OBO Format metamodel. This meta-ontology is self-describing. OBO metamodel properties are described using OBO metamodel properties", + "\n This is an OWL translation of an ontology whose native representational form is .obo. The translation was performed using the oboInOwl xslt library. For details, see http://www.berkeleybop.org/obo-conv.cgi\n " + ], + "http://www.w3.org/2000/01/rdf-schema#label": "", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl", + "isObsolete": false, + "label": "", + "language": "en", + "linkedEntities": { + "http://www.w3.org/2000/01/rdf-schema#comment": { + "curie": "RDFS:comment", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "comment", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "numberOfClasses": "12", + "numberOfEntities": "56", + "numberOfIndividuals": "0", + "numberOfProperties": "44", + "ontologyId": "oio", + "ontology_purl": "https://gist.githubusercontent.com/haideriqbal/4a2b1a9aa81d9fa26cae81e0b0b7730b/raw/527665128b9be9d7d6133f9a796379600151c737/oboInOwl.owl", + "searchableAnnotationValues": [ + false + ], + "type": [ + "ontology" + ] + }, { "base_uri": [ "http://www.w3.org/2000/01/rdf-schema#" @@ -235,7 +300,7 @@ "language": "en", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "seeAlso", + "curie": "RDFS:seeAlso", "definedBy": [ "rdfs" ], @@ -294,7 +359,7 @@ "language": "en", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -307,7 +372,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -320,7 +385,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "seeAlso", + "curie": "RDFS:seeAlso", "definedBy": [ "rdfs" ], @@ -387,7 +452,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "seeAlso", + "curie": "RDFS:seeAlso", "definedBy": [ "rdfs" ], @@ -688,30 +753,6 @@ "ontology" ] }, - { - "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Ontology", - "http://www.w3.org/2002/07/owl#versionIRI": "http://www.ebi.ac.uk/testcases/ontology-annotations/version/ncbitaxon/2022-08-18/ncbitaxon.owl", - "imported": false, - "iri": "http://www.ebi.ac.uk/testcases/ontology-annotations/version/ncbitaxon.owl", - "isObsolete": false, - "language": "en", - "linkedEntities": {}, - "numDescendants": 0.0, - "numHierarchicalDescendants": 0.0, - "numberOfClasses": "0", - "numberOfEntities": "0", - "numberOfIndividuals": "0", - "numberOfProperties": "0", - "ontologyId": "ontology-annotations-version-ncbitaxon", - "ontology_purl": "./testcases/ontology-annotations/version/ncbitaxon.owl", - "preferredPrefix": "ontology-annotations-version-ncbitaxon", - "searchableAnnotationValues": [ - false - ], - "type": [ - "ontology" - ] - }, { "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Ontology", "http://www.w3.org/2002/07/owl#versionIRI": "http://www.ebi.ac.uk/testcases/owl2primer/v.0.0.1/datatype-enumeration.owl", @@ -812,6 +853,7 @@ "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Ontology", "imported": false, "importsFrom": [ + "oio", "rdfs", "skos" ], diff --git a/testcases_expected_output_api/v2/ontologies/duo/classes.json b/testcases_expected_output_api/v2/ontologies/duo/classes.json index 9af3c285b..4015e94bc 100644 --- a/testcases_expected_output_api/v2/ontologies/duo/classes.json +++ b/testcases_expected_output_api/v2/ontologies/duo/classes.json @@ -1352,11 +1352,6 @@ "isPreferredRoot": false, "label": "entity", "linkedEntities": { - "BFO:0000001": { - "curie": "BFO:0000001", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000001" - }, "http://purl.obolibrary.org/obo/BFO_0000179": { "curie": "BFO:0000179", "hasLocalDefinition": true, @@ -1688,11 +1683,6 @@ "isPreferredRoot": false, "label": "continuant", "linkedEntities": { - "BFO:0000002": { - "curie": "BFO:0000002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000002" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -2017,11 +2007,6 @@ "isPreferredRoot": false, "label": "occurrent", "linkedEntities": { - "BFO:0000003": { - "curie": "BFO:0000003", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000003" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -2368,11 +2353,6 @@ "isPreferredRoot": false, "label": "independent continuant", "linkedEntities": { - "BFO:0000004": { - "curie": "BFO:0000004", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000004" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -2672,11 +2652,6 @@ "isPreferredRoot": false, "label": "spatial region", "linkedEntities": { - "BFO:0000006": { - "curie": "BFO:0000006", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000006" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -3017,11 +2992,6 @@ "isPreferredRoot": false, "label": "temporal region", "linkedEntities": { - "BFO:0000008": { - "curie": "BFO:0000008", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000008" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -3308,11 +3278,6 @@ "isPreferredRoot": false, "label": "two-dimensional spatial region", "linkedEntities": { - "BFO:0000009": { - "curie": "BFO:0000009", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000009" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -3642,11 +3607,6 @@ "isPreferredRoot": false, "label": "spatiotemporal region", "linkedEntities": { - "BFO:0000011": { - "curie": "BFO:0000011", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000011" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -3917,11 +3877,6 @@ "isPreferredRoot": false, "label": "process", "linkedEntities": { - "BFO:0000015": { - "curie": "BFO:0000015", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000015" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -4166,11 +4121,6 @@ "isPreferredRoot": false, "label": "disposition", "linkedEntities": { - "BFO:0000016": { - "curie": "BFO:0000016", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000016" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -4465,11 +4415,6 @@ "isPreferredRoot": false, "label": "realizable entity", "linkedEntities": { - "BFO:0000017": { - "curie": "BFO:0000017", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000017" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -4757,11 +4702,6 @@ "isPreferredRoot": false, "label": "zero-dimensional spatial region", "linkedEntities": { - "BFO:0000018": { - "curie": "BFO:0000018", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000018" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -5160,11 +5100,6 @@ "isPreferredRoot": false, "label": "quality", "linkedEntities": { - "BFO:0000019": { - "curie": "BFO:0000019", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000019" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -5430,11 +5365,6 @@ "isPreferredRoot": false, "label": "specifically dependent continuant", "linkedEntities": { - "BFO:0000020": { - "curie": "BFO:0000020", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000020" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -5696,11 +5626,6 @@ "isPreferredRoot": false, "label": "role", "linkedEntities": { - "BFO:0000023": { - "curie": "BFO:0000023", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000023" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -5955,11 +5880,6 @@ "isPreferredRoot": false, "label": "fiat object part", "linkedEntities": { - "BFO:0000024": { - "curie": "BFO:0000024", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000024" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -6196,11 +6116,6 @@ "isPreferredRoot": false, "label": "one-dimensional spatial region", "linkedEntities": { - "BFO:0000026": { - "curie": "BFO:0000026", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000026" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -6464,11 +6379,6 @@ "isPreferredRoot": false, "label": "object aggregate", "linkedEntities": { - "BFO:0000027": { - "curie": "BFO:0000027", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000027" - }, "ISBN:978": { "curie": "ISBN:978", "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", @@ -6729,11 +6639,6 @@ "isPreferredRoot": false, "label": "three-dimensional spatial region", "linkedEntities": { - "BFO:0000028": { - "curie": "BFO:0000028", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000028" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -6976,11 +6881,6 @@ "isPreferredRoot": false, "label": "site", "linkedEntities": { - "BFO:0000029": { - "curie": "BFO:0000029", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000029" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -7218,11 +7118,6 @@ "isPreferredRoot": false, "label": "object", "linkedEntities": { - "BFO:0000030": { - "curie": "BFO:0000030", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000030" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -7465,11 +7360,6 @@ "isPreferredRoot": false, "label": "generically dependent continuant", "linkedEntities": { - "BFO:0000031": { - "curie": "BFO:0000031", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000031" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -7674,11 +7564,6 @@ "isPreferredRoot": false, "label": "function", "linkedEntities": { - "BFO:0000034": { - "curie": "BFO:0000034", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000034" - }, "BFO:function": { "curie": "BFO:function", "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", @@ -7955,11 +7840,6 @@ "isPreferredRoot": false, "label": "process boundary", "linkedEntities": { - "BFO:0000035": { - "curie": "BFO:0000035", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000035" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -8177,11 +8057,6 @@ "isPreferredRoot": false, "label": "one-dimensional temporal region", "linkedEntities": { - "BFO:0000038": { - "curie": "BFO:0000038", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000038" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -8477,11 +8352,6 @@ "isPreferredRoot": false, "label": "material entity", "linkedEntities": { - "BFO:0000040": { - "curie": "BFO:0000040", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000040" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -8794,11 +8664,6 @@ "isPreferredRoot": false, "label": "continuant fiat boundary", "linkedEntities": { - "BFO:0000140": { - "curie": "BFO:0000140", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000140" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -9014,11 +8879,6 @@ "isPreferredRoot": false, "label": "immaterial entity", "linkedEntities": { - "BFO:0000141": { - "curie": "BFO:0000141", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000141" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -9192,11 +9052,6 @@ "isPreferredRoot": false, "label": "one-dimensional continuant fiat boundary", "linkedEntities": { - "BFO:0000142": { - "curie": "BFO:0000142", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000142" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -9485,11 +9340,6 @@ "isPreferredRoot": false, "label": "process profile", "linkedEntities": { - "BFO:0000144": { - "curie": "BFO:0000144", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000144" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -9744,11 +9594,6 @@ "isPreferredRoot": false, "label": "relational quality", "linkedEntities": { - "BFO:0000145": { - "curie": "BFO:0000145", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000145" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -9966,11 +9811,6 @@ "isPreferredRoot": false, "label": "two-dimensional continuant fiat boundary", "linkedEntities": { - "BFO:0000146": { - "curie": "BFO:0000146", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000146" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -10203,11 +10043,6 @@ "isPreferredRoot": false, "label": "zero-dimensional continuant fiat boundary", "linkedEntities": { - "BFO:0000147": { - "curie": "BFO:0000147", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000147" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -10486,11 +10321,6 @@ "isPreferredRoot": false, "label": "zero-dimensional temporal region", "linkedEntities": { - "BFO:0000148": { - "curie": "BFO:0000148", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000148" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -10698,11 +10528,6 @@ "isPreferredRoot": false, "label": "history", "linkedEntities": { - "BFO:0000182": { - "curie": "BFO:0000182", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000182" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -11246,20 +11071,6 @@ "isPreferredRoot": false, "label": "population origins or ancestry research prohibited", "linkedEntities": { - "DUO:00000044": { - "curie": "DUO:00000044", - "definedBy": [ - "duo" - ], - "hasLocalDefinition": true, - "iri": "http://purl.obolibrary.org/obo/DUO_00000044", - "label": "population origins or ancestry research prohibited", - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, "DUO:0000044": { "curie": "DUO:0000044", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -17956,11 +17767,6 @@ "isPreferredRoot": false, "label": "conditional specification", "linkedEntities": { - "IAO:0000001": { - "curie": "IAO:0000001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000001" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -18157,11 +17963,6 @@ "isPreferredRoot": false, "label": "measurement unit label", "linkedEntities": { - "IAO:0000003": { - "curie": "IAO:0000003", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000003" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -18379,11 +18180,6 @@ "isPreferredRoot": false, "label": "objective specification", "linkedEntities": { - "IAO:0000005": { - "curie": "IAO:0000005", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000005" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -18686,11 +18482,6 @@ "isPreferredRoot": false, "label": "narrative object", "linkedEntities": { - "IAO:0000006": { - "curie": "IAO:0000006", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000006" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -18895,11 +18686,6 @@ "isPreferredRoot": false, "label": "action specification", "linkedEntities": { - "IAO:0000007": { - "curie": "IAO:0000007", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000007" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -19119,11 +18905,6 @@ "isPreferredRoot": false, "label": "datum label", "linkedEntities": { - "IAO:0000009": { - "curie": "IAO:0000009", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000009" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -19321,11 +19102,6 @@ "isPreferredRoot": false, "label": "software", "linkedEntities": { - "IAO:0000010": { - "curie": "IAO:0000010", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000010" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -19571,11 +19347,6 @@ "isPreferredRoot": false, "label": "journal article", "linkedEntities": { - "IAO:0000013": { - "curie": "IAO:0000013", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000013" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -19876,11 +19647,6 @@ "isPreferredRoot": false, "label": "information carrier", "linkedEntities": { - "IAO:0000015": { - "curie": "IAO:0000015", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000015" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -20104,11 +19870,6 @@ "isPreferredRoot": false, "label": "model number", "linkedEntities": { - "IAO:0000017": { - "curie": "IAO:0000017", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000017" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -20306,11 +20067,6 @@ "isPreferredRoot": false, "label": "programming language", "linkedEntities": { - "IAO:0000025": { - "curie": "IAO:0000025", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000025" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -20532,11 +20288,6 @@ "isPreferredRoot": false, "label": "data item", "linkedEntities": { - "IAO:0000027": { - "curie": "IAO:0000027", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000027" - }, "http://purl.obolibrary.org/obo/APOLLO_SV_00000522": { "curie": "APOLLO:SV_00000522", "hasLocalDefinition": true, @@ -20847,11 +20598,6 @@ "isPreferredRoot": false, "label": "symbol", "linkedEntities": { - "IAO:0000028": { - "curie": "IAO:0000028", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000028" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -21057,11 +20803,6 @@ "isPreferredRoot": false, "label": "numeral", "linkedEntities": { - "IAO:0000029": { - "curie": "IAO:0000029", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000029" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -21247,11 +20988,6 @@ "isPreferredRoot": false, "label": "information content entity", "linkedEntities": { - "IAO:0000030": { - "curie": "IAO:0000030", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000030" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -21587,11 +21323,6 @@ "isPreferredRoot": false, "label": "integer numeral", "linkedEntities": { - "IAO:0000031": { - "curie": "IAO:0000031", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000031" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -21800,11 +21531,6 @@ "isPreferredRoot": false, "label": "scalar measurement datum", "linkedEntities": { - "IAO:0000032": { - "curie": "IAO:0000032", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000032" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -22040,11 +21766,6 @@ "isPreferredRoot": false, "label": "directive information entity", "linkedEntities": { - "IAO:0000033": { - "curie": "IAO:0000033", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000033" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -22245,11 +21966,6 @@ "isPreferredRoot": false, "label": "time trigger", "linkedEntities": { - "IAO:0000034": { - "curie": "IAO:0000034", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000034" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -22435,11 +22151,6 @@ "isPreferredRoot": false, "label": "dot plot", "linkedEntities": { - "IAO:0000037": { - "curie": "IAO:0000037", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000037" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -22671,11 +22382,6 @@ "isPreferredRoot": false, "label": "graph", "linkedEntities": { - "IAO:0000038": { - "curie": "IAO:0000038", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000038" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -22884,11 +22590,6 @@ "isPreferredRoot": false, "label": "rule", "linkedEntities": { - "IAO:0000055": { - "curie": "IAO:0000055", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000055" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -23120,11 +22821,6 @@ "isPreferredRoot": false, "label": "contour plot", "linkedEntities": { - "IAO:0000057": { - "curie": "IAO:0000057", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000057" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -23356,11 +23052,6 @@ "isPreferredRoot": false, "label": "algorithm", "linkedEntities": { - "IAO:0000064": { - "curie": "IAO:0000064", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000064" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -23585,11 +23276,6 @@ "isPreferredRoot": false, "label": "software interpreter", "linkedEntities": { - "IAO:0000065": { - "curie": "IAO:0000065", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000065" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -23845,11 +23531,6 @@ "isPreferredRoot": false, "label": "curation status specification", "linkedEntities": { - "IAO:0000078": { - "curie": "IAO:0000078", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000078" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -24152,11 +23833,6 @@ "isPreferredRoot": false, "label": "density plot", "linkedEntities": { - "IAO:0000079": { - "curie": "IAO:0000079", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000079" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -24394,11 +24070,6 @@ "isPreferredRoot": false, "label": "report", "linkedEntities": { - "IAO:0000088": { - "curie": "IAO:0000088", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000088" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -24625,11 +24296,6 @@ "isPreferredRoot": false, "label": "source code module", "linkedEntities": { - "IAO:0000096": { - "curie": "IAO:0000096", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000096" - }, "http://purl.obolibrary.org/obo/APOLLO_SV_00000522": { "curie": "APOLLO:SV_00000522", "hasLocalDefinition": true, @@ -24871,11 +24537,6 @@ "isPreferredRoot": false, "label": "data format specification", "linkedEntities": { - "IAO:0000098": { - "curie": "IAO:0000098", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000098" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -25088,11 +24749,6 @@ "isPreferredRoot": false, "label": "data set", "linkedEntities": { - "IAO:0000100": { - "curie": "IAO:0000100", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000100" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -25314,11 +24970,6 @@ "isPreferredRoot": false, "label": "image", "linkedEntities": { - "IAO:0000101": { - "curie": "IAO:0000101", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000101" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -25508,11 +25159,6 @@ "isPreferredRoot": false, "label": "data about an ontology part", "linkedEntities": { - "IAO:0000102": { - "curie": "IAO:0000102", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000102" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -25703,11 +25349,6 @@ "isPreferredRoot": false, "label": "plan specification", "linkedEntities": { - "IAO:0000104": { - "curie": "IAO:0000104", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000104" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -26007,11 +25648,6 @@ "isPreferredRoot": false, "label": "measurement datum", "linkedEntities": { - "IAO:0000109": { - "curie": "IAO:0000109", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000109" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -26225,11 +25861,6 @@ "isPreferredRoot": false, "label": "version number", "linkedEntities": { - "IAO:0000129": { - "curie": "IAO:0000129", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000129" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -26418,11 +26049,6 @@ "isPreferredRoot": false, "label": "serial number", "linkedEntities": { - "IAO:0000131": { - "curie": "IAO:0000131", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000131" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -26611,11 +26237,6 @@ "isPreferredRoot": false, "label": "lot number", "linkedEntities": { - "IAO:0000132": { - "curie": "IAO:0000132", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000132" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -26805,11 +26426,6 @@ "isPreferredRoot": false, "label": "setting datum", "linkedEntities": { - "IAO:0000140": { - "curie": "IAO:0000140", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000140" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -26979,11 +26595,6 @@ "isPreferredRoot": false, "label": "conclusion textual entity", "linkedEntities": { - "IAO:0000144": { - "curie": "IAO:0000144", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000144" - }, "PMID:19696660": { "curie": "PMID:19696660", "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", @@ -27241,11 +26852,6 @@ "isPreferredRoot": false, "label": "material information bearer", "linkedEntities": { - "IAO:0000178": { - "curie": "IAO:0000178", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000178" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -27466,11 +27072,6 @@ "isPreferredRoot": false, "label": "histogram", "linkedEntities": { - "IAO:0000179": { - "curie": "IAO:0000179", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000179" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -27689,11 +27290,6 @@ "isPreferredRoot": false, "label": "heatmap", "linkedEntities": { - "IAO:0000180": { - "curie": "IAO:0000180", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000180" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -27912,11 +27508,6 @@ "isPreferredRoot": false, "label": "Venn diagram", "linkedEntities": { - "IAO:0000181": { - "curie": "IAO:0000181", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000181" - }, "http://en.wikipedia.org/wiki/Venn_diagram": { "curie": "wikipedia.en:Venn_diagram", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -28141,11 +27732,6 @@ "isPreferredRoot": false, "label": "dendrogram", "linkedEntities": { - "IAO:0000183": { - "curie": "IAO:0000183", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000183" - }, "http://en.wikipedia.org/wiki/Dendrogram": { "curie": "wikipedia.en:Dendrogram", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -28383,11 +27969,6 @@ "isPreferredRoot": false, "label": "scatter plot", "linkedEntities": { - "IAO:0000184": { - "curie": "IAO:0000184", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000184" - }, "http://en.wikipedia.org/wiki/Scatterplot": { "curie": "wikipedia.en:Scatterplot", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -28632,11 +28213,6 @@ "isPreferredRoot": false, "label": "photograph", "linkedEntities": { - "IAO:0000185": { - "curie": "IAO:0000185", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000185" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -28844,11 +28420,6 @@ "isPreferredRoot": false, "label": "photographic print", "linkedEntities": { - "IAO:0000186": { - "curie": "IAO:0000186", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000186" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -29075,11 +28646,6 @@ "isPreferredRoot": false, "label": "obsolescence reason specification", "linkedEntities": { - "IAO:0000225": { - "curie": "IAO:0000225", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000225" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -29342,11 +28908,6 @@ "isPreferredRoot": false, "label": "textual entity", "linkedEntities": { - "IAO:0000300": { - "curie": "IAO:0000300", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000300" - }, "http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records)": { "curie": "wikipedia.en:Functional_Requirements_for_Bibliographic_Records)", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -29563,11 +29124,6 @@ "isPreferredRoot": false, "label": "citation", "linkedEntities": { - "IAO:0000301": { - "curie": "IAO:0000301", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000301" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -29822,11 +29378,6 @@ "isPreferredRoot": false, "label": "author identification", "linkedEntities": { - "IAO:0000302": { - "curie": "IAO:0000302", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000302" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -30057,11 +29608,6 @@ "isPreferredRoot": false, "label": "institutional identification", "linkedEntities": { - "IAO:0000303": { - "curie": "IAO:0000303", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000303" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -30290,11 +29836,6 @@ "isPreferredRoot": false, "label": "caption", "linkedEntities": { - "IAO:0000304": { - "curie": "IAO:0000304", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000304" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -30515,11 +30056,6 @@ "isPreferredRoot": false, "label": "document title", "linkedEntities": { - "IAO:0000305": { - "curie": "IAO:0000305", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000305" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -30708,11 +30244,6 @@ "isPreferredRoot": false, "label": "table", "linkedEntities": { - "IAO:0000306": { - "curie": "IAO:0000306", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000306" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -30935,11 +30466,6 @@ "isPreferredRoot": false, "label": "table of abbreviations", "linkedEntities": { - "IAO:0000307": { - "curie": "IAO:0000307", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000307" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -31136,11 +30662,6 @@ "isPreferredRoot": false, "label": "figure", "linkedEntities": { - "IAO:0000308": { - "curie": "IAO:0000308", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000308" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -31385,11 +30906,6 @@ "isPreferredRoot": false, "label": "diagram", "linkedEntities": { - "IAO:0000309": { - "curie": "IAO:0000309", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000309" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -31576,11 +31092,6 @@ "isPreferredRoot": false, "label": "document", "linkedEntities": { - "IAO:0000310": { - "curie": "IAO:0000310", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000310" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -31903,11 +31414,6 @@ "isPreferredRoot": false, "label": "publication", "linkedEntities": { - "IAO:0000311": { - "curie": "IAO:0000311", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000311" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -32164,11 +31670,6 @@ "isPreferredRoot": false, "label": "publication about an investigation", "linkedEntities": { - "IAO:0000312": { - "curie": "IAO:0000312", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000312" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -32411,11 +31912,6 @@ "isPreferredRoot": false, "label": "patent", "linkedEntities": { - "IAO:0000313": { - "curie": "IAO:0000313", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000313" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -32625,11 +32121,6 @@ "isPreferredRoot": false, "label": "document part", "linkedEntities": { - "IAO:0000314": { - "curie": "IAO:0000314", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000314" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -32894,11 +32385,6 @@ "isPreferredRoot": false, "label": "abstract", "linkedEntities": { - "IAO:0000315": { - "curie": "IAO:0000315", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000315" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -33157,11 +32643,6 @@ "isPreferredRoot": false, "label": "introduction to a publication about an investigation", "linkedEntities": { - "IAO:0000316": { - "curie": "IAO:0000316", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000316" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -33436,11 +32917,6 @@ "isPreferredRoot": false, "label": "methods section", "linkedEntities": { - "IAO:0000317": { - "curie": "IAO:0000317", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000317" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -33710,11 +33186,6 @@ "isPreferredRoot": false, "label": "results section", "linkedEntities": { - "IAO:0000318": { - "curie": "IAO:0000318", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000318" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -33963,11 +33434,6 @@ "isPreferredRoot": false, "label": "discussion section of a publication about an investigation", "linkedEntities": { - "IAO:0000319": { - "curie": "IAO:0000319", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000319" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -34195,11 +33661,6 @@ "isPreferredRoot": false, "label": "references section", "linkedEntities": { - "IAO:0000320": { - "curie": "IAO:0000320", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000320" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -34465,11 +33926,6 @@ "isPreferredRoot": false, "label": "author list", "linkedEntities": { - "IAO:0000321": { - "curie": "IAO:0000321", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000321" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -34709,11 +34165,6 @@ "isPreferredRoot": false, "label": "institution list", "linkedEntities": { - "IAO:0000322": { - "curie": "IAO:0000322", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000322" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -34954,11 +34405,6 @@ "isPreferredRoot": false, "label": "author contributions section", "linkedEntities": { - "IAO:0000323": { - "curie": "IAO:0000323", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000323" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -35193,11 +34639,6 @@ "isPreferredRoot": false, "label": "acknowledgements section", "linkedEntities": { - "IAO:0000324": { - "curie": "IAO:0000324", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000324" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -35436,11 +34877,6 @@ "isPreferredRoot": false, "label": "footnote", "linkedEntities": { - "IAO:0000325": { - "curie": "IAO:0000325", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000325" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -35703,11 +35139,6 @@ "isPreferredRoot": false, "label": "supplementary material to a document", "linkedEntities": { - "IAO:0000326": { - "curie": "IAO:0000326", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000326" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -35932,11 +35363,6 @@ "isPreferredRoot": false, "label": "table of contents", "linkedEntities": { - "IAO:0000327": { - "curie": "IAO:0000327", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000327" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -36124,11 +35550,6 @@ "isPreferredRoot": false, "label": "table of figures", "linkedEntities": { - "IAO:0000328": { - "curie": "IAO:0000328", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000328" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -36316,11 +35737,6 @@ "isPreferredRoot": false, "label": "running title", "linkedEntities": { - "IAO:0000329": { - "curie": "IAO:0000329", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000329" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -36508,11 +35924,6 @@ "isPreferredRoot": false, "label": "copyright section", "linkedEntities": { - "IAO:0000330": { - "curie": "IAO:0000330", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000330" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -36726,11 +36137,6 @@ "isPreferredRoot": false, "label": "cartesian spatial coordinate datum", "linkedEntities": { - "IAO:0000400": { - "curie": "IAO:0000400", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000400" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -36997,11 +36403,6 @@ "isPreferredRoot": false, "label": "one dimensional cartesian spatial coordinate datum", "linkedEntities": { - "IAO:0000401": { - "curie": "IAO:0000401", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000401" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -37277,11 +36678,6 @@ "isPreferredRoot": false, "label": "two dimensional cartesian spatial coordinate datum", "linkedEntities": { - "IAO:0000402": { - "curie": "IAO:0000402", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000402" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -37574,11 +36970,6 @@ "isPreferredRoot": false, "label": "three dimensional cartesian spatial coordinate datum", "linkedEntities": { - "IAO:0000403": { - "curie": "IAO:0000403", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000403" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -37861,11 +37252,6 @@ "isPreferredRoot": false, "label": "length measurement datum", "linkedEntities": { - "IAO:0000408": { - "curie": "IAO:0000408", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000408" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -38127,11 +37513,6 @@ "isPreferredRoot": false, "label": "denotator type", "linkedEntities": { - "IAO:0000409": { - "curie": "IAO:0000409", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000409" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -38373,11 +37754,6 @@ "isPreferredRoot": false, "label": "mass measurement datum", "linkedEntities": { - "IAO:0000414": { - "curie": "IAO:0000414", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000414" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -38617,11 +37993,6 @@ "isPreferredRoot": false, "label": "hypothesis textual entity", "linkedEntities": { - "IAO:0000415": { - "curie": "IAO:0000415", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000415" - }, "PMID:19696660": { "curie": "PMID:19696660", "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", @@ -38849,11 +38220,6 @@ "isPreferredRoot": false, "label": "time measurement datum", "linkedEntities": { - "IAO:0000416": { - "curie": "IAO:0000416", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000416" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -39090,11 +38456,6 @@ "isPreferredRoot": false, "label": "postal address", "linkedEntities": { - "IAO:0000422": { - "curie": "IAO:0000422", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000422" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -39255,11 +38616,6 @@ "isPreferredRoot": false, "label": "email address", "linkedEntities": { - "IAO:0000429": { - "curie": "IAO:0000429", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000429" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -39429,11 +38785,6 @@ "isPreferredRoot": false, "label": "author role", "linkedEntities": { - "IAO:0000442": { - "curie": "IAO:0000442", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000442" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -39621,11 +38972,6 @@ "isPreferredRoot": false, "label": "data item extraction from journal article", "linkedEntities": { - "IAO:0000443": { - "curie": "IAO:0000443", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000443" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -39843,11 +39189,6 @@ "isPreferredRoot": false, "label": "publishing process", "linkedEntities": { - "IAO:0000444": { - "curie": "IAO:0000444", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000444" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -40069,11 +39410,6 @@ "isPreferredRoot": false, "label": "document in preparation for publication", "linkedEntities": { - "IAO:0000445": { - "curie": "IAO:0000445", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000445" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -40286,11 +39622,6 @@ "isPreferredRoot": false, "label": "documenting", "linkedEntities": { - "IAO:0000572": { - "curie": "IAO:0000572", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000572" - }, "http://en.wikipedia.org/wiki/Documenting": { "curie": "wikipedia.en:Documenting", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -40563,11 +39894,6 @@ "isPreferredRoot": false, "label": "line graph", "linkedEntities": { - "IAO:0000573": { - "curie": "IAO:0000573", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000573" - }, "http://en.wikipedia.org/wiki/Line_chart": { "curie": "wikipedia.en:Line_chart", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -40812,11 +40138,6 @@ "isPreferredRoot": false, "label": "assigning a centrally registered identifier", "linkedEntities": { - "IAO:0000574": { - "curie": "IAO:0000574", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000574" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -41092,11 +40413,6 @@ "isPreferredRoot": false, "label": "associating information with a centrally registered identifier in its registry", "linkedEntities": { - "IAO:0000575": { - "curie": "IAO:0000575", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000575" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -41390,11 +40706,6 @@ "isPreferredRoot": false, "label": "centrally registered identifier symbol", "linkedEntities": { - "IAO:0000577": { - "curie": "IAO:0000577", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000577" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -41778,11 +41089,6 @@ "isPreferredRoot": false, "label": "centrally registered identifier", "linkedEntities": { - "IAO:0000578": { - "curie": "IAO:0000578", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000578" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -42095,11 +41401,6 @@ "isPreferredRoot": false, "label": "centrally registered identifier registry", "linkedEntities": { - "IAO:0000579": { - "curie": "IAO:0000579", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000579" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -42434,11 +41735,6 @@ "isPreferredRoot": false, "label": "looking up a centrally registered identifier", "linkedEntities": { - "IAO:0000580": { - "curie": "IAO:0000580", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000580" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -42731,11 +42027,6 @@ "isPreferredRoot": false, "label": "time stamped measurement datum", "linkedEntities": { - "IAO:0000582": { - "curie": "IAO:0000582", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000582" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -42958,11 +42249,6 @@ "isPreferredRoot": false, "label": "time sampled measurement data set", "linkedEntities": { - "IAO:0000584": { - "curie": "IAO:0000584", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000584" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -43199,11 +42485,6 @@ "isPreferredRoot": false, "label": "written name", "linkedEntities": { - "IAO:0000590": { - "curie": "IAO:0000590", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000590" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -43424,11 +42705,6 @@ "isPreferredRoot": false, "label": "software method", "linkedEntities": { - "IAO:0000591": { - "curie": "IAO:0000591", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000591" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -43632,11 +42908,6 @@ "isPreferredRoot": false, "label": "software module", "linkedEntities": { - "IAO:0000592": { - "curie": "IAO:0000592", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000592" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -43840,11 +43111,6 @@ "isPreferredRoot": false, "label": "software library", "linkedEntities": { - "IAO:0000593": { - "curie": "IAO:0000593", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000593" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -44048,11 +43314,6 @@ "isPreferredRoot": false, "label": "software application", "linkedEntities": { - "IAO:0000594": { - "curie": "IAO:0000594", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000594" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -44256,11 +43517,6 @@ "isPreferredRoot": false, "label": "software script", "linkedEntities": { - "IAO:0000595": { - "curie": "IAO:0000595", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000595" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -44458,11 +43714,6 @@ "isPreferredRoot": false, "label": "abbreviation textual entity", "linkedEntities": { - "IAO:0000605": { - "curie": "IAO:0000605", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000605" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -44699,11 +43950,6 @@ "isPreferredRoot": false, "label": "abbreviations section", "linkedEntities": { - "IAO:0000606": { - "curie": "IAO:0000606", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000606" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -44965,11 +44211,6 @@ "isPreferredRoot": false, "label": "author information section", "linkedEntities": { - "IAO:0000607": { - "curie": "IAO:0000607", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000607" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -45205,11 +44446,6 @@ "isPreferredRoot": false, "label": "author information textual entity", "linkedEntities": { - "IAO:0000608": { - "curie": "IAO:0000608", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000608" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -45435,11 +44671,6 @@ "isPreferredRoot": false, "label": "author summary section", "linkedEntities": { - "IAO:0000609": { - "curie": "IAO:0000609", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000609" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -45687,11 +44918,6 @@ "isPreferredRoot": false, "label": "author summary textual entity", "linkedEntities": { - "IAO:0000610": { - "curie": "IAO:0000610", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000610" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -45934,11 +45160,6 @@ "isPreferredRoot": false, "label": "availability section", "linkedEntities": { - "IAO:0000611": { - "curie": "IAO:0000611", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000611" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -46176,11 +45397,6 @@ "isPreferredRoot": false, "label": "availability textual entity", "linkedEntities": { - "IAO:0000612": { - "curie": "IAO:0000612", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000612" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -46404,11 +45620,6 @@ "isPreferredRoot": false, "label": "case report section", "linkedEntities": { - "IAO:0000613": { - "curie": "IAO:0000613", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000613" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -46642,11 +45853,6 @@ "isPreferredRoot": false, "label": "case report textual entity", "linkedEntities": { - "IAO:0000614": { - "curie": "IAO:0000614", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000614" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -46873,11 +46079,6 @@ "isPreferredRoot": false, "label": "conclusion section", "linkedEntities": { - "IAO:0000615": { - "curie": "IAO:0000615", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000615" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -47143,11 +46344,6 @@ "isPreferredRoot": false, "label": "conflict of interest section", "linkedEntities": { - "IAO:0000616": { - "curie": "IAO:0000616", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000616" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -47394,11 +46590,6 @@ "isPreferredRoot": false, "label": "conflict of interest textual entity", "linkedEntities": { - "IAO:0000617": { - "curie": "IAO:0000617", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000617" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -47619,11 +46810,6 @@ "isPreferredRoot": false, "label": "consent section", "linkedEntities": { - "IAO:0000618": { - "curie": "IAO:0000618", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000618" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -47856,11 +47042,6 @@ "isPreferredRoot": false, "label": "consent textual entity", "linkedEntities": { - "IAO:0000619": { - "curie": "IAO:0000619", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000619" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -48089,11 +47270,6 @@ "isPreferredRoot": false, "label": "ethical approval section", "linkedEntities": { - "IAO:0000620": { - "curie": "IAO:0000620", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000620" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -48337,11 +47513,6 @@ "isPreferredRoot": false, "label": "ethical approval textual entity", "linkedEntities": { - "IAO:0000621": { - "curie": "IAO:0000621", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000621" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -48594,11 +47765,6 @@ "isPreferredRoot": false, "label": "figures section", "linkedEntities": { - "IAO:0000622": { - "curie": "IAO:0000622", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000622" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -48856,11 +48022,6 @@ "isPreferredRoot": false, "label": "funding source declaration section", "linkedEntities": { - "IAO:0000623": { - "curie": "IAO:0000623", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000623" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -49103,11 +48264,6 @@ "isPreferredRoot": false, "label": "funding source declaration textual entity", "linkedEntities": { - "IAO:0000624": { - "curie": "IAO:0000624", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000624" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -49345,11 +48501,6 @@ "isPreferredRoot": false, "label": "future directions section", "linkedEntities": { - "IAO:0000625": { - "curie": "IAO:0000625", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000625" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -49594,11 +48745,6 @@ "isPreferredRoot": false, "label": "future directions textual entity", "linkedEntities": { - "IAO:0000626": { - "curie": "IAO:0000626", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000626" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -49819,11 +48965,6 @@ "isPreferredRoot": false, "label": "genome announcement section", "linkedEntities": { - "IAO:0000627": { - "curie": "IAO:0000627", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000627" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -50056,11 +49197,6 @@ "isPreferredRoot": false, "label": "genome announcement textual entity", "linkedEntities": { - "IAO:0000628": { - "curie": "IAO:0000628", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000628" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -50271,11 +49407,6 @@ "isPreferredRoot": false, "label": "keyword textual entity", "linkedEntities": { - "IAO:0000629": { - "curie": "IAO:0000629", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000629" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -50496,11 +49627,6 @@ "isPreferredRoot": false, "label": "keywords section", "linkedEntities": { - "IAO:0000630": { - "curie": "IAO:0000630", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000630" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -50753,11 +49879,6 @@ "isPreferredRoot": false, "label": "study limitations section", "linkedEntities": { - "IAO:0000631": { - "curie": "IAO:0000631", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000631" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -51038,11 +50159,6 @@ "isPreferredRoot": false, "label": "study limitations textual entity", "linkedEntities": { - "IAO:0000632": { - "curie": "IAO:0000632", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000632" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -51267,11 +50383,6 @@ "isPreferredRoot": false, "label": "materials section", "linkedEntities": { - "IAO:0000633": { - "curie": "IAO:0000633", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000633" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -51474,11 +50585,6 @@ "isPreferredRoot": false, "label": "notes section", "linkedEntities": { - "IAO:0000634": { - "curie": "IAO:0000634", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000634" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -51688,11 +50794,6 @@ "isPreferredRoot": false, "label": "patients section", "linkedEntities": { - "IAO:0000635": { - "curie": "IAO:0000635", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000635" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -51913,11 +51014,6 @@ "isPreferredRoot": false, "label": "patients textual entity", "linkedEntities": { - "IAO:0000636": { - "curie": "IAO:0000636", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000636" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -52141,11 +51237,6 @@ "isPreferredRoot": false, "label": "pre-publication history section", "linkedEntities": { - "IAO:0000637": { - "curie": "IAO:0000637", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000637" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -52379,11 +51470,6 @@ "isPreferredRoot": false, "label": "pre-publication history textual entity", "linkedEntities": { - "IAO:0000638": { - "curie": "IAO:0000638", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000638" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -52607,11 +51693,6 @@ "isPreferredRoot": false, "label": "related work section", "linkedEntities": { - "IAO:0000639": { - "curie": "IAO:0000639", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000639" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -52845,11 +51926,6 @@ "isPreferredRoot": false, "label": "related work textual entity", "linkedEntities": { - "IAO:0000640": { - "curie": "IAO:0000640", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000640" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -53070,11 +52146,6 @@ "isPreferredRoot": false, "label": "requirements section", "linkedEntities": { - "IAO:0000641": { - "curie": "IAO:0000641", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000641" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -53307,11 +52378,6 @@ "isPreferredRoot": false, "label": "requirements textual entity", "linkedEntities": { - "IAO:0000642": { - "curie": "IAO:0000642", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000642" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -53522,11 +52588,6 @@ "isPreferredRoot": false, "label": "statistical analysis textual entity", "linkedEntities": { - "IAO:0000643": { - "curie": "IAO:0000643", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000643" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -53747,11 +52808,6 @@ "isPreferredRoot": false, "label": "statistical analysis section", "linkedEntities": { - "IAO:0000644": { - "curie": "IAO:0000644", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000644" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -53994,11 +53050,6 @@ "isPreferredRoot": false, "label": "tables section", "linkedEntities": { - "IAO:0000645": { - "curie": "IAO:0000645", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000645" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -54228,11 +53279,6 @@ "isPreferredRoot": false, "label": "postal code", "linkedEntities": { - "IAO:0000646": { - "curie": "IAO:0000646", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000646" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -54375,11 +53421,6 @@ "isPreferredRoot": false, "label": "Postal delivery route", "linkedEntities": { - "IAO:0000647": { - "curie": "IAO:0000647", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000647" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -54533,11 +53574,6 @@ "isPreferredRoot": false, "label": "zone improvement plan code", "linkedEntities": { - "IAO:0000648": { - "curie": "IAO:0000648", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000648" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -54721,11 +53757,6 @@ "isPreferredRoot": false, "label": "database extract, transform, and load process", "linkedEntities": { - "IAO:0000650": { - "curie": "IAO:0000650", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000650" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -55005,11 +54036,6 @@ "isPreferredRoot": false, "label": "descriptive data section", "linkedEntities": { - "IAO:0000701": { - "curie": "IAO:0000701", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000701" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -55240,11 +54266,6 @@ "isPreferredRoot": false, "label": "additional results section", "linkedEntities": { - "IAO:0000702": { - "curie": "IAO:0000702", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000702" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -55483,11 +54504,6 @@ "isPreferredRoot": false, "label": "research participants section", "linkedEntities": { - "IAO:0000703": { - "curie": "IAO:0000703", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000703" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -55714,11 +54730,6 @@ "isPreferredRoot": false, "label": "measurement methods section", "linkedEntities": { - "IAO:0000704": { - "curie": "IAO:0000704", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000704" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -55953,11 +54964,6 @@ "isPreferredRoot": false, "label": "research settings section", "linkedEntities": { - "IAO:0000705": { - "curie": "IAO:0000705", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000705" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -56184,11 +55190,6 @@ "isPreferredRoot": false, "label": "study bias section", "linkedEntities": { - "IAO:0000706": { - "curie": "IAO:0000706", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000706" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -56426,11 +55427,6 @@ "isPreferredRoot": false, "label": "graphical abstract", "linkedEntities": { - "IAO:0000707": { - "curie": "IAO:0000707", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000707" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -56683,11 +55679,6 @@ "isPreferredRoot": false, "label": "ORCID identifier", "linkedEntities": { - "IAO:0000708": { - "curie": "IAO:0000708", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000708" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -56941,11 +55932,6 @@ "isPreferredRoot": false, "label": "identifier", "linkedEntities": { - "IAO:0020000": { - "curie": "IAO:0020000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0020000" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -57208,11 +56194,6 @@ "isPreferredRoot": false, "label": "grapheme", "linkedEntities": { - "IAO:0020001": { - "curie": "IAO:0020001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0020001" - }, "http://en.wikipedia.org/wiki/Grapheme": { "curie": "wikipedia.en:Grapheme", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -57424,11 +56405,6 @@ "isPreferredRoot": false, "label": "identifier creating process", "linkedEntities": { - "IAO:0020010": { - "curie": "IAO:0020010", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0020010" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -57635,11 +56611,6 @@ "isPreferredRoot": false, "label": "personal name", "linkedEntities": { - "IAO:0020015": { - "curie": "IAO:0020015", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0020015" - }, "http://en.wikipedia.org/wiki/Personal_name": { "curie": "wikipedia.en:Personal_name", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -57833,11 +56804,6 @@ "isPreferredRoot": false, "label": "given name", "linkedEntities": { - "IAO:0020016": { - "curie": "IAO:0020016", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0020016" - }, "http://en.wikipedia.org/wiki/Given_name": { "curie": "wikipedia.en:Given_name", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -58038,11 +57004,6 @@ "isPreferredRoot": false, "label": "family name", "linkedEntities": { - "IAO:0020017": { - "curie": "IAO:0020017", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0020017" - }, "http://en.wikipedia.org/wiki/Family_name": { "curie": "wikipedia.en:Family_name", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -58273,11 +57234,6 @@ "isPreferredRoot": false, "label": "code set", "linkedEntities": { - "IAO:0020020": { - "curie": "IAO:0020020", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0020020" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -58494,11 +57450,6 @@ "isPreferredRoot": false, "label": "ontology module", "linkedEntities": { - "IAO:8000000": { - "curie": "IAO:8000000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000000" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -58678,11 +57629,6 @@ "isPreferredRoot": false, "label": "base ontology module", "linkedEntities": { - "IAO:8000001": { - "curie": "IAO:8000001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000001" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -58859,11 +57805,6 @@ "isPreferredRoot": false, "label": "editors ontology module", "linkedEntities": { - "IAO:8000002": { - "curie": "IAO:8000002", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000002" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -59041,11 +57982,6 @@ "isPreferredRoot": false, "label": "main release ontology module", "linkedEntities": { - "IAO:8000003": { - "curie": "IAO:8000003", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000003" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -59223,11 +58159,6 @@ "isPreferredRoot": false, "label": "bridge ontology module", "linkedEntities": { - "IAO:8000004": { - "curie": "IAO:8000004", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000004" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -59408,11 +58339,6 @@ "isPreferredRoot": false, "label": "import ontology module", "linkedEntities": { - "IAO:8000005": { - "curie": "IAO:8000005", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000005" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -59630,11 +58556,6 @@ "isPreferredRoot": false, "label": "subset ontology module", "linkedEntities": { - "IAO:8000006": { - "curie": "IAO:8000006", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000006" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -59825,11 +58746,6 @@ "isPreferredRoot": false, "label": "curation subset ontology module", "linkedEntities": { - "IAO:8000007": { - "curie": "IAO:8000007", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000007" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -60006,11 +58922,6 @@ "isPreferredRoot": false, "label": "analysis subset ontology module", "linkedEntities": { - "IAO:8000008": { - "curie": "IAO:8000008", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000008" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -60188,11 +59099,6 @@ "isPreferredRoot": false, "label": "single layer subset ontology module", "linkedEntities": { - "IAO:8000009": { - "curie": "IAO:8000009", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000009" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -60382,11 +59288,6 @@ "isPreferredRoot": false, "label": "exclusion subset ontology module", "linkedEntities": { - "IAO:8000010": { - "curie": "IAO:8000010", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000010" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -60578,11 +59479,6 @@ "isPreferredRoot": false, "label": "external import ontology module", "linkedEntities": { - "IAO:8000011": { - "curie": "IAO:8000011", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000011" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -60783,11 +59679,6 @@ "isPreferredRoot": false, "label": "species subset ontology module", "linkedEntities": { - "IAO:8000012": { - "curie": "IAO:8000012", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000012" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -60986,11 +59877,6 @@ "isPreferredRoot": false, "label": "reasoned ontology module", "linkedEntities": { - "IAO:8000013": { - "curie": "IAO:8000013", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000013" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -61167,11 +60053,6 @@ "isPreferredRoot": false, "label": "generated ontology module", "linkedEntities": { - "IAO:8000014": { - "curie": "IAO:8000014", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000014" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -61355,11 +60236,6 @@ "isPreferredRoot": false, "label": "template generated ontology module", "linkedEntities": { - "IAO:8000015": { - "curie": "IAO:8000015", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000015" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -61549,11 +60425,6 @@ "isPreferredRoot": false, "label": "taxonomic bridge ontology module", "linkedEntities": { - "IAO:8000016": { - "curie": "IAO:8000016", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000016" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -61715,11 +60586,6 @@ "isPreferredRoot": false, "label": "ontology module subsetted by expressivity", "linkedEntities": { - "IAO:8000017": { - "curie": "IAO:8000017", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000017" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -61887,11 +60753,6 @@ "isPreferredRoot": false, "label": "obo basic subset ontology module", "linkedEntities": { - "IAO:8000018": { - "curie": "IAO:8000018", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000018" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -62088,11 +60949,6 @@ "isPreferredRoot": false, "label": "ontology module subsetted by OWL profile", "linkedEntities": { - "IAO:8000019": { - "curie": "IAO:8000019", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000019" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -62268,11 +61124,6 @@ "isPreferredRoot": false, "label": "EL++ ontology module", "linkedEntities": { - "IAO:8000020": { - "curie": "IAO:8000020", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000020" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -62767,11 +61618,6 @@ "isPreferredRoot": false, "label": "planned process", "linkedEntities": { - "OBI:0000011": { - "curie": "OBI:0000011", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0000011" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -62902,11 +61748,6 @@ "isPreferredRoot": true, "label": "investigation", "linkedEntities": { - "OBI:0000066": { - "curie": "OBI:0000066", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0000066" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -63079,11 +61920,6 @@ "isPreferredRoot": false, "label": "study design execution", "linkedEntities": { - "OBI:0000471": { - "curie": "OBI:0000471", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0000471" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -63254,11 +62090,6 @@ "isPreferredRoot": false, "label": "data transformation", "linkedEntities": { - "OBI:0200000": { - "curie": "OBI:0200000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0200000" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -63403,11 +62234,6 @@ "isPreferredRoot": false, "label": "study design", "linkedEntities": { - "OBI:0500000": { - "curie": "OBI:0500000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0500000" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -63676,11 +62502,6 @@ "isPreferredRoot": false, "label": "morphology", "linkedEntities": { - "PATO:0000051": { - "curie": "PATO:0000051", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0000051" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -63833,11 +62654,6 @@ "isPreferredRoot": false, "label": "length", "linkedEntities": { - "PATO:0000122": { - "curie": "PATO:0000122", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0000122" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -64032,11 +62848,6 @@ "isPreferredRoot": false, "label": "mass", "linkedEntities": { - "PATO:0000125": { - "curie": "PATO:0000125", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0000125" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -64197,11 +63008,6 @@ "isPreferredRoot": false, "label": "physical quality", "linkedEntities": { - "PATO:0001018": { - "curie": "PATO:0001018", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0001018" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -64350,11 +63156,6 @@ "isPreferredRoot": false, "label": "physical object quality", "linkedEntities": { - "PATO:0001241": { - "curie": "PATO:0001241", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0001241" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -64494,11 +63295,6 @@ "isPreferredRoot": false, "label": "length unit", "linkedEntities": { - "UO:0000001": { - "curie": "UO:0000001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/UO_0000001" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -64679,11 +63475,6 @@ "isPreferredRoot": false, "label": "mass unit", "linkedEntities": { - "UO:0000002": { - "curie": "UO:0000002", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/UO_0000002" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -64832,11 +63623,6 @@ "isPreferredRoot": false, "label": "time unit", "linkedEntities": { - "UO:0000003": { - "curie": "UO:0000003", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/UO_0000003" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, diff --git a/testcases_expected_output_api/v2/ontologies/duo/entities.json b/testcases_expected_output_api/v2/ontologies/duo/entities.json index 68bc77a9b..f8a308c0c 100644 --- a/testcases_expected_output_api/v2/ontologies/duo/entities.json +++ b/testcases_expected_output_api/v2/ontologies/duo/entities.json @@ -1352,11 +1352,6 @@ "isPreferredRoot": false, "label": "entity", "linkedEntities": { - "BFO:0000001": { - "curie": "BFO:0000001", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000001" - }, "http://purl.obolibrary.org/obo/BFO_0000179": { "curie": "BFO:0000179", "hasLocalDefinition": true, @@ -1688,11 +1683,6 @@ "isPreferredRoot": false, "label": "continuant", "linkedEntities": { - "BFO:0000002": { - "curie": "BFO:0000002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000002" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -2017,11 +2007,6 @@ "isPreferredRoot": false, "label": "occurrent", "linkedEntities": { - "BFO:0000003": { - "curie": "BFO:0000003", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000003" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -2368,11 +2353,6 @@ "isPreferredRoot": false, "label": "independent continuant", "linkedEntities": { - "BFO:0000004": { - "curie": "BFO:0000004", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000004" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -2672,11 +2652,6 @@ "isPreferredRoot": false, "label": "spatial region", "linkedEntities": { - "BFO:0000006": { - "curie": "BFO:0000006", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000006" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -3017,11 +2992,6 @@ "isPreferredRoot": false, "label": "temporal region", "linkedEntities": { - "BFO:0000008": { - "curie": "BFO:0000008", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000008" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -3308,11 +3278,6 @@ "isPreferredRoot": false, "label": "two-dimensional spatial region", "linkedEntities": { - "BFO:0000009": { - "curie": "BFO:0000009", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000009" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -3642,11 +3607,6 @@ "isPreferredRoot": false, "label": "spatiotemporal region", "linkedEntities": { - "BFO:0000011": { - "curie": "BFO:0000011", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000011" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -3917,11 +3877,6 @@ "isPreferredRoot": false, "label": "process", "linkedEntities": { - "BFO:0000015": { - "curie": "BFO:0000015", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000015" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -4166,11 +4121,6 @@ "isPreferredRoot": false, "label": "disposition", "linkedEntities": { - "BFO:0000016": { - "curie": "BFO:0000016", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000016" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -4465,11 +4415,6 @@ "isPreferredRoot": false, "label": "realizable entity", "linkedEntities": { - "BFO:0000017": { - "curie": "BFO:0000017", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000017" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -4757,11 +4702,6 @@ "isPreferredRoot": false, "label": "zero-dimensional spatial region", "linkedEntities": { - "BFO:0000018": { - "curie": "BFO:0000018", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000018" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -5160,11 +5100,6 @@ "isPreferredRoot": false, "label": "quality", "linkedEntities": { - "BFO:0000019": { - "curie": "BFO:0000019", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000019" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -5430,11 +5365,6 @@ "isPreferredRoot": false, "label": "specifically dependent continuant", "linkedEntities": { - "BFO:0000020": { - "curie": "BFO:0000020", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000020" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -5696,11 +5626,6 @@ "isPreferredRoot": false, "label": "role", "linkedEntities": { - "BFO:0000023": { - "curie": "BFO:0000023", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000023" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -5955,11 +5880,6 @@ "isPreferredRoot": false, "label": "fiat object part", "linkedEntities": { - "BFO:0000024": { - "curie": "BFO:0000024", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000024" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -6196,11 +6116,6 @@ "isPreferredRoot": false, "label": "one-dimensional spatial region", "linkedEntities": { - "BFO:0000026": { - "curie": "BFO:0000026", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000026" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -6464,11 +6379,6 @@ "isPreferredRoot": false, "label": "object aggregate", "linkedEntities": { - "BFO:0000027": { - "curie": "BFO:0000027", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000027" - }, "ISBN:978": { "curie": "ISBN:978", "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", @@ -6729,11 +6639,6 @@ "isPreferredRoot": false, "label": "three-dimensional spatial region", "linkedEntities": { - "BFO:0000028": { - "curie": "BFO:0000028", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000028" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -6976,11 +6881,6 @@ "isPreferredRoot": false, "label": "site", "linkedEntities": { - "BFO:0000029": { - "curie": "BFO:0000029", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000029" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -7218,11 +7118,6 @@ "isPreferredRoot": false, "label": "object", "linkedEntities": { - "BFO:0000030": { - "curie": "BFO:0000030", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000030" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -7465,11 +7360,6 @@ "isPreferredRoot": false, "label": "generically dependent continuant", "linkedEntities": { - "BFO:0000031": { - "curie": "BFO:0000031", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000031" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -7674,11 +7564,6 @@ "isPreferredRoot": false, "label": "function", "linkedEntities": { - "BFO:0000034": { - "curie": "BFO:0000034", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000034" - }, "BFO:function": { "curie": "BFO:function", "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", @@ -7955,11 +7840,6 @@ "isPreferredRoot": false, "label": "process boundary", "linkedEntities": { - "BFO:0000035": { - "curie": "BFO:0000035", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000035" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -8177,11 +8057,6 @@ "isPreferredRoot": false, "label": "one-dimensional temporal region", "linkedEntities": { - "BFO:0000038": { - "curie": "BFO:0000038", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000038" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -8477,11 +8352,6 @@ "isPreferredRoot": false, "label": "material entity", "linkedEntities": { - "BFO:0000040": { - "curie": "BFO:0000040", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000040" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -8746,11 +8616,6 @@ "isPreferredRoot": false, "label": "part of", "linkedEntities": { - "BFO:0000050": { - "curie": "BFO:0000050", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000050" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -8918,11 +8783,6 @@ "isPreferredRoot": false, "label": "has part", "linkedEntities": { - "BFO:0000051": { - "curie": "BFO:0000051", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000051" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -9077,11 +8937,6 @@ "isPreferredRoot": false, "label": "realized in", "linkedEntities": { - "BFO:0000054": { - "curie": "BFO:0000054", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000054" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -9245,11 +9100,6 @@ "isPreferredRoot": false, "label": "realizes", "linkedEntities": { - "BFO:0000055": { - "curie": "BFO:0000055", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000055" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -9415,11 +9265,6 @@ "isPreferredRoot": false, "label": "occurs in", "linkedEntities": { - "BFO:0000066": { - "curie": "BFO:0000066", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000066" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -9579,11 +9424,6 @@ "isPreferredRoot": false, "label": "contains process", "linkedEntities": { - "BFO:0000067": { - "curie": "BFO:0000067", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000067" - }, "http://purl.obolibrary.org/obo/BFO_0000066": { "curie": "BFO:0000066", "hasLocalDefinition": true, @@ -9755,11 +9595,6 @@ "isPreferredRoot": false, "label": "continuant fiat boundary", "linkedEntities": { - "BFO:0000140": { - "curie": "BFO:0000140", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000140" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -9975,11 +9810,6 @@ "isPreferredRoot": false, "label": "immaterial entity", "linkedEntities": { - "BFO:0000141": { - "curie": "BFO:0000141", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000141" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -10153,11 +9983,6 @@ "isPreferredRoot": false, "label": "one-dimensional continuant fiat boundary", "linkedEntities": { - "BFO:0000142": { - "curie": "BFO:0000142", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000142" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -10446,11 +10271,6 @@ "isPreferredRoot": false, "label": "process profile", "linkedEntities": { - "BFO:0000144": { - "curie": "BFO:0000144", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000144" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -10705,11 +10525,6 @@ "isPreferredRoot": false, "label": "relational quality", "linkedEntities": { - "BFO:0000145": { - "curie": "BFO:0000145", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000145" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -10927,11 +10742,6 @@ "isPreferredRoot": false, "label": "two-dimensional continuant fiat boundary", "linkedEntities": { - "BFO:0000146": { - "curie": "BFO:0000146", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000146" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -11164,11 +10974,6 @@ "isPreferredRoot": false, "label": "zero-dimensional continuant fiat boundary", "linkedEntities": { - "BFO:0000147": { - "curie": "BFO:0000147", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000147" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -11447,11 +11252,6 @@ "isPreferredRoot": false, "label": "zero-dimensional temporal region", "linkedEntities": { - "BFO:0000148": { - "curie": "BFO:0000148", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000148" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -11638,11 +11438,6 @@ "isPreferredRoot": false, "label": "BFO OWL specification label", "linkedEntities": { - "BFO:0000179": { - "curie": "BFO:0000179", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000179" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -11720,11 +11515,6 @@ "isPreferredRoot": false, "label": "BFO CLIF specification label", "linkedEntities": { - "BFO:0000180": { - "curie": "BFO:0000180", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000180" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -11833,11 +11623,6 @@ "isPreferredRoot": false, "label": "history", "linkedEntities": { - "BFO:0000182": { - "curie": "BFO:0000182", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000182" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -12381,20 +12166,6 @@ "isPreferredRoot": false, "label": "population origins or ancestry research prohibited", "linkedEntities": { - "DUO:00000044": { - "curie": "DUO:00000044", - "definedBy": [ - "duo" - ], - "hasLocalDefinition": true, - "iri": "http://purl.obolibrary.org/obo/DUO_00000044", - "label": "population origins or ancestry research prohibited", - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, "DUO:0000044": { "curie": "DUO:0000044", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -18205,23 +17976,6 @@ "isPreferredRoot": false, "label": "DUO_preferred_label", "linkedEntities": { - "DUO:0000041": { - "curie": "DUO:0000041", - "definedBy": [ - "duo" - ], - "hasLocalDefinition": true, - "iri": "http://purl.obolibrary.org/obo/DUO_0000041", - "label": "DUO_preferred_label", - "numAppearsIn": 1.0, - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "type": [ - "annotationProperty", - "entity", - "property" - ], - "url": "http://purl.obolibrary.org/obo/DUO_0000041" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "curie": "label", "hasLocalDefinition": true, @@ -19284,11 +19038,6 @@ "isPreferredRoot": false, "label": "conditional specification", "linkedEntities": { - "IAO:0000001": { - "curie": "IAO:0000001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000001" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -19466,11 +19215,6 @@ "isObsolete": false, "label": "example to be eventually removed", "linkedEntities": { - "IAO:0000002": { - "curie": "IAO:0000002", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000002" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -19629,11 +19373,6 @@ "isPreferredRoot": false, "label": "measurement unit label", "linkedEntities": { - "IAO:0000003": { - "curie": "IAO:0000003", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000003" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -19816,11 +19555,6 @@ "isPreferredRoot": false, "label": "has measurement value", "linkedEntities": { - "IAO:0000004": { - "curie": "IAO:0000004", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000004" - }, "http://purl.obolibrary.org/obo/IAO_0000032": { "curie": "IAO:0000032", "hasLocalDefinition": true, @@ -19914,11 +19648,6 @@ "isPreferredRoot": false, "label": "objective specification", "linkedEntities": { - "IAO:0000005": { - "curie": "IAO:0000005", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000005" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -20221,11 +19950,6 @@ "isPreferredRoot": false, "label": "narrative object", "linkedEntities": { - "IAO:0000006": { - "curie": "IAO:0000006", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000006" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -20430,11 +20154,6 @@ "isPreferredRoot": false, "label": "action specification", "linkedEntities": { - "IAO:0000007": { - "curie": "IAO:0000007", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000007" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -20654,11 +20373,6 @@ "isPreferredRoot": false, "label": "datum label", "linkedEntities": { - "IAO:0000009": { - "curie": "IAO:0000009", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000009" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -20856,11 +20570,6 @@ "isPreferredRoot": false, "label": "software", "linkedEntities": { - "IAO:0000010": { - "curie": "IAO:0000010", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000010" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -21106,11 +20815,6 @@ "isPreferredRoot": false, "label": "journal article", "linkedEntities": { - "IAO:0000013": { - "curie": "IAO:0000013", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000013" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -21411,11 +21115,6 @@ "isPreferredRoot": false, "label": "information carrier", "linkedEntities": { - "IAO:0000015": { - "curie": "IAO:0000015", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000015" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -21639,11 +21338,6 @@ "isPreferredRoot": false, "label": "model number", "linkedEntities": { - "IAO:0000017": { - "curie": "IAO:0000017", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000017" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -21841,11 +21535,6 @@ "isPreferredRoot": false, "label": "programming language", "linkedEntities": { - "IAO:0000025": { - "curie": "IAO:0000025", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000025" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -22067,11 +21756,6 @@ "isPreferredRoot": false, "label": "data item", "linkedEntities": { - "IAO:0000027": { - "curie": "IAO:0000027", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000027" - }, "http://purl.obolibrary.org/obo/APOLLO_SV_00000522": { "curie": "APOLLO:SV_00000522", "hasLocalDefinition": true, @@ -22382,11 +22066,6 @@ "isPreferredRoot": false, "label": "symbol", "linkedEntities": { - "IAO:0000028": { - "curie": "IAO:0000028", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000028" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -22592,11 +22271,6 @@ "isPreferredRoot": false, "label": "numeral", "linkedEntities": { - "IAO:0000029": { - "curie": "IAO:0000029", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000029" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -22782,11 +22456,6 @@ "isPreferredRoot": false, "label": "information content entity", "linkedEntities": { - "IAO:0000030": { - "curie": "IAO:0000030", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000030" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -23122,11 +22791,6 @@ "isPreferredRoot": false, "label": "integer numeral", "linkedEntities": { - "IAO:0000031": { - "curie": "IAO:0000031", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000031" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -23335,11 +22999,6 @@ "isPreferredRoot": false, "label": "scalar measurement datum", "linkedEntities": { - "IAO:0000032": { - "curie": "IAO:0000032", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000032" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -23575,11 +23234,6 @@ "isPreferredRoot": false, "label": "directive information entity", "linkedEntities": { - "IAO:0000033": { - "curie": "IAO:0000033", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000033" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -23780,11 +23434,6 @@ "isPreferredRoot": false, "label": "time trigger", "linkedEntities": { - "IAO:0000034": { - "curie": "IAO:0000034", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000034" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -23970,11 +23619,6 @@ "isPreferredRoot": false, "label": "dot plot", "linkedEntities": { - "IAO:0000037": { - "curie": "IAO:0000037", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000037" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -24206,11 +23850,6 @@ "isPreferredRoot": false, "label": "graph", "linkedEntities": { - "IAO:0000038": { - "curie": "IAO:0000038", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000038" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -24394,11 +24033,6 @@ "isPreferredRoot": false, "label": "has measurement unit label", "linkedEntities": { - "IAO:0000039": { - "curie": "IAO:0000039", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000039" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -24495,11 +24129,6 @@ "isPreferredRoot": false, "label": "rule", "linkedEntities": { - "IAO:0000055": { - "curie": "IAO:0000055", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000055" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -24731,11 +24360,6 @@ "isPreferredRoot": false, "label": "contour plot", "linkedEntities": { - "IAO:0000057": { - "curie": "IAO:0000057", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000057" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -24967,11 +24591,6 @@ "isPreferredRoot": false, "label": "algorithm", "linkedEntities": { - "IAO:0000064": { - "curie": "IAO:0000064", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000064" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -25196,11 +24815,6 @@ "isPreferredRoot": false, "label": "software interpreter", "linkedEntities": { - "IAO:0000065": { - "curie": "IAO:0000065", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000065" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -25456,11 +25070,6 @@ "isPreferredRoot": false, "label": "curation status specification", "linkedEntities": { - "IAO:0000078": { - "curie": "IAO:0000078", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000078" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -25763,11 +25372,6 @@ "isPreferredRoot": false, "label": "density plot", "linkedEntities": { - "IAO:0000079": { - "curie": "IAO:0000079", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000079" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -26005,11 +25609,6 @@ "isPreferredRoot": false, "label": "report", "linkedEntities": { - "IAO:0000088": { - "curie": "IAO:0000088", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000088" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -26236,11 +25835,6 @@ "isPreferredRoot": false, "label": "source code module", "linkedEntities": { - "IAO:0000096": { - "curie": "IAO:0000096", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000096" - }, "http://purl.obolibrary.org/obo/APOLLO_SV_00000522": { "curie": "APOLLO:SV_00000522", "hasLocalDefinition": true, @@ -26482,11 +26076,6 @@ "isPreferredRoot": false, "label": "data format specification", "linkedEntities": { - "IAO:0000098": { - "curie": "IAO:0000098", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000098" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -26699,11 +26288,6 @@ "isPreferredRoot": false, "label": "data set", "linkedEntities": { - "IAO:0000100": { - "curie": "IAO:0000100", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000100" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -26925,11 +26509,6 @@ "isPreferredRoot": false, "label": "image", "linkedEntities": { - "IAO:0000101": { - "curie": "IAO:0000101", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000101" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -27119,11 +26698,6 @@ "isPreferredRoot": false, "label": "data about an ontology part", "linkedEntities": { - "IAO:0000102": { - "curie": "IAO:0000102", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000102" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -27272,11 +26846,6 @@ "isObsolete": false, "label": "failed exploratory term", "linkedEntities": { - "IAO:0000103": { - "curie": "IAO:0000103", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000103" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -27487,11 +27056,6 @@ "isPreferredRoot": false, "label": "plan specification", "linkedEntities": { - "IAO:0000104": { - "curie": "IAO:0000104", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000104" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -27791,11 +27355,6 @@ "isPreferredRoot": false, "label": "measurement datum", "linkedEntities": { - "IAO:0000109": { - "curie": "IAO:0000109", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000109" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -27992,11 +27551,6 @@ "isPreferredRoot": false, "label": "editor preferred term", "linkedEntities": { - "IAO:0000111": { - "curie": "IAO:0000111", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000111" - }, "http://purl.obolibrary.org/obo/IAO_0000114": { "curie": "IAO:0000114", "hasLocalDefinition": true, @@ -28119,11 +27673,6 @@ "isPreferredRoot": false, "label": "example of usage", "linkedEntities": { - "IAO:0000112": { - "curie": "IAO:0000112", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000112" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -28255,11 +27804,6 @@ "isPreferredRoot": false, "label": "in branch", "linkedEntities": { - "IAO:0000113": { - "curie": "IAO:0000113", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000113" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -28359,11 +27903,6 @@ "isPreferredRoot": false, "label": "has curation status", "linkedEntities": { - "IAO:0000114": { - "curie": "IAO:0000114", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000114" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -28444,11 +27983,6 @@ "isPreferredRoot": false, "label": "definition", "linkedEntities": { - "IAO:0000115": { - "curie": "IAO:0000115", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000115" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -28583,11 +28117,6 @@ "isPreferredRoot": false, "label": "editor note", "linkedEntities": { - "IAO:0000116": { - "curie": "IAO:0000116", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000116" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -28722,11 +28251,6 @@ "isPreferredRoot": false, "label": "term editor", "linkedEntities": { - "IAO:0000117": { - "curie": "IAO:0000117", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000117" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -28868,11 +28392,6 @@ "isPreferredRoot": false, "label": "alternative label", "linkedEntities": { - "IAO:0000118": { - "curie": "IAO:0000118", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000118" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -29009,11 +28528,6 @@ "isPreferredRoot": false, "label": "definition source", "linkedEntities": { - "IAO:0000119": { - "curie": "IAO:0000119", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000119" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -29154,11 +28668,6 @@ "isObsolete": false, "label": "metadata complete", "linkedEntities": { - "IAO:0000120": { - "curie": "IAO:0000120", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000120" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -29392,11 +28901,6 @@ "isObsolete": false, "label": "organizational term", "linkedEntities": { - "IAO:0000121": { - "curie": "IAO:0000121", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000121" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -29630,11 +29134,6 @@ "isObsolete": false, "label": "ready for release", "linkedEntities": { - "IAO:0000122": { - "curie": "IAO:0000122", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000122" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -29868,11 +29367,6 @@ "isObsolete": false, "label": "metadata incomplete", "linkedEntities": { - "IAO:0000123": { - "curie": "IAO:0000123", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000123" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -30106,11 +29600,6 @@ "isObsolete": false, "label": "uncurated", "linkedEntities": { - "IAO:0000124": { - "curie": "IAO:0000124", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000124" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -30344,11 +29833,6 @@ "isObsolete": false, "label": "pending final vetting", "linkedEntities": { - "IAO:0000125": { - "curie": "IAO:0000125", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000125" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -30582,11 +30066,6 @@ "isPreferredRoot": false, "label": "version number", "linkedEntities": { - "IAO:0000129": { - "curie": "IAO:0000129", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000129" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -30775,11 +30254,6 @@ "isPreferredRoot": false, "label": "serial number", "linkedEntities": { - "IAO:0000131": { - "curie": "IAO:0000131", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000131" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -30968,11 +30442,6 @@ "isPreferredRoot": false, "label": "lot number", "linkedEntities": { - "IAO:0000132": { - "curie": "IAO:0000132", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000132" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -31145,11 +30614,6 @@ "isPreferredRoot": false, "label": "is about", "linkedEntities": { - "IAO:0000136": { - "curie": "IAO:0000136", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000136" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "curie": "IAO:0000030", "hasLocalDefinition": true, @@ -31312,11 +30776,6 @@ "isPreferredRoot": false, "label": "setting datum", "linkedEntities": { - "IAO:0000140": { - "curie": "IAO:0000140", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000140" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -31473,11 +30932,6 @@ "isPreferredRoot": false, "label": "mentions", "linkedEntities": { - "IAO:0000142": { - "curie": "IAO:0000142", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000142" - }, "http://purl.obolibrary.org/obo/IAO_0000114": { "curie": "IAO:0000114", "hasLocalDefinition": true, @@ -31611,11 +31065,6 @@ "isPreferredRoot": false, "label": "mentioned by", "linkedEntities": { - "IAO:0000143": { - "curie": "IAO:0000143", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000143" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -31746,11 +31195,6 @@ "isPreferredRoot": false, "label": "conclusion textual entity", "linkedEntities": { - "IAO:0000144": { - "curie": "IAO:0000144", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000144" - }, "PMID:19696660": { "curie": "PMID:19696660", "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", @@ -32008,11 +31452,6 @@ "isPreferredRoot": false, "label": "material information bearer", "linkedEntities": { - "IAO:0000178": { - "curie": "IAO:0000178", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000178" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -32233,11 +31672,6 @@ "isPreferredRoot": false, "label": "histogram", "linkedEntities": { - "IAO:0000179": { - "curie": "IAO:0000179", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000179" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -32456,11 +31890,6 @@ "isPreferredRoot": false, "label": "heatmap", "linkedEntities": { - "IAO:0000180": { - "curie": "IAO:0000180", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000180" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -32679,11 +32108,6 @@ "isPreferredRoot": false, "label": "Venn diagram", "linkedEntities": { - "IAO:0000181": { - "curie": "IAO:0000181", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000181" - }, "http://en.wikipedia.org/wiki/Venn_diagram": { "curie": "wikipedia.en:Venn_diagram", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -32908,11 +32332,6 @@ "isPreferredRoot": false, "label": "dendrogram", "linkedEntities": { - "IAO:0000183": { - "curie": "IAO:0000183", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000183" - }, "http://en.wikipedia.org/wiki/Dendrogram": { "curie": "wikipedia.en:Dendrogram", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -33150,11 +32569,6 @@ "isPreferredRoot": false, "label": "scatter plot", "linkedEntities": { - "IAO:0000184": { - "curie": "IAO:0000184", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000184" - }, "http://en.wikipedia.org/wiki/Scatterplot": { "curie": "wikipedia.en:Scatterplot", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -33399,11 +32813,6 @@ "isPreferredRoot": false, "label": "photograph", "linkedEntities": { - "IAO:0000185": { - "curie": "IAO:0000185", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000185" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -33611,11 +33020,6 @@ "isPreferredRoot": false, "label": "photographic print", "linkedEntities": { - "IAO:0000186": { - "curie": "IAO:0000186", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000186" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -33820,11 +33224,6 @@ "isPreferredRoot": false, "label": "denotes", "linkedEntities": { - "IAO:0000219": { - "curie": "IAO:0000219", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000219" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -34000,11 +33399,6 @@ "isPreferredRoot": false, "label": "is quality measurement of", "linkedEntities": { - "IAO:0000221": { - "curie": "IAO:0000221", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000221" - }, "http://purl.obolibrary.org/obo/BFO_0000019": { "curie": "BFO:0000019", "hasLocalDefinition": true, @@ -34174,11 +33568,6 @@ "isPreferredRoot": false, "label": "obsolescence reason specification", "linkedEntities": { - "IAO:0000225": { - "curie": "IAO:0000225", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000225" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -34432,11 +33821,6 @@ "isObsolete": false, "label": "placeholder removed", "linkedEntities": { - "IAO:0000226": { - "curie": "IAO:0000226", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000226" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -34612,11 +33996,6 @@ "isObsolete": false, "label": "terms merged", "linkedEntities": { - "IAO:0000227": { - "curie": "IAO:0000227", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000227" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -34804,11 +34183,6 @@ "isObsolete": false, "label": "term imported", "linkedEntities": { - "IAO:0000228": { - "curie": "IAO:0000228", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000228" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -34996,11 +34370,6 @@ "isObsolete": false, "label": "term split", "linkedEntities": { - "IAO:0000229": { - "curie": "IAO:0000229", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000229" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -35177,11 +34546,6 @@ "isPreferredRoot": false, "label": "has obsolescence reason", "linkedEntities": { - "IAO:0000231": { - "curie": "IAO:0000231", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000231" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -35271,11 +34635,6 @@ "isPreferredRoot": false, "label": "curator note", "linkedEntities": { - "IAO:0000232": { - "curie": "IAO:0000232", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000232" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -35404,11 +34763,6 @@ "isPreferredRoot": false, "label": "term tracker item", "linkedEntities": { - "IAO:0000233": { - "curie": "IAO:0000233", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000233" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -35558,11 +34912,6 @@ "isPreferredRoot": false, "label": "ontology term requester", "linkedEntities": { - "IAO:0000234": { - "curie": "IAO:0000234", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000234" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -35695,11 +35044,6 @@ "isPreferredRoot": false, "label": "denoted by", "linkedEntities": { - "IAO:0000235": { - "curie": "IAO:0000235", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000235" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -35839,11 +35183,6 @@ "isPreferredRoot": false, "label": "textual entity", "linkedEntities": { - "IAO:0000300": { - "curie": "IAO:0000300", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000300" - }, "http://en.wikipedia.org/wiki/Functional_Requirements_for_Bibliographic_Records)": { "curie": "wikipedia.en:Functional_Requirements_for_Bibliographic_Records)", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -36060,11 +35399,6 @@ "isPreferredRoot": false, "label": "citation", "linkedEntities": { - "IAO:0000301": { - "curie": "IAO:0000301", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000301" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -36319,11 +35653,6 @@ "isPreferredRoot": false, "label": "author identification", "linkedEntities": { - "IAO:0000302": { - "curie": "IAO:0000302", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000302" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -36554,11 +35883,6 @@ "isPreferredRoot": false, "label": "institutional identification", "linkedEntities": { - "IAO:0000303": { - "curie": "IAO:0000303", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000303" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -36787,11 +36111,6 @@ "isPreferredRoot": false, "label": "caption", "linkedEntities": { - "IAO:0000304": { - "curie": "IAO:0000304", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000304" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -37012,11 +36331,6 @@ "isPreferredRoot": false, "label": "document title", "linkedEntities": { - "IAO:0000305": { - "curie": "IAO:0000305", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000305" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -37205,11 +36519,6 @@ "isPreferredRoot": false, "label": "table", "linkedEntities": { - "IAO:0000306": { - "curie": "IAO:0000306", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000306" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -37432,11 +36741,6 @@ "isPreferredRoot": false, "label": "table of abbreviations", "linkedEntities": { - "IAO:0000307": { - "curie": "IAO:0000307", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000307" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -37633,11 +36937,6 @@ "isPreferredRoot": false, "label": "figure", "linkedEntities": { - "IAO:0000308": { - "curie": "IAO:0000308", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000308" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -37882,11 +37181,6 @@ "isPreferredRoot": false, "label": "diagram", "linkedEntities": { - "IAO:0000309": { - "curie": "IAO:0000309", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000309" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -38073,11 +37367,6 @@ "isPreferredRoot": false, "label": "document", "linkedEntities": { - "IAO:0000310": { - "curie": "IAO:0000310", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000310" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -38400,11 +37689,6 @@ "isPreferredRoot": false, "label": "publication", "linkedEntities": { - "IAO:0000311": { - "curie": "IAO:0000311", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000311" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -38661,11 +37945,6 @@ "isPreferredRoot": false, "label": "publication about an investigation", "linkedEntities": { - "IAO:0000312": { - "curie": "IAO:0000312", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000312" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -38908,11 +38187,6 @@ "isPreferredRoot": false, "label": "patent", "linkedEntities": { - "IAO:0000313": { - "curie": "IAO:0000313", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000313" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -39122,11 +38396,6 @@ "isPreferredRoot": false, "label": "document part", "linkedEntities": { - "IAO:0000314": { - "curie": "IAO:0000314", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000314" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -39391,11 +38660,6 @@ "isPreferredRoot": false, "label": "abstract", "linkedEntities": { - "IAO:0000315": { - "curie": "IAO:0000315", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000315" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -39654,11 +38918,6 @@ "isPreferredRoot": false, "label": "introduction to a publication about an investigation", "linkedEntities": { - "IAO:0000316": { - "curie": "IAO:0000316", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000316" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -39933,11 +39192,6 @@ "isPreferredRoot": false, "label": "methods section", "linkedEntities": { - "IAO:0000317": { - "curie": "IAO:0000317", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000317" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -40207,11 +39461,6 @@ "isPreferredRoot": false, "label": "results section", "linkedEntities": { - "IAO:0000318": { - "curie": "IAO:0000318", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000318" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -40460,11 +39709,6 @@ "isPreferredRoot": false, "label": "discussion section of a publication about an investigation", "linkedEntities": { - "IAO:0000319": { - "curie": "IAO:0000319", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000319" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -40692,11 +39936,6 @@ "isPreferredRoot": false, "label": "references section", "linkedEntities": { - "IAO:0000320": { - "curie": "IAO:0000320", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000320" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -40962,11 +40201,6 @@ "isPreferredRoot": false, "label": "author list", "linkedEntities": { - "IAO:0000321": { - "curie": "IAO:0000321", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000321" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -41206,11 +40440,6 @@ "isPreferredRoot": false, "label": "institution list", "linkedEntities": { - "IAO:0000322": { - "curie": "IAO:0000322", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000322" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -41451,11 +40680,6 @@ "isPreferredRoot": false, "label": "author contributions section", "linkedEntities": { - "IAO:0000323": { - "curie": "IAO:0000323", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000323" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -41690,11 +40914,6 @@ "isPreferredRoot": false, "label": "acknowledgements section", "linkedEntities": { - "IAO:0000324": { - "curie": "IAO:0000324", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000324" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -41933,11 +41152,6 @@ "isPreferredRoot": false, "label": "footnote", "linkedEntities": { - "IAO:0000325": { - "curie": "IAO:0000325", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000325" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -42200,11 +41414,6 @@ "isPreferredRoot": false, "label": "supplementary material to a document", "linkedEntities": { - "IAO:0000326": { - "curie": "IAO:0000326", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000326" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -42429,11 +41638,6 @@ "isPreferredRoot": false, "label": "table of contents", "linkedEntities": { - "IAO:0000327": { - "curie": "IAO:0000327", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000327" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -42621,11 +41825,6 @@ "isPreferredRoot": false, "label": "table of figures", "linkedEntities": { - "IAO:0000328": { - "curie": "IAO:0000328", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000328" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -42813,11 +42012,6 @@ "isPreferredRoot": false, "label": "running title", "linkedEntities": { - "IAO:0000329": { - "curie": "IAO:0000329", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000329" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -43005,11 +42199,6 @@ "isPreferredRoot": false, "label": "copyright section", "linkedEntities": { - "IAO:0000330": { - "curie": "IAO:0000330", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000330" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -43223,11 +42412,6 @@ "isPreferredRoot": false, "label": "cartesian spatial coordinate datum", "linkedEntities": { - "IAO:0000400": { - "curie": "IAO:0000400", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000400" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -43494,11 +42678,6 @@ "isPreferredRoot": false, "label": "one dimensional cartesian spatial coordinate datum", "linkedEntities": { - "IAO:0000401": { - "curie": "IAO:0000401", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000401" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -43774,11 +42953,6 @@ "isPreferredRoot": false, "label": "two dimensional cartesian spatial coordinate datum", "linkedEntities": { - "IAO:0000402": { - "curie": "IAO:0000402", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000402" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -44071,11 +43245,6 @@ "isPreferredRoot": false, "label": "three dimensional cartesian spatial coordinate datum", "linkedEntities": { - "IAO:0000403": { - "curie": "IAO:0000403", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000403" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -44322,11 +43491,6 @@ "isPreferredRoot": false, "label": "has x coordinate value", "linkedEntities": { - "IAO:0000404": { - "curie": "IAO:0000404", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000404" - }, "http://purl.obolibrary.org/obo/IAO_0000400": { "curie": "IAO:0000400", "hasLocalDefinition": true, @@ -44385,11 +43549,6 @@ "isPreferredRoot": false, "label": "has z coordinate value", "linkedEntities": { - "IAO:0000405": { - "curie": "IAO:0000405", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000405" - }, "http://purl.obolibrary.org/obo/IAO_0000400": { "curie": "IAO:0000400", "hasLocalDefinition": true, @@ -44448,11 +43607,6 @@ "isPreferredRoot": false, "label": "has y coordinate value", "linkedEntities": { - "IAO:0000406": { - "curie": "IAO:0000406", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000406" - }, "http://purl.obolibrary.org/obo/IAO_0000400": { "curie": "IAO:0000400", "hasLocalDefinition": true, @@ -44517,11 +43671,6 @@ "isPreferredRoot": false, "label": "has coordinate unit label", "linkedEntities": { - "IAO:0000407": { - "curie": "IAO:0000407", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000407" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -44648,11 +43797,6 @@ "isPreferredRoot": false, "label": "length measurement datum", "linkedEntities": { - "IAO:0000408": { - "curie": "IAO:0000408", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000408" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -44914,11 +44058,6 @@ "isPreferredRoot": false, "label": "denotator type", "linkedEntities": { - "IAO:0000409": { - "curie": "IAO:0000409", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000409" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -45129,11 +44268,6 @@ "isObsolete": false, "label": "universal", "linkedEntities": { - "IAO:0000410": { - "curie": "IAO:0000410", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000410" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -45302,11 +44436,6 @@ "isPreferredRoot": false, "label": "is denotator type", "linkedEntities": { - "IAO:0000411": { - "curie": "IAO:0000411", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000411" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -45411,11 +44540,6 @@ "isPreferredRoot": false, "label": "imported from", "linkedEntities": { - "IAO:0000412": { - "curie": "IAO:0000412", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000412" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -45552,11 +44676,6 @@ "isPreferredRoot": false, "label": "is duration of", "linkedEntities": { - "IAO:0000413": { - "curie": "IAO:0000413", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000413" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -45725,11 +44844,6 @@ "isPreferredRoot": false, "label": "mass measurement datum", "linkedEntities": { - "IAO:0000414": { - "curie": "IAO:0000414", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000414" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -45969,11 +45083,6 @@ "isPreferredRoot": false, "label": "hypothesis textual entity", "linkedEntities": { - "IAO:0000415": { - "curie": "IAO:0000415", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000415" - }, "PMID:19696660": { "curie": "PMID:19696660", "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", @@ -46201,11 +45310,6 @@ "isPreferredRoot": false, "label": "time measurement datum", "linkedEntities": { - "IAO:0000416": { - "curie": "IAO:0000416", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000416" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -46426,11 +45530,6 @@ "isPreferredRoot": false, "label": "is quality measured as", "linkedEntities": { - "IAO:0000417": { - "curie": "IAO:0000417", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000417" - }, "http://purl.obolibrary.org/obo/IAO_0000114": { "curie": "IAO:0000114", "hasLocalDefinition": true, @@ -46556,11 +45655,6 @@ "isPreferredRoot": false, "label": "is quality specification of", "linkedEntities": { - "IAO:0000418": { - "curie": "IAO:0000418", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000418" - }, "http://purl.obolibrary.org/obo/IAO_0000114": { "curie": "IAO:0000114", "hasLocalDefinition": true, @@ -46684,11 +45778,6 @@ "isPreferredRoot": false, "label": "quality is specified as", "linkedEntities": { - "IAO:0000419": { - "curie": "IAO:0000419", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000419" - }, "http://purl.obolibrary.org/obo/IAO_0000114": { "curie": "IAO:0000114", "hasLocalDefinition": true, @@ -46821,11 +45910,6 @@ "isObsolete": false, "label": "defined class", "linkedEntities": { - "IAO:0000420": { - "curie": "IAO:0000420", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000420" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -47006,11 +46090,6 @@ "isObsolete": false, "label": "named class expression", "linkedEntities": { - "IAO:0000421": { - "curie": "IAO:0000421", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000421" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -47196,11 +46275,6 @@ "isPreferredRoot": false, "label": "postal address", "linkedEntities": { - "IAO:0000422": { - "curie": "IAO:0000422", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000422" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -47365,11 +46439,6 @@ "isObsolete": false, "label": "to be replaced with external ontology term", "linkedEntities": { - "IAO:0000423": { - "curie": "IAO:0000423", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000423" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -47608,11 +46677,6 @@ "isPreferredRoot": false, "label": "expand expression to", "linkedEntities": { - "IAO:0000424": { - "curie": "IAO:0000424", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000424" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -47723,11 +46787,6 @@ "isPreferredRoot": false, "label": "expand assertion to", "linkedEntities": { - "IAO:0000425": { - "curie": "IAO:0000425", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000425" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -47834,11 +46893,6 @@ "isPreferredRoot": false, "label": "first order logic expression", "linkedEntities": { - "IAO:0000426": { - "curie": "IAO:0000426", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000426" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -47917,11 +46971,6 @@ "isPreferredRoot": false, "label": "antisymmetric property", "linkedEntities": { - "IAO:0000427": { - "curie": "IAO:0000427", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000427" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -48053,11 +47102,6 @@ "isObsolete": false, "label": "requires discussion", "linkedEntities": { - "IAO:0000428": { - "curie": "IAO:0000428", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000428" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -48313,11 +47357,6 @@ "isPreferredRoot": false, "label": "email address", "linkedEntities": { - "IAO:0000429": { - "curie": "IAO:0000429", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000429" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -48487,11 +47526,6 @@ "isPreferredRoot": false, "label": "author role", "linkedEntities": { - "IAO:0000442": { - "curie": "IAO:0000442", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000442" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -48679,11 +47713,6 @@ "isPreferredRoot": false, "label": "data item extraction from journal article", "linkedEntities": { - "IAO:0000443": { - "curie": "IAO:0000443", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000443" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -48901,11 +47930,6 @@ "isPreferredRoot": false, "label": "publishing process", "linkedEntities": { - "IAO:0000444": { - "curie": "IAO:0000444", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000444" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -49127,11 +48151,6 @@ "isPreferredRoot": false, "label": "document in preparation for publication", "linkedEntities": { - "IAO:0000445": { - "curie": "IAO:0000445", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000445" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -49344,11 +48363,6 @@ "isPreferredRoot": false, "label": "documenting", "linkedEntities": { - "IAO:0000572": { - "curie": "IAO:0000572", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000572" - }, "http://en.wikipedia.org/wiki/Documenting": { "curie": "wikipedia.en:Documenting", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -49621,11 +48635,6 @@ "isPreferredRoot": false, "label": "line graph", "linkedEntities": { - "IAO:0000573": { - "curie": "IAO:0000573", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000573" - }, "http://en.wikipedia.org/wiki/Line_chart": { "curie": "wikipedia.en:Line_chart", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -49870,11 +48879,6 @@ "isPreferredRoot": false, "label": "assigning a centrally registered identifier", "linkedEntities": { - "IAO:0000574": { - "curie": "IAO:0000574", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000574" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -50150,11 +49154,6 @@ "isPreferredRoot": false, "label": "associating information with a centrally registered identifier in its registry", "linkedEntities": { - "IAO:0000575": { - "curie": "IAO:0000575", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000575" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -50448,11 +49447,6 @@ "isPreferredRoot": false, "label": "centrally registered identifier symbol", "linkedEntities": { - "IAO:0000577": { - "curie": "IAO:0000577", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000577" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -50836,11 +49830,6 @@ "isPreferredRoot": false, "label": "centrally registered identifier", "linkedEntities": { - "IAO:0000578": { - "curie": "IAO:0000578", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000578" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -51153,11 +50142,6 @@ "isPreferredRoot": false, "label": "centrally registered identifier registry", "linkedEntities": { - "IAO:0000579": { - "curie": "IAO:0000579", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000579" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -51492,11 +50476,6 @@ "isPreferredRoot": false, "label": "looking up a centrally registered identifier", "linkedEntities": { - "IAO:0000580": { - "curie": "IAO:0000580", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000580" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -51762,11 +50741,6 @@ "isPreferredRoot": false, "label": "has time stamp", "linkedEntities": { - "IAO:0000581": { - "curie": "IAO:0000581", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000581" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -51928,11 +50902,6 @@ "isPreferredRoot": false, "label": "time stamped measurement datum", "linkedEntities": { - "IAO:0000582": { - "curie": "IAO:0000582", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000582" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -52139,11 +51108,6 @@ "isPreferredRoot": false, "label": "has measurement datum", "linkedEntities": { - "IAO:0000583": { - "curie": "IAO:0000583", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000583" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -52310,11 +51274,6 @@ "isPreferredRoot": false, "label": "time sampled measurement data set", "linkedEntities": { - "IAO:0000584": { - "curie": "IAO:0000584", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000584" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -52533,11 +51492,6 @@ "isPreferredRoot": false, "label": "OBO foundry unique label", "linkedEntities": { - "IAO:0000589": { - "curie": "IAO:0000589", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000589" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -52698,11 +51652,6 @@ "isPreferredRoot": false, "label": "written name", "linkedEntities": { - "IAO:0000590": { - "curie": "IAO:0000590", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000590" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -52923,11 +51872,6 @@ "isPreferredRoot": false, "label": "software method", "linkedEntities": { - "IAO:0000591": { - "curie": "IAO:0000591", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000591" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -53131,11 +52075,6 @@ "isPreferredRoot": false, "label": "software module", "linkedEntities": { - "IAO:0000592": { - "curie": "IAO:0000592", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000592" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -53339,11 +52278,6 @@ "isPreferredRoot": false, "label": "software library", "linkedEntities": { - "IAO:0000593": { - "curie": "IAO:0000593", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000593" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -53547,11 +52481,6 @@ "isPreferredRoot": false, "label": "software application", "linkedEntities": { - "IAO:0000594": { - "curie": "IAO:0000594", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000594" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -53755,11 +52684,6 @@ "isPreferredRoot": false, "label": "software script", "linkedEntities": { - "IAO:0000595": { - "curie": "IAO:0000595", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000595" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -53938,11 +52862,6 @@ "isPreferredRoot": false, "label": "has ID digit count", "linkedEntities": { - "IAO:0000596": { - "curie": "IAO:0000596", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000596" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -54047,11 +52966,6 @@ "isPreferredRoot": false, "label": "has ID range allocated to", "linkedEntities": { - "IAO:0000597": { - "curie": "IAO:0000597", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000597" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -54151,11 +53065,6 @@ "isPreferredRoot": false, "label": "has ID policy for", "linkedEntities": { - "IAO:0000598": { - "curie": "IAO:0000598", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000598" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -54260,11 +53169,6 @@ "isPreferredRoot": false, "label": "has ID prefix", "linkedEntities": { - "IAO:0000599": { - "curie": "IAO:0000599", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000599" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -54368,11 +53272,6 @@ "isPreferredRoot": false, "label": "elucidation", "linkedEntities": { - "IAO:0000600": { - "curie": "IAO:0000600", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000600" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -54471,11 +53370,6 @@ "isPreferredRoot": false, "label": "has associated axiom(nl)", "linkedEntities": { - "IAO:0000601": { - "curie": "IAO:0000601", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000601" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -54584,11 +53478,6 @@ "isPreferredRoot": false, "label": "has associated axiom(fol)", "linkedEntities": { - "IAO:0000602": { - "curie": "IAO:0000602", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000602" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -54704,11 +53593,6 @@ "isPreferredRoot": false, "label": "is allocated id range", "linkedEntities": { - "IAO:0000603": { - "curie": "IAO:0000603", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000603" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -54807,11 +53691,6 @@ "isPreferredRoot": false, "label": "retired from use as of", "linkedEntities": { - "IAO:0000604": { - "curie": "IAO:0000604", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000604" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -54929,11 +53808,6 @@ "isPreferredRoot": false, "label": "abbreviation textual entity", "linkedEntities": { - "IAO:0000605": { - "curie": "IAO:0000605", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000605" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -55170,11 +54044,6 @@ "isPreferredRoot": false, "label": "abbreviations section", "linkedEntities": { - "IAO:0000606": { - "curie": "IAO:0000606", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000606" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -55436,11 +54305,6 @@ "isPreferredRoot": false, "label": "author information section", "linkedEntities": { - "IAO:0000607": { - "curie": "IAO:0000607", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000607" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -55676,11 +54540,6 @@ "isPreferredRoot": false, "label": "author information textual entity", "linkedEntities": { - "IAO:0000608": { - "curie": "IAO:0000608", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000608" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -55906,11 +54765,6 @@ "isPreferredRoot": false, "label": "author summary section", "linkedEntities": { - "IAO:0000609": { - "curie": "IAO:0000609", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000609" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -56158,11 +55012,6 @@ "isPreferredRoot": false, "label": "author summary textual entity", "linkedEntities": { - "IAO:0000610": { - "curie": "IAO:0000610", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000610" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -56405,11 +55254,6 @@ "isPreferredRoot": false, "label": "availability section", "linkedEntities": { - "IAO:0000611": { - "curie": "IAO:0000611", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000611" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -56647,11 +55491,6 @@ "isPreferredRoot": false, "label": "availability textual entity", "linkedEntities": { - "IAO:0000612": { - "curie": "IAO:0000612", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000612" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -56875,11 +55714,6 @@ "isPreferredRoot": false, "label": "case report section", "linkedEntities": { - "IAO:0000613": { - "curie": "IAO:0000613", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000613" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -57113,11 +55947,6 @@ "isPreferredRoot": false, "label": "case report textual entity", "linkedEntities": { - "IAO:0000614": { - "curie": "IAO:0000614", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000614" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -57344,11 +56173,6 @@ "isPreferredRoot": false, "label": "conclusion section", "linkedEntities": { - "IAO:0000615": { - "curie": "IAO:0000615", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000615" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -57614,11 +56438,6 @@ "isPreferredRoot": false, "label": "conflict of interest section", "linkedEntities": { - "IAO:0000616": { - "curie": "IAO:0000616", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000616" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -57865,11 +56684,6 @@ "isPreferredRoot": false, "label": "conflict of interest textual entity", "linkedEntities": { - "IAO:0000617": { - "curie": "IAO:0000617", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000617" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -58090,11 +56904,6 @@ "isPreferredRoot": false, "label": "consent section", "linkedEntities": { - "IAO:0000618": { - "curie": "IAO:0000618", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000618" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -58327,11 +57136,6 @@ "isPreferredRoot": false, "label": "consent textual entity", "linkedEntities": { - "IAO:0000619": { - "curie": "IAO:0000619", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000619" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -58560,11 +57364,6 @@ "isPreferredRoot": false, "label": "ethical approval section", "linkedEntities": { - "IAO:0000620": { - "curie": "IAO:0000620", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000620" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -58808,11 +57607,6 @@ "isPreferredRoot": false, "label": "ethical approval textual entity", "linkedEntities": { - "IAO:0000621": { - "curie": "IAO:0000621", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000621" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -59065,11 +57859,6 @@ "isPreferredRoot": false, "label": "figures section", "linkedEntities": { - "IAO:0000622": { - "curie": "IAO:0000622", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000622" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -59327,11 +58116,6 @@ "isPreferredRoot": false, "label": "funding source declaration section", "linkedEntities": { - "IAO:0000623": { - "curie": "IAO:0000623", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000623" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -59574,11 +58358,6 @@ "isPreferredRoot": false, "label": "funding source declaration textual entity", "linkedEntities": { - "IAO:0000624": { - "curie": "IAO:0000624", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000624" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -59816,11 +58595,6 @@ "isPreferredRoot": false, "label": "future directions section", "linkedEntities": { - "IAO:0000625": { - "curie": "IAO:0000625", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000625" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -60065,11 +58839,6 @@ "isPreferredRoot": false, "label": "future directions textual entity", "linkedEntities": { - "IAO:0000626": { - "curie": "IAO:0000626", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000626" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -60290,11 +59059,6 @@ "isPreferredRoot": false, "label": "genome announcement section", "linkedEntities": { - "IAO:0000627": { - "curie": "IAO:0000627", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000627" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -60527,11 +59291,6 @@ "isPreferredRoot": false, "label": "genome announcement textual entity", "linkedEntities": { - "IAO:0000628": { - "curie": "IAO:0000628", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000628" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -60742,11 +59501,6 @@ "isPreferredRoot": false, "label": "keyword textual entity", "linkedEntities": { - "IAO:0000629": { - "curie": "IAO:0000629", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000629" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -60967,11 +59721,6 @@ "isPreferredRoot": false, "label": "keywords section", "linkedEntities": { - "IAO:0000630": { - "curie": "IAO:0000630", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000630" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -61224,11 +59973,6 @@ "isPreferredRoot": false, "label": "study limitations section", "linkedEntities": { - "IAO:0000631": { - "curie": "IAO:0000631", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000631" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -61509,11 +60253,6 @@ "isPreferredRoot": false, "label": "study limitations textual entity", "linkedEntities": { - "IAO:0000632": { - "curie": "IAO:0000632", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000632" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -61738,11 +60477,6 @@ "isPreferredRoot": false, "label": "materials section", "linkedEntities": { - "IAO:0000633": { - "curie": "IAO:0000633", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000633" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -61945,11 +60679,6 @@ "isPreferredRoot": false, "label": "notes section", "linkedEntities": { - "IAO:0000634": { - "curie": "IAO:0000634", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000634" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -62159,11 +60888,6 @@ "isPreferredRoot": false, "label": "patients section", "linkedEntities": { - "IAO:0000635": { - "curie": "IAO:0000635", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000635" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -62384,11 +61108,6 @@ "isPreferredRoot": false, "label": "patients textual entity", "linkedEntities": { - "IAO:0000636": { - "curie": "IAO:0000636", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000636" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -62612,11 +61331,6 @@ "isPreferredRoot": false, "label": "pre-publication history section", "linkedEntities": { - "IAO:0000637": { - "curie": "IAO:0000637", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000637" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -62850,11 +61564,6 @@ "isPreferredRoot": false, "label": "pre-publication history textual entity", "linkedEntities": { - "IAO:0000638": { - "curie": "IAO:0000638", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000638" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -63078,11 +61787,6 @@ "isPreferredRoot": false, "label": "related work section", "linkedEntities": { - "IAO:0000639": { - "curie": "IAO:0000639", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000639" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -63316,11 +62020,6 @@ "isPreferredRoot": false, "label": "related work textual entity", "linkedEntities": { - "IAO:0000640": { - "curie": "IAO:0000640", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000640" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -63541,11 +62240,6 @@ "isPreferredRoot": false, "label": "requirements section", "linkedEntities": { - "IAO:0000641": { - "curie": "IAO:0000641", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000641" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -63778,11 +62472,6 @@ "isPreferredRoot": false, "label": "requirements textual entity", "linkedEntities": { - "IAO:0000642": { - "curie": "IAO:0000642", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000642" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -63993,11 +62682,6 @@ "isPreferredRoot": false, "label": "statistical analysis textual entity", "linkedEntities": { - "IAO:0000643": { - "curie": "IAO:0000643", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000643" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -64218,11 +62902,6 @@ "isPreferredRoot": false, "label": "statistical analysis section", "linkedEntities": { - "IAO:0000644": { - "curie": "IAO:0000644", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000644" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -64465,11 +63144,6 @@ "isPreferredRoot": false, "label": "tables section", "linkedEntities": { - "IAO:0000645": { - "curie": "IAO:0000645", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000645" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -64699,11 +63373,6 @@ "isPreferredRoot": false, "label": "postal code", "linkedEntities": { - "IAO:0000646": { - "curie": "IAO:0000646", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000646" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -64846,11 +63515,6 @@ "isPreferredRoot": false, "label": "Postal delivery route", "linkedEntities": { - "IAO:0000647": { - "curie": "IAO:0000647", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000647" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -65004,11 +63668,6 @@ "isPreferredRoot": false, "label": "zone improvement plan code", "linkedEntities": { - "IAO:0000648": { - "curie": "IAO:0000648", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000648" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -65192,11 +63851,6 @@ "isPreferredRoot": false, "label": "database extract, transform, and load process", "linkedEntities": { - "IAO:0000650": { - "curie": "IAO:0000650", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000650" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -65450,11 +64104,6 @@ "isPreferredRoot": false, "label": "has ontology root term", "linkedEntities": { - "IAO:0000700": { - "curie": "IAO:0000700", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000700" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -65567,11 +64216,6 @@ "isPreferredRoot": false, "label": "descriptive data section", "linkedEntities": { - "IAO:0000701": { - "curie": "IAO:0000701", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000701" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -65802,11 +64446,6 @@ "isPreferredRoot": false, "label": "additional results section", "linkedEntities": { - "IAO:0000702": { - "curie": "IAO:0000702", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000702" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -66045,11 +64684,6 @@ "isPreferredRoot": false, "label": "research participants section", "linkedEntities": { - "IAO:0000703": { - "curie": "IAO:0000703", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000703" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -66276,11 +64910,6 @@ "isPreferredRoot": false, "label": "measurement methods section", "linkedEntities": { - "IAO:0000704": { - "curie": "IAO:0000704", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000704" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -66515,11 +65144,6 @@ "isPreferredRoot": false, "label": "research settings section", "linkedEntities": { - "IAO:0000705": { - "curie": "IAO:0000705", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000705" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -66746,11 +65370,6 @@ "isPreferredRoot": false, "label": "study bias section", "linkedEntities": { - "IAO:0000706": { - "curie": "IAO:0000706", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000706" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -66988,11 +65607,6 @@ "isPreferredRoot": false, "label": "graphical abstract", "linkedEntities": { - "IAO:0000707": { - "curie": "IAO:0000707", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000707" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -67245,11 +65859,6 @@ "isPreferredRoot": false, "label": "ORCID identifier", "linkedEntities": { - "IAO:0000708": { - "curie": "IAO:0000708", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000708" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -67465,11 +66074,6 @@ "isPreferredRoot": false, "label": "may be identical to", "linkedEntities": { - "IAO:0006011": { - "curie": "IAO:0006011", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0006011" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -67597,11 +66201,6 @@ "isPreferredRoot": false, "label": "scheduled for obsoletion on or after", "linkedEntities": { - "IAO:0006012": { - "curie": "IAO:0006012", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0006012" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -67713,11 +66312,6 @@ "isPreferredRoot": false, "label": "has axiom label", "linkedEntities": { - "IAO:0010000": { - "curie": "IAO:0010000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0010000" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -67873,11 +66467,6 @@ "isPreferredRoot": false, "label": "identifier", "linkedEntities": { - "IAO:0020000": { - "curie": "IAO:0020000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0020000" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -68140,11 +66729,6 @@ "isPreferredRoot": false, "label": "grapheme", "linkedEntities": { - "IAO:0020001": { - "curie": "IAO:0020001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0020001" - }, "http://en.wikipedia.org/wiki/Grapheme": { "curie": "wikipedia.en:Grapheme", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -68356,11 +66940,6 @@ "isPreferredRoot": false, "label": "identifier creating process", "linkedEntities": { - "IAO:0020010": { - "curie": "IAO:0020010", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0020010" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -68567,11 +67146,6 @@ "isPreferredRoot": false, "label": "personal name", "linkedEntities": { - "IAO:0020015": { - "curie": "IAO:0020015", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0020015" - }, "http://en.wikipedia.org/wiki/Personal_name": { "curie": "wikipedia.en:Personal_name", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -68765,11 +67339,6 @@ "isPreferredRoot": false, "label": "given name", "linkedEntities": { - "IAO:0020016": { - "curie": "IAO:0020016", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0020016" - }, "http://en.wikipedia.org/wiki/Given_name": { "curie": "wikipedia.en:Given_name", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -68970,11 +67539,6 @@ "isPreferredRoot": false, "label": "family name", "linkedEntities": { - "IAO:0020017": { - "curie": "IAO:0020017", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0020017" - }, "http://en.wikipedia.org/wiki/Family_name": { "curie": "wikipedia.en:Family_name", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", @@ -69205,11 +67769,6 @@ "isPreferredRoot": false, "label": "code set", "linkedEntities": { - "IAO:0020020": { - "curie": "IAO:0020020", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0020020" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -69416,11 +67975,6 @@ "isPreferredRoot": false, "label": "term replaced by", "linkedEntities": { - "IAO:0100001": { - "curie": "IAO:0100001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0100001" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -69569,11 +68123,6 @@ "isPreferredRoot": false, "label": "ontology module", "linkedEntities": { - "IAO:8000000": { - "curie": "IAO:8000000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000000" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -69753,11 +68302,6 @@ "isPreferredRoot": false, "label": "base ontology module", "linkedEntities": { - "IAO:8000001": { - "curie": "IAO:8000001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000001" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -69934,11 +68478,6 @@ "isPreferredRoot": false, "label": "editors ontology module", "linkedEntities": { - "IAO:8000002": { - "curie": "IAO:8000002", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000002" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -70116,11 +68655,6 @@ "isPreferredRoot": false, "label": "main release ontology module", "linkedEntities": { - "IAO:8000003": { - "curie": "IAO:8000003", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000003" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -70298,11 +68832,6 @@ "isPreferredRoot": false, "label": "bridge ontology module", "linkedEntities": { - "IAO:8000004": { - "curie": "IAO:8000004", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000004" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -70483,11 +69012,6 @@ "isPreferredRoot": false, "label": "import ontology module", "linkedEntities": { - "IAO:8000005": { - "curie": "IAO:8000005", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000005" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -70705,11 +69229,6 @@ "isPreferredRoot": false, "label": "subset ontology module", "linkedEntities": { - "IAO:8000006": { - "curie": "IAO:8000006", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000006" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -70900,11 +69419,6 @@ "isPreferredRoot": false, "label": "curation subset ontology module", "linkedEntities": { - "IAO:8000007": { - "curie": "IAO:8000007", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000007" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -71081,11 +69595,6 @@ "isPreferredRoot": false, "label": "analysis subset ontology module", "linkedEntities": { - "IAO:8000008": { - "curie": "IAO:8000008", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000008" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -71263,11 +69772,6 @@ "isPreferredRoot": false, "label": "single layer subset ontology module", "linkedEntities": { - "IAO:8000009": { - "curie": "IAO:8000009", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000009" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -71457,11 +69961,6 @@ "isPreferredRoot": false, "label": "exclusion subset ontology module", "linkedEntities": { - "IAO:8000010": { - "curie": "IAO:8000010", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000010" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -71653,11 +70152,6 @@ "isPreferredRoot": false, "label": "external import ontology module", "linkedEntities": { - "IAO:8000011": { - "curie": "IAO:8000011", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000011" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -71858,11 +70352,6 @@ "isPreferredRoot": false, "label": "species subset ontology module", "linkedEntities": { - "IAO:8000012": { - "curie": "IAO:8000012", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000012" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -72061,11 +70550,6 @@ "isPreferredRoot": false, "label": "reasoned ontology module", "linkedEntities": { - "IAO:8000013": { - "curie": "IAO:8000013", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000013" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -72242,11 +70726,6 @@ "isPreferredRoot": false, "label": "generated ontology module", "linkedEntities": { - "IAO:8000014": { - "curie": "IAO:8000014", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000014" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -72430,11 +70909,6 @@ "isPreferredRoot": false, "label": "template generated ontology module", "linkedEntities": { - "IAO:8000015": { - "curie": "IAO:8000015", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000015" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -72624,11 +71098,6 @@ "isPreferredRoot": false, "label": "taxonomic bridge ontology module", "linkedEntities": { - "IAO:8000016": { - "curie": "IAO:8000016", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000016" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -72790,11 +71259,6 @@ "isPreferredRoot": false, "label": "ontology module subsetted by expressivity", "linkedEntities": { - "IAO:8000017": { - "curie": "IAO:8000017", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000017" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -72962,11 +71426,6 @@ "isPreferredRoot": false, "label": "obo basic subset ontology module", "linkedEntities": { - "IAO:8000018": { - "curie": "IAO:8000018", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000018" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -73163,11 +71622,6 @@ "isPreferredRoot": false, "label": "ontology module subsetted by OWL profile", "linkedEntities": { - "IAO:8000019": { - "curie": "IAO:8000019", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000019" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -73343,11 +71797,6 @@ "isPreferredRoot": false, "label": "EL++ ontology module", "linkedEntities": { - "IAO:8000020": { - "curie": "IAO:8000020", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_8000020" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -73842,11 +72291,6 @@ "isPreferredRoot": false, "label": "planned process", "linkedEntities": { - "OBI:0000011": { - "curie": "OBI:0000011", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0000011" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -73977,11 +72421,6 @@ "isPreferredRoot": true, "label": "investigation", "linkedEntities": { - "OBI:0000066": { - "curie": "OBI:0000066", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0000066" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -74154,11 +72593,6 @@ "isPreferredRoot": false, "label": "has_specified_input", "linkedEntities": { - "OBI:0000293": { - "curie": "OBI:0000293", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0000293" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -74327,11 +72761,6 @@ "isPreferredRoot": false, "label": "is_specified_input_of", "linkedEntities": { - "OBI:0000295": { - "curie": "OBI:0000295", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0000295" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "curie": "label", "hasLocalDefinition": true, @@ -74394,11 +72823,6 @@ "isPreferredRoot": false, "label": "has_specified_output", "linkedEntities": { - "OBI:0000299": { - "curie": "OBI:0000299", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0000299" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -74563,11 +72987,6 @@ "isPreferredRoot": false, "label": "is_specified_output_of", "linkedEntities": { - "OBI:0000312": { - "curie": "OBI:0000312", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0000312" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -74734,11 +73153,6 @@ "isPreferredRoot": false, "label": "study design execution", "linkedEntities": { - "OBI:0000471": { - "curie": "OBI:0000471", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0000471" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -74909,11 +73323,6 @@ "isPreferredRoot": false, "label": "data transformation", "linkedEntities": { - "OBI:0200000": { - "curie": "OBI:0200000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0200000" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -75058,11 +73467,6 @@ "isPreferredRoot": false, "label": "study design", "linkedEntities": { - "OBI:0500000": { - "curie": "OBI:0500000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0500000" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -75296,11 +73700,6 @@ "isObsolete": false, "label": "out of scope", "linkedEntities": { - "OMO:0001000": { - "curie": "OMO:0001000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OMO_0001000" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -75482,11 +73881,6 @@ "isPreferredRoot": false, "label": "logical characteristic of object property", "linkedEntities": { - "OMO:0001001": { - "curie": "OMO:0001001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OMO_0001001" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -75574,11 +73968,6 @@ "isPreferredRoot": false, "label": "defined by construct", "linkedEntities": { - "OMO:0002000": { - "curie": "OMO:0002000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OMO_0002000" - }, "http://purl.obolibrary.org/obo/IAO_0000112": { "curie": "IAO:0000112", "hasLocalDefinition": true, @@ -75762,11 +74151,6 @@ "isPreferredRoot": false, "label": "morphology", "linkedEntities": { - "PATO:0000051": { - "curie": "PATO:0000051", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0000051" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -75919,11 +74303,6 @@ "isPreferredRoot": false, "label": "length", "linkedEntities": { - "PATO:0000122": { - "curie": "PATO:0000122", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0000122" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -76118,11 +74497,6 @@ "isPreferredRoot": false, "label": "mass", "linkedEntities": { - "PATO:0000125": { - "curie": "PATO:0000125", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0000125" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -76283,11 +74657,6 @@ "isPreferredRoot": false, "label": "physical quality", "linkedEntities": { - "PATO:0001018": { - "curie": "PATO:0001018", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0001018" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -76436,11 +74805,6 @@ "isPreferredRoot": false, "label": "physical object quality", "linkedEntities": { - "PATO:0001241": { - "curie": "PATO:0001241", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0001241" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -76578,11 +74942,6 @@ "isPreferredRoot": false, "label": "characteristic of", "linkedEntities": { - "RO:0000052": { - "curie": "RO:0000052", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000052" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -76734,11 +75093,6 @@ "isPreferredRoot": false, "label": "has characteristic", "linkedEntities": { - "RO:0000053": { - "curie": "RO:0000053", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000053" - }, "http://purl.obolibrary.org/obo/BFO_0000020": { "curie": "BFO:0000020", "hasLocalDefinition": true, @@ -76896,11 +75250,6 @@ "isPreferredRoot": false, "label": "participates in", "linkedEntities": { - "RO:0000056": { - "curie": "RO:0000056", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000056" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -77042,11 +75391,6 @@ "isPreferredRoot": false, "label": "has participant", "linkedEntities": { - "RO:0000057": { - "curie": "RO:0000057", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000057" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -77206,11 +75550,6 @@ "isPreferredRoot": false, "label": "is concretized as", "linkedEntities": { - "RO:0000058": { - "curie": "RO:0000058", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000058" - }, "http://purl.obolibrary.org/obo/BFO_0000020": { "curie": "BFO:0000020", "hasLocalDefinition": true, @@ -77322,11 +75661,6 @@ "isPreferredRoot": false, "label": "concretizes", "linkedEntities": { - "RO:0000059": { - "curie": "RO:0000059", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000059" - }, "http://purl.obolibrary.org/obo/BFO_0000020": { "curie": "BFO:0000020", "hasLocalDefinition": true, @@ -77448,11 +75782,6 @@ "isPreferredRoot": false, "label": "function of", "linkedEntities": { - "RO:0000079": { - "curie": "RO:0000079", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000079" - }, "http://purl.obolibrary.org/obo/BFO_0000034": { "curie": "BFO:0000034", "hasLocalDefinition": true, @@ -77609,11 +75938,6 @@ "isPreferredRoot": false, "label": "quality of", "linkedEntities": { - "RO:0000080": { - "curie": "RO:0000080", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000080" - }, "http://purl.obolibrary.org/obo/IAO_0000112": { "curie": "IAO:0000112", "hasLocalDefinition": true, @@ -77760,11 +76084,6 @@ "isPreferredRoot": false, "label": "role of", "linkedEntities": { - "RO:0000081": { - "curie": "RO:0000081", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000081" - }, "http://purl.obolibrary.org/obo/IAO_0000112": { "curie": "IAO:0000112", "hasLocalDefinition": true, @@ -77904,11 +76223,6 @@ "isPreferredRoot": false, "label": "has function", "linkedEntities": { - "RO:0000085": { - "curie": "RO:0000085", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000085" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -78055,11 +76369,6 @@ "isPreferredRoot": false, "label": "has quality", "linkedEntities": { - "RO:0000086": { - "curie": "RO:0000086", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000086" - }, "http://purl.obolibrary.org/obo/BFO_0000019": { "curie": "BFO:0000019", "hasLocalDefinition": true, @@ -78197,11 +76506,6 @@ "isPreferredRoot": false, "label": "has role", "linkedEntities": { - "RO:0000087": { - "curie": "RO:0000087", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000087" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -78346,11 +76650,6 @@ "isPreferredRoot": false, "label": "has disposition", "linkedEntities": { - "RO:0000091": { - "curie": "RO:0000091", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000091" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -78457,11 +76756,6 @@ "isPreferredRoot": false, "label": "disposition of", "linkedEntities": { - "RO:0000092": { - "curie": "RO:0000092", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000092" - }, "http://purl.obolibrary.org/obo/RO_0000052": { "curie": "RO:0000052", "hasLocalDefinition": true, @@ -78549,11 +76843,6 @@ "isPreferredRoot": false, "label": "derives from", "linkedEntities": { - "RO:0001000": { - "curie": "RO:0001000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0001000" - }, "http://purl.obolibrary.org/obo/IAO_0000112": { "curie": "IAO:0000112", "hasLocalDefinition": true, @@ -78691,11 +76980,6 @@ "isPreferredRoot": false, "label": "derives into", "linkedEntities": { - "RO:0001001": { - "curie": "RO:0001001", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0001001" - }, "http://purl.obolibrary.org/obo/IAO_0000112": { "curie": "IAO:0000112", "hasLocalDefinition": true, @@ -78837,11 +77121,6 @@ "isPreferredRoot": false, "label": "location of", "linkedEntities": { - "RO:0001015": { - "curie": "RO:0001015", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0001015" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -79040,11 +77319,6 @@ "isPreferredRoot": false, "label": "located in", "linkedEntities": { - "RO:0001025": { - "curie": "RO:0001025", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0001025" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -79213,11 +77487,6 @@ "isPreferredRoot": false, "label": "temporal interpretation", "linkedEntities": { - "RO:0001900": { - "curie": "RO:0001900", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0001900" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -79290,11 +77559,6 @@ "isPreferredRoot": false, "label": "2D boundary of", "linkedEntities": { - "RO:0002000": { - "curie": "RO:0002000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002000" - }, "http://purl.obolibrary.org/obo/IAO_0000112": { "curie": "IAO:0000112", "hasLocalDefinition": true, @@ -79435,11 +77699,6 @@ "isPreferredRoot": false, "label": "has 2D boundary", "linkedEntities": { - "RO:0002002": { - "curie": "RO:0002002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002002" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -79596,11 +77855,6 @@ "isPreferredRoot": false, "label": "member of", "linkedEntities": { - "RO:0002350": { - "curie": "RO:0002350", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002350" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -79740,11 +77994,6 @@ "isPreferredRoot": false, "label": "has member", "linkedEntities": { - "RO:0002351": { - "curie": "RO:0002351", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002351" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -79872,11 +78121,6 @@ "isPreferredRoot": false, "label": "length unit", "linkedEntities": { - "UO:0000001": { - "curie": "UO:0000001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/UO_0000001" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -80057,11 +78301,6 @@ "isPreferredRoot": false, "label": "mass unit", "linkedEntities": { - "UO:0000002": { - "curie": "UO:0000002", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/UO_0000002" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -80210,11 +78449,6 @@ "isPreferredRoot": false, "label": "time unit", "linkedEntities": { - "UO:0000003": { - "curie": "UO:0000003", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/UO_0000003" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, diff --git a/testcases_expected_output_api/v2/ontologies/duo/individuals.json b/testcases_expected_output_api/v2/ontologies/duo/individuals.json index 4b15475ae..ebe2d91d1 100644 --- a/testcases_expected_output_api/v2/ontologies/duo/individuals.json +++ b/testcases_expected_output_api/v2/ontologies/duo/individuals.json @@ -30,11 +30,6 @@ "isObsolete": false, "label": "example to be eventually removed", "linkedEntities": { - "IAO:0000002": { - "curie": "IAO:0000002", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000002" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -179,11 +174,6 @@ "isObsolete": false, "label": "failed exploratory term", "linkedEntities": { - "IAO:0000103": { - "curie": "IAO:0000103", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000103" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -359,11 +349,6 @@ "isObsolete": false, "label": "metadata complete", "linkedEntities": { - "IAO:0000120": { - "curie": "IAO:0000120", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000120" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -597,11 +582,6 @@ "isObsolete": false, "label": "organizational term", "linkedEntities": { - "IAO:0000121": { - "curie": "IAO:0000121", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000121" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -835,11 +815,6 @@ "isObsolete": false, "label": "ready for release", "linkedEntities": { - "IAO:0000122": { - "curie": "IAO:0000122", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000122" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -1073,11 +1048,6 @@ "isObsolete": false, "label": "metadata incomplete", "linkedEntities": { - "IAO:0000123": { - "curie": "IAO:0000123", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000123" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -1311,11 +1281,6 @@ "isObsolete": false, "label": "uncurated", "linkedEntities": { - "IAO:0000124": { - "curie": "IAO:0000124", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000124" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -1549,11 +1514,6 @@ "isObsolete": false, "label": "pending final vetting", "linkedEntities": { - "IAO:0000125": { - "curie": "IAO:0000125", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000125" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -1781,11 +1741,6 @@ "isObsolete": false, "label": "placeholder removed", "linkedEntities": { - "IAO:0000226": { - "curie": "IAO:0000226", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000226" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -1961,11 +1916,6 @@ "isObsolete": false, "label": "terms merged", "linkedEntities": { - "IAO:0000227": { - "curie": "IAO:0000227", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000227" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -2153,11 +2103,6 @@ "isObsolete": false, "label": "term imported", "linkedEntities": { - "IAO:0000228": { - "curie": "IAO:0000228", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000228" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -2345,11 +2290,6 @@ "isObsolete": false, "label": "term split", "linkedEntities": { - "IAO:0000229": { - "curie": "IAO:0000229", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000229" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -2534,11 +2474,6 @@ "isObsolete": false, "label": "universal", "linkedEntities": { - "IAO:0000410": { - "curie": "IAO:0000410", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000410" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -2719,11 +2654,6 @@ "isObsolete": false, "label": "defined class", "linkedEntities": { - "IAO:0000420": { - "curie": "IAO:0000420", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000420" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -2904,11 +2834,6 @@ "isObsolete": false, "label": "named class expression", "linkedEntities": { - "IAO:0000421": { - "curie": "IAO:0000421", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000421" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -3098,11 +3023,6 @@ "isObsolete": false, "label": "to be replaced with external ontology term", "linkedEntities": { - "IAO:0000423": { - "curie": "IAO:0000423", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000423" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -3362,11 +3282,6 @@ "isObsolete": false, "label": "requires discussion", "linkedEntities": { - "IAO:0000428": { - "curie": "IAO:0000428", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000428" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -3618,11 +3533,6 @@ "isObsolete": false, "label": "out of scope", "linkedEntities": { - "OMO:0001000": { - "curie": "OMO:0001000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OMO_0001000" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, diff --git a/testcases_expected_output_api/v2/ontologies/duo/properties.json b/testcases_expected_output_api/v2/ontologies/duo/properties.json index 0d9e23869..76b9ac0f3 100644 --- a/testcases_expected_output_api/v2/ontologies/duo/properties.json +++ b/testcases_expected_output_api/v2/ontologies/duo/properties.json @@ -38,11 +38,6 @@ "isPreferredRoot": false, "label": "part of", "linkedEntities": { - "BFO:0000050": { - "curie": "BFO:0000050", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000050" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -210,11 +205,6 @@ "isPreferredRoot": false, "label": "has part", "linkedEntities": { - "BFO:0000051": { - "curie": "BFO:0000051", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000051" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -369,11 +359,6 @@ "isPreferredRoot": false, "label": "realized in", "linkedEntities": { - "BFO:0000054": { - "curie": "BFO:0000054", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000054" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -537,11 +522,6 @@ "isPreferredRoot": false, "label": "realizes", "linkedEntities": { - "BFO:0000055": { - "curie": "BFO:0000055", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000055" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -707,11 +687,6 @@ "isPreferredRoot": false, "label": "occurs in", "linkedEntities": { - "BFO:0000066": { - "curie": "BFO:0000066", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000066" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -871,11 +846,6 @@ "isPreferredRoot": false, "label": "contains process", "linkedEntities": { - "BFO:0000067": { - "curie": "BFO:0000067", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000067" - }, "http://purl.obolibrary.org/obo/BFO_0000066": { "curie": "BFO:0000066", "hasLocalDefinition": true, @@ -985,11 +955,6 @@ "isPreferredRoot": false, "label": "BFO OWL specification label", "linkedEntities": { - "BFO:0000179": { - "curie": "BFO:0000179", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000179" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -1067,11 +1032,6 @@ "isPreferredRoot": false, "label": "BFO CLIF specification label", "linkedEntities": { - "BFO:0000180": { - "curie": "BFO:0000180", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000180" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -1285,23 +1245,6 @@ "isPreferredRoot": false, "label": "DUO_preferred_label", "linkedEntities": { - "DUO:0000041": { - "curie": "DUO:0000041", - "definedBy": [ - "duo" - ], - "hasLocalDefinition": true, - "iri": "http://purl.obolibrary.org/obo/DUO_0000041", - "label": "DUO_preferred_label", - "numAppearsIn": 1.0, - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "type": [ - "annotationProperty", - "entity", - "property" - ], - "url": "http://purl.obolibrary.org/obo/DUO_0000041" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "curie": "label", "hasLocalDefinition": true, @@ -1350,11 +1293,6 @@ "isPreferredRoot": false, "label": "has measurement value", "linkedEntities": { - "IAO:0000004": { - "curie": "IAO:0000004", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000004" - }, "http://purl.obolibrary.org/obo/IAO_0000032": { "curie": "IAO:0000032", "hasLocalDefinition": true, @@ -1415,11 +1353,6 @@ "isPreferredRoot": false, "label": "has measurement unit label", "linkedEntities": { - "IAO:0000039": { - "curie": "IAO:0000039", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000039" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -1492,11 +1425,6 @@ "isPreferredRoot": false, "label": "editor preferred term", "linkedEntities": { - "IAO:0000111": { - "curie": "IAO:0000111", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000111" - }, "http://purl.obolibrary.org/obo/IAO_0000114": { "curie": "IAO:0000114", "hasLocalDefinition": true, @@ -1619,11 +1547,6 @@ "isPreferredRoot": false, "label": "example of usage", "linkedEntities": { - "IAO:0000112": { - "curie": "IAO:0000112", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000112" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -1755,11 +1678,6 @@ "isPreferredRoot": false, "label": "in branch", "linkedEntities": { - "IAO:0000113": { - "curie": "IAO:0000113", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000113" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -1859,11 +1777,6 @@ "isPreferredRoot": false, "label": "has curation status", "linkedEntities": { - "IAO:0000114": { - "curie": "IAO:0000114", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000114" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -1944,11 +1857,6 @@ "isPreferredRoot": false, "label": "definition", "linkedEntities": { - "IAO:0000115": { - "curie": "IAO:0000115", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000115" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -2083,11 +1991,6 @@ "isPreferredRoot": false, "label": "editor note", "linkedEntities": { - "IAO:0000116": { - "curie": "IAO:0000116", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000116" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -2222,11 +2125,6 @@ "isPreferredRoot": false, "label": "term editor", "linkedEntities": { - "IAO:0000117": { - "curie": "IAO:0000117", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000117" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -2368,11 +2266,6 @@ "isPreferredRoot": false, "label": "alternative label", "linkedEntities": { - "IAO:0000118": { - "curie": "IAO:0000118", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000118" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -2509,11 +2402,6 @@ "isPreferredRoot": false, "label": "definition source", "linkedEntities": { - "IAO:0000119": { - "curie": "IAO:0000119", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000119" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -2638,11 +2526,6 @@ "isPreferredRoot": false, "label": "is about", "linkedEntities": { - "IAO:0000136": { - "curie": "IAO:0000136", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000136" - }, "http://purl.obolibrary.org/obo/IAO_0000030": { "curie": "IAO:0000030", "hasLocalDefinition": true, @@ -2795,11 +2678,6 @@ "isPreferredRoot": false, "label": "mentions", "linkedEntities": { - "IAO:0000142": { - "curie": "IAO:0000142", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000142" - }, "http://purl.obolibrary.org/obo/IAO_0000114": { "curie": "IAO:0000114", "hasLocalDefinition": true, @@ -2933,11 +2811,6 @@ "isPreferredRoot": false, "label": "mentioned by", "linkedEntities": { - "IAO:0000143": { - "curie": "IAO:0000143", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000143" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -3059,11 +2932,6 @@ "isPreferredRoot": false, "label": "denotes", "linkedEntities": { - "IAO:0000219": { - "curie": "IAO:0000219", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000219" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -3239,11 +3107,6 @@ "isPreferredRoot": false, "label": "is quality measurement of", "linkedEntities": { - "IAO:0000221": { - "curie": "IAO:0000221", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000221" - }, "http://purl.obolibrary.org/obo/BFO_0000019": { "curie": "BFO:0000019", "hasLocalDefinition": true, @@ -3379,11 +3242,6 @@ "isPreferredRoot": false, "label": "has obsolescence reason", "linkedEntities": { - "IAO:0000231": { - "curie": "IAO:0000231", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000231" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -3473,11 +3331,6 @@ "isPreferredRoot": false, "label": "curator note", "linkedEntities": { - "IAO:0000232": { - "curie": "IAO:0000232", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000232" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -3606,11 +3459,6 @@ "isPreferredRoot": false, "label": "term tracker item", "linkedEntities": { - "IAO:0000233": { - "curie": "IAO:0000233", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000233" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -3760,11 +3608,6 @@ "isPreferredRoot": false, "label": "ontology term requester", "linkedEntities": { - "IAO:0000234": { - "curie": "IAO:0000234", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000234" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -3897,11 +3740,6 @@ "isPreferredRoot": false, "label": "denoted by", "linkedEntities": { - "IAO:0000235": { - "curie": "IAO:0000235", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000235" - }, "http://purl.obolibrary.org/obo/BFO_0000001": { "curie": "BFO:0000001", "hasLocalDefinition": true, @@ -4018,11 +3856,6 @@ "isPreferredRoot": false, "label": "has x coordinate value", "linkedEntities": { - "IAO:0000404": { - "curie": "IAO:0000404", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000404" - }, "http://purl.obolibrary.org/obo/IAO_0000400": { "curie": "IAO:0000400", "hasLocalDefinition": true, @@ -4081,11 +3914,6 @@ "isPreferredRoot": false, "label": "has z coordinate value", "linkedEntities": { - "IAO:0000405": { - "curie": "IAO:0000405", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000405" - }, "http://purl.obolibrary.org/obo/IAO_0000400": { "curie": "IAO:0000400", "hasLocalDefinition": true, @@ -4144,11 +3972,6 @@ "isPreferredRoot": false, "label": "has y coordinate value", "linkedEntities": { - "IAO:0000406": { - "curie": "IAO:0000406", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000406" - }, "http://purl.obolibrary.org/obo/IAO_0000400": { "curie": "IAO:0000400", "hasLocalDefinition": true, @@ -4213,11 +4036,6 @@ "isPreferredRoot": false, "label": "has coordinate unit label", "linkedEntities": { - "IAO:0000407": { - "curie": "IAO:0000407", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000407" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -4309,11 +4127,6 @@ "isPreferredRoot": false, "label": "is denotator type", "linkedEntities": { - "IAO:0000411": { - "curie": "IAO:0000411", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000411" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -4418,11 +4231,6 @@ "isPreferredRoot": false, "label": "imported from", "linkedEntities": { - "IAO:0000412": { - "curie": "IAO:0000412", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000412" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -4559,11 +4367,6 @@ "isPreferredRoot": false, "label": "is duration of", "linkedEntities": { - "IAO:0000413": { - "curie": "IAO:0000413", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000413" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -4692,11 +4495,6 @@ "isPreferredRoot": false, "label": "is quality measured as", "linkedEntities": { - "IAO:0000417": { - "curie": "IAO:0000417", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000417" - }, "http://purl.obolibrary.org/obo/IAO_0000114": { "curie": "IAO:0000114", "hasLocalDefinition": true, @@ -4822,11 +4620,6 @@ "isPreferredRoot": false, "label": "is quality specification of", "linkedEntities": { - "IAO:0000418": { - "curie": "IAO:0000418", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000418" - }, "http://purl.obolibrary.org/obo/IAO_0000114": { "curie": "IAO:0000114", "hasLocalDefinition": true, @@ -4950,11 +4743,6 @@ "isPreferredRoot": false, "label": "quality is specified as", "linkedEntities": { - "IAO:0000419": { - "curie": "IAO:0000419", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000419" - }, "http://purl.obolibrary.org/obo/IAO_0000114": { "curie": "IAO:0000114", "hasLocalDefinition": true, @@ -5075,11 +4863,6 @@ "isPreferredRoot": false, "label": "expand expression to", "linkedEntities": { - "IAO:0000424": { - "curie": "IAO:0000424", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000424" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -5190,11 +4973,6 @@ "isPreferredRoot": false, "label": "expand assertion to", "linkedEntities": { - "IAO:0000425": { - "curie": "IAO:0000425", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000425" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -5301,11 +5079,6 @@ "isPreferredRoot": false, "label": "first order logic expression", "linkedEntities": { - "IAO:0000426": { - "curie": "IAO:0000426", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000426" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -5384,11 +5157,6 @@ "isPreferredRoot": false, "label": "antisymmetric property", "linkedEntities": { - "IAO:0000427": { - "curie": "IAO:0000427", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000427" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -5506,11 +5274,6 @@ "isPreferredRoot": false, "label": "has time stamp", "linkedEntities": { - "IAO:0000581": { - "curie": "IAO:0000581", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000581" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -5651,11 +5414,6 @@ "isPreferredRoot": false, "label": "has measurement datum", "linkedEntities": { - "IAO:0000583": { - "curie": "IAO:0000583", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000583" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -5800,11 +5558,6 @@ "isPreferredRoot": false, "label": "OBO foundry unique label", "linkedEntities": { - "IAO:0000589": { - "curie": "IAO:0000589", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000589" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -5940,11 +5693,6 @@ "isPreferredRoot": false, "label": "has ID digit count", "linkedEntities": { - "IAO:0000596": { - "curie": "IAO:0000596", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000596" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -6049,11 +5797,6 @@ "isPreferredRoot": false, "label": "has ID range allocated to", "linkedEntities": { - "IAO:0000597": { - "curie": "IAO:0000597", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000597" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -6153,11 +5896,6 @@ "isPreferredRoot": false, "label": "has ID policy for", "linkedEntities": { - "IAO:0000598": { - "curie": "IAO:0000598", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000598" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -6262,11 +6000,6 @@ "isPreferredRoot": false, "label": "has ID prefix", "linkedEntities": { - "IAO:0000599": { - "curie": "IAO:0000599", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000599" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -6370,11 +6103,6 @@ "isPreferredRoot": false, "label": "elucidation", "linkedEntities": { - "IAO:0000600": { - "curie": "IAO:0000600", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000600" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -6473,11 +6201,6 @@ "isPreferredRoot": false, "label": "has associated axiom(nl)", "linkedEntities": { - "IAO:0000601": { - "curie": "IAO:0000601", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000601" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -6586,11 +6309,6 @@ "isPreferredRoot": false, "label": "has associated axiom(fol)", "linkedEntities": { - "IAO:0000602": { - "curie": "IAO:0000602", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000602" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -6706,11 +6424,6 @@ "isPreferredRoot": false, "label": "is allocated id range", "linkedEntities": { - "IAO:0000603": { - "curie": "IAO:0000603", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000603" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -6809,11 +6522,6 @@ "isPreferredRoot": false, "label": "retired from use as of", "linkedEntities": { - "IAO:0000604": { - "curie": "IAO:0000604", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000604" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -6911,11 +6619,6 @@ "isPreferredRoot": false, "label": "has ontology root term", "linkedEntities": { - "IAO:0000700": { - "curie": "IAO:0000700", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000700" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -7011,11 +6714,6 @@ "isPreferredRoot": false, "label": "may be identical to", "linkedEntities": { - "IAO:0006011": { - "curie": "IAO:0006011", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0006011" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -7143,11 +6841,6 @@ "isPreferredRoot": false, "label": "scheduled for obsoletion on or after", "linkedEntities": { - "IAO:0006012": { - "curie": "IAO:0006012", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0006012" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -7259,11 +6952,6 @@ "isPreferredRoot": false, "label": "has axiom label", "linkedEntities": { - "IAO:0010000": { - "curie": "IAO:0010000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0010000" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -7381,11 +7069,6 @@ "isPreferredRoot": false, "label": "term replaced by", "linkedEntities": { - "IAO:0100001": { - "curie": "IAO:0100001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0100001" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -7531,11 +7214,6 @@ "isPreferredRoot": false, "label": "has_specified_input", "linkedEntities": { - "OBI:0000293": { - "curie": "OBI:0000293", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0000293" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -7704,11 +7382,6 @@ "isPreferredRoot": false, "label": "is_specified_input_of", "linkedEntities": { - "OBI:0000295": { - "curie": "OBI:0000295", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0000295" - }, "http://www.w3.org/2000/01/rdf-schema#label": { "curie": "label", "hasLocalDefinition": true, @@ -7771,11 +7444,6 @@ "isPreferredRoot": false, "label": "has_specified_output", "linkedEntities": { - "OBI:0000299": { - "curie": "OBI:0000299", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0000299" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -7940,11 +7608,6 @@ "isPreferredRoot": false, "label": "is_specified_output_of", "linkedEntities": { - "OBI:0000312": { - "curie": "OBI:0000312", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OBI_0000312" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -8095,11 +7758,6 @@ "isPreferredRoot": false, "label": "logical characteristic of object property", "linkedEntities": { - "OMO:0001001": { - "curie": "OMO:0001001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OMO_0001001" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -8187,11 +7845,6 @@ "isPreferredRoot": false, "label": "defined by construct", "linkedEntities": { - "OMO:0002000": { - "curie": "OMO:0002000", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OMO_0002000" - }, "http://purl.obolibrary.org/obo/IAO_0000112": { "curie": "IAO:0000112", "hasLocalDefinition": true, @@ -8341,11 +7994,6 @@ "isPreferredRoot": false, "label": "characteristic of", "linkedEntities": { - "RO:0000052": { - "curie": "RO:0000052", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000052" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -8497,11 +8145,6 @@ "isPreferredRoot": false, "label": "has characteristic", "linkedEntities": { - "RO:0000053": { - "curie": "RO:0000053", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000053" - }, "http://purl.obolibrary.org/obo/BFO_0000020": { "curie": "BFO:0000020", "hasLocalDefinition": true, @@ -8659,11 +8302,6 @@ "isPreferredRoot": false, "label": "participates in", "linkedEntities": { - "RO:0000056": { - "curie": "RO:0000056", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000056" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -8805,11 +8443,6 @@ "isPreferredRoot": false, "label": "has participant", "linkedEntities": { - "RO:0000057": { - "curie": "RO:0000057", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000057" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -8969,11 +8602,6 @@ "isPreferredRoot": false, "label": "is concretized as", "linkedEntities": { - "RO:0000058": { - "curie": "RO:0000058", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000058" - }, "http://purl.obolibrary.org/obo/BFO_0000020": { "curie": "BFO:0000020", "hasLocalDefinition": true, @@ -9085,11 +8713,6 @@ "isPreferredRoot": false, "label": "concretizes", "linkedEntities": { - "RO:0000059": { - "curie": "RO:0000059", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000059" - }, "http://purl.obolibrary.org/obo/BFO_0000020": { "curie": "BFO:0000020", "hasLocalDefinition": true, @@ -9211,11 +8834,6 @@ "isPreferredRoot": false, "label": "function of", "linkedEntities": { - "RO:0000079": { - "curie": "RO:0000079", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000079" - }, "http://purl.obolibrary.org/obo/BFO_0000034": { "curie": "BFO:0000034", "hasLocalDefinition": true, @@ -9372,11 +8990,6 @@ "isPreferredRoot": false, "label": "quality of", "linkedEntities": { - "RO:0000080": { - "curie": "RO:0000080", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000080" - }, "http://purl.obolibrary.org/obo/IAO_0000112": { "curie": "IAO:0000112", "hasLocalDefinition": true, @@ -9523,11 +9136,6 @@ "isPreferredRoot": false, "label": "role of", "linkedEntities": { - "RO:0000081": { - "curie": "RO:0000081", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000081" - }, "http://purl.obolibrary.org/obo/IAO_0000112": { "curie": "IAO:0000112", "hasLocalDefinition": true, @@ -9667,11 +9275,6 @@ "isPreferredRoot": false, "label": "has function", "linkedEntities": { - "RO:0000085": { - "curie": "RO:0000085", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000085" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -9818,11 +9421,6 @@ "isPreferredRoot": false, "label": "has quality", "linkedEntities": { - "RO:0000086": { - "curie": "RO:0000086", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000086" - }, "http://purl.obolibrary.org/obo/BFO_0000019": { "curie": "BFO:0000019", "hasLocalDefinition": true, @@ -9960,11 +9558,6 @@ "isPreferredRoot": false, "label": "has role", "linkedEntities": { - "RO:0000087": { - "curie": "RO:0000087", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000087" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -10109,11 +9702,6 @@ "isPreferredRoot": false, "label": "has disposition", "linkedEntities": { - "RO:0000091": { - "curie": "RO:0000091", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000091" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -10220,11 +9808,6 @@ "isPreferredRoot": false, "label": "disposition of", "linkedEntities": { - "RO:0000092": { - "curie": "RO:0000092", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000092" - }, "http://purl.obolibrary.org/obo/RO_0000052": { "curie": "RO:0000052", "hasLocalDefinition": true, @@ -10312,11 +9895,6 @@ "isPreferredRoot": false, "label": "derives from", "linkedEntities": { - "RO:0001000": { - "curie": "RO:0001000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0001000" - }, "http://purl.obolibrary.org/obo/IAO_0000112": { "curie": "IAO:0000112", "hasLocalDefinition": true, @@ -10454,11 +10032,6 @@ "isPreferredRoot": false, "label": "derives into", "linkedEntities": { - "RO:0001001": { - "curie": "RO:0001001", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0001001" - }, "http://purl.obolibrary.org/obo/IAO_0000112": { "curie": "IAO:0000112", "hasLocalDefinition": true, @@ -10600,11 +10173,6 @@ "isPreferredRoot": false, "label": "location of", "linkedEntities": { - "RO:0001015": { - "curie": "RO:0001015", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0001015" - }, "http://purl.obolibrary.org/obo/IAO_0000111": { "curie": "IAO:0000111", "hasLocalDefinition": true, @@ -10803,11 +10371,6 @@ "isPreferredRoot": false, "label": "located in", "linkedEntities": { - "RO:0001025": { - "curie": "RO:0001025", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0001025" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -10976,11 +10539,6 @@ "isPreferredRoot": false, "label": "temporal interpretation", "linkedEntities": { - "RO:0001900": { - "curie": "RO:0001900", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0001900" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -11053,11 +10611,6 @@ "isPreferredRoot": false, "label": "2D boundary of", "linkedEntities": { - "RO:0002000": { - "curie": "RO:0002000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002000" - }, "http://purl.obolibrary.org/obo/IAO_0000112": { "curie": "IAO:0000112", "hasLocalDefinition": true, @@ -11198,11 +10751,6 @@ "isPreferredRoot": false, "label": "has 2D boundary", "linkedEntities": { - "RO:0002002": { - "curie": "RO:0002002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002002" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -11359,11 +10907,6 @@ "isPreferredRoot": false, "label": "member of", "linkedEntities": { - "RO:0002350": { - "curie": "RO:0002350", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002350" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -11503,11 +11046,6 @@ "isPreferredRoot": false, "label": "has member", "linkedEntities": { - "RO:0002351": { - "curie": "RO:0002351", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002351" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, diff --git a/testcases_expected_output_api/v2/ontologies/efo-hierarchical-properties/classes.json b/testcases_expected_output_api/v2/ontologies/efo-hierarchical-properties/classes.json index 96984f642..21ba478ee 100644 --- a/testcases_expected_output_api/v2/ontologies/efo-hierarchical-properties/classes.json +++ b/testcases_expected_output_api/v2/ontologies/efo-hierarchical-properties/classes.json @@ -37,11 +37,6 @@ "isPreferredRoot": false, "label": "anatomical system", "linkedEntities": { - "UBERON:0000467": { - "curie": "UBERON:0000467", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000467" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -186,11 +181,6 @@ "isPreferredRoot": false, "label": "multicellular organism", "linkedEntities": { - "UBERON:0000468": { - "curie": "UBERON:0000468", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000468" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -362,11 +352,6 @@ "isPreferredRoot": false, "label": "epithelium", "linkedEntities": { - "UBERON:0000483": { - "curie": "UBERON:0000483", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000483" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -492,11 +477,6 @@ "isPreferredRoot": false, "label": "abdomen", "linkedEntities": { - "UBERON:0000916": { - "curie": "UBERON:0000916", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000916" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -688,11 +668,6 @@ "isPreferredRoot": false, "label": "endocrine system", "linkedEntities": { - "UBERON:0000949": { - "curie": "UBERON:0000949", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000949" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -844,11 +819,6 @@ "isPreferredRoot": false, "label": "digestive system", "linkedEntities": { - "UBERON:0001007": { - "curie": "UBERON:0001007", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001007" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -977,11 +947,6 @@ "isPreferredRoot": false, "label": "circulatory system", "linkedEntities": { - "UBERON:0001009": { - "curie": "UBERON:0001009", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001009" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -1141,11 +1106,6 @@ "isPreferredRoot": false, "label": "hepatic artery", "linkedEntities": { - "UBERON:0001193": { - "curie": "UBERON:0001193", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001193" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -1516,11 +1476,6 @@ "isPreferredRoot": false, "label": "hepatic sinusoid", "linkedEntities": { - "UBERON:0001281": { - "curie": "UBERON:0001281", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001281" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -1843,11 +1798,6 @@ "isPreferredRoot": false, "label": "artery", "linkedEntities": { - "UBERON:0001637": { - "curie": "UBERON:0001637", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001637" - }, "http://purl.obolibrary.org/obo/UBERON_0001981": { "curie": "UBERON:0001981", "hasLocalDefinition": true, @@ -1895,11 +1845,6 @@ "isPreferredRoot": false, "label": "vein", "linkedEntities": { - "UBERON:0001638": { - "curie": "UBERON:0001638", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001638" - }, "http://purl.obolibrary.org/obo/UBERON_0001981": { "curie": "UBERON:0001981", "hasLocalDefinition": true, @@ -2005,11 +1950,6 @@ "isPreferredRoot": false, "label": "hepatic portal vein", "linkedEntities": { - "UBERON:0001639": { - "curie": "UBERON:0001639", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001639" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -2232,11 +2172,6 @@ "isPreferredRoot": false, "label": "blood vessel", "linkedEntities": { - "UBERON:0001981": { - "curie": "UBERON:0001981", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001981" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -2333,11 +2268,6 @@ "isPreferredRoot": false, "label": "capillary", "linkedEntities": { - "UBERON:0001982": { - "curie": "UBERON:0001982", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001982" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -2436,11 +2366,6 @@ "isPreferredRoot": false, "label": "endothelium", "linkedEntities": { - "UBERON:0001986": { - "curie": "UBERON:0001986", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001986" - }, "http://purl.obolibrary.org/obo/UBERON_0000468": { "curie": "UBERON:0000468", "hasLocalDefinition": true, @@ -2492,11 +2417,6 @@ "isPreferredRoot": false, "label": "vasculature", "linkedEntities": { - "UBERON:0002049": { - "curie": "UBERON:0002049", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002049" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -2607,11 +2527,6 @@ "isPreferredRoot": false, "label": "trunk", "linkedEntities": { - "UBERON:0002100": { - "curie": "UBERON:0002100", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002100" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -2932,11 +2847,6 @@ "isPreferredRoot": false, "label": "liver", "linkedEntities": { - "UBERON:0002107": { - "curie": "UBERON:0002107", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002107" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -3315,11 +3225,6 @@ "isPreferredRoot": false, "label": "endocrine gland", "linkedEntities": { - "UBERON:0002368": { - "curie": "UBERON:0002368", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002368" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -3475,11 +3380,6 @@ "isPreferredRoot": false, "label": "hepatobiliary system", "linkedEntities": { - "UBERON:0002423": { - "curie": "UBERON:0002423", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002423" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -3636,11 +3536,6 @@ "isPreferredRoot": false, "label": "gland", "linkedEntities": { - "UBERON:0002530": { - "curie": "UBERON:0002530", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002530" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -3762,11 +3657,6 @@ "isPreferredRoot": false, "label": "cardiovascular system", "linkedEntities": { - "UBERON:0004535": { - "curie": "UBERON:0004535", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0004535" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -3919,11 +3809,6 @@ "isPreferredRoot": false, "label": "liver lobule", "linkedEntities": { - "UBERON:0004647": { - "curie": "UBERON:0004647", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0004647" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -4289,11 +4174,6 @@ "isPreferredRoot": false, "label": "central vein of liver", "linkedEntities": { - "UBERON:0006841": { - "curie": "UBERON:0006841", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0006841" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -4558,11 +4438,6 @@ "isPreferredRoot": false, "label": "body proper", "linkedEntities": { - "UBERON:0013702": { - "curie": "UBERON:0013702", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0013702" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, diff --git a/testcases_expected_output_api/v2/ontologies/efo-hierarchical-properties/entities.json b/testcases_expected_output_api/v2/ontologies/efo-hierarchical-properties/entities.json index f94d375c6..680873023 100644 --- a/testcases_expected_output_api/v2/ontologies/efo-hierarchical-properties/entities.json +++ b/testcases_expected_output_api/v2/ontologies/efo-hierarchical-properties/entities.json @@ -474,13 +474,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000111", - "linkedEntities": { - "IAO:0000111": { - "curie": "IAO:0000111", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000111" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", @@ -510,13 +504,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000112", - "linkedEntities": { - "IAO:0000112": { - "curie": "IAO:0000112", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000112" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", @@ -546,13 +534,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000115", - "linkedEntities": { - "IAO:0000115": { - "curie": "IAO:0000115", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000115" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", @@ -582,13 +564,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000116", - "linkedEntities": { - "IAO:0000116": { - "curie": "IAO:0000116", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000116" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", @@ -618,13 +594,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000118", - "linkedEntities": { - "IAO:0000118": { - "curie": "IAO:0000118", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000118" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", @@ -654,13 +624,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000232", - "linkedEntities": { - "IAO:0000232": { - "curie": "IAO:0000232", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000232" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", @@ -690,13 +654,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "RO_0001900", - "linkedEntities": { - "RO:0001900": { - "curie": "RO:0001900", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0001900" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", @@ -726,13 +684,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "RO_0002174", - "linkedEntities": { - "RO:0002174": { - "curie": "RO:0002174", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002174" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", @@ -762,13 +714,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "RO_0040042", - "linkedEntities": { - "RO:0040042": { - "curie": "RO:0040042", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0040042" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", @@ -820,11 +766,6 @@ "isPreferredRoot": false, "label": "anatomical system", "linkedEntities": { - "UBERON:0000467": { - "curie": "UBERON:0000467", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000467" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -969,11 +910,6 @@ "isPreferredRoot": false, "label": "multicellular organism", "linkedEntities": { - "UBERON:0000468": { - "curie": "UBERON:0000468", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000468" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -1145,11 +1081,6 @@ "isPreferredRoot": false, "label": "epithelium", "linkedEntities": { - "UBERON:0000483": { - "curie": "UBERON:0000483", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000483" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -1275,11 +1206,6 @@ "isPreferredRoot": false, "label": "abdomen", "linkedEntities": { - "UBERON:0000916": { - "curie": "UBERON:0000916", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000916" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -1471,11 +1397,6 @@ "isPreferredRoot": false, "label": "endocrine system", "linkedEntities": { - "UBERON:0000949": { - "curie": "UBERON:0000949", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000949" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -1627,11 +1548,6 @@ "isPreferredRoot": false, "label": "digestive system", "linkedEntities": { - "UBERON:0001007": { - "curie": "UBERON:0001007", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001007" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -1760,11 +1676,6 @@ "isPreferredRoot": false, "label": "circulatory system", "linkedEntities": { - "UBERON:0001009": { - "curie": "UBERON:0001009", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001009" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -1924,11 +1835,6 @@ "isPreferredRoot": false, "label": "hepatic artery", "linkedEntities": { - "UBERON:0001193": { - "curie": "UBERON:0001193", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001193" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -2299,11 +2205,6 @@ "isPreferredRoot": false, "label": "hepatic sinusoid", "linkedEntities": { - "UBERON:0001281": { - "curie": "UBERON:0001281", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001281" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -2626,11 +2527,6 @@ "isPreferredRoot": false, "label": "artery", "linkedEntities": { - "UBERON:0001637": { - "curie": "UBERON:0001637", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001637" - }, "http://purl.obolibrary.org/obo/UBERON_0001981": { "curie": "UBERON:0001981", "hasLocalDefinition": true, @@ -2678,11 +2574,6 @@ "isPreferredRoot": false, "label": "vein", "linkedEntities": { - "UBERON:0001638": { - "curie": "UBERON:0001638", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001638" - }, "http://purl.obolibrary.org/obo/UBERON_0001981": { "curie": "UBERON:0001981", "hasLocalDefinition": true, @@ -2788,11 +2679,6 @@ "isPreferredRoot": false, "label": "hepatic portal vein", "linkedEntities": { - "UBERON:0001639": { - "curie": "UBERON:0001639", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001639" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -3015,11 +2901,6 @@ "isPreferredRoot": false, "label": "blood vessel", "linkedEntities": { - "UBERON:0001981": { - "curie": "UBERON:0001981", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001981" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -3116,11 +2997,6 @@ "isPreferredRoot": false, "label": "capillary", "linkedEntities": { - "UBERON:0001982": { - "curie": "UBERON:0001982", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001982" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -3219,11 +3095,6 @@ "isPreferredRoot": false, "label": "endothelium", "linkedEntities": { - "UBERON:0001986": { - "curie": "UBERON:0001986", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001986" - }, "http://purl.obolibrary.org/obo/UBERON_0000468": { "curie": "UBERON:0000468", "hasLocalDefinition": true, @@ -3275,11 +3146,6 @@ "isPreferredRoot": false, "label": "vasculature", "linkedEntities": { - "UBERON:0002049": { - "curie": "UBERON:0002049", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002049" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -3390,11 +3256,6 @@ "isPreferredRoot": false, "label": "trunk", "linkedEntities": { - "UBERON:0002100": { - "curie": "UBERON:0002100", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002100" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -3715,11 +3576,6 @@ "isPreferredRoot": false, "label": "liver", "linkedEntities": { - "UBERON:0002107": { - "curie": "UBERON:0002107", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002107" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -4098,11 +3954,6 @@ "isPreferredRoot": false, "label": "endocrine gland", "linkedEntities": { - "UBERON:0002368": { - "curie": "UBERON:0002368", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002368" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -4258,11 +4109,6 @@ "isPreferredRoot": false, "label": "hepatobiliary system", "linkedEntities": { - "UBERON:0002423": { - "curie": "UBERON:0002423", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002423" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -4419,11 +4265,6 @@ "isPreferredRoot": false, "label": "gland", "linkedEntities": { - "UBERON:0002530": { - "curie": "UBERON:0002530", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002530" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -4545,11 +4386,6 @@ "isPreferredRoot": false, "label": "cardiovascular system", "linkedEntities": { - "UBERON:0004535": { - "curie": "UBERON:0004535", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0004535" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -4702,11 +4538,6 @@ "isPreferredRoot": false, "label": "liver lobule", "linkedEntities": { - "UBERON:0004647": { - "curie": "UBERON:0004647", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0004647" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -5072,11 +4903,6 @@ "isPreferredRoot": false, "label": "central vein of liver", "linkedEntities": { - "UBERON:0006841": { - "curie": "UBERON:0006841", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0006841" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -5341,11 +5167,6 @@ "isPreferredRoot": false, "label": "body proper", "linkedEntities": { - "UBERON:0013702": { - "curie": "UBERON:0013702", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0013702" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, diff --git a/testcases_expected_output_api/v2/ontologies/efo-hierarchical-properties/properties.json b/testcases_expected_output_api/v2/ontologies/efo-hierarchical-properties/properties.json index b934e8122..e4e0c784a 100644 --- a/testcases_expected_output_api/v2/ontologies/efo-hierarchical-properties/properties.json +++ b/testcases_expected_output_api/v2/ontologies/efo-hierarchical-properties/properties.json @@ -474,13 +474,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000111", - "linkedEntities": { - "IAO:0000111": { - "curie": "IAO:0000111", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000111" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", @@ -510,13 +504,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000112", - "linkedEntities": { - "IAO:0000112": { - "curie": "IAO:0000112", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000112" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", @@ -546,13 +534,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000115", - "linkedEntities": { - "IAO:0000115": { - "curie": "IAO:0000115", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000115" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", @@ -582,13 +564,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000116", - "linkedEntities": { - "IAO:0000116": { - "curie": "IAO:0000116", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000116" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", @@ -618,13 +594,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000118", - "linkedEntities": { - "IAO:0000118": { - "curie": "IAO:0000118", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000118" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", @@ -654,13 +624,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000232", - "linkedEntities": { - "IAO:0000232": { - "curie": "IAO:0000232", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000232" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", @@ -690,13 +654,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "RO_0001900", - "linkedEntities": { - "RO:0001900": { - "curie": "RO:0001900", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0001900" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", @@ -726,13 +684,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "RO_0002174", - "linkedEntities": { - "RO:0002174": { - "curie": "RO:0002174", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002174" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", @@ -762,13 +714,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "RO_0040042", - "linkedEntities": { - "RO:0040042": { - "curie": "RO:0040042", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0040042" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-hierarchical-properties", diff --git a/testcases_expected_output_api/v2/ontologies/efo-iri-labels/classes.json b/testcases_expected_output_api/v2/ontologies/efo-iri-labels/classes.json index 41e20a127..161ad90a3 100644 --- a/testcases_expected_output_api/v2/ontologies/efo-iri-labels/classes.json +++ b/testcases_expected_output_api/v2/ontologies/efo-iri-labels/classes.json @@ -34,11 +34,6 @@ "isPreferredRoot": false, "label": "EFO_0000400", "linkedEntities": { - "EFO:0000400": { - "curie": "EFO:0000400", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://www.ebi.ac.uk/efo/EFO_0000400" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -126,13 +121,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "nitrogen compound metabolic process", - "linkedEntities": { - "GO:0006807": { - "curie": "GO:0006807", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0006807" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-iri-labels", @@ -161,13 +150,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "GO_0008150", - "linkedEntities": { - "GO:0008150": { - "curie": "GO:0008150", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0008150" - } - }, + "linkedEntities": {}, "numDescendants": 1.0, "numHierarchicalDescendants": 1.0, "ontologyId": "efo-iri-labels", @@ -207,11 +190,6 @@ "isPreferredRoot": false, "label": "disease course", "linkedEntities": { - "OGMS:0000063": { - "curie": "OGMS:0000063", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OGMS_0000063" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, diff --git a/testcases_expected_output_api/v2/ontologies/efo-iri-labels/entities.json b/testcases_expected_output_api/v2/ontologies/efo-iri-labels/entities.json index 4af7f0124..64e8d34a6 100644 --- a/testcases_expected_output_api/v2/ontologies/efo-iri-labels/entities.json +++ b/testcases_expected_output_api/v2/ontologies/efo-iri-labels/entities.json @@ -25,13 +25,7 @@ "has part", "has_part" ], - "linkedEntities": { - "BFO:0000051": { - "curie": "BFO:0000051", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000051" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-iri-labels", @@ -66,13 +60,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "realized in", - "linkedEntities": { - "BFO:0000054": { - "curie": "BFO:0000054", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000054" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-iri-labels", @@ -121,11 +109,6 @@ "isPreferredRoot": false, "label": "EFO_0000400", "linkedEntities": { - "EFO:0000400": { - "curie": "EFO:0000400", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://www.ebi.ac.uk/efo/EFO_0000400" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -213,13 +196,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "nitrogen compound metabolic process", - "linkedEntities": { - "GO:0006807": { - "curie": "GO:0006807", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0006807" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-iri-labels", @@ -248,13 +225,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "GO_0008150", - "linkedEntities": { - "GO:0008150": { - "curie": "GO:0008150", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0008150" - } - }, + "linkedEntities": {}, "numDescendants": 1.0, "numHierarchicalDescendants": 1.0, "ontologyId": "efo-iri-labels", @@ -294,11 +265,6 @@ "isPreferredRoot": false, "label": "disease course", "linkedEntities": { - "OGMS:0000063": { - "curie": "OGMS:0000063", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OGMS_0000063" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, diff --git a/testcases_expected_output_api/v2/ontologies/efo-iri-labels/properties.json b/testcases_expected_output_api/v2/ontologies/efo-iri-labels/properties.json index 607bb94e9..4cda18046 100644 --- a/testcases_expected_output_api/v2/ontologies/efo-iri-labels/properties.json +++ b/testcases_expected_output_api/v2/ontologies/efo-iri-labels/properties.json @@ -25,13 +25,7 @@ "has part", "has_part" ], - "linkedEntities": { - "BFO:0000051": { - "curie": "BFO:0000051", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000051" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-iri-labels", @@ -66,13 +60,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "realized in", - "linkedEntities": { - "BFO:0000054": { - "curie": "BFO:0000054", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000054" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "efo-iri-labels", diff --git a/testcases_expected_output_api/v2/ontologies/genepio/classes.json b/testcases_expected_output_api/v2/ontologies/genepio/classes.json index 9b6a8ae39..01592bd3f 100644 --- a/testcases_expected_output_api/v2/ontologies/genepio/classes.json +++ b/testcases_expected_output_api/v2/ontologies/genepio/classes.json @@ -23,11 +23,6 @@ "isPreferredRoot": false, "label": "GENEPIO_0002113", "linkedEntities": { - "GENEPIO:0002113": { - "curie": "GENEPIO:0002113", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/GENEPIO_0002113" - }, "http://purl.obolibrary.org/obo/OBI_0002135": { "curie": "obi:0002135", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", diff --git a/testcases_expected_output_api/v2/ontologies/genepio/entities.json b/testcases_expected_output_api/v2/ontologies/genepio/entities.json index 9b6a8ae39..01592bd3f 100644 --- a/testcases_expected_output_api/v2/ontologies/genepio/entities.json +++ b/testcases_expected_output_api/v2/ontologies/genepio/entities.json @@ -23,11 +23,6 @@ "isPreferredRoot": false, "label": "GENEPIO_0002113", "linkedEntities": { - "GENEPIO:0002113": { - "curie": "GENEPIO:0002113", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/GENEPIO_0002113" - }, "http://purl.obolibrary.org/obo/OBI_0002135": { "curie": "obi:0002135", "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", diff --git a/testcases_expected_output_api/v2/ontologies/gitissue502/classes.json b/testcases_expected_output_api/v2/ontologies/gitissue502/classes.json index 9a701a869..1275a33c7 100644 --- a/testcases_expected_output_api/v2/ontologies/gitissue502/classes.json +++ b/testcases_expected_output_api/v2/ontologies/gitissue502/classes.json @@ -37,11 +37,6 @@ "isPreferredRoot": false, "label": "continuant", "linkedEntities": { - "BFO:0000002": { - "curie": "BFO:0000002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000002" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -86,7 +81,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -99,7 +94,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -166,11 +161,6 @@ "isPreferredRoot": false, "label": "occurrent", "linkedEntities": { - "BFO:0000003": { - "curie": "BFO:0000003", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000003" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -215,7 +205,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -228,7 +218,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -291,11 +281,6 @@ "isPreferredRoot": false, "label": "independent continuant", "linkedEntities": { - "BFO:0000004": { - "curie": "BFO:0000004", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000004" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -328,7 +313,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -341,7 +326,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -391,11 +376,6 @@ "isPreferredRoot": false, "label": "process", "linkedEntities": { - "BFO:0000015": { - "curie": "BFO:0000015", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000015" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -418,7 +398,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -431,7 +411,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -493,11 +473,6 @@ "isPreferredRoot": false, "label": "disposition", "linkedEntities": { - "BFO:0000016": { - "curie": "BFO:0000016", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000016" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -550,7 +525,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -563,7 +538,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -633,11 +608,6 @@ "isPreferredRoot": false, "label": "realizable entity", "linkedEntities": { - "BFO:0000017": { - "curie": "BFO:0000017", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000017" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -691,7 +661,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -704,7 +674,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -770,11 +740,6 @@ "isPreferredRoot": false, "label": "quality", "linkedEntities": { - "BFO:0000019": { - "curie": "BFO:0000019", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000019" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -807,7 +772,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -820,7 +785,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -877,11 +842,6 @@ "isPreferredRoot": false, "label": "specifically dependent continuant", "linkedEntities": { - "BFO:0000020": { - "curie": "BFO:0000020", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000020" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -904,7 +864,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -917,7 +877,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -978,11 +938,6 @@ "isPreferredRoot": false, "label": "role", "linkedEntities": { - "BFO:0000023": { - "curie": "BFO:0000023", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000023" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -1036,7 +991,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1049,7 +1004,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1113,11 +1068,6 @@ "isPreferredRoot": false, "label": "function", "linkedEntities": { - "BFO:0000034": { - "curie": "BFO:0000034", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000034" - }, "BFO:function": { "curie": "BFO:function", "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", @@ -1175,7 +1125,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1188,7 +1138,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1263,11 +1213,6 @@ "isPreferredRoot": false, "label": "material entity", "linkedEntities": { - "BFO:0000040": { - "curie": "BFO:0000040", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000040" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -1332,7 +1277,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1345,7 +1290,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1413,11 +1358,6 @@ "isPreferredRoot": false, "label": "immaterial entity", "linkedEntities": { - "BFO:0000141": { - "curie": "BFO:0000141", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000141" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -1471,7 +1411,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1484,7 +1424,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1558,11 +1498,6 @@ "isPreferredRoot": false, "label": "cell", "linkedEntities": { - "CL:0000000": { - "curie": "CL:0000000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000000" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -1666,7 +1601,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1679,7 +1614,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1766,11 +1701,6 @@ "isPreferredRoot": false, "label": "native cell", "linkedEntities": { - "CL:0000003": { - "curie": "CL:0000003", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000003" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -1842,7 +1772,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1855,7 +1785,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1931,11 +1861,6 @@ "isPreferredRoot": false, "label": "germ line cell", "linkedEntities": { - "CL:0000039": { - "curie": "CL:0000039", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000039" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -2048,7 +1973,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2061,7 +1986,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2139,11 +2064,6 @@ "isPreferredRoot": false, "label": "electrically active cell", "linkedEntities": { - "CL:0000211": { - "curie": "CL:0000211", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000211" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -2225,7 +2145,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2238,7 +2158,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2313,11 +2233,6 @@ "isPreferredRoot": false, "label": "eukaryotic cell", "linkedEntities": { - "CL:0000255": { - "curie": "CL:0000255", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000255" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -2420,7 +2335,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2433,7 +2348,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2513,11 +2428,6 @@ "isPreferredRoot": false, "label": "electrically responsive cell", "linkedEntities": { - "CL:0000393": { - "curie": "CL:0000393", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000393" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -2609,7 +2519,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2622,7 +2532,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2691,11 +2601,6 @@ "isPreferredRoot": false, "label": "electrically signaling cell", "linkedEntities": { - "CL:0000404": { - "curie": "CL:0000404", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000404" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -2787,7 +2692,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2800,7 +2705,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2904,11 +2809,6 @@ "isPreferredRoot": false, "label": "neuron", "linkedEntities": { - "CL:0000540": { - "curie": "CL:0000540", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000540" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -3153,7 +3053,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3166,7 +3066,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -3268,11 +3168,6 @@ "isPreferredRoot": false, "label": "animal cell", "linkedEntities": { - "CL:0000548": { - "curie": "CL:0000548", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000548" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -3396,7 +3291,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3409,7 +3304,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -3499,11 +3394,6 @@ "isPreferredRoot": false, "label": "germ cell", "linkedEntities": { - "CL:0000586": { - "curie": "CL:0000586", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000586" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -3637,7 +3527,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3650,7 +3540,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -3771,11 +3661,6 @@ "isPreferredRoot": false, "label": "neural cell", "linkedEntities": { - "CL:0002319": { - "curie": "CL:0002319", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0002319" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -3960,7 +3845,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3973,7 +3858,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -4066,11 +3951,6 @@ "isPreferredRoot": false, "label": "somatic cell", "linkedEntities": { - "CL:0002371": { - "curie": "CL:0002371", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0002371" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -4172,7 +4052,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4185,7 +4065,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -4234,11 +4114,6 @@ "isPreferredRoot": false, "label": "reproduction", "linkedEntities": { - "GO:0000003": { - "curie": "GO:0000003", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0000003" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -4302,7 +4177,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4315,7 +4190,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -4409,11 +4284,6 @@ "isPreferredRoot": false, "label": "action potential", "linkedEntities": { - "GO:0001508": { - "curie": "GO:0001508", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0001508" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -4476,7 +4346,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4489,7 +4359,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -4586,11 +4456,6 @@ "isPreferredRoot": false, "label": "formation of primary germ layer", "linkedEntities": { - "GO:0001704": { - "curie": "GO:0001704", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0001704" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -4714,7 +4579,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4727,7 +4592,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -4828,11 +4693,6 @@ "isPreferredRoot": false, "label": "ectoderm formation", "linkedEntities": { - "GO:0001705": { - "curie": "GO:0001705", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0001705" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -4986,7 +4846,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4999,7 +4859,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -5111,11 +4971,6 @@ "isPreferredRoot": false, "label": "endoderm formation", "linkedEntities": { - "GO:0001706": { - "curie": "GO:0001706", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0001706" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -5269,7 +5124,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5282,7 +5137,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -5396,11 +5251,6 @@ "isPreferredRoot": false, "label": "mesoderm formation", "linkedEntities": { - "GO:0001707": { - "curie": "GO:0001707", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0001707" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -5574,7 +5424,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5587,7 +5437,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -5706,11 +5556,6 @@ "isPreferredRoot": false, "label": "embryonic epithelial tube formation", "linkedEntities": { - "GO:0001838": { - "curie": "GO:0001838", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0001838" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -5924,7 +5769,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5937,7 +5782,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -6052,11 +5897,6 @@ "isPreferredRoot": false, "label": "neural tube formation", "linkedEntities": { - "GO:0001841": { - "curie": "GO:0001841", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0001841" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -6351,7 +6191,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6364,7 +6204,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -6470,11 +6310,6 @@ "isPreferredRoot": false, "label": "morphogenesis of an epithelium", "linkedEntities": { - "GO:0002009": { - "curie": "GO:0002009", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0002009" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -6568,7 +6403,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6581,7 +6416,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -6647,11 +6482,6 @@ "isPreferredRoot": false, "label": "system process", "linkedEntities": { - "GO:0003008": { - "curie": "GO:0003008", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0003008" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -6673,7 +6503,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6686,7 +6516,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -6735,11 +6565,6 @@ "isPreferredRoot": false, "label": "signaling receptor binding", "linkedEntities": { - "GO:0005102": { - "curie": "GO:0005102", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0005102" - }, "http://purl.obolibrary.org/obo/GO_0005515": { "curie": "GO:0005515", "hasLocalDefinition": true, @@ -6751,7 +6576,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6764,7 +6589,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -6839,11 +6664,6 @@ "isPreferredRoot": false, "label": "hormone activity", "linkedEntities": { - "GO:0005179": { - "curie": "GO:0005179", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0005179" - }, "http://purl.obolibrary.org/obo/GO_0005102": { "curie": "GO:0005102", "hasLocalDefinition": true, @@ -7015,7 +6835,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7028,7 +6848,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -7105,11 +6925,6 @@ "isPreferredRoot": false, "label": "gonadotropin hormone-releasing hormone activity", "linkedEntities": { - "GO:0005183": { - "curie": "GO:0005183", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0005183" - }, "http://purl.obolibrary.org/obo/GO_0005102": { "curie": "GO:0005102", "hasLocalDefinition": true, @@ -7315,7 +7130,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7328,7 +7143,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -7382,11 +7197,6 @@ "isPreferredRoot": false, "label": "protein binding", "linkedEntities": { - "GO:0005515": { - "curie": "GO:0005515", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0005515" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -7409,7 +7219,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7477,11 +7287,6 @@ "isPreferredRoot": false, "label": "transport", "linkedEntities": { - "GO:0006810": { - "curie": "GO:0006810", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0006810" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -7513,7 +7318,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7526,7 +7331,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -7585,11 +7390,6 @@ "isPreferredRoot": false, "label": "monoatomic ion transport", "linkedEntities": { - "GO:0006811": { - "curie": "GO:0006811", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0006811" - }, "http://purl.obolibrary.org/obo/GO_0006810": { "curie": "GO:0006810", "hasLocalDefinition": true, @@ -7631,7 +7431,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7644,7 +7444,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -7699,11 +7499,6 @@ "isPreferredRoot": false, "label": "cell communication", "linkedEntities": { - "GO:0007154": { - "curie": "GO:0007154", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007154" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -7756,7 +7551,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7769,7 +7564,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -7921,11 +7716,6 @@ "isPreferredRoot": false, "label": "signal transduction", "linkedEntities": { - "GO:0007165": { - "curie": "GO:0007165", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007165" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -8049,7 +7839,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8062,7 +7852,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -8180,11 +7970,6 @@ "isPreferredRoot": false, "label": "cell-cell signaling", "linkedEntities": { - "GO:0007267": { - "curie": "GO:0007267", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007267" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -8267,7 +8052,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8280,7 +8065,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -8362,11 +8147,6 @@ "isPreferredRoot": false, "label": "chemical synaptic transmission", "linkedEntities": { - "GO:0007268": { - "curie": "GO:0007268", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007268" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -8489,7 +8269,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8502,7 +8282,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -8581,11 +8361,6 @@ "isPreferredRoot": false, "label": "multicellular organism development", "linkedEntities": { - "GO:0007275": { - "curie": "GO:0007275", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007275" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -8668,7 +8443,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8681,7 +8456,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -8799,11 +8574,6 @@ "isPreferredRoot": false, "label": "gamete generation", "linkedEntities": { - "GO:0007276": { - "curie": "GO:0007276", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007276" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -8918,7 +8688,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8931,7 +8701,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -9036,11 +8806,6 @@ "isPreferredRoot": false, "label": "gastrulation", "linkedEntities": { - "GO:0007369": { - "curie": "GO:0007369", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007369" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -9205,7 +8970,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9218,7 +8983,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -9336,11 +9101,6 @@ "isPreferredRoot": false, "label": "ectoderm development", "linkedEntities": { - "GO:0007398": { - "curie": "GO:0007398", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007398" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -9403,7 +9163,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9416,7 +9176,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -9488,11 +9248,6 @@ "isPreferredRoot": false, "label": "nervous system development", "linkedEntities": { - "GO:0007399": { - "curie": "GO:0007399", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007399" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -9575,7 +9330,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9588,7 +9343,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -9658,11 +9413,6 @@ "isPreferredRoot": false, "label": "endoderm development", "linkedEntities": { - "GO:0007492": { - "curie": "GO:0007492", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007492" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -9725,7 +9475,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9738,7 +9488,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -9808,11 +9558,6 @@ "isPreferredRoot": false, "label": "mesoderm development", "linkedEntities": { - "GO:0007498": { - "curie": "GO:0007498", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007498" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -9875,7 +9620,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9888,7 +9633,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -9942,11 +9687,6 @@ "isPreferredRoot": false, "label": "biological_process", "linkedEntities": { - "GO:0008150": { - "curie": "GO:0008150", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0008150" - }, "http://purl.obolibrary.org/obo/GO_0050789": { "curie": "GO:0050789", "hasLocalDefinition": true, @@ -9990,7 +9730,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10093,11 +9833,6 @@ "isPreferredRoot": false, "label": "fertilization", "linkedEntities": { - "GO:0009566": { - "curie": "GO:0009566", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0009566" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -10182,7 +9917,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10195,7 +9930,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -10295,11 +10030,6 @@ "isPreferredRoot": false, "label": "anatomical structure morphogenesis", "linkedEntities": { - "GO:0009653": { - "curie": "GO:0009653", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0009653" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -10363,7 +10093,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10376,7 +10106,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -10459,11 +10189,6 @@ "isPreferredRoot": false, "label": "embryo development", "linkedEntities": { - "GO:0009790": { - "curie": "GO:0009790", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0009790" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -10567,7 +10292,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10580,7 +10305,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -10695,11 +10420,6 @@ "isPreferredRoot": false, "label": "post-embryonic development", "linkedEntities": { - "GO:0009791": { - "curie": "GO:0009791", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0009791" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -10794,7 +10514,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10807,7 +10527,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -10892,11 +10612,6 @@ "isPreferredRoot": false, "label": "embryo development ending in birth or egg hatching", "linkedEntities": { - "GO:0009792": { - "curie": "GO:0009792", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0009792" - }, "http://purl.obolibrary.org/obo/GO_0007275": { "curie": "GO:0007275", "hasLocalDefinition": true, @@ -10958,7 +10673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10971,7 +10686,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -11028,11 +10743,6 @@ "isPreferredRoot": false, "label": "tissue development", "linkedEntities": { - "GO:0009888": { - "curie": "GO:0009888", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0009888" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -11085,7 +10795,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -11098,7 +10808,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -11183,11 +10893,6 @@ "isPreferredRoot": false, "label": "hormone transport", "linkedEntities": { - "GO:0009914": { - "curie": "GO:0009914", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0009914" - }, "http://purl.obolibrary.org/obo/GO_0006810": { "curie": "GO:0006810", "hasLocalDefinition": true, @@ -11259,7 +10964,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -11272,7 +10977,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -11321,11 +11026,6 @@ "isPreferredRoot": false, "label": "cellular process", "linkedEntities": { - "GO:0009987": { - "curie": "GO:0009987", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0009987" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -11358,7 +11058,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -11371,7 +11071,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -11439,11 +11139,6 @@ "isPreferredRoot": false, "label": "regulation of hormone levels", "linkedEntities": { - "GO:0010817": { - "curie": "GO:0010817", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0010817" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -11475,7 +11170,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -11488,7 +11183,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -11531,13 +11226,8 @@ "isPreferredRoot": false, "label": "kinase activity", "linkedEntities": { - "GO:0016301": { - "curie": "GO:0016301", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0016301" - }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -11615,11 +11305,6 @@ "isPreferredRoot": false, "label": "morphogenesis of embryonic epithelium", "linkedEntities": { - "GO:0016331": { - "curie": "GO:0016331", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0016331" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -11762,7 +11447,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -11775,7 +11460,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -11881,11 +11566,6 @@ "isPreferredRoot": false, "label": "transmission of nerve impulse", "linkedEntities": { - "GO:0019226": { - "curie": "GO:0019226", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0019226" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -12010,7 +11690,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12023,7 +11703,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -12124,11 +11804,6 @@ "isPreferredRoot": false, "label": "sexual reproduction", "linkedEntities": { - "GO:0019953": { - "curie": "GO:0019953", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0019953" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -12181,7 +11856,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12194,7 +11869,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -12333,11 +12008,6 @@ "isPreferredRoot": false, "label": "neural tube development", "linkedEntities": { - "GO:0021915": { - "curie": "GO:0021915", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0021915" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -12501,7 +12171,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12514,7 +12184,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -12623,11 +12293,6 @@ "isPreferredRoot": false, "label": "reproductive process", "linkedEntities": { - "GO:0022414": { - "curie": "GO:0022414", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0022414" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -12692,7 +12357,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12705,7 +12370,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -12784,11 +12449,6 @@ "isPreferredRoot": false, "label": "signaling", "linkedEntities": { - "GO:0023052": { - "curie": "GO:0023052", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0023052" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -12841,7 +12501,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12854,7 +12514,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -12959,11 +12619,6 @@ "isPreferredRoot": false, "label": "signal release", "linkedEntities": { - "GO:0023061": { - "curie": "GO:0023061", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0023061" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -13117,7 +12772,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13130,7 +12785,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -13190,11 +12845,6 @@ "isPreferredRoot": false, "label": "signaling receptor regulator activity", "linkedEntities": { - "GO:0030545": { - "curie": "GO:0030545", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0030545" - }, "http://purl.obolibrary.org/obo/GO_0098772": { "curie": "GO:0098772", "hasLocalDefinition": true, @@ -13206,7 +12856,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13219,7 +12869,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -13285,11 +12935,6 @@ "isPreferredRoot": false, "label": "signaling receptor activator activity", "linkedEntities": { - "GO:0030546": { - "curie": "GO:0030546", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0030546" - }, "http://purl.obolibrary.org/obo/GO_0030545": { "curie": "GO:0030545", "hasLocalDefinition": true, @@ -13321,7 +12966,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13334,7 +12979,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -13383,11 +13028,6 @@ "isPreferredRoot": false, "label": "multicellular organismal process", "linkedEntities": { - "GO:0032501": { - "curie": "GO:0032501", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0032501" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -13399,7 +13039,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13412,7 +13052,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -13461,11 +13101,6 @@ "isPreferredRoot": false, "label": "developmental process", "linkedEntities": { - "GO:0032502": { - "curie": "GO:0032502", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0032502" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -13522,7 +13157,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13535,7 +13170,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -13625,11 +13260,6 @@ "isPreferredRoot": false, "label": "multicellular organism reproduction", "linkedEntities": { - "GO:0032504": { - "curie": "GO:0032504", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0032504" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -13682,7 +13312,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13695,7 +13325,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -13780,11 +13410,6 @@ "isPreferredRoot": false, "label": "secretion by cell", "linkedEntities": { - "GO:0032940": { - "curie": "GO:0032940", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0032940" - }, "http://purl.obolibrary.org/obo/GO_0006810": { "curie": "GO:0006810", "hasLocalDefinition": true, @@ -13856,7 +13481,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13869,7 +13494,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -13943,11 +13568,6 @@ "isPreferredRoot": false, "label": "monoatomic ion transmembrane transport", "linkedEntities": { - "GO:0034220": { - "curie": "GO:0034220", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0034220" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -14040,7 +13660,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14053,7 +13673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -14149,11 +13769,6 @@ "isPreferredRoot": false, "label": "tube formation", "linkedEntities": { - "GO:0035148": { - "curie": "GO:0035148", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0035148" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -14267,7 +13882,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14280,7 +13895,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -14374,11 +13989,6 @@ "isPreferredRoot": false, "label": "tube morphogenesis", "linkedEntities": { - "GO:0035239": { - "curie": "GO:0035239", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0035239" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -14482,7 +14092,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14495,7 +14105,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -14598,11 +14208,6 @@ "isPreferredRoot": false, "label": "tube development", "linkedEntities": { - "GO:0035295": { - "curie": "GO:0035295", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0035295" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -14686,7 +14291,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14699,7 +14304,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -14764,11 +14369,6 @@ "isPreferredRoot": false, "label": "signaling receptor activity", "linkedEntities": { - "GO:0038023": { - "curie": "GO:0038023", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0038023" - }, "http://purl.obolibrary.org/obo/GO_0048018": { "curie": "GO:0048018", "hasLocalDefinition": true, @@ -14791,7 +14391,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14886,11 +14486,6 @@ "isPreferredRoot": false, "label": "embryonic cleavage", "linkedEntities": { - "GO:0040016": { - "curie": "GO:0040016", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0040016" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -15015,7 +14610,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15028,7 +14623,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -15115,11 +14710,6 @@ "isPreferredRoot": false, "label": "regulation of membrane potential", "linkedEntities": { - "GO:0042391": { - "curie": "GO:0042391", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0042391" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -15172,7 +14762,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15185,7 +14775,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -15261,11 +14851,6 @@ "isPreferredRoot": false, "label": "chordate embryonic development", "linkedEntities": { - "GO:0043009": { - "curie": "GO:0043009", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0043009" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -15358,7 +14943,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15371,7 +14956,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -15425,11 +15010,6 @@ "isPreferredRoot": false, "label": "synapse", "linkedEntities": { - "GO:0045202": { - "curie": "GO:0045202", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0045202" - }, "http://purl.obolibrary.org/obo/BFO_0000066": { "curie": "BFO:0000066", "hasLocalDefinition": true, @@ -15452,7 +15032,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15553,11 +15133,6 @@ "isPreferredRoot": false, "label": "hormone secretion", "linkedEntities": { - "GO:0046879": { - "curie": "GO:0046879", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0046879" - }, "http://purl.obolibrary.org/obo/GO_0006810": { "curie": "GO:0006810", "hasLocalDefinition": true, @@ -15750,7 +15325,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15763,7 +15338,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -15833,11 +15408,6 @@ "isPreferredRoot": false, "label": "secretion", "linkedEntities": { - "GO:0046903": { - "curie": "GO:0046903", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0046903" - }, "http://purl.obolibrary.org/obo/GO_0006810": { "curie": "GO:0006810", "hasLocalDefinition": true, @@ -15900,7 +15470,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15913,7 +15483,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -16030,11 +15600,6 @@ "isPreferredRoot": false, "label": "receptor ligand activity", "linkedEntities": { - "GO:0048018": { - "curie": "GO:0048018", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048018" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -16239,7 +15804,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -16252,7 +15817,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -16360,11 +15925,6 @@ "isPreferredRoot": false, "label": "mesoderm morphogenesis", "linkedEntities": { - "GO:0048332": { - "curie": "GO:0048332", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048332" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -16468,7 +16028,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -16481,7 +16041,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -16560,11 +16120,6 @@ "isPreferredRoot": false, "label": "animal organ development", "linkedEntities": { - "GO:0048513": { - "curie": "GO:0048513", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048513" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -16617,7 +16172,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -16630,7 +16185,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -16724,11 +16279,6 @@ "isPreferredRoot": false, "label": "embryonic morphogenesis", "linkedEntities": { - "GO:0048598": { - "curie": "GO:0048598", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048598" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -16846,7 +16396,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -16859,7 +16409,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -16961,11 +16511,6 @@ "isPreferredRoot": false, "label": "multicellular organismal reproductive process", "linkedEntities": { - "GO:0048609": { - "curie": "GO:0048609", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048609" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -17039,7 +16584,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17052,7 +16597,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -17142,11 +16687,6 @@ "isPreferredRoot": false, "label": "anatomical structure formation involved in morphogenesis", "linkedEntities": { - "GO:0048646": { - "curie": "GO:0048646", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048646" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -17210,7 +16750,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17223,7 +16763,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -17315,11 +16855,6 @@ "isPreferredRoot": false, "label": "tissue morphogenesis", "linkedEntities": { - "GO:0048729": { - "curie": "GO:0048729", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048729" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -17393,7 +16928,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17406,7 +16941,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -17498,11 +17033,6 @@ "isPreferredRoot": false, "label": "system development", "linkedEntities": { - "GO:0048731": { - "curie": "GO:0048731", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048731" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -17576,7 +17106,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17589,7 +17119,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -17655,11 +17185,6 @@ "isPreferredRoot": false, "label": "anatomical structure development", "linkedEntities": { - "GO:0048856": { - "curie": "GO:0048856", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048856" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -17702,7 +17227,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17715,7 +17240,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -17789,11 +17314,6 @@ "isPreferredRoot": false, "label": "regulation of biological process", "linkedEntities": { - "GO:0050789": { - "curie": "GO:0050789", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0050789" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -17826,7 +17346,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17839,7 +17359,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -17915,11 +17435,6 @@ "isPreferredRoot": false, "label": "regulation of cellular process", "linkedEntities": { - "GO:0050794": { - "curie": "GO:0050794", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0050794" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -17972,7 +17487,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17985,7 +17500,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -18053,11 +17568,6 @@ "isPreferredRoot": false, "label": "nervous system process", "linkedEntities": { - "GO:0050877": { - "curie": "GO:0050877", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0050877" - }, "http://purl.obolibrary.org/obo/GO_0003008": { "curie": "GO:0003008", "hasLocalDefinition": true, @@ -18110,7 +17620,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18123,7 +17633,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -18183,11 +17693,6 @@ "isPreferredRoot": false, "label": "response to stimulus", "linkedEntities": { - "GO:0050896": { - "curie": "GO:0050896", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0050896" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -18199,7 +17704,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18212,7 +17717,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -18261,11 +17766,6 @@ "isPreferredRoot": false, "label": "localization", "linkedEntities": { - "GO:0051179": { - "curie": "GO:0051179", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0051179" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -18277,7 +17777,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18290,7 +17790,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -18345,11 +17845,6 @@ "isPreferredRoot": false, "label": "establishment of localization", "linkedEntities": { - "GO:0051234": { - "curie": "GO:0051234", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0051234" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -18371,7 +17866,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18384,7 +17879,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -18439,11 +17934,6 @@ "isPreferredRoot": false, "label": "cell division", "linkedEntities": { - "GO:0051301": { - "curie": "GO:0051301", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0051301" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -18465,7 +17955,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18478,7 +17968,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -18544,11 +18034,6 @@ "isPreferredRoot": false, "label": "cellular response to stimulus", "linkedEntities": { - "GO:0051716": { - "curie": "GO:0051716", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0051716" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -18601,7 +18086,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18614,7 +18099,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -18695,11 +18180,6 @@ "isPreferredRoot": false, "label": "transmembrane transport", "linkedEntities": { - "GO:0055085": { - "curie": "GO:0055085", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0055085" - }, "http://purl.obolibrary.org/obo/GO_0006810": { "curie": "GO:0006810", "hasLocalDefinition": true, @@ -18751,7 +18231,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18764,7 +18244,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -18823,11 +18303,6 @@ "isPreferredRoot": false, "label": "epithelium development", "linkedEntities": { - "GO:0060429": { - "curie": "GO:0060429", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0060429" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -18890,7 +18365,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18903,7 +18378,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -18992,11 +18467,6 @@ "isPreferredRoot": false, "label": "epithelial tube morphogenesis", "linkedEntities": { - "GO:0060562": { - "curie": "GO:0060562", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0060562" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -19139,7 +18609,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19152,7 +18622,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -19212,11 +18682,6 @@ "isPreferredRoot": false, "label": "biological regulation", "linkedEntities": { - "GO:0065007": { - "curie": "GO:0065007", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0065007" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -19228,7 +18693,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19241,7 +18706,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -19296,11 +18761,6 @@ "isPreferredRoot": false, "label": "regulation of biological quality", "linkedEntities": { - "GO:0065008": { - "curie": "GO:0065008", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0065008" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -19322,7 +18782,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19335,7 +18795,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -19427,11 +18887,6 @@ "isPreferredRoot": false, "label": "epithelial tube formation", "linkedEntities": { - "GO:0072175": { - "curie": "GO:0072175", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0072175" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -19605,7 +19060,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19618,7 +19073,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -19679,11 +19134,6 @@ "isPreferredRoot": false, "label": "molecular function regulator activity", "linkedEntities": { - "GO:0098772": { - "curie": "GO:0098772", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0098772" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -19706,7 +19156,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19719,7 +19169,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -19799,11 +19249,6 @@ "isPreferredRoot": false, "label": "anterograde trans-synaptic signaling", "linkedEntities": { - "GO:0098916": { - "curie": "GO:0098916", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0098916" - }, "http://purl.obolibrary.org/obo/GO_0007154": { "curie": "GO:0007154", "hasLocalDefinition": true, @@ -19895,7 +19340,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19908,7 +19353,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -19981,11 +19426,6 @@ "isPreferredRoot": false, "label": "synaptic signaling", "linkedEntities": { - "GO:0099536": { - "curie": "GO:0099536", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0099536" - }, "http://purl.obolibrary.org/obo/BFO_0000066": { "curie": "BFO:0000066", "hasLocalDefinition": true, @@ -20078,7 +19518,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -20091,7 +19531,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -20169,11 +19609,6 @@ "isPreferredRoot": false, "label": "trans-synaptic signaling", "linkedEntities": { - "GO:0099537": { - "curie": "GO:0099537", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0099537" - }, "http://purl.obolibrary.org/obo/GO_0007154": { "curie": "GO:0007154", "hasLocalDefinition": true, @@ -20255,7 +19690,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -20268,7 +19703,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -20338,11 +19773,6 @@ "isPreferredRoot": false, "label": "export from cell", "linkedEntities": { - "GO:0140352": { - "curie": "GO:0140352", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0140352" - }, "http://purl.obolibrary.org/obo/GO_0006810": { "curie": "GO:0006810", "hasLocalDefinition": true, @@ -20394,7 +19824,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -20407,7 +19837,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -20456,11 +19886,6 @@ "isPreferredRoot": false, "label": "molecular function activator activity", "linkedEntities": { - "GO:0140677": { - "curie": "GO:0140677", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0140677" - }, "http://purl.obolibrary.org/obo/GO_0098772": { "curie": "GO:0098772", "hasLocalDefinition": true, @@ -20472,7 +19897,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -20485,7 +19910,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -20531,11 +19956,6 @@ "isPreferredRoot": false, "label": "Obesity", "linkedEntities": { - "HP:0001513": { - "curie": "HP:0001513", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/HP_0001513" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -20569,7 +19989,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -21004,10 +20424,13 @@ "url": "http://purl.obolibrary.org/obo/NCIT_C2991" }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -21015,10 +20438,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -21053,7 +20479,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_377788" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -21066,7 +20492,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -21079,7 +20505,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -21589,10 +21015,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -21600,10 +21029,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -21633,7 +21065,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -21646,7 +21078,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -21659,7 +21091,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -22122,10 +21554,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -22133,10 +21568,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -22155,10 +21593,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -22177,7 +21618,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -22190,7 +21631,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -22203,7 +21644,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -22798,10 +22239,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -22809,10 +22253,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -22842,7 +22289,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -22855,7 +22302,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -22868,7 +22315,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -23448,10 +22895,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -23459,10 +22909,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -23470,10 +22923,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "hasRelatedSynonym", + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasRelatedSynonym", - "numAppearsIn": 1.0, + "label": "has_related_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -23481,10 +22937,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonymType": { - "curie": "hasSynonymType", + "curie": "OIO:hasSynonymType", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasSynonymType", - "numAppearsIn": 1.0, + "label": "has_synonym_type", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -23514,7 +22973,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -23527,7 +22986,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -23540,7 +22999,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -24037,10 +23496,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -24048,10 +23510,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -24081,7 +23546,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -24094,7 +23559,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -24107,7 +23572,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -24648,10 +24113,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": { - "curie": "hasBroadSynonym", + "curie": "OIO:hasBroadSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasBroadSynonym", - "numAppearsIn": 1.0, + "label": "has_broad_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -24659,10 +24127,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -24670,10 +24141,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -24681,10 +24155,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": { - "curie": "hasNarrowSynonym", + "curie": "OIO:hasNarrowSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasNarrowSynonym", - "numAppearsIn": 1.0, + "label": "has_narrow_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -24692,10 +24169,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "hasRelatedSynonym", + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasRelatedSynonym", - "numAppearsIn": 1.0, + "label": "has_related_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -24714,10 +24194,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -24736,7 +24219,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -24749,7 +24232,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -24762,7 +24245,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -24775,7 +24258,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -25217,10 +24700,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -25250,7 +24736,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -25263,7 +24749,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -25276,7 +24762,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -25739,10 +25225,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -25750,10 +25239,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -25772,10 +25264,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -25794,7 +25289,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -25807,7 +25302,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -25820,7 +25315,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -26491,10 +25986,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -26502,10 +26000,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -26524,10 +26025,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -26546,7 +26050,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -26559,7 +26063,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -26572,7 +26076,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -26585,7 +26089,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -27139,10 +26643,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -27150,10 +26657,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -27161,10 +26671,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "hasRelatedSynonym", + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasRelatedSynonym", - "numAppearsIn": 1.0, + "label": "has_related_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -27183,10 +26696,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -27205,7 +26721,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -27218,7 +26734,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -27231,7 +26747,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -27816,10 +27332,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -27827,10 +27346,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -27849,10 +27371,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -27871,7 +27396,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -27884,7 +27409,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -27897,7 +27422,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -29121,10 +28646,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -29132,10 +28660,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -29143,10 +28674,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "hasRelatedSynonym", + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasRelatedSynonym", - "numAppearsIn": 1.0, + "label": "has_related_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -29154,10 +28688,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonymType": { - "curie": "hasSynonymType", + "curie": "OIO:hasSynonymType", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasSynonymType", - "numAppearsIn": 1.0, + "label": "has_synonym_type", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -29176,10 +28713,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -29203,7 +28743,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_739" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -29216,7 +28756,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "seeAlso", + "curie": "RDFS:seeAlso", "definedBy": [ "rdfs" ], @@ -29229,7 +28769,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -29242,7 +28782,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#closeMatch": { - "curie": "closeMatch", + "curie": "SKOS:closeMatch", "definedBy": [ "skos" ], @@ -29256,7 +28796,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -29900,10 +29440,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -29911,10 +29454,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -29933,10 +29479,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -29955,7 +29504,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -29968,7 +29517,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -29981,7 +29530,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -29994,7 +29543,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -30322,10 +29871,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -30344,10 +29896,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -30371,7 +29926,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_101957" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -30384,7 +29939,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -30397,7 +29952,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -30410,7 +29965,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -30689,10 +30244,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -30700,10 +30258,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -30722,10 +30283,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -30744,7 +30308,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -30757,7 +30321,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -31064,10 +30628,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -31086,10 +30653,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -31113,7 +30683,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_139024" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -31126,7 +30696,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -31139,7 +30709,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -31152,7 +30722,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -31488,10 +31058,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -31499,10 +31072,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -31521,10 +31097,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -31548,7 +31127,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_156643" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -31561,7 +31140,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -31574,7 +31153,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -32163,10 +31742,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -32185,10 +31767,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -32212,7 +31797,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_174590" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -32225,7 +31810,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -32238,7 +31823,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -32512,10 +32097,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -32534,10 +32122,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -32561,7 +32152,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_180208" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -32574,7 +32165,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -32587,7 +32178,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -32600,7 +32191,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -32993,10 +32584,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -33004,10 +32598,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -33026,10 +32623,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -33053,7 +32653,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_202940" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -33066,7 +32666,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -33079,7 +32679,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -33092,7 +32692,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -33616,10 +33216,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -33627,10 +33230,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -33649,10 +33255,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -33676,7 +33285,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_240371" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -33689,7 +33298,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -33702,7 +33311,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -33715,7 +33324,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -34422,10 +34031,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -34433,10 +34045,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -34444,10 +34059,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": { - "curie": "hasNarrowSynonym", + "curie": "OIO:hasNarrowSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasNarrowSynonym", - "numAppearsIn": 1.0, + "label": "has_narrow_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -34455,10 +34073,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "hasRelatedSynonym", + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasRelatedSynonym", - "numAppearsIn": 1.0, + "label": "has_related_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -34477,10 +34098,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -34504,7 +34128,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_432" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -34517,7 +34141,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -34530,7 +34154,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -35318,10 +34942,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -35329,10 +34956,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -35340,10 +34970,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "hasRelatedSynonym", + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasRelatedSynonym", - "numAppearsIn": 1.0, + "label": "has_related_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -35362,10 +34995,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -35389,7 +35025,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_68335" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -35402,7 +35038,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -35415,7 +35051,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -35929,10 +35565,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -35940,10 +35579,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "hasRelatedSynonym", + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasRelatedSynonym", - "numAppearsIn": 1.0, + "label": "has_related_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -35951,10 +35593,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonymType": { - "curie": "hasSynonymType", + "curie": "OIO:hasSynonymType", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasSynonymType", - "numAppearsIn": 1.0, + "label": "has_synonym_type", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -35973,10 +35618,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -36000,7 +35648,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_68341" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -36013,7 +35661,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -36026,7 +35674,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -36660,10 +36308,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -36671,10 +36322,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -36693,10 +36347,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -36720,7 +36377,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_77828" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -36733,7 +36390,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -36746,7 +36403,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -37287,10 +36944,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -37298,10 +36958,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -37320,10 +36983,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -37347,7 +37013,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_93890" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -37360,7 +37026,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -37373,7 +37039,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -37744,10 +37410,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -37766,10 +37435,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -37793,7 +37465,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_95488" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -37806,7 +37478,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -37819,7 +37491,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -37997,10 +37669,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -38008,10 +37683,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -38041,7 +37719,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -38054,7 +37732,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -38067,7 +37745,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -38236,10 +37914,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -38258,7 +37939,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -38271,7 +37952,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -38448,10 +38129,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -38470,7 +38154,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -38483,7 +38167,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -38625,7 +38309,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -38638,7 +38322,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -38846,10 +38530,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -38857,10 +38544,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -38879,7 +38569,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -38892,7 +38582,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -39059,7 +38749,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -39072,7 +38762,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -39301,10 +38991,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -39312,10 +39005,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -39345,7 +39041,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -39358,7 +39054,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -39651,10 +39347,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -39673,10 +39372,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -39695,7 +39397,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -39708,7 +39410,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -39721,7 +39423,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -39862,7 +39564,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -39875,7 +39577,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -40075,10 +39777,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -40086,10 +39791,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "hasRelatedSynonym", + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasRelatedSynonym", - "numAppearsIn": 1.0, + "label": "has_related_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -40119,7 +39827,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -40132,7 +39840,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -40453,10 +40161,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -40464,10 +40175,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -40497,7 +40211,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -40510,7 +40224,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -40848,10 +40562,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -40881,7 +40598,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -40894,7 +40611,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -41253,10 +40970,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -41286,7 +41006,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -41299,7 +41019,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -41312,7 +41032,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -41562,10 +41282,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -41573,10 +41296,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -41595,10 +41321,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -41617,7 +41346,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -41630,7 +41359,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -41730,11 +41459,6 @@ "isPreferredRoot": false, "label": "Xenoturbellida", "linkedEntities": { - "NCBITaxon:110814": { - "curie": "NCBITaxon:110814", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=110814" - }, "http://purl.obolibrary.org/obo/NCBITaxon_1312402": { "curie": "NCBITaxon:1312402", "hasLocalDefinition": true, @@ -41806,7 +41530,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -41819,7 +41543,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -41888,11 +41612,6 @@ "isPreferredRoot": false, "label": "Xenoturbella", "linkedEntities": { - "NCBITaxon:110815": { - "curie": "NCBITaxon:110815", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=110815" - }, "http://purl.obolibrary.org/obo/NCBITaxon_110814": { "curie": "NCBITaxon:110814", "hasLocalDefinition": true, @@ -41984,7 +41703,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -41997,7 +41716,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -42070,11 +41789,6 @@ "isPreferredRoot": false, "label": "Teleostomi", "linkedEntities": { - "NCBITaxon:117570": { - "curie": "NCBITaxon:117570", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=117570" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -42186,7 +41900,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -42199,7 +41913,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -42274,11 +41988,6 @@ "isPreferredRoot": false, "label": "Euteleostomi", "linkedEntities": { - "NCBITaxon:117571": { - "curie": "NCBITaxon:117571", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=117571" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -42400,7 +42109,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -42413,7 +42122,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -42476,11 +42185,6 @@ "isPreferredRoot": false, "label": "Xenacoelomorpha", "linkedEntities": { - "NCBITaxon:1312402": { - "curie": "NCBITaxon:1312402", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1312402" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -42542,7 +42246,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -42555,7 +42259,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -42598,11 +42302,6 @@ "isPreferredRoot": false, "label": "cellular organisms", "linkedEntities": { - "NCBITaxon:131567": { - "curie": "NCBITaxon:131567", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=131567" - }, "http://purl.obolibrary.org/obo/CL_0000000": { "curie": "CL:0000000", "hasLocalDefinition": true, @@ -42625,7 +42324,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -42715,11 +42414,6 @@ "isPreferredRoot": false, "label": "Dipnotetrapodomorpha", "linkedEntities": { - "NCBITaxon:1338369": { - "curie": "NCBITaxon:1338369", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1338369" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -42861,7 +42555,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -42874,7 +42568,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -42965,11 +42659,6 @@ "isPreferredRoot": false, "label": "Boreoeutheria", "linkedEntities": { - "NCBITaxon:1437010": { - "curie": "NCBITaxon:1437010", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1437010" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -43171,7 +42860,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -43184,7 +42873,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -43251,11 +42940,6 @@ "isPreferredRoot": false, "label": "Xenoturbellidae", "linkedEntities": { - "NCBITaxon:1547233": { - "curie": "NCBITaxon:1547233", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1547233" - }, "http://purl.obolibrary.org/obo/NCBITaxon_110814": { "curie": "NCBITaxon:110814", "hasLocalDefinition": true, @@ -43337,7 +43021,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -43350,7 +43034,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -43457,11 +43141,6 @@ "isPreferredRoot": false, "label": "Homininae", "linkedEntities": { - "NCBITaxon:207598": { - "curie": "NCBITaxon:207598", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=207598" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -43743,7 +43422,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -43756,7 +43435,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -43805,11 +43484,6 @@ "isPreferredRoot": false, "label": "Eukaryota", "linkedEntities": { - "NCBITaxon:2759": { - "curie": "NCBITaxon:2759", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=2759" - }, "http://purl.obolibrary.org/obo/CL_0000255": { "curie": "CL:0000255", "hasLocalDefinition": true, @@ -43842,7 +43516,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -43855,7 +43529,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -43959,11 +43633,6 @@ "isPreferredRoot": false, "label": "Euarchontoglires", "linkedEntities": { - "NCBITaxon:314146": { - "curie": "NCBITaxon:314146", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=314146" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -44175,7 +43844,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -44188,7 +43857,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -44287,11 +43956,6 @@ "isPreferredRoot": false, "label": "Simiiformes", "linkedEntities": { - "NCBITaxon:314293": { - "curie": "NCBITaxon:314293", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=314293" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -44533,7 +44197,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -44546,7 +44210,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -44649,11 +44313,6 @@ "isPreferredRoot": false, "label": "Hominoidea", "linkedEntities": { - "NCBITaxon:314295": { - "curie": "NCBITaxon:314295", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=314295" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -44915,7 +44574,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -44928,7 +44587,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -45009,11 +44668,6 @@ "isPreferredRoot": false, "label": "Tetrapoda", "linkedEntities": { - "NCBITaxon:32523": { - "curie": "NCBITaxon:32523", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=32523" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -45165,7 +44819,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -45178,7 +44832,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -45261,11 +44915,6 @@ "isPreferredRoot": false, "label": "Amniota", "linkedEntities": { - "NCBITaxon:32524": { - "curie": "NCBITaxon:32524", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=32524" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -45427,7 +45076,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -45440,7 +45089,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -45527,11 +45176,6 @@ "isPreferredRoot": false, "label": "Theria ", "linkedEntities": { - "NCBITaxon:32525": { - "curie": "NCBITaxon:32525", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=32525" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -45713,7 +45357,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -45726,7 +45370,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -45781,11 +45425,6 @@ "isPreferredRoot": false, "label": "Opisthokonta", "linkedEntities": { - "NCBITaxon:33154": { - "curie": "NCBITaxon:33154", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=33154" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -45807,7 +45446,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -45820,7 +45459,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -45877,11 +45516,6 @@ "isPreferredRoot": false, "label": "Metazoa", "linkedEntities": { - "NCBITaxon:33208": { - "curie": "NCBITaxon:33208", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=33208" - }, "http://purl.obolibrary.org/obo/CL_0000548": { "curie": "CL:0000548", "hasLocalDefinition": true, @@ -45934,7 +45568,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -45947,7 +45581,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -46019,11 +45653,6 @@ "isPreferredRoot": false, "label": "Bilateria", "linkedEntities": { - "NCBITaxon:33213": { - "curie": "NCBITaxon:33213", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=33213" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -46075,7 +45704,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -46088,7 +45717,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -46151,11 +45780,6 @@ "isPreferredRoot": false, "label": "Deuterostomia", "linkedEntities": { - "NCBITaxon:33511": { - "curie": "NCBITaxon:33511", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=33511" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -46217,7 +45841,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -46230,7 +45854,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -46327,11 +45951,6 @@ "isPreferredRoot": false, "label": "Haplorrhini", "linkedEntities": { - "NCBITaxon:376913": { - "curie": "NCBITaxon:376913", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=376913" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -46563,7 +46182,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -46576,7 +46195,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -46661,11 +46280,6 @@ "isPreferredRoot": false, "label": "Mammalia", "linkedEntities": { - "NCBITaxon:40674": { - "curie": "NCBITaxon:40674", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=40674" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -46837,7 +46451,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -46850,7 +46464,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -46909,11 +46523,6 @@ "isPreferredRoot": false, "label": "Porifera", "linkedEntities": { - "NCBITaxon:6040": { - "curie": "NCBITaxon:6040", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=6040" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -46955,7 +46564,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -46968,7 +46577,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -47027,11 +46636,6 @@ "isPreferredRoot": false, "label": "Eumetazoa", "linkedEntities": { - "NCBITaxon:6072": { - "curie": "NCBITaxon:6072", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=6072" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -47144,7 +46748,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -47157,7 +46761,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -47290,11 +46894,6 @@ "isPreferredRoot": false, "label": "Chordata", "linkedEntities": { - "NCBITaxon:7711": { - "curie": "NCBITaxon:7711", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=7711" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -47366,7 +46965,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -47379,7 +46978,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -47448,11 +47047,6 @@ "isPreferredRoot": false, "label": "Vertebrata ", "linkedEntities": { - "NCBITaxon:7742": { - "curie": "NCBITaxon:7742", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=7742" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -47544,7 +47138,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -47557,7 +47151,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -47628,11 +47222,6 @@ "isPreferredRoot": false, "label": "Gnathostomata ", "linkedEntities": { - "NCBITaxon:7776": { - "curie": "NCBITaxon:7776", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=7776" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -47734,7 +47323,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -47747,7 +47336,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -47824,11 +47413,6 @@ "isPreferredRoot": false, "label": "Sarcopterygii", "linkedEntities": { - "NCBITaxon:8287": { - "curie": "NCBITaxon:8287", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=8287" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -47960,7 +47544,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -47973,7 +47557,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -48040,11 +47624,6 @@ "isPreferredRoot": false, "label": "Craniata ", "linkedEntities": { - "NCBITaxon:89593": { - "curie": "NCBITaxon:89593", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=89593" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -48126,7 +47705,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -48139,7 +47718,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -48228,11 +47807,6 @@ "isPreferredRoot": false, "label": "Eutheria", "linkedEntities": { - "NCBITaxon:9347": { - "curie": "NCBITaxon:9347", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9347" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -48424,7 +47998,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -48437,7 +48011,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -48532,11 +48106,6 @@ "isPreferredRoot": false, "label": "Primates", "linkedEntities": { - "NCBITaxon:9443": { - "curie": "NCBITaxon:9443", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9443" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -48758,7 +48327,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -48771,7 +48340,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -48872,11 +48441,6 @@ "isPreferredRoot": false, "label": "Catarrhini", "linkedEntities": { - "NCBITaxon:9526": { - "curie": "NCBITaxon:9526", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9526" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -49128,7 +48692,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -49141,7 +48705,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -49246,11 +48810,6 @@ "isPreferredRoot": false, "label": "Hominidae", "linkedEntities": { - "NCBITaxon:9604": { - "curie": "NCBITaxon:9604", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9604" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -49522,7 +49081,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -49535,7 +49094,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -49644,11 +49203,6 @@ "isPreferredRoot": false, "label": "Homo", "linkedEntities": { - "NCBITaxon:9605": { - "curie": "NCBITaxon:9605", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9605" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -49940,7 +49494,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -49953,7 +49507,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -50064,11 +49618,6 @@ "isPreferredRoot": false, "label": "Homo sapiens", "linkedEntities": { - "NCBITaxon:9606": { - "curie": "NCBITaxon:9606", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9606" - }, "http://purl.obolibrary.org/obo/MONDO_0700096": { "curie": "MONDO:0700096", "hasLocalDefinition": true, @@ -50391,7 +49940,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -50404,7 +49953,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -50477,11 +50026,6 @@ "isPreferredRoot": false, "label": "disease", "linkedEntities": { - "OGMS:0000031": { - "curie": "OGMS:0000031", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OGMS_0000031" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -50534,7 +50078,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -50547,7 +50091,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -50605,11 +50149,6 @@ "isPreferredRoot": false, "label": "quality", "linkedEntities": { - "PATO:0000001": { - "curie": "PATO:0000001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0000001" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -50631,7 +50170,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -50644,7 +50183,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -50703,11 +50242,6 @@ "isPreferredRoot": false, "label": "morphology", "linkedEntities": { - "PATO:0000051": { - "curie": "PATO:0000051", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0000051" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -50749,7 +50283,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -50762,7 +50296,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -50823,11 +50357,6 @@ "isPreferredRoot": false, "label": "structure", "linkedEntities": { - "PATO:0000141": { - "curie": "PATO:0000141", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0000141" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -50879,7 +50408,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -50892,7 +50421,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -50951,11 +50480,6 @@ "isPreferredRoot": false, "label": "physical quality", "linkedEntities": { - "PATO:0001018": { - "curie": "PATO:0001018", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0001018" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -50997,7 +50521,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -51010,7 +50534,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -51067,11 +50591,6 @@ "isPreferredRoot": false, "label": "physical object quality", "linkedEntities": { - "PATO:0001241": { - "curie": "PATO:0001241", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0001241" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -51103,7 +50622,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -51116,7 +50635,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -51177,11 +50696,6 @@ "isPreferredRoot": false, "label": "cellularity", "linkedEntities": { - "PATO:0001992": { - "curie": "PATO:0001992", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0001992" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -51233,7 +50747,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -51246,7 +50760,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -51309,11 +50823,6 @@ "isPreferredRoot": false, "label": "multicellular", "linkedEntities": { - "PATO:0001993": { - "curie": "PATO:0001993", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0001993" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -51396,7 +50905,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -51409,7 +50918,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -51479,11 +50988,6 @@ "isPreferredRoot": false, "label": "organismal quality", "linkedEntities": { - "PATO:0001995": { - "curie": "PATO:0001995", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0001995" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -51525,7 +51029,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -51538,7 +51042,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -51599,11 +51103,6 @@ "isPreferredRoot": false, "label": "quality of a substance", "linkedEntities": { - "PATO:0002198": { - "curie": "PATO:0002198", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0002198" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -51676,7 +51175,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -51689,7 +51188,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -51763,11 +51262,6 @@ "isPreferredRoot": false, "label": "disconnected", "linkedEntities": { - "PATO:0010001": { - "curie": "PATO:0010001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0010001" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -51850,7 +51344,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -51863,7 +51357,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -51929,11 +51423,6 @@ "isPreferredRoot": false, "label": "processual entity", "linkedEntities": { - "UBERON:0000000": { - "curie": "UBERON:0000000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000000" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -51986,7 +51475,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -51999,7 +51488,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -52073,11 +51562,6 @@ "isPreferredRoot": false, "label": "anatomical structure", "linkedEntities": { - "UBERON:0000061": { - "curie": "UBERON:0000061", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000061" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -52223,7 +51707,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -52236,7 +51720,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -52392,11 +51876,6 @@ "isPreferredRoot": false, "label": "organ", "linkedEntities": { - "UBERON:0000062": { - "curie": "UBERON:0000062", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000062" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -52604,7 +52083,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -52617,7 +52096,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -52756,11 +52235,6 @@ "isPreferredRoot": false, "label": "fully formed stage", "linkedEntities": { - "UBERON:0000066": { - "curie": "UBERON:0000066", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000066" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -52927,7 +52401,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -52940,7 +52414,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -53120,11 +52594,6 @@ "isPreferredRoot": false, "label": "embryo stage", "linkedEntities": { - "UBERON:0000068": { - "curie": "UBERON:0000068", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000068" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -53343,7 +52812,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -53356,7 +52825,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -53594,11 +53063,6 @@ "isPreferredRoot": false, "label": "death stage", "linkedEntities": { - "UBERON:0000071": { - "curie": "UBERON:0000071", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000071" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -53757,7 +53221,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -53770,7 +53234,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -53921,11 +53385,6 @@ "isPreferredRoot": false, "label": "post-embryonic stage", "linkedEntities": { - "UBERON:0000092": { - "curie": "UBERON:0000092", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000092" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -54052,7 +53511,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -54065,7 +53524,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -54198,11 +53657,6 @@ "isPreferredRoot": false, "label": "life cycle", "linkedEntities": { - "UBERON:0000104": { - "curie": "UBERON:0000104", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000104" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -54360,7 +53814,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -54373,7 +53827,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -54549,11 +54003,6 @@ "isPreferredRoot": false, "label": "life cycle stage", "linkedEntities": { - "UBERON:0000105": { - "curie": "UBERON:0000105", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000105" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -54649,7 +54098,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -54662,7 +54111,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -54773,11 +54222,6 @@ "isPreferredRoot": false, "label": "zygote stage", "linkedEntities": { - "UBERON:0000106": { - "curie": "UBERON:0000106", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000106" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -54883,7 +54327,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -54896,7 +54340,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -55024,11 +54468,6 @@ "isPreferredRoot": false, "label": "cleavage stage", "linkedEntities": { - "UBERON:0000107": { - "curie": "UBERON:0000107", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000107" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -55165,7 +54604,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -55178,7 +54617,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -55312,11 +54751,6 @@ "isPreferredRoot": false, "label": "blastula stage", "linkedEntities": { - "UBERON:0000108": { - "curie": "UBERON:0000108", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000108" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -55432,7 +54866,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -55445,7 +54879,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -55581,11 +55015,6 @@ "isPreferredRoot": false, "label": "gastrula stage", "linkedEntities": { - "UBERON:0000109": { - "curie": "UBERON:0000109", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000109" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -55732,7 +55161,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -55745,7 +55174,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -55901,11 +55330,6 @@ "isPreferredRoot": false, "label": "neurula stage", "linkedEntities": { - "UBERON:0000110": { - "curie": "UBERON:0000110", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000110" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -56042,7 +55466,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -56055,7 +55479,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -56194,11 +55618,6 @@ "isPreferredRoot": false, "label": "organogenesis stage", "linkedEntities": { - "UBERON:0000111": { - "curie": "UBERON:0000111", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000111" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -56356,7 +55775,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -56369,7 +55788,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -56525,11 +55944,6 @@ "isPreferredRoot": false, "label": "organism substance", "linkedEntities": { - "UBERON:0000463": { - "curie": "UBERON:0000463", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000463" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -56706,7 +56120,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -56719,7 +56133,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -56828,11 +56242,6 @@ "isPreferredRoot": false, "label": "material anatomical entity", "linkedEntities": { - "UBERON:0000465": { - "curie": "UBERON:0000465", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000465" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -56915,7 +56324,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -56928,7 +56337,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -57001,11 +56410,6 @@ "isPreferredRoot": false, "label": "immaterial anatomical entity", "linkedEntities": { - "UBERON:0000466": { - "curie": "UBERON:0000466", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000466" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -57078,7 +56482,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -57091,7 +56495,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -57189,11 +56593,6 @@ "isPreferredRoot": false, "label": "anatomical system", "linkedEntities": { - "UBERON:0000467": { - "curie": "UBERON:0000467", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000467" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -57338,7 +56737,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -57351,7 +56750,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -57457,11 +56856,6 @@ "isPreferredRoot": false, "label": "multicellular organism", "linkedEntities": { - "UBERON:0000468": { - "curie": "UBERON:0000468", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000468" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -57616,7 +57010,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -57629,7 +57023,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -57758,11 +57152,6 @@ "isPreferredRoot": false, "label": "female reproductive system", "linkedEntities": { - "UBERON:0000474": { - "curie": "UBERON:0000474", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000474" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -57917,7 +57306,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -57930,7 +57319,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -58033,11 +57422,6 @@ "isPreferredRoot": false, "label": "embryo", "linkedEntities": { - "UBERON:0000922": { - "curie": "UBERON:0000922", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000922" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -58192,7 +57576,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -58205,7 +57589,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -58355,11 +57739,6 @@ "isPreferredRoot": false, "label": "endocrine system", "linkedEntities": { - "UBERON:0000949": { - "curie": "UBERON:0000949", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000949" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -58556,7 +57935,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -58569,7 +57948,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -58717,11 +58096,6 @@ "isPreferredRoot": false, "label": "reproductive system", "linkedEntities": { - "UBERON:0000990": { - "curie": "UBERON:0000990", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000990" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -58959,7 +58333,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -58972,7 +58346,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -59180,11 +58554,6 @@ "isPreferredRoot": false, "label": "gonad", "linkedEntities": { - "UBERON:0000991": { - "curie": "UBERON:0000991", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000991" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -59422,7 +58791,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -59435,7 +58804,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -59642,11 +59011,6 @@ "isPreferredRoot": false, "label": "nervous system", "linkedEntities": { - "UBERON:0001016": { - "curie": "UBERON:0001016", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001016" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -59939,7 +59303,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -59952,7 +59316,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -60154,11 +59518,6 @@ "isPreferredRoot": false, "label": "primordium", "linkedEntities": { - "UBERON:0001048": { - "curie": "UBERON:0001048", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001048" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -60272,7 +59631,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -60285,7 +59644,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -60356,11 +59715,6 @@ "isPreferredRoot": false, "label": "anatomical entity", "linkedEntities": { - "UBERON:0001062": { - "curie": "UBERON:0001062", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001062" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -60413,7 +59767,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -60426,7 +59780,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -60515,11 +59869,6 @@ "isPreferredRoot": false, "label": "embryonic structure", "linkedEntities": { - "UBERON:0002050": { - "curie": "UBERON:0002050", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002050" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -60643,7 +59992,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -60656,7 +60005,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -60770,11 +60119,6 @@ "isPreferredRoot": false, "label": "endocrine gland", "linkedEntities": { - "UBERON:0002368": { - "curie": "UBERON:0002368", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002368" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -60980,7 +60324,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -60993,7 +60337,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -61117,11 +60461,6 @@ "isPreferredRoot": false, "label": "gland", "linkedEntities": { - "UBERON:0002530": { - "curie": "UBERON:0002530", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002530" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -61307,7 +60646,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -61320,7 +60659,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -61433,11 +60772,6 @@ "isPreferredRoot": false, "label": "female organism", "linkedEntities": { - "UBERON:0003100": { - "curie": "UBERON:0003100", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0003100" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -61540,7 +60874,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -61553,7 +60887,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -61669,11 +61003,6 @@ "isPreferredRoot": false, "label": "reproductive organ", "linkedEntities": { - "UBERON:0003133": { - "curie": "UBERON:0003133", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0003133" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -61838,7 +61167,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -61851,7 +61180,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -61965,11 +61294,6 @@ "isPreferredRoot": false, "label": "reproductive structure", "linkedEntities": { - "UBERON:0005156": { - "curie": "UBERON:0005156", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0005156" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -62093,7 +61417,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -62106,7 +61430,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -62191,11 +61515,6 @@ "isPreferredRoot": false, "label": "developing anatomical structure", "linkedEntities": { - "UBERON:0005423": { - "curie": "UBERON:0005423", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0005423" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -62299,7 +61618,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -62312,7 +61631,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -62421,11 +61740,6 @@ "isPreferredRoot": false, "label": "gonad primordium", "linkedEntities": { - "UBERON:0005564": { - "curie": "UBERON:0005564", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0005564" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -62601,7 +61915,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -62614,7 +61928,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -62747,11 +62061,6 @@ "isPreferredRoot": false, "label": "presumptive structure", "linkedEntities": { - "UBERON:0006598": { - "curie": "UBERON:0006598", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0006598" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -62907,7 +62216,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -62920,7 +62229,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -63009,11 +62318,6 @@ "isPreferredRoot": false, "label": "anatomical surface", "linkedEntities": { - "UBERON:0006984": { - "curie": "UBERON:0006984", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0006984" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -63096,7 +62400,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -63109,7 +62413,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -63202,11 +62506,6 @@ "isPreferredRoot": false, "label": "multicellular anatomical structure", "linkedEntities": { - "UBERON:0010000": { - "curie": "UBERON:0010000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0010000" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -63341,7 +62640,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -63354,7 +62653,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -63439,11 +62738,6 @@ "isPreferredRoot": false, "label": "bona-fide anatomical boundary", "linkedEntities": { - "UBERON:0010199": { - "curie": "UBERON:0010199", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0010199" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -63495,7 +62789,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -63508,7 +62802,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -63571,11 +62865,6 @@ "isPreferredRoot": false, "label": "non-connected functional system", "linkedEntities": { - "UBERON:0015203": { - "curie": "UBERON:0015203", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0015203" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -63637,7 +62926,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -63650,7 +62939,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -63723,11 +63012,6 @@ "isPreferredRoot": false, "label": "glandular system", "linkedEntities": { - "UBERON:0015204": { - "curie": "UBERON:0015204", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0015204" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -63820,7 +63104,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -63833,7 +63117,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -63949,11 +63233,6 @@ "isPreferredRoot": false, "label": "future nervous system", "linkedEntities": { - "UBERON:0016880": { - "curie": "UBERON:0016880", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0016880" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -64161,7 +63440,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -64174,7 +63453,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -64320,11 +63599,6 @@ "isPreferredRoot": false, "label": "disconnected anatomical group", "linkedEntities": { - "UBERON:0034923": { - "curie": "UBERON:0034923", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0034923" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -64460,7 +63734,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -64473,7 +63747,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], diff --git a/testcases_expected_output_api/v2/ontologies/gitissue502/entities.json b/testcases_expected_output_api/v2/ontologies/gitissue502/entities.json index 3bebb9d2a..79f0e560b 100644 --- a/testcases_expected_output_api/v2/ontologies/gitissue502/entities.json +++ b/testcases_expected_output_api/v2/ontologies/gitissue502/entities.json @@ -37,11 +37,6 @@ "isPreferredRoot": false, "label": "continuant", "linkedEntities": { - "BFO:0000002": { - "curie": "BFO:0000002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000002" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -86,7 +81,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -99,7 +94,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -166,11 +161,6 @@ "isPreferredRoot": false, "label": "occurrent", "linkedEntities": { - "BFO:0000003": { - "curie": "BFO:0000003", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000003" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -215,7 +205,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -228,7 +218,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -291,11 +281,6 @@ "isPreferredRoot": false, "label": "independent continuant", "linkedEntities": { - "BFO:0000004": { - "curie": "BFO:0000004", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000004" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -328,7 +313,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -341,7 +326,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -391,11 +376,6 @@ "isPreferredRoot": false, "label": "process", "linkedEntities": { - "BFO:0000015": { - "curie": "BFO:0000015", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000015" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -418,7 +398,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -431,7 +411,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -493,11 +473,6 @@ "isPreferredRoot": false, "label": "disposition", "linkedEntities": { - "BFO:0000016": { - "curie": "BFO:0000016", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000016" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -550,7 +525,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -563,7 +538,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -633,11 +608,6 @@ "isPreferredRoot": false, "label": "realizable entity", "linkedEntities": { - "BFO:0000017": { - "curie": "BFO:0000017", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000017" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -691,7 +661,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -704,7 +674,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -770,11 +740,6 @@ "isPreferredRoot": false, "label": "quality", "linkedEntities": { - "BFO:0000019": { - "curie": "BFO:0000019", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000019" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -807,7 +772,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -820,7 +785,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -877,11 +842,6 @@ "isPreferredRoot": false, "label": "specifically dependent continuant", "linkedEntities": { - "BFO:0000020": { - "curie": "BFO:0000020", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000020" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -904,7 +864,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -917,7 +877,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -978,11 +938,6 @@ "isPreferredRoot": false, "label": "role", "linkedEntities": { - "BFO:0000023": { - "curie": "BFO:0000023", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000023" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -1036,7 +991,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1049,7 +1004,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1113,11 +1068,6 @@ "isPreferredRoot": false, "label": "function", "linkedEntities": { - "BFO:0000034": { - "curie": "BFO:0000034", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000034" - }, "BFO:function": { "curie": "BFO:function", "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", @@ -1175,7 +1125,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1188,7 +1138,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1263,11 +1213,6 @@ "isPreferredRoot": false, "label": "material entity", "linkedEntities": { - "BFO:0000040": { - "curie": "BFO:0000040", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000040" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -1332,7 +1277,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1345,7 +1290,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1409,11 +1354,6 @@ "isPreferredRoot": false, "label": "part of", "linkedEntities": { - "BFO:0000050": { - "curie": "BFO:0000050", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000050" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -1459,7 +1399,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1472,7 +1412,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1537,11 +1477,6 @@ "isPreferredRoot": false, "label": "has part", "linkedEntities": { - "BFO:0000051": { - "curie": "BFO:0000051", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000051" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -1587,7 +1522,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1600,7 +1535,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1670,11 +1605,6 @@ "isPreferredRoot": false, "label": "preceded by", "linkedEntities": { - "BFO:0000062": { - "curie": "BFO:0000062", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000062" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -1752,7 +1682,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1765,7 +1695,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1778,7 +1708,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1791,7 +1721,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1855,11 +1785,6 @@ "isPreferredRoot": false, "label": "precedes", "linkedEntities": { - "BFO:0000063": { - "curie": "BFO:0000063", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000063" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -1915,7 +1840,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1928,7 +1853,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1941,7 +1866,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1954,7 +1879,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -2017,11 +1942,6 @@ "isPreferredRoot": false, "label": "occurs in", "linkedEntities": { - "BFO:0000066": { - "curie": "BFO:0000066", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000066" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -2076,7 +1996,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -2089,7 +2009,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2102,7 +2022,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2153,11 +2073,6 @@ "isPreferredRoot": false, "label": "contains process", "linkedEntities": { - "BFO:0000067": { - "curie": "BFO:0000067", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000067" - }, "http://purl.obolibrary.org/obo/BFO_0000066": { "curie": "BFO:0000066", "hasLocalDefinition": true, @@ -2181,7 +2096,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2247,11 +2162,6 @@ "isPreferredRoot": false, "label": "immaterial entity", "linkedEntities": { - "BFO:0000141": { - "curie": "BFO:0000141", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000141" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -2305,7 +2215,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2318,7 +2228,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2392,11 +2302,6 @@ "isPreferredRoot": false, "label": "cell", "linkedEntities": { - "CL:0000000": { - "curie": "CL:0000000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000000" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -2500,7 +2405,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2513,7 +2418,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2600,11 +2505,166 @@ "isPreferredRoot": false, "label": "native cell", "linkedEntities": { - "CL:0000003": { - "curie": "CL:0000003", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000003" + "http://purl.obolibrary.org/obo/BFO_0000002": { + "curie": "BFO:0000002", + "hasLocalDefinition": true, + "label": "continuant", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://purl.obolibrary.org/obo/BFO_0000004": { + "curie": "BFO:0000004", + "hasLocalDefinition": true, + "label": "independent continuant", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://purl.obolibrary.org/obo/BFO_0000040": { + "curie": "BFO:0000040", + "hasLocalDefinition": true, + "label": "material entity", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://purl.obolibrary.org/obo/CL_0000000": { + "curie": "CL:0000000", + "hasLocalDefinition": true, + "label": "cell", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://purl.obolibrary.org/obo/UBERON_0000061": { + "curie": "UBERON:0000061", + "hasLocalDefinition": true, + "label": "anatomical structure", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://purl.obolibrary.org/obo/UBERON_0000465": { + "curie": "UBERON:0000465", + "hasLocalDefinition": true, + "label": "material anatomical entity", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://purl.obolibrary.org/obo/UBERON_0001062": { + "curie": "UBERON:0001062", + "hasLocalDefinition": true, + "label": "anatomical entity", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": true, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#subClassOf": { + "curie": "RDFS:subClassOf", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "subClassOf", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + } + }, + "numDescendants": 10.0, + "numHierarchicalDescendants": 10.0, + "ontologyId": "gitissue502", + "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", + "ontologyPreferredPrefix": "gitIssue502", + "searchableAnnotationValues": false, + "shortForm": "CL_0000003", + "type": [ + "class", + "entity" + ] + }, + { + "appearsIn": [ + "gitissue502" + ], + "curie": "CL:0000039", + "directAncestor": [ + "http://purl.obolibrary.org/obo/BFO_0000002", + "http://purl.obolibrary.org/obo/BFO_0000004", + "http://purl.obolibrary.org/obo/BFO_0000040", + "http://purl.obolibrary.org/obo/CL_0000000", + "http://purl.obolibrary.org/obo/CL_0000003", + "http://purl.obolibrary.org/obo/UBERON_0000061", + "http://purl.obolibrary.org/obo/UBERON_0000465", + "http://purl.obolibrary.org/obo/UBERON_0001062" + ], + "directParent": "http://purl.obolibrary.org/obo/CL_0000003", + "hasDirectChildren": true, + "hasDirectParents": true, + "hasHierarchicalChildren": true, + "hasHierarchicalParents": true, + "hierarchicalAncestor": [ + "http://purl.obolibrary.org/obo/BFO_0000002", + "http://purl.obolibrary.org/obo/BFO_0000004", + "http://purl.obolibrary.org/obo/BFO_0000040", + "http://purl.obolibrary.org/obo/CL_0000000", + "http://purl.obolibrary.org/obo/CL_0000003", + "http://purl.obolibrary.org/obo/UBERON_0000061", + "http://purl.obolibrary.org/obo/UBERON_0000465", + "http://purl.obolibrary.org/obo/UBERON_0001062" + ], + "hierarchicalParent": "http://purl.obolibrary.org/obo/CL_0000003", + "hierarchicalProperty": "http://www.w3.org/2000/01/rdf-schema#subClassOf", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#label": "germ line cell", + "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ + "http://purl.obolibrary.org/obo/CL_0000003", + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Restriction", + "http://www.w3.org/2002/07/owl#onProperty": "http://purl.obolibrary.org/obo/RO_0002215", + "http://www.w3.org/2002/07/owl#someValuesFrom": "http://purl.obolibrary.org/obo/GO_0022414", + "isObsolete": false + } + ], + "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.obolibrary.org/obo/CL_0002371", + "imported": false, + "iri": "http://purl.obolibrary.org/obo/CL_0000039", + "isDefiningOntology": false, + "isObsolete": false, + "isPreferredRoot": false, + "label": "germ line cell", + "linkedEntities": { "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -2645,6 +2705,47 @@ "entity" ] }, + "http://purl.obolibrary.org/obo/CL_0000003": { + "curie": "CL:0000003", + "hasLocalDefinition": true, + "label": "native cell", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://purl.obolibrary.org/obo/CL_0002371": { + "curie": "CL:0002371", + "hasLocalDefinition": true, + "label": "somatic cell", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://purl.obolibrary.org/obo/GO_0022414": { + "curie": "GO:0022414", + "hasLocalDefinition": true, + "label": "reproductive process", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://purl.obolibrary.org/obo/RO_0002215": { + "curie": "RO:0002215", + "hasLocalDefinition": true, + "label": "capable of", + "numAppearsIn": 1.0, + "type": [ + "entity", + "objectProperty", + "property" + ] + }, "http://purl.obolibrary.org/obo/UBERON_0000061": { "curie": "UBERON:0000061", "hasLocalDefinition": true, @@ -2676,7 +2777,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2689,213 +2790,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", - "definedBy": [ - "rdfs" - ], - "hasLocalDefinition": false, - "label": "subClassOf", - "numAppearsIn": 2.0, - "type": [ - "entity", - "property" - ] - } - }, - "numDescendants": 10.0, - "numHierarchicalDescendants": 10.0, - "ontologyId": "gitissue502", - "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", - "ontologyPreferredPrefix": "gitIssue502", - "searchableAnnotationValues": false, - "shortForm": "CL_0000003", - "type": [ - "class", - "entity" - ] - }, - { - "appearsIn": [ - "gitissue502" - ], - "curie": "CL:0000039", - "directAncestor": [ - "http://purl.obolibrary.org/obo/BFO_0000002", - "http://purl.obolibrary.org/obo/BFO_0000004", - "http://purl.obolibrary.org/obo/BFO_0000040", - "http://purl.obolibrary.org/obo/CL_0000000", - "http://purl.obolibrary.org/obo/CL_0000003", - "http://purl.obolibrary.org/obo/UBERON_0000061", - "http://purl.obolibrary.org/obo/UBERON_0000465", - "http://purl.obolibrary.org/obo/UBERON_0001062" - ], - "directParent": "http://purl.obolibrary.org/obo/CL_0000003", - "hasDirectChildren": true, - "hasDirectParents": true, - "hasHierarchicalChildren": true, - "hasHierarchicalParents": true, - "hierarchicalAncestor": [ - "http://purl.obolibrary.org/obo/BFO_0000002", - "http://purl.obolibrary.org/obo/BFO_0000004", - "http://purl.obolibrary.org/obo/BFO_0000040", - "http://purl.obolibrary.org/obo/CL_0000000", - "http://purl.obolibrary.org/obo/CL_0000003", - "http://purl.obolibrary.org/obo/UBERON_0000061", - "http://purl.obolibrary.org/obo/UBERON_0000465", - "http://purl.obolibrary.org/obo/UBERON_0001062" - ], - "hierarchicalParent": "http://purl.obolibrary.org/obo/CL_0000003", - "hierarchicalProperty": "http://www.w3.org/2000/01/rdf-schema#subClassOf", - "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", - "http://www.w3.org/2000/01/rdf-schema#label": "germ line cell", - "http://www.w3.org/2000/01/rdf-schema#subClassOf": [ - "http://purl.obolibrary.org/obo/CL_0000003", - { - "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Restriction", - "http://www.w3.org/2002/07/owl#onProperty": "http://purl.obolibrary.org/obo/RO_0002215", - "http://www.w3.org/2002/07/owl#someValuesFrom": "http://purl.obolibrary.org/obo/GO_0022414", - "isObsolete": false - } - ], - "http://www.w3.org/2002/07/owl#disjointWith": "http://purl.obolibrary.org/obo/CL_0002371", - "imported": false, - "iri": "http://purl.obolibrary.org/obo/CL_0000039", - "isDefiningOntology": false, - "isObsolete": false, - "isPreferredRoot": false, - "label": "germ line cell", - "linkedEntities": { - "CL:0000039": { - "curie": "CL:0000039", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000039" - }, - "http://purl.obolibrary.org/obo/BFO_0000002": { - "curie": "BFO:0000002", - "hasLocalDefinition": true, - "label": "continuant", - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/BFO_0000004": { - "curie": "BFO:0000004", - "hasLocalDefinition": true, - "label": "independent continuant", - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/BFO_0000040": { - "curie": "BFO:0000040", - "hasLocalDefinition": true, - "label": "material entity", - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/CL_0000000": { - "curie": "CL:0000000", - "hasLocalDefinition": true, - "label": "cell", - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/CL_0000003": { - "curie": "CL:0000003", - "hasLocalDefinition": true, - "label": "native cell", - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/CL_0002371": { - "curie": "CL:0002371", - "hasLocalDefinition": true, - "label": "somatic cell", - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/GO_0022414": { - "curie": "GO:0022414", - "hasLocalDefinition": true, - "label": "reproductive process", - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/RO_0002215": { - "curie": "RO:0002215", - "hasLocalDefinition": true, - "label": "capable of", - "numAppearsIn": 1.0, - "type": [ - "entity", - "objectProperty", - "property" - ] - }, - "http://purl.obolibrary.org/obo/UBERON_0000061": { - "curie": "UBERON:0000061", - "hasLocalDefinition": true, - "label": "anatomical structure", - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/UBERON_0000465": { - "curie": "UBERON:0000465", - "hasLocalDefinition": true, - "label": "material anatomical entity", - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, - "http://purl.obolibrary.org/obo/UBERON_0001062": { - "curie": "UBERON:0001062", - "hasLocalDefinition": true, - "label": "anatomical entity", - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, - "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", - "definedBy": [ - "rdfs" - ], - "hasLocalDefinition": true, - "label": "label", - "numAppearsIn": 3.0, - "type": [ - "entity", - "property" - ] - }, - "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2973,11 +2868,6 @@ "isPreferredRoot": false, "label": "electrically active cell", "linkedEntities": { - "CL:0000211": { - "curie": "CL:0000211", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000211" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -3059,7 +2949,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3072,7 +2962,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -3147,11 +3037,6 @@ "isPreferredRoot": false, "label": "eukaryotic cell", "linkedEntities": { - "CL:0000255": { - "curie": "CL:0000255", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000255" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -3254,7 +3139,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3267,7 +3152,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -3347,11 +3232,6 @@ "isPreferredRoot": false, "label": "electrically responsive cell", "linkedEntities": { - "CL:0000393": { - "curie": "CL:0000393", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000393" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -3443,7 +3323,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3456,7 +3336,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -3525,11 +3405,6 @@ "isPreferredRoot": false, "label": "electrically signaling cell", "linkedEntities": { - "CL:0000404": { - "curie": "CL:0000404", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000404" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -3621,7 +3496,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3634,7 +3509,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -3738,11 +3613,6 @@ "isPreferredRoot": false, "label": "neuron", "linkedEntities": { - "CL:0000540": { - "curie": "CL:0000540", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000540" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -3987,7 +3857,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4000,7 +3870,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -4102,11 +3972,6 @@ "isPreferredRoot": false, "label": "animal cell", "linkedEntities": { - "CL:0000548": { - "curie": "CL:0000548", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000548" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -4230,7 +4095,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4243,7 +4108,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -4333,11 +4198,6 @@ "isPreferredRoot": false, "label": "germ cell", "linkedEntities": { - "CL:0000586": { - "curie": "CL:0000586", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0000586" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -4471,7 +4331,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4484,7 +4344,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -4605,11 +4465,6 @@ "isPreferredRoot": false, "label": "neural cell", "linkedEntities": { - "CL:0002319": { - "curie": "CL:0002319", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0002319" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -4794,7 +4649,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4807,7 +4662,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -4900,11 +4755,6 @@ "isPreferredRoot": false, "label": "somatic cell", "linkedEntities": { - "CL:0002371": { - "curie": "CL:0002371", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/CL_0002371" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -5006,7 +4856,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5019,7 +4869,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -5068,11 +4918,6 @@ "isPreferredRoot": false, "label": "reproduction", "linkedEntities": { - "GO:0000003": { - "curie": "GO:0000003", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0000003" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -5136,7 +4981,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5149,7 +4994,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -5243,11 +5088,6 @@ "isPreferredRoot": false, "label": "action potential", "linkedEntities": { - "GO:0001508": { - "curie": "GO:0001508", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0001508" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -5310,7 +5150,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5323,7 +5163,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -5420,11 +5260,6 @@ "isPreferredRoot": false, "label": "formation of primary germ layer", "linkedEntities": { - "GO:0001704": { - "curie": "GO:0001704", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0001704" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -5548,7 +5383,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5561,7 +5396,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -5662,11 +5497,6 @@ "isPreferredRoot": false, "label": "ectoderm formation", "linkedEntities": { - "GO:0001705": { - "curie": "GO:0001705", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0001705" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -5820,7 +5650,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5833,7 +5663,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -5945,11 +5775,6 @@ "isPreferredRoot": false, "label": "endoderm formation", "linkedEntities": { - "GO:0001706": { - "curie": "GO:0001706", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0001706" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -6103,7 +5928,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6116,7 +5941,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -6230,11 +6055,6 @@ "isPreferredRoot": false, "label": "mesoderm formation", "linkedEntities": { - "GO:0001707": { - "curie": "GO:0001707", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0001707" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -6408,7 +6228,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6421,7 +6241,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -6540,11 +6360,6 @@ "isPreferredRoot": false, "label": "embryonic epithelial tube formation", "linkedEntities": { - "GO:0001838": { - "curie": "GO:0001838", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0001838" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -6758,7 +6573,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6771,7 +6586,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -6886,11 +6701,6 @@ "isPreferredRoot": false, "label": "neural tube formation", "linkedEntities": { - "GO:0001841": { - "curie": "GO:0001841", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0001841" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -7185,7 +6995,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7198,7 +7008,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -7304,11 +7114,6 @@ "isPreferredRoot": false, "label": "morphogenesis of an epithelium", "linkedEntities": { - "GO:0002009": { - "curie": "GO:0002009", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0002009" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -7402,7 +7207,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7415,7 +7220,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -7481,11 +7286,6 @@ "isPreferredRoot": false, "label": "system process", "linkedEntities": { - "GO:0003008": { - "curie": "GO:0003008", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0003008" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -7507,7 +7307,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7520,7 +7320,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -7569,11 +7369,6 @@ "isPreferredRoot": false, "label": "signaling receptor binding", "linkedEntities": { - "GO:0005102": { - "curie": "GO:0005102", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0005102" - }, "http://purl.obolibrary.org/obo/GO_0005515": { "curie": "GO:0005515", "hasLocalDefinition": true, @@ -7585,7 +7380,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7598,7 +7393,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -7673,11 +7468,6 @@ "isPreferredRoot": false, "label": "hormone activity", "linkedEntities": { - "GO:0005179": { - "curie": "GO:0005179", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0005179" - }, "http://purl.obolibrary.org/obo/GO_0005102": { "curie": "GO:0005102", "hasLocalDefinition": true, @@ -7849,7 +7639,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7862,7 +7652,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -7939,11 +7729,6 @@ "isPreferredRoot": false, "label": "gonadotropin hormone-releasing hormone activity", "linkedEntities": { - "GO:0005183": { - "curie": "GO:0005183", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0005183" - }, "http://purl.obolibrary.org/obo/GO_0005102": { "curie": "GO:0005102", "hasLocalDefinition": true, @@ -8149,7 +7934,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8162,7 +7947,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -8216,11 +8001,6 @@ "isPreferredRoot": false, "label": "protein binding", "linkedEntities": { - "GO:0005515": { - "curie": "GO:0005515", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0005515" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -8243,7 +8023,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8311,11 +8091,6 @@ "isPreferredRoot": false, "label": "transport", "linkedEntities": { - "GO:0006810": { - "curie": "GO:0006810", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0006810" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -8347,7 +8122,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8360,7 +8135,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -8419,11 +8194,6 @@ "isPreferredRoot": false, "label": "monoatomic ion transport", "linkedEntities": { - "GO:0006811": { - "curie": "GO:0006811", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0006811" - }, "http://purl.obolibrary.org/obo/GO_0006810": { "curie": "GO:0006810", "hasLocalDefinition": true, @@ -8465,7 +8235,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8478,7 +8248,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -8533,11 +8303,6 @@ "isPreferredRoot": false, "label": "cell communication", "linkedEntities": { - "GO:0007154": { - "curie": "GO:0007154", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007154" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -8590,7 +8355,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8603,7 +8368,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -8755,11 +8520,6 @@ "isPreferredRoot": false, "label": "signal transduction", "linkedEntities": { - "GO:0007165": { - "curie": "GO:0007165", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007165" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -8883,7 +8643,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8896,7 +8656,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -9014,11 +8774,6 @@ "isPreferredRoot": false, "label": "cell-cell signaling", "linkedEntities": { - "GO:0007267": { - "curie": "GO:0007267", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007267" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -9101,7 +8856,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9114,7 +8869,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -9196,11 +8951,6 @@ "isPreferredRoot": false, "label": "chemical synaptic transmission", "linkedEntities": { - "GO:0007268": { - "curie": "GO:0007268", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007268" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -9323,7 +9073,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9336,7 +9086,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -9415,11 +9165,6 @@ "isPreferredRoot": false, "label": "multicellular organism development", "linkedEntities": { - "GO:0007275": { - "curie": "GO:0007275", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007275" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -9502,7 +9247,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9515,7 +9260,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -9633,11 +9378,6 @@ "isPreferredRoot": false, "label": "gamete generation", "linkedEntities": { - "GO:0007276": { - "curie": "GO:0007276", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007276" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -9752,7 +9492,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9765,7 +9505,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -9870,11 +9610,6 @@ "isPreferredRoot": false, "label": "gastrulation", "linkedEntities": { - "GO:0007369": { - "curie": "GO:0007369", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007369" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -10039,7 +9774,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10052,7 +9787,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -10170,11 +9905,6 @@ "isPreferredRoot": false, "label": "ectoderm development", "linkedEntities": { - "GO:0007398": { - "curie": "GO:0007398", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007398" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -10237,7 +9967,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10250,7 +9980,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -10322,11 +10052,6 @@ "isPreferredRoot": false, "label": "nervous system development", "linkedEntities": { - "GO:0007399": { - "curie": "GO:0007399", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007399" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -10409,7 +10134,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10422,7 +10147,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -10492,11 +10217,6 @@ "isPreferredRoot": false, "label": "endoderm development", "linkedEntities": { - "GO:0007492": { - "curie": "GO:0007492", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007492" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -10559,7 +10279,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10572,7 +10292,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -10642,11 +10362,6 @@ "isPreferredRoot": false, "label": "mesoderm development", "linkedEntities": { - "GO:0007498": { - "curie": "GO:0007498", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0007498" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -10709,7 +10424,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10722,7 +10437,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -10776,11 +10491,6 @@ "isPreferredRoot": false, "label": "biological_process", "linkedEntities": { - "GO:0008150": { - "curie": "GO:0008150", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0008150" - }, "http://purl.obolibrary.org/obo/GO_0050789": { "curie": "GO:0050789", "hasLocalDefinition": true, @@ -10824,7 +10534,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10927,11 +10637,6 @@ "isPreferredRoot": false, "label": "fertilization", "linkedEntities": { - "GO:0009566": { - "curie": "GO:0009566", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0009566" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -11016,7 +10721,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -11029,7 +10734,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -11129,11 +10834,6 @@ "isPreferredRoot": false, "label": "anatomical structure morphogenesis", "linkedEntities": { - "GO:0009653": { - "curie": "GO:0009653", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0009653" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -11197,7 +10897,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -11210,7 +10910,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -11293,11 +10993,6 @@ "isPreferredRoot": false, "label": "embryo development", "linkedEntities": { - "GO:0009790": { - "curie": "GO:0009790", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0009790" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -11401,7 +11096,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -11414,7 +11109,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -11529,11 +11224,6 @@ "isPreferredRoot": false, "label": "post-embryonic development", "linkedEntities": { - "GO:0009791": { - "curie": "GO:0009791", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0009791" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -11628,7 +11318,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -11641,7 +11331,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -11726,11 +11416,6 @@ "isPreferredRoot": false, "label": "embryo development ending in birth or egg hatching", "linkedEntities": { - "GO:0009792": { - "curie": "GO:0009792", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0009792" - }, "http://purl.obolibrary.org/obo/GO_0007275": { "curie": "GO:0007275", "hasLocalDefinition": true, @@ -11792,7 +11477,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -11805,7 +11490,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -11862,11 +11547,6 @@ "isPreferredRoot": false, "label": "tissue development", "linkedEntities": { - "GO:0009888": { - "curie": "GO:0009888", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0009888" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -11919,7 +11599,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -11932,7 +11612,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -12017,11 +11697,6 @@ "isPreferredRoot": false, "label": "hormone transport", "linkedEntities": { - "GO:0009914": { - "curie": "GO:0009914", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0009914" - }, "http://purl.obolibrary.org/obo/GO_0006810": { "curie": "GO:0006810", "hasLocalDefinition": true, @@ -12093,7 +11768,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12106,7 +11781,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -12155,11 +11830,6 @@ "isPreferredRoot": false, "label": "cellular process", "linkedEntities": { - "GO:0009987": { - "curie": "GO:0009987", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0009987" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -12192,7 +11862,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12205,7 +11875,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -12273,11 +11943,6 @@ "isPreferredRoot": false, "label": "regulation of hormone levels", "linkedEntities": { - "GO:0010817": { - "curie": "GO:0010817", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0010817" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -12309,7 +11974,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12322,7 +11987,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -12365,13 +12030,8 @@ "isPreferredRoot": false, "label": "kinase activity", "linkedEntities": { - "GO:0016301": { - "curie": "GO:0016301", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0016301" - }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12449,11 +12109,6 @@ "isPreferredRoot": false, "label": "morphogenesis of embryonic epithelium", "linkedEntities": { - "GO:0016331": { - "curie": "GO:0016331", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0016331" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -12596,7 +12251,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12609,7 +12264,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -12715,11 +12370,6 @@ "isPreferredRoot": false, "label": "transmission of nerve impulse", "linkedEntities": { - "GO:0019226": { - "curie": "GO:0019226", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0019226" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -12844,7 +12494,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12857,7 +12507,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -12958,11 +12608,6 @@ "isPreferredRoot": false, "label": "sexual reproduction", "linkedEntities": { - "GO:0019953": { - "curie": "GO:0019953", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0019953" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -13015,7 +12660,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13028,7 +12673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -13167,11 +12812,6 @@ "isPreferredRoot": false, "label": "neural tube development", "linkedEntities": { - "GO:0021915": { - "curie": "GO:0021915", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0021915" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -13335,7 +12975,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13348,7 +12988,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -13457,11 +13097,6 @@ "isPreferredRoot": false, "label": "reproductive process", "linkedEntities": { - "GO:0022414": { - "curie": "GO:0022414", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0022414" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -13526,7 +13161,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13539,7 +13174,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -13618,11 +13253,6 @@ "isPreferredRoot": false, "label": "signaling", "linkedEntities": { - "GO:0023052": { - "curie": "GO:0023052", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0023052" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -13675,7 +13305,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13688,7 +13318,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -13793,11 +13423,6 @@ "isPreferredRoot": false, "label": "signal release", "linkedEntities": { - "GO:0023061": { - "curie": "GO:0023061", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0023061" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -13951,7 +13576,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13964,7 +13589,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -14024,11 +13649,6 @@ "isPreferredRoot": false, "label": "signaling receptor regulator activity", "linkedEntities": { - "GO:0030545": { - "curie": "GO:0030545", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0030545" - }, "http://purl.obolibrary.org/obo/GO_0098772": { "curie": "GO:0098772", "hasLocalDefinition": true, @@ -14040,7 +13660,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14053,7 +13673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -14119,11 +13739,6 @@ "isPreferredRoot": false, "label": "signaling receptor activator activity", "linkedEntities": { - "GO:0030546": { - "curie": "GO:0030546", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0030546" - }, "http://purl.obolibrary.org/obo/GO_0030545": { "curie": "GO:0030545", "hasLocalDefinition": true, @@ -14155,7 +13770,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14168,7 +13783,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -14217,11 +13832,6 @@ "isPreferredRoot": false, "label": "multicellular organismal process", "linkedEntities": { - "GO:0032501": { - "curie": "GO:0032501", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0032501" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -14233,7 +13843,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14246,7 +13856,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -14295,11 +13905,6 @@ "isPreferredRoot": false, "label": "developmental process", "linkedEntities": { - "GO:0032502": { - "curie": "GO:0032502", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0032502" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -14356,7 +13961,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14369,7 +13974,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -14459,11 +14064,6 @@ "isPreferredRoot": false, "label": "multicellular organism reproduction", "linkedEntities": { - "GO:0032504": { - "curie": "GO:0032504", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0032504" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -14516,7 +14116,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14529,7 +14129,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -14614,11 +14214,6 @@ "isPreferredRoot": false, "label": "secretion by cell", "linkedEntities": { - "GO:0032940": { - "curie": "GO:0032940", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0032940" - }, "http://purl.obolibrary.org/obo/GO_0006810": { "curie": "GO:0006810", "hasLocalDefinition": true, @@ -14690,7 +14285,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14703,7 +14298,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -14777,11 +14372,6 @@ "isPreferredRoot": false, "label": "monoatomic ion transmembrane transport", "linkedEntities": { - "GO:0034220": { - "curie": "GO:0034220", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0034220" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -14874,7 +14464,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14887,7 +14477,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -14983,11 +14573,6 @@ "isPreferredRoot": false, "label": "tube formation", "linkedEntities": { - "GO:0035148": { - "curie": "GO:0035148", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0035148" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -15101,7 +14686,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15114,7 +14699,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -15208,11 +14793,6 @@ "isPreferredRoot": false, "label": "tube morphogenesis", "linkedEntities": { - "GO:0035239": { - "curie": "GO:0035239", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0035239" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -15316,7 +14896,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15329,7 +14909,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -15432,11 +15012,6 @@ "isPreferredRoot": false, "label": "tube development", "linkedEntities": { - "GO:0035295": { - "curie": "GO:0035295", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0035295" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -15520,7 +15095,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15533,7 +15108,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -15598,11 +15173,6 @@ "isPreferredRoot": false, "label": "signaling receptor activity", "linkedEntities": { - "GO:0038023": { - "curie": "GO:0038023", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0038023" - }, "http://purl.obolibrary.org/obo/GO_0048018": { "curie": "GO:0048018", "hasLocalDefinition": true, @@ -15625,7 +15195,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15720,11 +15290,6 @@ "isPreferredRoot": false, "label": "embryonic cleavage", "linkedEntities": { - "GO:0040016": { - "curie": "GO:0040016", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0040016" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -15849,7 +15414,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15862,7 +15427,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -15949,11 +15514,6 @@ "isPreferredRoot": false, "label": "regulation of membrane potential", "linkedEntities": { - "GO:0042391": { - "curie": "GO:0042391", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0042391" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -16006,7 +15566,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -16019,7 +15579,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -16095,11 +15655,6 @@ "isPreferredRoot": false, "label": "chordate embryonic development", "linkedEntities": { - "GO:0043009": { - "curie": "GO:0043009", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0043009" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -16192,7 +15747,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -16205,7 +15760,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -16259,11 +15814,6 @@ "isPreferredRoot": false, "label": "synapse", "linkedEntities": { - "GO:0045202": { - "curie": "GO:0045202", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0045202" - }, "http://purl.obolibrary.org/obo/BFO_0000066": { "curie": "BFO:0000066", "hasLocalDefinition": true, @@ -16286,7 +15836,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -16387,11 +15937,6 @@ "isPreferredRoot": false, "label": "hormone secretion", "linkedEntities": { - "GO:0046879": { - "curie": "GO:0046879", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0046879" - }, "http://purl.obolibrary.org/obo/GO_0006810": { "curie": "GO:0006810", "hasLocalDefinition": true, @@ -16584,7 +16129,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -16597,7 +16142,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -16667,11 +16212,6 @@ "isPreferredRoot": false, "label": "secretion", "linkedEntities": { - "GO:0046903": { - "curie": "GO:0046903", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0046903" - }, "http://purl.obolibrary.org/obo/GO_0006810": { "curie": "GO:0006810", "hasLocalDefinition": true, @@ -16734,7 +16274,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -16747,7 +16287,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -16864,11 +16404,6 @@ "isPreferredRoot": false, "label": "receptor ligand activity", "linkedEntities": { - "GO:0048018": { - "curie": "GO:0048018", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048018" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -17073,7 +16608,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17086,7 +16621,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -17194,11 +16729,6 @@ "isPreferredRoot": false, "label": "mesoderm morphogenesis", "linkedEntities": { - "GO:0048332": { - "curie": "GO:0048332", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048332" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -17302,7 +16832,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17315,7 +16845,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -17394,11 +16924,6 @@ "isPreferredRoot": false, "label": "animal organ development", "linkedEntities": { - "GO:0048513": { - "curie": "GO:0048513", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048513" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -17451,7 +16976,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17464,7 +16989,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -17558,11 +17083,6 @@ "isPreferredRoot": false, "label": "embryonic morphogenesis", "linkedEntities": { - "GO:0048598": { - "curie": "GO:0048598", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048598" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -17680,7 +17200,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17693,7 +17213,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -17795,11 +17315,6 @@ "isPreferredRoot": false, "label": "multicellular organismal reproductive process", "linkedEntities": { - "GO:0048609": { - "curie": "GO:0048609", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048609" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -17873,7 +17388,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17886,7 +17401,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -17976,11 +17491,6 @@ "isPreferredRoot": false, "label": "anatomical structure formation involved in morphogenesis", "linkedEntities": { - "GO:0048646": { - "curie": "GO:0048646", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048646" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -18044,7 +17554,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18057,7 +17567,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -18149,11 +17659,6 @@ "isPreferredRoot": false, "label": "tissue morphogenesis", "linkedEntities": { - "GO:0048729": { - "curie": "GO:0048729", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048729" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -18227,7 +17732,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18240,7 +17745,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -18332,11 +17837,6 @@ "isPreferredRoot": false, "label": "system development", "linkedEntities": { - "GO:0048731": { - "curie": "GO:0048731", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048731" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -18410,7 +17910,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18423,7 +17923,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -18489,11 +17989,6 @@ "isPreferredRoot": false, "label": "anatomical structure development", "linkedEntities": { - "GO:0048856": { - "curie": "GO:0048856", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0048856" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -18536,7 +18031,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18549,7 +18044,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -18623,11 +18118,6 @@ "isPreferredRoot": false, "label": "regulation of biological process", "linkedEntities": { - "GO:0050789": { - "curie": "GO:0050789", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0050789" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -18660,7 +18150,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18673,7 +18163,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -18749,11 +18239,6 @@ "isPreferredRoot": false, "label": "regulation of cellular process", "linkedEntities": { - "GO:0050794": { - "curie": "GO:0050794", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0050794" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -18806,7 +18291,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18819,7 +18304,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -18887,11 +18372,6 @@ "isPreferredRoot": false, "label": "nervous system process", "linkedEntities": { - "GO:0050877": { - "curie": "GO:0050877", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0050877" - }, "http://purl.obolibrary.org/obo/GO_0003008": { "curie": "GO:0003008", "hasLocalDefinition": true, @@ -18944,7 +18424,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18957,7 +18437,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -19017,11 +18497,6 @@ "isPreferredRoot": false, "label": "response to stimulus", "linkedEntities": { - "GO:0050896": { - "curie": "GO:0050896", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0050896" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -19033,7 +18508,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19046,7 +18521,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -19095,11 +18570,6 @@ "isPreferredRoot": false, "label": "localization", "linkedEntities": { - "GO:0051179": { - "curie": "GO:0051179", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0051179" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -19111,7 +18581,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19124,7 +18594,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -19179,11 +18649,6 @@ "isPreferredRoot": false, "label": "establishment of localization", "linkedEntities": { - "GO:0051234": { - "curie": "GO:0051234", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0051234" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -19205,7 +18670,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19218,7 +18683,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -19273,11 +18738,6 @@ "isPreferredRoot": false, "label": "cell division", "linkedEntities": { - "GO:0051301": { - "curie": "GO:0051301", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0051301" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -19299,7 +18759,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19312,7 +18772,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -19378,11 +18838,6 @@ "isPreferredRoot": false, "label": "cellular response to stimulus", "linkedEntities": { - "GO:0051716": { - "curie": "GO:0051716", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0051716" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -19435,7 +18890,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19448,7 +18903,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -19529,11 +18984,6 @@ "isPreferredRoot": false, "label": "transmembrane transport", "linkedEntities": { - "GO:0055085": { - "curie": "GO:0055085", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0055085" - }, "http://purl.obolibrary.org/obo/GO_0006810": { "curie": "GO:0006810", "hasLocalDefinition": true, @@ -19585,7 +19035,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19598,7 +19048,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -19657,11 +19107,6 @@ "isPreferredRoot": false, "label": "epithelium development", "linkedEntities": { - "GO:0060429": { - "curie": "GO:0060429", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0060429" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -19724,7 +19169,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19737,7 +19182,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -19826,11 +19271,6 @@ "isPreferredRoot": false, "label": "epithelial tube morphogenesis", "linkedEntities": { - "GO:0060562": { - "curie": "GO:0060562", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0060562" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -19973,7 +19413,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19986,7 +19426,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -20046,11 +19486,6 @@ "isPreferredRoot": false, "label": "biological regulation", "linkedEntities": { - "GO:0065007": { - "curie": "GO:0065007", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0065007" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -20062,7 +19497,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -20075,7 +19510,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -20130,11 +19565,6 @@ "isPreferredRoot": false, "label": "regulation of biological quality", "linkedEntities": { - "GO:0065008": { - "curie": "GO:0065008", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0065008" - }, "http://purl.obolibrary.org/obo/GO_0008150": { "curie": "GO:0008150", "hasLocalDefinition": true, @@ -20156,7 +19586,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -20169,7 +19599,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -20261,11 +19691,6 @@ "isPreferredRoot": false, "label": "epithelial tube formation", "linkedEntities": { - "GO:0072175": { - "curie": "GO:0072175", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0072175" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -20439,7 +19864,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -20452,7 +19877,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -20513,11 +19938,6 @@ "isPreferredRoot": false, "label": "molecular function regulator activity", "linkedEntities": { - "GO:0098772": { - "curie": "GO:0098772", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0098772" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -20540,7 +19960,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -20553,7 +19973,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -20633,11 +20053,6 @@ "isPreferredRoot": false, "label": "anterograde trans-synaptic signaling", "linkedEntities": { - "GO:0098916": { - "curie": "GO:0098916", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0098916" - }, "http://purl.obolibrary.org/obo/GO_0007154": { "curie": "GO:0007154", "hasLocalDefinition": true, @@ -20729,7 +20144,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -20742,7 +20157,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -20815,11 +20230,6 @@ "isPreferredRoot": false, "label": "synaptic signaling", "linkedEntities": { - "GO:0099536": { - "curie": "GO:0099536", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0099536" - }, "http://purl.obolibrary.org/obo/BFO_0000066": { "curie": "BFO:0000066", "hasLocalDefinition": true, @@ -20912,7 +20322,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -20925,7 +20335,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -21003,11 +20413,6 @@ "isPreferredRoot": false, "label": "trans-synaptic signaling", "linkedEntities": { - "GO:0099537": { - "curie": "GO:0099537", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0099537" - }, "http://purl.obolibrary.org/obo/GO_0007154": { "curie": "GO:0007154", "hasLocalDefinition": true, @@ -21089,7 +20494,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -21102,7 +20507,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -21172,11 +20577,6 @@ "isPreferredRoot": false, "label": "export from cell", "linkedEntities": { - "GO:0140352": { - "curie": "GO:0140352", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0140352" - }, "http://purl.obolibrary.org/obo/GO_0006810": { "curie": "GO:0006810", "hasLocalDefinition": true, @@ -21228,7 +20628,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -21241,7 +20641,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -21290,11 +20690,6 @@ "isPreferredRoot": false, "label": "molecular function activator activity", "linkedEntities": { - "GO:0140677": { - "curie": "GO:0140677", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://amigo.geneontology.org/amigo/term/GO:0140677" - }, "http://purl.obolibrary.org/obo/GO_0098772": { "curie": "GO:0098772", "hasLocalDefinition": true, @@ -21306,7 +20701,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -21319,7 +20714,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -21365,11 +20760,6 @@ "isPreferredRoot": false, "label": "Obesity", "linkedEntities": { - "HP:0001513": { - "curie": "HP:0001513", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/HP_0001513" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -21403,7 +20793,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -21457,13 +20847,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000115", - "linkedEntities": { - "IAO:0000115": { - "curie": "IAO:0000115", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000115" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "gitissue502", @@ -21493,13 +20877,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000116", - "linkedEntities": { - "IAO:0000116": { - "curie": "IAO:0000116", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000116" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "gitissue502", @@ -21529,13 +20907,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000233", - "linkedEntities": { - "IAO:0000233": { - "curie": "IAO:0000233", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000233" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "gitissue502", @@ -21565,13 +20937,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0006012", - "linkedEntities": { - "IAO:0006012": { - "curie": "IAO:0006012", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0006012" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "gitissue502", @@ -21982,10 +21348,13 @@ "url": "http://purl.obolibrary.org/obo/NCIT_C2991" }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -21993,10 +21362,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -22031,7 +21403,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_377788" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -22044,7 +21416,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -22057,7 +21429,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -22567,10 +21939,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -22578,10 +21953,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -22611,7 +21989,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -22624,7 +22002,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -22637,7 +22015,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -23100,10 +22478,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -23111,10 +22492,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -23133,10 +22517,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -23155,7 +22542,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -23168,7 +22555,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -23181,7 +22568,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -23776,10 +23163,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -23787,10 +23177,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -23820,7 +23213,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -23833,7 +23226,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -23846,7 +23239,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -24426,10 +23819,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -24437,10 +23833,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -24448,10 +23847,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "hasRelatedSynonym", + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasRelatedSynonym", - "numAppearsIn": 1.0, + "label": "has_related_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -24459,10 +23861,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonymType": { - "curie": "hasSynonymType", + "curie": "OIO:hasSynonymType", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasSynonymType", - "numAppearsIn": 1.0, + "label": "has_synonym_type", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -24492,7 +23897,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -24505,7 +23910,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -24518,7 +23923,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -25015,10 +24420,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -25026,10 +24434,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -25059,7 +24470,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -25072,7 +24483,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -25085,7 +24496,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -25626,10 +25037,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym": { - "curie": "hasBroadSynonym", + "curie": "OIO:hasBroadSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasBroadSynonym", - "numAppearsIn": 1.0, + "label": "has_broad_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -25637,10 +25051,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -25648,10 +25065,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -25659,10 +25079,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": { - "curie": "hasNarrowSynonym", + "curie": "OIO:hasNarrowSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasNarrowSynonym", - "numAppearsIn": 1.0, + "label": "has_narrow_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -25670,10 +25093,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "hasRelatedSynonym", + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasRelatedSynonym", - "numAppearsIn": 1.0, + "label": "has_related_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -25692,10 +25118,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -25714,7 +25143,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -25727,7 +25156,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -25740,7 +25169,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -25753,7 +25182,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -26195,10 +25624,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -26228,7 +25660,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -26241,7 +25673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -26254,7 +25686,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -26717,10 +26149,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -26728,10 +26163,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -26750,10 +26188,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -26772,7 +26213,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -26785,7 +26226,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -26798,7 +26239,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -27469,10 +26910,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -27480,10 +26924,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -27502,10 +26949,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -27524,7 +26974,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -27537,7 +26987,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -27550,7 +27000,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -27563,7 +27013,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -28117,10 +27567,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -28128,10 +27581,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -28139,10 +27595,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "hasRelatedSynonym", + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasRelatedSynonym", - "numAppearsIn": 1.0, + "label": "has_related_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -28161,10 +27620,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -28183,7 +27645,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -28196,7 +27658,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -28209,7 +27671,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -28794,10 +28256,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -28805,10 +28270,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -28827,10 +28295,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -28849,7 +28320,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -28862,7 +28333,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -28875,7 +28346,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -30099,10 +29570,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -30110,10 +29584,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -30121,10 +29598,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "hasRelatedSynonym", + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasRelatedSynonym", - "numAppearsIn": 1.0, + "label": "has_related_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -30132,10 +29612,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonymType": { - "curie": "hasSynonymType", + "curie": "OIO:hasSynonymType", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasSynonymType", - "numAppearsIn": 1.0, + "label": "has_synonym_type", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -30154,10 +29637,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -30181,7 +29667,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_739" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -30194,7 +29680,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "seeAlso", + "curie": "RDFS:seeAlso", "definedBy": [ "rdfs" ], @@ -30207,7 +29693,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -30220,7 +29706,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#closeMatch": { - "curie": "closeMatch", + "curie": "SKOS:closeMatch", "definedBy": [ "skos" ], @@ -30234,7 +29720,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -30878,10 +30364,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -30889,10 +30378,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -30911,10 +30403,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -30933,7 +30428,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -30946,7 +30441,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -30959,7 +30454,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -30972,7 +30467,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -31300,10 +30795,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -31322,10 +30820,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -31349,7 +30850,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_101957" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -31362,7 +30863,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -31375,7 +30876,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -31388,7 +30889,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -31667,10 +31168,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -31678,10 +31182,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -31700,10 +31207,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -31722,7 +31232,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -31735,7 +31245,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -32042,10 +31552,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -32064,10 +31577,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -32091,7 +31607,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_139024" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -32104,7 +31620,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -32117,7 +31633,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -32130,7 +31646,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -32466,10 +31982,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -32477,10 +31996,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -32499,10 +32021,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -32526,7 +32051,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_156643" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -32539,7 +32064,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -32552,7 +32077,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -33141,10 +32666,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -33163,10 +32691,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -33190,7 +32721,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_174590" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -33203,7 +32734,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -33216,7 +32747,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -33490,10 +33021,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -33512,10 +33046,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -33539,7 +33076,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_180208" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -33552,7 +33089,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -33565,7 +33102,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -33578,7 +33115,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -33971,10 +33508,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -33982,10 +33522,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -34004,10 +33547,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -34031,7 +33577,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_202940" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -34044,7 +33590,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -34057,7 +33603,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -34070,7 +33616,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -34594,10 +34140,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -34605,10 +34154,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -34627,10 +34179,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -34654,7 +34209,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_240371" }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -34667,7 +34222,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -34680,7 +34235,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -34693,7 +34248,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -35400,10 +34955,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -35411,10 +34969,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -35422,10 +34983,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": { - "curie": "hasNarrowSynonym", + "curie": "OIO:hasNarrowSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasNarrowSynonym", - "numAppearsIn": 1.0, + "label": "has_narrow_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -35433,10 +34997,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "hasRelatedSynonym", + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasRelatedSynonym", - "numAppearsIn": 1.0, + "label": "has_related_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -35455,10 +35022,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -35482,7 +35052,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_432" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -35495,7 +35065,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -35508,7 +35078,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -36296,10 +35866,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -36307,10 +35880,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -36318,10 +35894,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "hasRelatedSynonym", + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasRelatedSynonym", - "numAppearsIn": 1.0, + "label": "has_related_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -36340,10 +35919,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -36367,7 +35949,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_68335" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -36380,7 +35962,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -36393,7 +35975,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -36907,10 +36489,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -36918,10 +36503,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "hasRelatedSynonym", + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasRelatedSynonym", - "numAppearsIn": 1.0, + "label": "has_related_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -36929,10 +36517,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasSynonymType": { - "curie": "hasSynonymType", + "curie": "OIO:hasSynonymType", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasSynonymType", - "numAppearsIn": 1.0, + "label": "has_synonym_type", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -36951,10 +36542,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -36978,7 +36572,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_68341" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -36991,7 +36585,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -37004,7 +36598,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -37638,10 +37232,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -37649,10 +37246,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -37671,10 +37271,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -37698,7 +37301,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_77828" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -37711,7 +37314,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -37724,7 +37327,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -38265,10 +37868,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -38276,10 +37882,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -38298,10 +37907,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -38325,7 +37937,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_93890" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -38338,7 +37950,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -38351,7 +37963,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -38722,10 +38334,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -38744,10 +38359,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -38771,7 +38389,7 @@ "url": "http://www.orpha.net/ORDO/Orphanet_95488" }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -38784,7 +38402,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -38797,7 +38415,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -38975,10 +38593,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -38986,10 +38607,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -39019,7 +38643,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -39032,7 +38656,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -39045,7 +38669,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -39214,10 +38838,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -39236,7 +38863,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -39249,7 +38876,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -39426,10 +39053,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -39448,7 +39078,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -39461,7 +39091,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -39603,7 +39233,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -39616,7 +39246,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -39824,10 +39454,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -39835,10 +39468,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -39857,7 +39493,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -39870,7 +39506,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -40037,7 +39673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -40050,7 +39686,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -40279,10 +39915,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -40290,10 +39929,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -40323,7 +39965,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -40336,7 +39978,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -40629,10 +40271,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -40651,10 +40296,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -40673,7 +40321,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -40686,7 +40334,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -40699,7 +40347,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -40840,7 +40488,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -40853,7 +40501,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -41053,10 +40701,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -41064,10 +40715,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { - "curie": "hasRelatedSynonym", + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasRelatedSynonym", - "numAppearsIn": 1.0, + "label": "has_related_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -41097,7 +40751,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -41110,7 +40764,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -41431,10 +41085,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -41442,10 +41099,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -41475,7 +41135,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -41488,7 +41148,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -41826,10 +41486,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -41859,7 +41522,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -41872,7 +41535,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -42231,10 +41894,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -42264,7 +41930,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -42277,7 +41943,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -42290,7 +41956,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#exactMatch": { - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -42540,10 +42206,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -42551,10 +42220,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym": { - "curie": "hasExactSynonym", + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasExactSynonym", - "numAppearsIn": 1.0, + "label": "has_exact_synonym", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -42573,10 +42245,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#inSubset": { - "curie": "inSubset", + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "inSubset", - "numAppearsIn": 1.0, + "label": "in_subset", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -42595,7 +42270,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -42608,7 +42283,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -42708,11 +42383,6 @@ "isPreferredRoot": false, "label": "Xenoturbellida", "linkedEntities": { - "NCBITaxon:110814": { - "curie": "NCBITaxon:110814", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=110814" - }, "http://purl.obolibrary.org/obo/NCBITaxon_1312402": { "curie": "NCBITaxon:1312402", "hasLocalDefinition": true, @@ -42784,7 +42454,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -42797,7 +42467,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -42866,11 +42536,6 @@ "isPreferredRoot": false, "label": "Xenoturbella", "linkedEntities": { - "NCBITaxon:110815": { - "curie": "NCBITaxon:110815", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=110815" - }, "http://purl.obolibrary.org/obo/NCBITaxon_110814": { "curie": "NCBITaxon:110814", "hasLocalDefinition": true, @@ -42962,7 +42627,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -42975,7 +42640,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -43048,11 +42713,6 @@ "isPreferredRoot": false, "label": "Teleostomi", "linkedEntities": { - "NCBITaxon:117570": { - "curie": "NCBITaxon:117570", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=117570" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -43164,7 +42824,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -43177,7 +42837,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -43252,11 +42912,6 @@ "isPreferredRoot": false, "label": "Euteleostomi", "linkedEntities": { - "NCBITaxon:117571": { - "curie": "NCBITaxon:117571", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=117571" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -43378,7 +43033,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -43391,7 +43046,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -43454,11 +43109,6 @@ "isPreferredRoot": false, "label": "Xenacoelomorpha", "linkedEntities": { - "NCBITaxon:1312402": { - "curie": "NCBITaxon:1312402", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1312402" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -43520,7 +43170,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -43533,7 +43183,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -43576,11 +43226,6 @@ "isPreferredRoot": false, "label": "cellular organisms", "linkedEntities": { - "NCBITaxon:131567": { - "curie": "NCBITaxon:131567", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=131567" - }, "http://purl.obolibrary.org/obo/CL_0000000": { "curie": "CL:0000000", "hasLocalDefinition": true, @@ -43603,7 +43248,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -43693,11 +43338,6 @@ "isPreferredRoot": false, "label": "Dipnotetrapodomorpha", "linkedEntities": { - "NCBITaxon:1338369": { - "curie": "NCBITaxon:1338369", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1338369" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -43839,7 +43479,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -43852,7 +43492,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -43943,11 +43583,6 @@ "isPreferredRoot": false, "label": "Boreoeutheria", "linkedEntities": { - "NCBITaxon:1437010": { - "curie": "NCBITaxon:1437010", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1437010" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -44149,7 +43784,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -44162,7 +43797,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -44229,11 +43864,6 @@ "isPreferredRoot": false, "label": "Xenoturbellidae", "linkedEntities": { - "NCBITaxon:1547233": { - "curie": "NCBITaxon:1547233", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=1547233" - }, "http://purl.obolibrary.org/obo/NCBITaxon_110814": { "curie": "NCBITaxon:110814", "hasLocalDefinition": true, @@ -44315,7 +43945,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -44328,7 +43958,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -44435,11 +44065,6 @@ "isPreferredRoot": false, "label": "Homininae", "linkedEntities": { - "NCBITaxon:207598": { - "curie": "NCBITaxon:207598", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=207598" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -44721,7 +44346,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -44734,7 +44359,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -44783,11 +44408,6 @@ "isPreferredRoot": false, "label": "Eukaryota", "linkedEntities": { - "NCBITaxon:2759": { - "curie": "NCBITaxon:2759", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=2759" - }, "http://purl.obolibrary.org/obo/CL_0000255": { "curie": "CL:0000255", "hasLocalDefinition": true, @@ -44820,7 +44440,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -44833,7 +44453,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -44937,11 +44557,6 @@ "isPreferredRoot": false, "label": "Euarchontoglires", "linkedEntities": { - "NCBITaxon:314146": { - "curie": "NCBITaxon:314146", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=314146" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -45153,7 +44768,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -45166,7 +44781,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -45265,11 +44880,6 @@ "isPreferredRoot": false, "label": "Simiiformes", "linkedEntities": { - "NCBITaxon:314293": { - "curie": "NCBITaxon:314293", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=314293" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -45511,7 +45121,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -45524,7 +45134,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -45627,11 +45237,6 @@ "isPreferredRoot": false, "label": "Hominoidea", "linkedEntities": { - "NCBITaxon:314295": { - "curie": "NCBITaxon:314295", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=314295" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -45893,7 +45498,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -45906,7 +45511,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -45987,11 +45592,6 @@ "isPreferredRoot": false, "label": "Tetrapoda", "linkedEntities": { - "NCBITaxon:32523": { - "curie": "NCBITaxon:32523", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=32523" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -46143,7 +45743,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -46156,7 +45756,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -46239,11 +45839,6 @@ "isPreferredRoot": false, "label": "Amniota", "linkedEntities": { - "NCBITaxon:32524": { - "curie": "NCBITaxon:32524", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=32524" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -46405,7 +46000,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -46418,7 +46013,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -46505,11 +46100,6 @@ "isPreferredRoot": false, "label": "Theria ", "linkedEntities": { - "NCBITaxon:32525": { - "curie": "NCBITaxon:32525", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=32525" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -46691,7 +46281,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -46704,7 +46294,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -46759,11 +46349,6 @@ "isPreferredRoot": false, "label": "Opisthokonta", "linkedEntities": { - "NCBITaxon:33154": { - "curie": "NCBITaxon:33154", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=33154" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -46785,7 +46370,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -46798,7 +46383,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -46855,11 +46440,6 @@ "isPreferredRoot": false, "label": "Metazoa", "linkedEntities": { - "NCBITaxon:33208": { - "curie": "NCBITaxon:33208", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=33208" - }, "http://purl.obolibrary.org/obo/CL_0000548": { "curie": "CL:0000548", "hasLocalDefinition": true, @@ -46912,7 +46492,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -46925,7 +46505,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -46997,11 +46577,6 @@ "isPreferredRoot": false, "label": "Bilateria", "linkedEntities": { - "NCBITaxon:33213": { - "curie": "NCBITaxon:33213", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=33213" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -47053,7 +46628,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -47066,7 +46641,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -47129,11 +46704,6 @@ "isPreferredRoot": false, "label": "Deuterostomia", "linkedEntities": { - "NCBITaxon:33511": { - "curie": "NCBITaxon:33511", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=33511" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -47195,7 +46765,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -47208,7 +46778,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -47305,11 +46875,6 @@ "isPreferredRoot": false, "label": "Haplorrhini", "linkedEntities": { - "NCBITaxon:376913": { - "curie": "NCBITaxon:376913", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=376913" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -47541,7 +47106,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -47554,7 +47119,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -47639,11 +47204,6 @@ "isPreferredRoot": false, "label": "Mammalia", "linkedEntities": { - "NCBITaxon:40674": { - "curie": "NCBITaxon:40674", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=40674" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -47815,7 +47375,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -47828,7 +47388,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -47887,11 +47447,6 @@ "isPreferredRoot": false, "label": "Porifera", "linkedEntities": { - "NCBITaxon:6040": { - "curie": "NCBITaxon:6040", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=6040" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -47933,7 +47488,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -47946,7 +47501,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -48005,11 +47560,6 @@ "isPreferredRoot": false, "label": "Eumetazoa", "linkedEntities": { - "NCBITaxon:6072": { - "curie": "NCBITaxon:6072", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=6072" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -48122,7 +47672,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -48135,7 +47685,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -48268,11 +47818,6 @@ "isPreferredRoot": false, "label": "Chordata", "linkedEntities": { - "NCBITaxon:7711": { - "curie": "NCBITaxon:7711", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=7711" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -48344,7 +47889,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -48357,7 +47902,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -48426,11 +47971,6 @@ "isPreferredRoot": false, "label": "Vertebrata ", "linkedEntities": { - "NCBITaxon:7742": { - "curie": "NCBITaxon:7742", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=7742" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -48522,7 +48062,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -48535,7 +48075,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -48606,11 +48146,6 @@ "isPreferredRoot": false, "label": "Gnathostomata ", "linkedEntities": { - "NCBITaxon:7776": { - "curie": "NCBITaxon:7776", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=7776" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -48712,7 +48247,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -48725,7 +48260,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -48802,11 +48337,6 @@ "isPreferredRoot": false, "label": "Sarcopterygii", "linkedEntities": { - "NCBITaxon:8287": { - "curie": "NCBITaxon:8287", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=8287" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -48938,7 +48468,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -48951,7 +48481,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -49018,11 +48548,6 @@ "isPreferredRoot": false, "label": "Craniata ", "linkedEntities": { - "NCBITaxon:89593": { - "curie": "NCBITaxon:89593", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=89593" - }, "http://purl.obolibrary.org/obo/NCBITaxon_131567": { "curie": "NCBITaxon:131567", "hasLocalDefinition": true, @@ -49104,7 +48629,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -49117,7 +48642,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -49206,11 +48731,6 @@ "isPreferredRoot": false, "label": "Eutheria", "linkedEntities": { - "NCBITaxon:9347": { - "curie": "NCBITaxon:9347", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9347" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -49402,7 +48922,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -49415,7 +48935,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -49510,11 +49030,6 @@ "isPreferredRoot": false, "label": "Primates", "linkedEntities": { - "NCBITaxon:9443": { - "curie": "NCBITaxon:9443", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9443" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -49736,7 +49251,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -49749,7 +49264,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -49850,11 +49365,6 @@ "isPreferredRoot": false, "label": "Catarrhini", "linkedEntities": { - "NCBITaxon:9526": { - "curie": "NCBITaxon:9526", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9526" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -50106,7 +49616,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -50119,7 +49629,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -50224,11 +49734,6 @@ "isPreferredRoot": false, "label": "Hominidae", "linkedEntities": { - "NCBITaxon:9604": { - "curie": "NCBITaxon:9604", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9604" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -50500,7 +50005,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -50513,7 +50018,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -50622,11 +50127,6 @@ "isPreferredRoot": false, "label": "Homo", "linkedEntities": { - "NCBITaxon:9605": { - "curie": "NCBITaxon:9605", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9605" - }, "http://purl.obolibrary.org/obo/NCBITaxon_117570": { "curie": "NCBITaxon:117570", "hasLocalDefinition": true, @@ -50918,7 +50418,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -50931,7 +50431,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -51042,11 +50542,6 @@ "isPreferredRoot": false, "label": "Homo sapiens", "linkedEntities": { - "NCBITaxon:9606": { - "curie": "NCBITaxon:9606", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?id=9606" - }, "http://purl.obolibrary.org/obo/MONDO_0700096": { "curie": "MONDO:0700096", "hasLocalDefinition": true, @@ -51369,7 +50864,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -51382,7 +50877,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -51455,11 +50950,6 @@ "isPreferredRoot": false, "label": "disease", "linkedEntities": { - "OGMS:0000031": { - "curie": "OGMS:0000031", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/OGMS_0000031" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -51512,7 +51002,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -51525,7 +51015,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -51583,11 +51073,6 @@ "isPreferredRoot": false, "label": "quality", "linkedEntities": { - "PATO:0000001": { - "curie": "PATO:0000001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0000001" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -51609,7 +51094,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -51622,7 +51107,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -51681,11 +51166,6 @@ "isPreferredRoot": false, "label": "morphology", "linkedEntities": { - "PATO:0000051": { - "curie": "PATO:0000051", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0000051" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -51727,7 +51207,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -51740,7 +51220,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -51801,11 +51281,6 @@ "isPreferredRoot": false, "label": "structure", "linkedEntities": { - "PATO:0000141": { - "curie": "PATO:0000141", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0000141" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -51857,7 +51332,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -51870,7 +51345,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -51929,11 +51404,6 @@ "isPreferredRoot": false, "label": "physical quality", "linkedEntities": { - "PATO:0001018": { - "curie": "PATO:0001018", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0001018" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -51975,7 +51445,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -51988,7 +51458,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -52045,11 +51515,6 @@ "isPreferredRoot": false, "label": "physical object quality", "linkedEntities": { - "PATO:0001241": { - "curie": "PATO:0001241", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0001241" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -52081,7 +51546,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -52094,7 +51559,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -52155,11 +51620,6 @@ "isPreferredRoot": false, "label": "cellularity", "linkedEntities": { - "PATO:0001992": { - "curie": "PATO:0001992", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0001992" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -52211,7 +51671,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -52224,7 +51684,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -52287,11 +51747,6 @@ "isPreferredRoot": false, "label": "multicellular", "linkedEntities": { - "PATO:0001993": { - "curie": "PATO:0001993", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0001993" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -52374,7 +51829,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -52387,7 +51842,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -52457,11 +51912,6 @@ "isPreferredRoot": false, "label": "organismal quality", "linkedEntities": { - "PATO:0001995": { - "curie": "PATO:0001995", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0001995" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -52503,7 +51953,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -52516,7 +51966,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -52577,11 +52027,6 @@ "isPreferredRoot": false, "label": "quality of a substance", "linkedEntities": { - "PATO:0002198": { - "curie": "PATO:0002198", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0002198" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -52654,7 +52099,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -52667,7 +52112,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -52741,11 +52186,6 @@ "isPreferredRoot": false, "label": "disconnected", "linkedEntities": { - "PATO:0010001": { - "curie": "PATO:0010001", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/PATO_0010001" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -52828,7 +52268,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -52841,7 +52281,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -52902,11 +52342,6 @@ "isPreferredRoot": false, "label": "characteristic of", "linkedEntities": { - "RO:0000052": { - "curie": "RO:0000052", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000052" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -52932,7 +52367,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -53044,10 +52479,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -53077,7 +52515,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -53090,7 +52528,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -53144,11 +52582,6 @@ "isPreferredRoot": false, "label": "participates in", "linkedEntities": { - "RO:0000056": { - "curie": "RO:0000056", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000056" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -53192,7 +52625,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -53205,7 +52638,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -53218,7 +52651,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -53276,11 +52709,6 @@ "isPreferredRoot": false, "label": "has participant", "linkedEntities": { - "RO:0000057": { - "curie": "RO:0000057", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000057" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -53346,7 +52774,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -53359,7 +52787,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -53372,7 +52800,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -53429,11 +52857,6 @@ "isPreferredRoot": false, "label": "function of", "linkedEntities": { - "RO:0000079": { - "curie": "RO:0000079", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000079" - }, "http://purl.obolibrary.org/obo/BFO_0000034": { "curie": "BFO:0000034", "hasLocalDefinition": true, @@ -53489,7 +52912,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -53502,7 +52925,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -53515,7 +52938,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -53571,11 +52994,6 @@ "isPreferredRoot": false, "label": "quality of", "linkedEntities": { - "RO:0000080": { - "curie": "RO:0000080", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000080" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -53621,7 +53039,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -53634,7 +53052,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -53690,11 +53108,6 @@ "isPreferredRoot": false, "label": "role of", "linkedEntities": { - "RO:0000081": { - "curie": "RO:0000081", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000081" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -53740,7 +53153,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -53753,7 +53166,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -53811,11 +53224,6 @@ "isPreferredRoot": false, "label": "has function", "linkedEntities": { - "RO:0000085": { - "curie": "RO:0000085", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000085" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -53883,7 +53291,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -53896,7 +53304,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -53909,7 +53317,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -53922,7 +53330,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -53979,11 +53387,6 @@ "isPreferredRoot": false, "label": "has quality", "linkedEntities": { - "RO:0000086": { - "curie": "RO:0000086", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000086" - }, "http://purl.obolibrary.org/obo/BFO_0000019": { "curie": "BFO:0000019", "hasLocalDefinition": true, @@ -54041,7 +53444,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -54054,7 +53457,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -54067,7 +53470,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -54125,11 +53528,6 @@ "isPreferredRoot": false, "label": "has role", "linkedEntities": { - "RO:0000087": { - "curie": "RO:0000087", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000087" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -54197,7 +53595,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -54210,7 +53608,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -54223,7 +53621,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -54236,7 +53634,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -54293,11 +53691,6 @@ "isPreferredRoot": false, "label": "has disposition", "linkedEntities": { - "RO:0000091": { - "curie": "RO:0000091", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000091" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -54354,7 +53747,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -54367,7 +53760,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -54380,7 +53773,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -54393,7 +53786,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -54447,11 +53840,6 @@ "isPreferredRoot": false, "label": "disposition of", "linkedEntities": { - "RO:0000092": { - "curie": "RO:0000092", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000092" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -54486,7 +53874,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -54499,7 +53887,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -54553,11 +53941,6 @@ "isPreferredRoot": false, "label": "2D boundary of", "linkedEntities": { - "RO:0002000": { - "curie": "RO:0002000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002000" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -54592,7 +53975,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -54651,11 +54034,6 @@ "isPreferredRoot": false, "label": "has 2D boundary", "linkedEntities": { - "RO:0002002": { - "curie": "RO:0002002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002002" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -54710,7 +54088,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -54723,7 +54101,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -54736,7 +54114,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -54806,11 +54184,6 @@ "isPreferredRoot": false, "label": "has regulatory component activity", "linkedEntities": { - "RO:0002013": { - "curie": "RO:0002013", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002013" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -54911,7 +54284,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -54924,7 +54297,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -54993,11 +54366,6 @@ "isPreferredRoot": false, "label": "has negative regulatory component activity", "linkedEntities": { - "RO:0002014": { - "curie": "RO:0002014", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002014" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -55120,7 +54488,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -55133,7 +54501,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -55202,11 +54570,6 @@ "isPreferredRoot": false, "label": "has positive regulatory component activity", "linkedEntities": { - "RO:0002015": { - "curie": "RO:0002015", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002015" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -55329,7 +54692,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -55342,7 +54705,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -55396,11 +54759,6 @@ "isPreferredRoot": false, "label": "has component activity", "linkedEntities": { - "RO:0002017": { - "curie": "RO:0002017", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002017" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -55446,7 +54804,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -55459,7 +54817,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -55515,11 +54873,6 @@ "isPreferredRoot": false, "label": "has component process", "linkedEntities": { - "RO:0002018": { - "curie": "RO:0002018", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002018" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -55575,7 +54928,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -55588,7 +54941,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -55601,7 +54954,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -55614,7 +54967,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -55668,11 +55021,6 @@ "isPreferredRoot": false, "label": "directly regulated by", "linkedEntities": { - "RO:0002022": { - "curie": "RO:0002022", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002022" - }, "http://purl.obolibrary.org/obo/RO_0002334": { "curie": "RO:0002334", "hasLocalDefinition": true, @@ -55718,7 +55066,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -55731,7 +55079,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -55784,11 +55132,6 @@ "isPreferredRoot": false, "label": "directly negatively regulated by", "linkedEntities": { - "RO:0002023": { - "curie": "RO:0002023", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002023" - }, "http://purl.obolibrary.org/obo/RO_0002022": { "curie": "RO:0002022", "hasLocalDefinition": true, @@ -55845,7 +55188,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -55858,7 +55201,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -55911,11 +55254,6 @@ "isPreferredRoot": false, "label": "directly positively regulated by", "linkedEntities": { - "RO:0002024": { - "curie": "RO:0002024", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002024" - }, "http://purl.obolibrary.org/obo/RO_0002022": { "curie": "RO:0002022", "hasLocalDefinition": true, @@ -55972,7 +55310,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -55985,7 +55323,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -56041,11 +55379,6 @@ "isPreferredRoot": false, "label": "has effector activity", "linkedEntities": { - "RO:0002025": { - "curie": "RO:0002025", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002025" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -56102,7 +55435,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -56115,7 +55448,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -56162,11 +55495,6 @@ "isPreferredRoot": false, "label": "before or simultaneous with", "linkedEntities": { - "RO:0002081": { - "curie": "RO:0002081", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002081" - }, "http://purl.obolibrary.org/obo/RO_0002222": { "curie": "RO:0002222", "hasLocalDefinition": true, @@ -56179,7 +55507,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -56192,7 +55520,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -56249,11 +55577,6 @@ "isPreferredRoot": false, "label": "simultaneous with", "linkedEntities": { - "RO:0002082": { - "curie": "RO:0002082", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002082" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -56288,7 +55611,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -56301,7 +55624,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -56353,11 +55676,6 @@ "isPreferredRoot": false, "label": "ends after", "linkedEntities": { - "RO:0002086": { - "curie": "RO:0002086", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002086" - }, "http://purl.obolibrary.org/obo/RO_0002222": { "curie": "RO:0002222", "hasLocalDefinition": true, @@ -56370,7 +55688,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -56383,7 +55701,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -56439,11 +55757,6 @@ "isPreferredRoot": false, "label": "immediately preceded by", "linkedEntities": { - "RO:0002087": { - "curie": "RO:0002087", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002087" - }, "http://purl.obolibrary.org/obo/BFO_0000062": { "curie": "BFO:0000062", "hasLocalDefinition": true, @@ -56511,7 +55824,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -56524,7 +55837,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -56579,11 +55892,6 @@ "isPreferredRoot": false, "label": "immediately precedes", "linkedEntities": { - "RO:0002090": { - "curie": "RO:0002090", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002090" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -56640,7 +55948,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -56653,7 +55961,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -56717,11 +56025,6 @@ "isPreferredRoot": false, "label": "overlaps", "linkedEntities": { - "RO:0002131": { - "curie": "RO:0002131", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002131" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -56756,7 +56059,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -56809,11 +56112,6 @@ "isPreferredRoot": false, "label": "only in taxon", "linkedEntities": { - "RO:0002160": { - "curie": "RO:0002160", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002160" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -56848,7 +56146,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -56861,7 +56159,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -57022,10 +56320,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -57055,7 +56356,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -57099,13 +56400,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "RO_0002175", - "linkedEntities": { - "RO:0002175": { - "curie": "RO:0002175", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002175" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "gitissue502", @@ -57147,11 +56442,6 @@ "isPreferredRoot": false, "label": "has component", "linkedEntities": { - "RO:0002180": { - "curie": "RO:0002180", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002180" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -57197,7 +56487,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -57210,7 +56500,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -57268,11 +56558,6 @@ "isPreferredRoot": false, "label": "develops from", "linkedEntities": { - "RO:0002202": { - "curie": "RO:0002202", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002202" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -57317,7 +56602,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -57330,7 +56615,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -57343,7 +56628,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -57356,7 +56641,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -57425,11 +56710,6 @@ "isPreferredRoot": false, "label": "develops into", "linkedEntities": { - "RO:0002203": { - "curie": "RO:0002203", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002203" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -57497,7 +56777,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -57510,7 +56790,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -57585,11 +56865,6 @@ "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", "url": "http://amigo.geneontology.org/amigo/term/GO:0032502" }, - "RO:0002207": { - "curie": "RO:0002207", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002207" - }, "http://purl.obolibrary.org/obo/CL_0000000": { "curie": "CL:0000000", "hasLocalDefinition": true, @@ -57655,7 +56930,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -57668,7 +56943,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -57681,7 +56956,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -57694,7 +56969,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -57753,11 +57028,6 @@ "isPreferredRoot": false, "label": "directly develops into", "linkedEntities": { - "RO:0002210": { - "curie": "RO:0002210", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002210" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -57836,7 +57106,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -57849,7 +57119,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -57927,11 +57197,6 @@ "isPreferredRoot": false, "label": "regulates", "linkedEntities": { - "RO:0002211": { - "curie": "RO:0002211", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002211" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -58053,7 +57318,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -58066,7 +57331,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -58079,7 +57344,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -58092,7 +57357,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -58164,11 +57429,6 @@ "isPreferredRoot": false, "label": "negatively regulates", "linkedEntities": { - "RO:0002212": { - "curie": "RO:0002212", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002212" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -58291,7 +57551,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -58304,7 +57564,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -58385,11 +57645,6 @@ "isPreferredRoot": false, "label": "positively regulates", "linkedEntities": { - "RO:0002213": { - "curie": "RO:0002213", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002213" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -58523,7 +57778,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -58536,7 +57791,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -58594,11 +57849,6 @@ "isPreferredRoot": false, "label": "capable of", "linkedEntities": { - "RO:0002215": { - "curie": "RO:0002215", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002215" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -58664,7 +57914,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -58677,7 +57927,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -58690,7 +57940,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -58703,7 +57953,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -58758,11 +58008,6 @@ "isPreferredRoot": false, "label": "capable of part of", "linkedEntities": { - "RO:0002216": { - "curie": "RO:0002216", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002216" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -58797,7 +58042,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -58810,7 +58055,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -58858,11 +58103,6 @@ "isPreferredRoot": false, "label": "temporally related to", "linkedEntities": { - "RO:0002222": { - "curie": "RO:0002222", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002222" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -58874,7 +58114,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -58887,7 +58127,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -58900,7 +58140,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -58961,11 +58201,6 @@ "isPreferredRoot": false, "label": "starts", "linkedEntities": { - "RO:0002223": { - "curie": "RO:0002223", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002223" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -59022,7 +58257,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -59035,7 +58270,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -59101,11 +58336,6 @@ "isPreferredRoot": false, "label": "starts with", "linkedEntities": { - "RO:0002224": { - "curie": "RO:0002224", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002224" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -59162,7 +58392,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -59175,7 +58405,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -59234,11 +58464,6 @@ "isPreferredRoot": false, "label": "develops from part of", "linkedEntities": { - "RO:0002225": { - "curie": "RO:0002225", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002225" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -59295,7 +58520,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -59308,7 +58533,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -59371,11 +58596,6 @@ "isPreferredRoot": false, "label": "ends", "linkedEntities": { - "RO:0002229": { - "curie": "RO:0002229", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002229" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -59432,7 +58652,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -59445,7 +58665,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -59511,11 +58731,6 @@ "isPreferredRoot": false, "label": "ends with", "linkedEntities": { - "RO:0002230": { - "curie": "RO:0002230", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002230" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -59572,7 +58787,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -59585,7 +58800,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -59643,11 +58858,6 @@ "isPreferredRoot": false, "label": "has start location", "linkedEntities": { - "RO:0002231": { - "curie": "RO:0002231", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002231" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -59713,7 +58923,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -59726,7 +58936,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -59739,7 +58949,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -59752,7 +58962,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -59810,11 +59020,6 @@ "isPreferredRoot": false, "label": "has end location", "linkedEntities": { - "RO:0002232": { - "curie": "RO:0002232", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002232" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -59880,7 +59085,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -59893,7 +59098,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -59906,7 +59111,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -59919,7 +59124,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -59977,11 +59182,6 @@ "isPreferredRoot": false, "label": "has input", "linkedEntities": { - "RO:0002233": { - "curie": "RO:0002233", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002233" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -60037,7 +59237,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -60050,7 +59250,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -60063,7 +59263,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -60122,11 +59322,6 @@ "isPreferredRoot": false, "label": "has developmental contribution from", "linkedEntities": { - "RO:0002254": { - "curie": "RO:0002254", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002254" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -60193,7 +59388,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -60206,7 +59401,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -60219,7 +59414,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -60232,7 +59427,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -60300,11 +59495,6 @@ "isPreferredRoot": false, "label": "developmentally contributes to", "linkedEntities": { - "RO:0002255": { - "curie": "RO:0002255", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002255" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -60383,7 +59573,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -60396,7 +59586,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -60454,11 +59644,6 @@ "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", "url": "http://amigo.geneontology.org/amigo/term/GO:0032502" }, - "RO:0002258": { - "curie": "RO:0002258", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002258" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -60503,7 +59688,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -60516,7 +59701,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -60529,7 +59714,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -60589,11 +59774,6 @@ "isPreferredRoot": false, "label": "acts upstream of", "linkedEntities": { - "RO:0002263": { - "curie": "RO:0002263", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002263" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -60661,7 +59841,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -60674,7 +59854,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -60733,11 +59913,6 @@ "isPreferredRoot": false, "label": "acts upstream of or within", "linkedEntities": { - "RO:0002264": { - "curie": "RO:0002264", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002264" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -60794,7 +59969,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -60807,7 +59982,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -60860,11 +60035,6 @@ "isPreferredRoot": false, "label": "developmentally succeeded by", "linkedEntities": { - "RO:0002286": { - "curie": "RO:0002286", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002286" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -60899,7 +60069,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -60912,7 +60082,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -60968,11 +60138,6 @@ "isPreferredRoot": false, "label": "part of developmental precursor of", "linkedEntities": { - "RO:0002287": { - "curie": "RO:0002287", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002287" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -61018,7 +60183,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -61031,7 +60196,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -61094,11 +60259,6 @@ "isPreferredRoot": false, "label": "causally upstream of, positive effect", "linkedEntities": { - "RO:0002304": { - "curie": "RO:0002304", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002304" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -61177,7 +60337,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -61190,7 +60350,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -61255,11 +60415,6 @@ "isPreferredRoot": false, "label": "causally upstream of, negative effect", "linkedEntities": { - "RO:0002305": { - "curie": "RO:0002305", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002305" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -61338,7 +60493,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -61351,7 +60506,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -61419,11 +60574,6 @@ "isPreferredRoot": false, "label": "enables", "linkedEntities": { - "RO:0002327": { - "curie": "RO:0002327", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002327" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -61513,7 +60663,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -61526,7 +60676,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -61600,11 +60750,6 @@ "isPreferredRoot": false, "label": "involved in", "linkedEntities": { - "RO:0002331": { - "curie": "RO:0002331", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002331" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -61694,7 +60839,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -61707,7 +60852,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -61760,11 +60905,6 @@ "isPreferredRoot": false, "label": "enabled by", "linkedEntities": { - "RO:0002333": { - "curie": "RO:0002333", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002333" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -61799,7 +60939,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -61812,7 +60952,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -61873,11 +61013,6 @@ "isPreferredRoot": false, "label": "regulated by", "linkedEntities": { - "RO:0002334": { - "curie": "RO:0002334", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002334" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -61933,7 +61068,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -61946,7 +61081,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -61959,7 +61094,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -61972,7 +61107,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -62029,11 +61164,6 @@ "isPreferredRoot": false, "label": "negatively regulated by", "linkedEntities": { - "RO:0002335": { - "curie": "RO:0002335", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002335" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -62090,7 +61220,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -62103,7 +61233,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -62160,11 +61290,6 @@ "isPreferredRoot": false, "label": "positively regulated by", "linkedEntities": { - "RO:0002336": { - "curie": "RO:0002336", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002336" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -62221,7 +61346,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -62234,7 +61359,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -62287,11 +61412,6 @@ "isPreferredRoot": false, "label": "input of", "linkedEntities": { - "RO:0002352": { - "curie": "RO:0002352", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002352" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -62326,7 +61446,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -62339,7 +61459,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -62390,11 +61510,6 @@ "isPreferredRoot": false, "label": "has developmental potential involving", "linkedEntities": { - "RO:0002384": { - "curie": "RO:0002384", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002384" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -62417,7 +61532,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -62430,7 +61545,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -62443,7 +61558,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -62496,11 +61611,6 @@ "isPreferredRoot": false, "label": "has potential to developmentally contribute to", "linkedEntities": { - "RO:0002385": { - "curie": "RO:0002385", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002385" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -62524,7 +61634,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -62537,7 +61647,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -62590,11 +61700,6 @@ "isPreferredRoot": false, "label": "has potential to develop into", "linkedEntities": { - "RO:0002387": { - "curie": "RO:0002387", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002387" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -62618,7 +61723,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -62631,7 +61736,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -62687,11 +61792,6 @@ "isPreferredRoot": false, "label": "has potential to directly develop into", "linkedEntities": { - "RO:0002388": { - "curie": "RO:0002388", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002388" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -62726,7 +61826,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -62739,7 +61839,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -62805,11 +61905,6 @@ "isPreferredRoot": false, "label": "causally downstream of", "linkedEntities": { - "RO:0002404": { - "curie": "RO:0002404", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002404" - }, "http://purl.obolibrary.org/obo/BFO_0000062": { "curie": "BFO:0000062", "hasLocalDefinition": true, @@ -62888,7 +61983,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -62901,7 +61996,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -62965,11 +62060,6 @@ "isPreferredRoot": false, "label": "immediately causally downstream of", "linkedEntities": { - "RO:0002405": { - "curie": "RO:0002405", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002405" - }, "http://purl.obolibrary.org/obo/BFO_0000062": { "curie": "BFO:0000062", "hasLocalDefinition": true, @@ -63059,7 +62149,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -63072,7 +62162,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -63161,11 +62251,6 @@ "isPreferredRoot": false, "label": "indirectly positively regulates", "linkedEntities": { - "RO:0002407": { - "curie": "RO:0002407", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002407" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -63321,7 +62406,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -63334,7 +62419,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -63421,11 +62506,6 @@ "isPreferredRoot": false, "label": "indirectly negatively regulates", "linkedEntities": { - "RO:0002409": { - "curie": "RO:0002409", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002409" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -63570,7 +62650,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -63583,7 +62663,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -63650,11 +62730,6 @@ "isPreferredRoot": false, "label": "causally upstream of", "linkedEntities": { - "RO:0002411": { - "curie": "RO:0002411", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002411" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -63722,7 +62797,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -63735,7 +62810,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -63801,11 +62876,6 @@ "isPreferredRoot": false, "label": "immediately causally upstream of", "linkedEntities": { - "RO:0002412": { - "curie": "RO:0002412", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002412" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -63895,7 +62965,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -63908,7 +62978,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -63965,11 +63035,6 @@ "isPreferredRoot": false, "label": "causally upstream of or within", "linkedEntities": { - "RO:0002418": { - "curie": "RO:0002418", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002418" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -64015,7 +63080,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -64028,7 +63093,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -64084,11 +63149,6 @@ "isPreferredRoot": false, "label": "causally downstream of or within", "linkedEntities": { - "RO:0002427": { - "curie": "RO:0002427", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002427" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -64123,7 +63183,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -64136,7 +63196,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -64210,11 +63270,6 @@ "isPreferredRoot": false, "label": "involved in regulation of", "linkedEntities": { - "RO:0002428": { - "curie": "RO:0002428", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002428" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -64315,7 +63370,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -64328,7 +63383,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -64397,11 +63452,6 @@ "isPreferredRoot": false, "label": "involved in positive regulation of", "linkedEntities": { - "RO:0002429": { - "curie": "RO:0002429", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002429" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -64513,7 +63563,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -64526,7 +63576,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -64595,11 +63645,6 @@ "isPreferredRoot": false, "label": "involved in negative regulation of", "linkedEntities": { - "RO:0002430": { - "curie": "RO:0002430", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002430" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -64711,7 +63756,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -64724,7 +63769,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -64787,11 +63832,6 @@ "isPreferredRoot": false, "label": "involved in or involved in regulation of", "linkedEntities": { - "RO:0002431": { - "curie": "RO:0002431", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002431" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -64848,7 +63888,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -64861,7 +63901,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -64919,11 +63959,6 @@ "isPreferredRoot": false, "label": "interacts with", "linkedEntities": { - "RO:0002434": { - "curie": "RO:0002434", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002434" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -64957,7 +63992,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -64970,7 +64005,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -64983,7 +64018,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -65038,11 +64073,6 @@ "isPreferredRoot": false, "label": "molecularly interacts with", "linkedEntities": { - "RO:0002436": { - "curie": "RO:0002436", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002436" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -65066,7 +64096,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -65079,7 +64109,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -65132,11 +64162,6 @@ "isPreferredRoot": false, "label": "phosphorylates", "linkedEntities": { - "RO:0002447": { - "curie": "RO:0002447", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002447" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "curie": "IAO:0000116", "hasLocalDefinition": true, @@ -65171,7 +64196,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -65184,7 +64209,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -65255,11 +64280,6 @@ "isPreferredRoot": false, "label": "directly regulates activity of", "linkedEntities": { - "RO:0002448": { - "curie": "RO:0002448", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002448" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -65370,7 +64390,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -65383,7 +64403,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -65396,7 +64416,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -65409,7 +64429,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -65475,11 +64495,6 @@ "isPreferredRoot": false, "label": "directly negatively regulates activity of", "linkedEntities": { - "RO:0002449": { - "curie": "RO:0002449", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002449" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -65601,7 +64616,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -65614,7 +64629,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -65627,7 +64642,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -65640,7 +64655,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -65706,11 +64721,6 @@ "isPreferredRoot": false, "label": "directly positively regulates activity of", "linkedEntities": { - "RO:0002450": { - "curie": "RO:0002450", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002450" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -65832,7 +64842,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -65845,7 +64855,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -65858,7 +64868,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -65871,7 +64881,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -65928,11 +64938,6 @@ "isPreferredRoot": false, "label": "composed primarily of", "linkedEntities": { - "RO:0002473": { - "curie": "RO:0002473", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002473" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -65977,7 +64982,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -65990,7 +64995,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -66003,7 +65008,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -66016,7 +65021,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -66067,11 +65072,6 @@ "isPreferredRoot": false, "label": "has part that occurs in", "linkedEntities": { - "RO:0002479": { - "curie": "RO:0002479", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002479" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -66104,7 +65104,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -66117,7 +65117,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -66130,7 +65130,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -66178,11 +65178,6 @@ "isPreferredRoot": false, "label": "relation between physical entity and a process or stage", "linkedEntities": { - "RO:0002487": { - "curie": "RO:0002487", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002487" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -66204,7 +65199,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -66217,7 +65212,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -66230,7 +65225,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -66294,11 +65289,6 @@ "isPreferredRoot": false, "label": "existence starts during", "linkedEntities": { - "RO:0002488": { - "curie": "RO:0002488", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002488" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -66355,7 +65345,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -66368,7 +65358,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -66425,11 +65415,6 @@ "isPreferredRoot": false, "label": "existence starts with", "linkedEntities": { - "RO:0002489": { - "curie": "RO:0002489", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002489" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -66486,7 +65471,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -66499,7 +65484,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -66551,11 +65536,6 @@ "isPreferredRoot": false, "label": "existence overlaps", "linkedEntities": { - "RO:0002490": { - "curie": "RO:0002490", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002490" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -66579,7 +65559,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -66592,7 +65572,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -66658,11 +65638,6 @@ "isPreferredRoot": false, "label": "existence ends during", "linkedEntities": { - "RO:0002492": { - "curie": "RO:0002492", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002492" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -66719,7 +65694,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -66732,7 +65707,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -66789,11 +65764,6 @@ "isPreferredRoot": false, "label": "existence ends with", "linkedEntities": { - "RO:0002493": { - "curie": "RO:0002493", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002493" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -66850,7 +65820,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -66863,7 +65833,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -66921,11 +65891,6 @@ "isPreferredRoot": false, "label": "transformation of", "linkedEntities": { - "RO:0002494": { - "curie": "RO:0002494", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002494" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -66960,7 +65925,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -66973,7 +65938,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -67036,11 +66001,6 @@ "isPreferredRoot": false, "label": "immediate transformation of", "linkedEntities": { - "RO:0002495": { - "curie": "RO:0002495", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002495" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -67097,7 +66057,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -67110,7 +66070,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -67184,11 +66144,6 @@ "isPreferredRoot": false, "label": "existence starts during or after", "linkedEntities": { - "RO:0002496": { - "curie": "RO:0002496", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002496" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -67256,7 +66211,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -67269,7 +66224,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -67343,11 +66298,6 @@ "isPreferredRoot": false, "label": "existence ends during or before", "linkedEntities": { - "RO:0002497": { - "curie": "RO:0002497", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002497" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -67415,7 +66365,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -67428,7 +66378,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -67481,11 +66431,6 @@ "isPreferredRoot": false, "label": "causal agent in process", "linkedEntities": { - "RO:0002500": { - "curie": "RO:0002500", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002500" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -67520,7 +66465,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -67533,7 +66478,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -67584,11 +66529,6 @@ "isPreferredRoot": false, "label": "causal relation between processes", "linkedEntities": { - "RO:0002501": { - "curie": "RO:0002501", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002501" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -67611,7 +66551,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -67624,7 +66564,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -67637,7 +66577,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -67686,11 +66626,6 @@ "isPreferredRoot": false, "label": "causal relation between entities", "linkedEntities": { - "RO:0002506": { - "curie": "RO:0002506", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002506" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -67713,7 +66648,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -67726,7 +66661,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -67739,7 +66674,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -67789,11 +66724,6 @@ "isPreferredRoot": false, "label": "causally influenced by", "linkedEntities": { - "RO:0002559": { - "curie": "RO:0002559", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002559" - }, "http://purl.obolibrary.org/obo/RO_0002506": { "curie": "RO:0002506", "hasLocalDefinition": true, @@ -67817,7 +66747,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -67830,7 +66760,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -67895,11 +66825,6 @@ "isPreferredRoot": false, "label": "causally influences", "linkedEntities": { - "RO:0002566": { - "curie": "RO:0002566", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002566" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -67988,7 +66913,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -68001,7 +66926,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -68014,7 +66939,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -68027,7 +66952,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -68095,11 +67020,6 @@ "isPreferredRoot": false, "label": "directly regulates", "linkedEntities": { - "RO:0002578": { - "curie": "RO:0002578", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002578" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -68211,7 +67131,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -68224,7 +67144,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -68280,11 +67200,6 @@ "isPreferredRoot": false, "label": "has part structure that is capable of", "linkedEntities": { - "RO:0002584": { - "curie": "RO:0002584", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002584" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -68330,7 +67245,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -68343,7 +67258,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -68395,11 +67310,6 @@ "isPreferredRoot": false, "label": "causal relation between material entity and a process", "linkedEntities": { - "RO:0002595": { - "curie": "RO:0002595", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002595" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -68443,7 +67353,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -68456,7 +67366,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -68469,7 +67379,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -68528,11 +67438,6 @@ "isPreferredRoot": false, "label": "capable of regulating", "linkedEntities": { - "RO:0002596": { - "curie": "RO:0002596", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002596" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -68589,7 +67494,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -68602,7 +67507,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -68662,11 +67567,6 @@ "isPreferredRoot": false, "label": "capable of negatively regulating", "linkedEntities": { - "RO:0002597": { - "curie": "RO:0002597", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002597" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -68734,7 +67634,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -68747,7 +67647,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -68807,11 +67707,6 @@ "isPreferredRoot": false, "label": "capable of positively regulating", "linkedEntities": { - "RO:0002598": { - "curie": "RO:0002598", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002598" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -68879,7 +67774,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -68892,7 +67787,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -68942,11 +67837,6 @@ "isPreferredRoot": false, "label": "process has causal agent", "linkedEntities": { - "RO:0002608": { - "curie": "RO:0002608", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002608" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -68970,7 +67860,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -69042,11 +67932,6 @@ "isPreferredRoot": false, "label": "directly positively regulates", "linkedEntities": { - "RO:0002629": { - "curie": "RO:0002629", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002629" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -69202,7 +68087,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -69215,7 +68100,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -69287,11 +68172,6 @@ "isPreferredRoot": false, "label": "directly negatively regulates", "linkedEntities": { - "RO:0002630": { - "curie": "RO:0002630", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002630" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -69447,7 +68327,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -69460,7 +68340,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -69512,11 +68392,6 @@ "isPreferredRoot": false, "label": "produces", "linkedEntities": { - "RO:0003000": { - "curie": "RO:0003000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0003000" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -69550,7 +68425,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -69563,7 +68438,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -69576,7 +68451,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -69628,11 +68503,6 @@ "isPreferredRoot": false, "label": "produced by", "linkedEntities": { - "RO:0003001": { - "curie": "RO:0003001", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0003001" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -69666,7 +68536,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -69679,7 +68549,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -69692,7 +68562,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -69742,11 +68612,6 @@ "isPreferredRoot": false, "label": "disease has basis in", "linkedEntities": { - "RO:0004019": { - "curie": "RO:0004019", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0004019" - }, "http://purl.obolibrary.org/obo/OGMS_0000031": { "curie": "OGMS:0000031", "hasLocalDefinition": true, @@ -69769,7 +68634,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -69782,7 +68647,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -69795,7 +68660,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -69950,10 +68815,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -69983,7 +68851,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -69996,7 +68864,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -70009,7 +68877,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -70022,7 +68890,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -70069,11 +68937,6 @@ "isPreferredRoot": false, "label": "causal relationship with disease as subject", "linkedEntities": { - "RO:0004023": { - "curie": "RO:0004023", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0004023" - }, "http://purl.obolibrary.org/obo/OGMS_0000031": { "curie": "OGMS:0000031", "hasLocalDefinition": true, @@ -70085,7 +68948,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -70098,7 +68961,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -70222,10 +69085,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -70255,7 +69121,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -70268,7 +69134,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -70281,7 +69147,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -70294,7 +69160,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -70441,10 +69307,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -70474,7 +69343,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -70487,7 +69356,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -70500,7 +69369,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -70595,10 +69464,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -70628,7 +69500,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -70641,7 +69513,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -70698,11 +69570,6 @@ "isPreferredRoot": false, "label": "acts upstream of or within, positive effect", "linkedEntities": { - "RO:0004032": { - "curie": "RO:0004032", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0004032" - }, "http://purl.obolibrary.org/obo/RO_0002264": { "curie": "RO:0002264", "hasLocalDefinition": true, @@ -70759,7 +69626,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -70772,7 +69639,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -70827,11 +69694,6 @@ "isPreferredRoot": false, "label": "acts upstream of or within, negative effect", "linkedEntities": { - "RO:0004033": { - "curie": "RO:0004033", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0004033" - }, "http://purl.obolibrary.org/obo/RO_0002264": { "curie": "RO:0002264", "hasLocalDefinition": true, @@ -70888,7 +69750,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -70901,7 +69763,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -70967,11 +69829,6 @@ "isPreferredRoot": false, "label": "acts upstream of, positive effect", "linkedEntities": { - "RO:0004034": { - "curie": "RO:0004034", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0004034" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -71061,7 +69918,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -71074,7 +69931,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -71142,11 +69999,6 @@ "isPreferredRoot": false, "label": "acts upstream of, negative effect", "linkedEntities": { - "RO:0004035": { - "curie": "RO:0004035", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0004035" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -71236,7 +70088,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -71249,7 +70101,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -71301,11 +70153,6 @@ "isPreferredRoot": false, "label": "causally upstream of or within, negative effect", "linkedEntities": { - "RO:0004046": { - "curie": "RO:0004046", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0004046" - }, "http://purl.obolibrary.org/obo/RO_0002418": { "curie": "RO:0002418", "hasLocalDefinition": true, @@ -71329,7 +70176,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -71342,7 +70189,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -71392,11 +70239,6 @@ "isPreferredRoot": false, "label": "causally upstream of or within, positive effect", "linkedEntities": { - "RO:0004047": { - "curie": "RO:0004047", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0004047" - }, "http://purl.obolibrary.org/obo/RO_0002418": { "curie": "RO:0002418", "hasLocalDefinition": true, @@ -71420,7 +70262,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -71433,7 +70275,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -71488,11 +70330,6 @@ "isPreferredRoot": false, "label": "regulates activity of", "linkedEntities": { - "RO:0011002": { - "curie": "RO:0011002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0011002" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -71537,7 +70374,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -71550,7 +70387,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -71563,7 +70400,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -71576,7 +70413,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -71634,11 +70471,6 @@ "isPreferredRoot": false, "label": "indirectly causally upstream of", "linkedEntities": { - "RO:0012011": { - "curie": "RO:0012011", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0012011" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -71706,7 +70538,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -71719,7 +70551,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -71785,11 +70617,6 @@ "isPreferredRoot": false, "label": "indirectly regulates", "linkedEntities": { - "RO:0012012": { - "curie": "RO:0012012", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0012012" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -71879,7 +70706,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -71892,7 +70719,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -71947,11 +70774,6 @@ "isPreferredRoot": false, "label": "regulates characteristic", "linkedEntities": { - "RO:0019000": { - "curie": "RO:0019000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0019000" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -71995,7 +70817,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -72008,7 +70830,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -72021,7 +70843,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -72077,11 +70899,6 @@ "isPreferredRoot": false, "label": "positively regulates characteristic", "linkedEntities": { - "RO:0019001": { - "curie": "RO:0019001", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0019001" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -72116,7 +70933,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -72129,7 +70946,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -72191,11 +71008,6 @@ "isPreferredRoot": false, "label": "negatively regulates characteristic", "linkedEntities": { - "RO:0019002": { - "curie": "RO:0019002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0019002" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -72252,7 +71064,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -72265,7 +71077,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -72323,11 +71135,6 @@ "isPreferredRoot": false, "label": "processual entity", "linkedEntities": { - "UBERON:0000000": { - "curie": "UBERON:0000000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000000" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -72380,7 +71187,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -72393,7 +71200,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -72467,11 +71274,6 @@ "isPreferredRoot": false, "label": "anatomical structure", "linkedEntities": { - "UBERON:0000061": { - "curie": "UBERON:0000061", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000061" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -72617,7 +71419,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -72630,7 +71432,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -72786,11 +71588,6 @@ "isPreferredRoot": false, "label": "organ", "linkedEntities": { - "UBERON:0000062": { - "curie": "UBERON:0000062", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000062" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -72998,7 +71795,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -73011,7 +71808,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -73150,11 +71947,6 @@ "isPreferredRoot": false, "label": "fully formed stage", "linkedEntities": { - "UBERON:0000066": { - "curie": "UBERON:0000066", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000066" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -73321,7 +72113,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -73334,7 +72126,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -73514,11 +72306,6 @@ "isPreferredRoot": false, "label": "embryo stage", "linkedEntities": { - "UBERON:0000068": { - "curie": "UBERON:0000068", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000068" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -73737,7 +72524,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -73750,7 +72537,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -73988,11 +72775,6 @@ "isPreferredRoot": false, "label": "death stage", "linkedEntities": { - "UBERON:0000071": { - "curie": "UBERON:0000071", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000071" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -74151,7 +72933,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -74164,7 +72946,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -74315,11 +73097,6 @@ "isPreferredRoot": false, "label": "post-embryonic stage", "linkedEntities": { - "UBERON:0000092": { - "curie": "UBERON:0000092", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000092" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -74446,7 +73223,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -74459,7 +73236,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -74592,11 +73369,6 @@ "isPreferredRoot": false, "label": "life cycle", "linkedEntities": { - "UBERON:0000104": { - "curie": "UBERON:0000104", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000104" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -74754,7 +73526,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -74767,7 +73539,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -74943,11 +73715,6 @@ "isPreferredRoot": false, "label": "life cycle stage", "linkedEntities": { - "UBERON:0000105": { - "curie": "UBERON:0000105", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000105" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -75043,7 +73810,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -75056,7 +73823,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -75167,11 +73934,6 @@ "isPreferredRoot": false, "label": "zygote stage", "linkedEntities": { - "UBERON:0000106": { - "curie": "UBERON:0000106", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000106" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -75277,7 +74039,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -75290,7 +74052,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -75418,11 +74180,6 @@ "isPreferredRoot": false, "label": "cleavage stage", "linkedEntities": { - "UBERON:0000107": { - "curie": "UBERON:0000107", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000107" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -75559,7 +74316,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -75572,7 +74329,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -75706,11 +74463,6 @@ "isPreferredRoot": false, "label": "blastula stage", "linkedEntities": { - "UBERON:0000108": { - "curie": "UBERON:0000108", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000108" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -75826,7 +74578,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -75839,7 +74591,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -75975,11 +74727,6 @@ "isPreferredRoot": false, "label": "gastrula stage", "linkedEntities": { - "UBERON:0000109": { - "curie": "UBERON:0000109", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000109" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -76126,7 +74873,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -76139,7 +74886,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -76295,11 +75042,6 @@ "isPreferredRoot": false, "label": "neurula stage", "linkedEntities": { - "UBERON:0000110": { - "curie": "UBERON:0000110", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000110" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -76436,7 +75178,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -76449,7 +75191,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -76588,11 +75330,6 @@ "isPreferredRoot": false, "label": "organogenesis stage", "linkedEntities": { - "UBERON:0000111": { - "curie": "UBERON:0000111", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000111" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -76750,7 +75487,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -76763,7 +75500,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -76919,11 +75656,6 @@ "isPreferredRoot": false, "label": "organism substance", "linkedEntities": { - "UBERON:0000463": { - "curie": "UBERON:0000463", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000463" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -77100,7 +75832,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -77113,7 +75845,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -77222,11 +75954,6 @@ "isPreferredRoot": false, "label": "material anatomical entity", "linkedEntities": { - "UBERON:0000465": { - "curie": "UBERON:0000465", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000465" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -77309,7 +76036,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -77322,7 +76049,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -77395,11 +76122,6 @@ "isPreferredRoot": false, "label": "immaterial anatomical entity", "linkedEntities": { - "UBERON:0000466": { - "curie": "UBERON:0000466", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000466" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -77472,7 +76194,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -77485,7 +76207,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -77583,11 +76305,6 @@ "isPreferredRoot": false, "label": "anatomical system", "linkedEntities": { - "UBERON:0000467": { - "curie": "UBERON:0000467", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000467" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -77732,7 +76449,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -77745,7 +76462,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -77851,11 +76568,6 @@ "isPreferredRoot": false, "label": "multicellular organism", "linkedEntities": { - "UBERON:0000468": { - "curie": "UBERON:0000468", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000468" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -78010,7 +76722,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -78023,7 +76735,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -78152,11 +76864,6 @@ "isPreferredRoot": false, "label": "female reproductive system", "linkedEntities": { - "UBERON:0000474": { - "curie": "UBERON:0000474", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000474" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -78311,7 +77018,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -78324,7 +77031,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -78427,11 +77134,6 @@ "isPreferredRoot": false, "label": "embryo", "linkedEntities": { - "UBERON:0000922": { - "curie": "UBERON:0000922", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000922" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -78586,7 +77288,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -78599,7 +77301,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -78749,11 +77451,6 @@ "isPreferredRoot": false, "label": "endocrine system", "linkedEntities": { - "UBERON:0000949": { - "curie": "UBERON:0000949", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000949" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -78950,7 +77647,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -78963,7 +77660,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -79111,11 +77808,6 @@ "isPreferredRoot": false, "label": "reproductive system", "linkedEntities": { - "UBERON:0000990": { - "curie": "UBERON:0000990", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000990" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -79353,7 +78045,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -79366,7 +78058,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -79574,11 +78266,6 @@ "isPreferredRoot": false, "label": "gonad", "linkedEntities": { - "UBERON:0000991": { - "curie": "UBERON:0000991", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000991" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -79816,7 +78503,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -79829,7 +78516,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -80036,11 +78723,6 @@ "isPreferredRoot": false, "label": "nervous system", "linkedEntities": { - "UBERON:0001016": { - "curie": "UBERON:0001016", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001016" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -80333,7 +79015,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -80346,7 +79028,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -80548,11 +79230,6 @@ "isPreferredRoot": false, "label": "primordium", "linkedEntities": { - "UBERON:0001048": { - "curie": "UBERON:0001048", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001048" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -80666,7 +79343,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -80679,7 +79356,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -80750,11 +79427,6 @@ "isPreferredRoot": false, "label": "anatomical entity", "linkedEntities": { - "UBERON:0001062": { - "curie": "UBERON:0001062", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0001062" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -80807,7 +79479,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -80820,7 +79492,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -80909,11 +79581,6 @@ "isPreferredRoot": false, "label": "embryonic structure", "linkedEntities": { - "UBERON:0002050": { - "curie": "UBERON:0002050", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002050" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -81037,7 +79704,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -81050,7 +79717,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -81164,11 +79831,6 @@ "isPreferredRoot": false, "label": "endocrine gland", "linkedEntities": { - "UBERON:0002368": { - "curie": "UBERON:0002368", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002368" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -81374,7 +80036,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -81387,7 +80049,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -81511,11 +80173,6 @@ "isPreferredRoot": false, "label": "gland", "linkedEntities": { - "UBERON:0002530": { - "curie": "UBERON:0002530", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0002530" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -81701,7 +80358,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -81714,7 +80371,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -81827,11 +80484,6 @@ "isPreferredRoot": false, "label": "female organism", "linkedEntities": { - "UBERON:0003100": { - "curie": "UBERON:0003100", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0003100" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -81934,7 +80586,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -81947,7 +80599,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -82063,11 +80715,6 @@ "isPreferredRoot": false, "label": "reproductive organ", "linkedEntities": { - "UBERON:0003133": { - "curie": "UBERON:0003133", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0003133" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -82232,7 +80879,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -82245,7 +80892,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -82359,11 +81006,6 @@ "isPreferredRoot": false, "label": "reproductive structure", "linkedEntities": { - "UBERON:0005156": { - "curie": "UBERON:0005156", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0005156" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -82487,7 +81129,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -82500,7 +81142,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -82585,11 +81227,6 @@ "isPreferredRoot": false, "label": "developing anatomical structure", "linkedEntities": { - "UBERON:0005423": { - "curie": "UBERON:0005423", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0005423" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -82693,7 +81330,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -82706,7 +81343,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -82815,11 +81452,6 @@ "isPreferredRoot": false, "label": "gonad primordium", "linkedEntities": { - "UBERON:0005564": { - "curie": "UBERON:0005564", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0005564" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -82995,7 +81627,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -83008,7 +81640,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -83141,11 +81773,6 @@ "isPreferredRoot": false, "label": "presumptive structure", "linkedEntities": { - "UBERON:0006598": { - "curie": "UBERON:0006598", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0006598" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -83301,7 +81928,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -83314,7 +81941,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -83403,11 +82030,6 @@ "isPreferredRoot": false, "label": "anatomical surface", "linkedEntities": { - "UBERON:0006984": { - "curie": "UBERON:0006984", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0006984" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -83490,7 +82112,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -83503,7 +82125,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -83596,11 +82218,6 @@ "isPreferredRoot": false, "label": "multicellular anatomical structure", "linkedEntities": { - "UBERON:0010000": { - "curie": "UBERON:0010000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0010000" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -83735,7 +82352,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -83748,7 +82365,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -83833,11 +82450,6 @@ "isPreferredRoot": false, "label": "bona-fide anatomical boundary", "linkedEntities": { - "UBERON:0010199": { - "curie": "UBERON:0010199", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0010199" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -83889,7 +82501,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -83902,7 +82514,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -83965,11 +82577,6 @@ "isPreferredRoot": false, "label": "non-connected functional system", "linkedEntities": { - "UBERON:0015203": { - "curie": "UBERON:0015203", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0015203" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -84031,7 +82638,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -84044,7 +82651,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -84117,11 +82724,6 @@ "isPreferredRoot": false, "label": "glandular system", "linkedEntities": { - "UBERON:0015204": { - "curie": "UBERON:0015204", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0015204" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -84214,7 +82816,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -84227,7 +82829,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -84343,11 +82945,6 @@ "isPreferredRoot": false, "label": "future nervous system", "linkedEntities": { - "UBERON:0016880": { - "curie": "UBERON:0016880", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0016880" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -84555,7 +83152,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -84568,7 +83165,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -84714,11 +83311,6 @@ "isPreferredRoot": false, "label": "disconnected anatomical group", "linkedEntities": { - "UBERON:0034923": { - "curie": "UBERON:0034923", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0034923" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -84854,7 +83446,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -84867,7 +83459,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -85040,18 +83632,18 @@ "appearsIn": [ "gitissue502" ], - "curie": "hasBroadSynonym", + "curie": "id", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym", + "iri": "http://www.geneontology.org/formats/oboInOwl#id", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "hasBroadSynonym", + "label": "id", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -85059,7 +83651,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "hasBroadSynonym", + "shortForm": "id", "type": [ "annotationProperty", "entity", @@ -85070,18 +83662,18 @@ "appearsIn": [ "gitissue502" ], - "curie": "hasDbXref", + "curie": "shorthand", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#hasDbXref", + "iri": "http://www.geneontology.org/formats/oboInOwl#shorthand", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "hasDbXref", + "label": "shorthand", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -85089,7 +83681,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "hasDbXref", + "shortForm": "shorthand", "type": [ "annotationProperty", "entity", @@ -85100,18 +83692,18 @@ "appearsIn": [ "gitissue502" ], - "curie": "hasExactSynonym", + "curie": "should:conform_to", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym", + "iri": "http://purl.obolibrary.org/obo/mondo#should_conform_to", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "hasExactSynonym", + "label": "should_conform_to", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -85119,7 +83711,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "hasExactSynonym", + "shortForm": "should_conform_to", "type": [ "annotationProperty", "entity", @@ -85130,18 +83722,18 @@ "appearsIn": [ "gitissue502" ], - "curie": "hasNarrowSynonym", + "curie": "source", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym", + "iri": "http://www.geneontology.org/formats/oboInOwl#source", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "hasNarrowSynonym", + "label": "source", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -85149,7 +83741,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "hasNarrowSynonym", + "shortForm": "source", "type": [ "annotationProperty", "entity", @@ -85158,20 +83750,24 @@ }, { "appearsIn": [ - "gitissue502" + "gitissue502", + "oio" + ], + "curie": "OIO:hasBroadSynonym", + "definedBy": [ + "oio" ], - "curie": "hasRelatedSynonym", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym", + "iri": "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "hasRelatedSynonym", + "label": "hasBroadSynonym", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -85179,7 +83775,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "hasRelatedSynonym", + "shortForm": "OIO_hasBroadSynonym", "type": [ "annotationProperty", "entity", @@ -85188,20 +83784,24 @@ }, { "appearsIn": [ - "gitissue502" + "gitissue502", + "oio" + ], + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" ], - "curie": "hasSynonymType", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#hasSynonymType", + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDbXref", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "hasSynonymType", + "label": "hasDbXref", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -85209,7 +83809,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "hasSynonymType", + "shortForm": "OIO_hasDbXref", "type": [ "annotationProperty", "entity", @@ -85218,20 +83818,24 @@ }, { "appearsIn": [ - "gitissue502" + "gitissue502", + "oio" + ], + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" ], - "curie": "id", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#id", + "iri": "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "id", + "label": "hasExactSynonym", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -85239,7 +83843,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "id", + "shortForm": "OIO_hasExactSynonym", "type": [ "annotationProperty", "entity", @@ -85248,20 +83852,24 @@ }, { "appearsIn": [ - "gitissue502" + "gitissue502", + "oio" + ], + "curie": "OIO:hasNarrowSynonym", + "definedBy": [ + "oio" ], - "curie": "inSubset", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#inSubset", + "iri": "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "inSubset", + "label": "hasNarrowSynonym", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -85269,7 +83877,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "inSubset", + "shortForm": "OIO_hasNarrowSynonym", "type": [ "annotationProperty", "entity", @@ -85278,20 +83886,24 @@ }, { "appearsIn": [ - "gitissue502" + "gitissue502", + "oio" + ], + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" ], - "curie": "shorthand", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#shorthand", + "iri": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "shorthand", + "label": "hasRelatedSynonym", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -85299,7 +83911,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "shorthand", + "shortForm": "OIO_hasRelatedSynonym", "type": [ "annotationProperty", "entity", @@ -85308,20 +83920,24 @@ }, { "appearsIn": [ - "gitissue502" + "gitissue502", + "oio" + ], + "curie": "OIO:hasSynonymType", + "definedBy": [ + "oio" ], - "curie": "should:conform_to", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://purl.obolibrary.org/obo/mondo#should_conform_to", + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSynonymType", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "should_conform_to", + "label": "hasSynonymType", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -85329,7 +83945,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "should_conform_to", + "shortForm": "OIO_hasSynonymType", "type": [ "annotationProperty", "entity", @@ -85338,20 +83954,24 @@ }, { "appearsIn": [ - "gitissue502" + "gitissue502", + "oio" + ], + "curie": "OIO:inSubset", + "definedBy": [ + "oio" ], - "curie": "source", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#source", + "iri": "http://www.geneontology.org/formats/oboInOwl#inSubset", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "source", + "label": "inSubset", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -85359,7 +83979,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "source", + "shortForm": "OIO_inSubset", "type": [ "annotationProperty", "entity", @@ -85372,7 +83992,7 @@ "owl", "rdfs" ], - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -85394,7 +84014,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "label", + "shortForm": "RDFS_label", "type": [ "annotationProperty", "entity", @@ -85406,7 +84026,7 @@ "gitissue502", "skos" ], - "curie": "closeMatch", + "curie": "SKOS:closeMatch", "definedBy": [ "skos" ], @@ -85428,7 +84048,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "closeMatch", + "shortForm": "SKOS_closeMatch", "type": [ "annotationProperty", "entity", @@ -85440,7 +84060,7 @@ "gitissue502", "skos" ], - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -85462,7 +84082,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "exactMatch", + "shortForm": "SKOS_exactMatch", "type": [ "annotationProperty", "entity", diff --git a/testcases_expected_output_api/v2/ontologies/gitissue502/properties.json b/testcases_expected_output_api/v2/ontologies/gitissue502/properties.json index cf3b26fcf..d1064a214 100644 --- a/testcases_expected_output_api/v2/ontologies/gitissue502/properties.json +++ b/testcases_expected_output_api/v2/ontologies/gitissue502/properties.json @@ -32,11 +32,6 @@ "isPreferredRoot": false, "label": "part of", "linkedEntities": { - "BFO:0000050": { - "curie": "BFO:0000050", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000050" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -82,7 +77,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -95,7 +90,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -160,11 +155,6 @@ "isPreferredRoot": false, "label": "has part", "linkedEntities": { - "BFO:0000051": { - "curie": "BFO:0000051", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000051" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -210,7 +200,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -223,7 +213,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -293,11 +283,6 @@ "isPreferredRoot": false, "label": "preceded by", "linkedEntities": { - "BFO:0000062": { - "curie": "BFO:0000062", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000062" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -375,7 +360,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -388,7 +373,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -401,7 +386,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -414,7 +399,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -478,11 +463,6 @@ "isPreferredRoot": false, "label": "precedes", "linkedEntities": { - "BFO:0000063": { - "curie": "BFO:0000063", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000063" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -538,7 +518,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -551,7 +531,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -564,7 +544,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -577,7 +557,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -640,11 +620,6 @@ "isPreferredRoot": false, "label": "occurs in", "linkedEntities": { - "BFO:0000066": { - "curie": "BFO:0000066", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000066" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -699,7 +674,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -712,7 +687,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -725,7 +700,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -776,11 +751,6 @@ "isPreferredRoot": false, "label": "contains process", "linkedEntities": { - "BFO:0000067": { - "curie": "BFO:0000067", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000067" - }, "http://purl.obolibrary.org/obo/BFO_0000066": { "curie": "BFO:0000066", "hasLocalDefinition": true, @@ -804,7 +774,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -849,13 +819,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000115", - "linkedEntities": { - "IAO:0000115": { - "curie": "IAO:0000115", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000115" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "gitissue502", @@ -885,13 +849,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000116", - "linkedEntities": { - "IAO:0000116": { - "curie": "IAO:0000116", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000116" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "gitissue502", @@ -921,13 +879,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0000233", - "linkedEntities": { - "IAO:0000233": { - "curie": "IAO:0000233", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0000233" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "gitissue502", @@ -957,13 +909,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "IAO_0006012", - "linkedEntities": { - "IAO:0006012": { - "curie": "IAO:0006012", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/IAO_0006012" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "gitissue502", @@ -1002,11 +948,6 @@ "isPreferredRoot": false, "label": "characteristic of", "linkedEntities": { - "RO:0000052": { - "curie": "RO:0000052", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000052" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -1032,7 +973,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1144,10 +1085,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -1177,7 +1121,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1190,7 +1134,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1244,11 +1188,6 @@ "isPreferredRoot": false, "label": "participates in", "linkedEntities": { - "RO:0000056": { - "curie": "RO:0000056", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000056" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -1292,7 +1231,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1305,7 +1244,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1318,7 +1257,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1376,11 +1315,6 @@ "isPreferredRoot": false, "label": "has participant", "linkedEntities": { - "RO:0000057": { - "curie": "RO:0000057", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000057" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -1446,7 +1380,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1459,7 +1393,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1472,7 +1406,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1529,11 +1463,6 @@ "isPreferredRoot": false, "label": "function of", "linkedEntities": { - "RO:0000079": { - "curie": "RO:0000079", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000079" - }, "http://purl.obolibrary.org/obo/BFO_0000034": { "curie": "BFO:0000034", "hasLocalDefinition": true, @@ -1589,7 +1518,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1602,7 +1531,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1615,7 +1544,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1671,11 +1600,6 @@ "isPreferredRoot": false, "label": "quality of", "linkedEntities": { - "RO:0000080": { - "curie": "RO:0000080", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000080" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -1721,7 +1645,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1734,7 +1658,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1790,11 +1714,6 @@ "isPreferredRoot": false, "label": "role of", "linkedEntities": { - "RO:0000081": { - "curie": "RO:0000081", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000081" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -1840,7 +1759,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1853,7 +1772,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1911,11 +1830,6 @@ "isPreferredRoot": false, "label": "has function", "linkedEntities": { - "RO:0000085": { - "curie": "RO:0000085", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000085" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -1983,7 +1897,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1996,7 +1910,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2009,7 +1923,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2022,7 +1936,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -2079,11 +1993,6 @@ "isPreferredRoot": false, "label": "has quality", "linkedEntities": { - "RO:0000086": { - "curie": "RO:0000086", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000086" - }, "http://purl.obolibrary.org/obo/BFO_0000019": { "curie": "BFO:0000019", "hasLocalDefinition": true, @@ -2141,7 +2050,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2154,7 +2063,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2167,7 +2076,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -2225,11 +2134,6 @@ "isPreferredRoot": false, "label": "has role", "linkedEntities": { - "RO:0000087": { - "curie": "RO:0000087", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000087" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -2297,7 +2201,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -2310,7 +2214,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2323,7 +2227,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2336,7 +2240,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -2393,11 +2297,6 @@ "isPreferredRoot": false, "label": "has disposition", "linkedEntities": { - "RO:0000091": { - "curie": "RO:0000091", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000091" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -2454,7 +2353,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -2467,7 +2366,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2480,7 +2379,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2493,7 +2392,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -2547,11 +2446,6 @@ "isPreferredRoot": false, "label": "disposition of", "linkedEntities": { - "RO:0000092": { - "curie": "RO:0000092", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0000092" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -2586,7 +2480,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2599,7 +2493,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -2653,11 +2547,6 @@ "isPreferredRoot": false, "label": "2D boundary of", "linkedEntities": { - "RO:0002000": { - "curie": "RO:0002000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002000" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -2692,7 +2581,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2751,11 +2640,6 @@ "isPreferredRoot": false, "label": "has 2D boundary", "linkedEntities": { - "RO:0002002": { - "curie": "RO:0002002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002002" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -2810,7 +2694,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -2823,7 +2707,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2836,7 +2720,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2906,11 +2790,6 @@ "isPreferredRoot": false, "label": "has regulatory component activity", "linkedEntities": { - "RO:0002013": { - "curie": "RO:0002013", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002013" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -3011,7 +2890,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3024,7 +2903,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -3093,11 +2972,6 @@ "isPreferredRoot": false, "label": "has negative regulatory component activity", "linkedEntities": { - "RO:0002014": { - "curie": "RO:0002014", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002014" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -3220,7 +3094,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3233,7 +3107,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -3302,11 +3176,6 @@ "isPreferredRoot": false, "label": "has positive regulatory component activity", "linkedEntities": { - "RO:0002015": { - "curie": "RO:0002015", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002015" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -3429,7 +3298,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3442,7 +3311,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -3496,11 +3365,6 @@ "isPreferredRoot": false, "label": "has component activity", "linkedEntities": { - "RO:0002017": { - "curie": "RO:0002017", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002017" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -3546,7 +3410,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3559,7 +3423,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -3615,11 +3479,6 @@ "isPreferredRoot": false, "label": "has component process", "linkedEntities": { - "RO:0002018": { - "curie": "RO:0002018", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002018" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -3675,7 +3534,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3688,7 +3547,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3701,7 +3560,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3714,7 +3573,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -3768,11 +3627,6 @@ "isPreferredRoot": false, "label": "directly regulated by", "linkedEntities": { - "RO:0002022": { - "curie": "RO:0002022", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002022" - }, "http://purl.obolibrary.org/obo/RO_0002334": { "curie": "RO:0002334", "hasLocalDefinition": true, @@ -3818,7 +3672,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3831,7 +3685,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -3884,11 +3738,6 @@ "isPreferredRoot": false, "label": "directly negatively regulated by", "linkedEntities": { - "RO:0002023": { - "curie": "RO:0002023", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002023" - }, "http://purl.obolibrary.org/obo/RO_0002022": { "curie": "RO:0002022", "hasLocalDefinition": true, @@ -3945,7 +3794,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3958,7 +3807,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -4011,11 +3860,6 @@ "isPreferredRoot": false, "label": "directly positively regulated by", "linkedEntities": { - "RO:0002024": { - "curie": "RO:0002024", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002024" - }, "http://purl.obolibrary.org/obo/RO_0002022": { "curie": "RO:0002022", "hasLocalDefinition": true, @@ -4072,7 +3916,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4085,7 +3929,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -4141,11 +3985,6 @@ "isPreferredRoot": false, "label": "has effector activity", "linkedEntities": { - "RO:0002025": { - "curie": "RO:0002025", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002025" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -4202,7 +4041,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4215,7 +4054,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -4262,11 +4101,6 @@ "isPreferredRoot": false, "label": "before or simultaneous with", "linkedEntities": { - "RO:0002081": { - "curie": "RO:0002081", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002081" - }, "http://purl.obolibrary.org/obo/RO_0002222": { "curie": "RO:0002222", "hasLocalDefinition": true, @@ -4279,7 +4113,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4292,7 +4126,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -4349,11 +4183,6 @@ "isPreferredRoot": false, "label": "simultaneous with", "linkedEntities": { - "RO:0002082": { - "curie": "RO:0002082", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002082" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -4388,7 +4217,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4401,7 +4230,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -4453,11 +4282,6 @@ "isPreferredRoot": false, "label": "ends after", "linkedEntities": { - "RO:0002086": { - "curie": "RO:0002086", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002086" - }, "http://purl.obolibrary.org/obo/RO_0002222": { "curie": "RO:0002222", "hasLocalDefinition": true, @@ -4470,7 +4294,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4483,7 +4307,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -4539,11 +4363,6 @@ "isPreferredRoot": false, "label": "immediately preceded by", "linkedEntities": { - "RO:0002087": { - "curie": "RO:0002087", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002087" - }, "http://purl.obolibrary.org/obo/BFO_0000062": { "curie": "BFO:0000062", "hasLocalDefinition": true, @@ -4611,7 +4430,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4624,7 +4443,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -4679,11 +4498,6 @@ "isPreferredRoot": false, "label": "immediately precedes", "linkedEntities": { - "RO:0002090": { - "curie": "RO:0002090", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002090" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -4740,7 +4554,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4753,7 +4567,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -4817,11 +4631,6 @@ "isPreferredRoot": false, "label": "overlaps", "linkedEntities": { - "RO:0002131": { - "curie": "RO:0002131", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002131" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -4856,7 +4665,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4909,11 +4718,6 @@ "isPreferredRoot": false, "label": "only in taxon", "linkedEntities": { - "RO:0002160": { - "curie": "RO:0002160", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002160" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -4948,7 +4752,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4961,7 +4765,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -5122,10 +4926,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -5155,7 +4962,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5199,13 +5006,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "RO_0002175", - "linkedEntities": { - "RO:0002175": { - "curie": "RO:0002175", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002175" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "gitissue502", @@ -5247,11 +5048,6 @@ "isPreferredRoot": false, "label": "has component", "linkedEntities": { - "RO:0002180": { - "curie": "RO:0002180", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002180" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -5297,7 +5093,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5310,7 +5106,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -5368,11 +5164,6 @@ "isPreferredRoot": false, "label": "develops from", "linkedEntities": { - "RO:0002202": { - "curie": "RO:0002202", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002202" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -5417,7 +5208,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5430,7 +5221,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5443,7 +5234,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5456,7 +5247,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -5525,11 +5316,6 @@ "isPreferredRoot": false, "label": "develops into", "linkedEntities": { - "RO:0002203": { - "curie": "RO:0002203", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002203" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -5597,7 +5383,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5610,7 +5396,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -5685,11 +5471,6 @@ "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", "url": "http://amigo.geneontology.org/amigo/term/GO:0032502" }, - "RO:0002207": { - "curie": "RO:0002207", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002207" - }, "http://purl.obolibrary.org/obo/CL_0000000": { "curie": "CL:0000000", "hasLocalDefinition": true, @@ -5755,7 +5536,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5768,7 +5549,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5781,7 +5562,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5794,7 +5575,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -5853,11 +5634,6 @@ "isPreferredRoot": false, "label": "directly develops into", "linkedEntities": { - "RO:0002210": { - "curie": "RO:0002210", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002210" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -5936,7 +5712,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5949,7 +5725,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -6027,11 +5803,6 @@ "isPreferredRoot": false, "label": "regulates", "linkedEntities": { - "RO:0002211": { - "curie": "RO:0002211", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002211" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -6153,7 +5924,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -6166,7 +5937,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6179,7 +5950,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -6192,7 +5963,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -6264,11 +6035,6 @@ "isPreferredRoot": false, "label": "negatively regulates", "linkedEntities": { - "RO:0002212": { - "curie": "RO:0002212", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002212" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -6391,7 +6157,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6404,7 +6170,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -6485,11 +6251,6 @@ "isPreferredRoot": false, "label": "positively regulates", "linkedEntities": { - "RO:0002213": { - "curie": "RO:0002213", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002213" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -6623,7 +6384,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6636,7 +6397,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -6694,11 +6455,6 @@ "isPreferredRoot": false, "label": "capable of", "linkedEntities": { - "RO:0002215": { - "curie": "RO:0002215", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002215" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -6764,7 +6520,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -6777,7 +6533,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6790,7 +6546,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -6803,7 +6559,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -6858,11 +6614,6 @@ "isPreferredRoot": false, "label": "capable of part of", "linkedEntities": { - "RO:0002216": { - "curie": "RO:0002216", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002216" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -6897,7 +6648,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6910,7 +6661,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -6958,11 +6709,6 @@ "isPreferredRoot": false, "label": "temporally related to", "linkedEntities": { - "RO:0002222": { - "curie": "RO:0002222", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002222" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -6974,7 +6720,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -6987,7 +6733,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7000,7 +6746,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -7061,11 +6807,6 @@ "isPreferredRoot": false, "label": "starts", "linkedEntities": { - "RO:0002223": { - "curie": "RO:0002223", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002223" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -7122,7 +6863,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7135,7 +6876,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -7201,11 +6942,6 @@ "isPreferredRoot": false, "label": "starts with", "linkedEntities": { - "RO:0002224": { - "curie": "RO:0002224", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002224" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -7262,7 +6998,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7275,7 +7011,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -7334,11 +7070,6 @@ "isPreferredRoot": false, "label": "develops from part of", "linkedEntities": { - "RO:0002225": { - "curie": "RO:0002225", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002225" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -7395,7 +7126,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7408,7 +7139,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -7471,11 +7202,6 @@ "isPreferredRoot": false, "label": "ends", "linkedEntities": { - "RO:0002229": { - "curie": "RO:0002229", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002229" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -7532,7 +7258,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7545,7 +7271,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -7611,11 +7337,6 @@ "isPreferredRoot": false, "label": "ends with", "linkedEntities": { - "RO:0002230": { - "curie": "RO:0002230", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002230" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -7672,7 +7393,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7685,7 +7406,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -7743,11 +7464,6 @@ "isPreferredRoot": false, "label": "has start location", "linkedEntities": { - "RO:0002231": { - "curie": "RO:0002231", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002231" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -7813,7 +7529,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -7826,7 +7542,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7839,7 +7555,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -7852,7 +7568,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -7910,11 +7626,6 @@ "isPreferredRoot": false, "label": "has end location", "linkedEntities": { - "RO:0002232": { - "curie": "RO:0002232", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002232" - }, "http://purl.obolibrary.org/obo/BFO_0000004": { "curie": "BFO:0000004", "hasLocalDefinition": true, @@ -7980,7 +7691,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -7993,7 +7704,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8006,7 +7717,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -8019,7 +7730,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -8077,11 +7788,6 @@ "isPreferredRoot": false, "label": "has input", "linkedEntities": { - "RO:0002233": { - "curie": "RO:0002233", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002233" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -8137,7 +7843,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -8150,7 +7856,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8163,7 +7869,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -8222,11 +7928,6 @@ "isPreferredRoot": false, "label": "has developmental contribution from", "linkedEntities": { - "RO:0002254": { - "curie": "RO:0002254", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002254" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -8293,7 +7994,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -8306,7 +8007,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8319,7 +8020,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -8332,7 +8033,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -8400,11 +8101,6 @@ "isPreferredRoot": false, "label": "developmentally contributes to", "linkedEntities": { - "RO:0002255": { - "curie": "RO:0002255", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002255" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -8483,7 +8179,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8496,7 +8192,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -8554,11 +8250,6 @@ "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", "url": "http://amigo.geneontology.org/amigo/term/GO:0032502" }, - "RO:0002258": { - "curie": "RO:0002258", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002258" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -8603,7 +8294,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -8616,7 +8307,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8629,7 +8320,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -8689,11 +8380,6 @@ "isPreferredRoot": false, "label": "acts upstream of", "linkedEntities": { - "RO:0002263": { - "curie": "RO:0002263", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002263" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -8761,7 +8447,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8774,7 +8460,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -8833,11 +8519,6 @@ "isPreferredRoot": false, "label": "acts upstream of or within", "linkedEntities": { - "RO:0002264": { - "curie": "RO:0002264", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002264" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -8894,7 +8575,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8907,7 +8588,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -8960,11 +8641,6 @@ "isPreferredRoot": false, "label": "developmentally succeeded by", "linkedEntities": { - "RO:0002286": { - "curie": "RO:0002286", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002286" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -8999,7 +8675,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9012,7 +8688,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -9068,11 +8744,6 @@ "isPreferredRoot": false, "label": "part of developmental precursor of", "linkedEntities": { - "RO:0002287": { - "curie": "RO:0002287", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002287" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -9118,7 +8789,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9131,7 +8802,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -9194,11 +8865,6 @@ "isPreferredRoot": false, "label": "causally upstream of, positive effect", "linkedEntities": { - "RO:0002304": { - "curie": "RO:0002304", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002304" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -9277,7 +8943,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9290,7 +8956,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -9355,11 +9021,6 @@ "isPreferredRoot": false, "label": "causally upstream of, negative effect", "linkedEntities": { - "RO:0002305": { - "curie": "RO:0002305", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002305" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -9438,7 +9099,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9451,7 +9112,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -9519,11 +9180,6 @@ "isPreferredRoot": false, "label": "enables", "linkedEntities": { - "RO:0002327": { - "curie": "RO:0002327", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002327" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -9613,7 +9269,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9626,7 +9282,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -9700,11 +9356,6 @@ "isPreferredRoot": false, "label": "involved in", "linkedEntities": { - "RO:0002331": { - "curie": "RO:0002331", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002331" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -9794,7 +9445,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9807,7 +9458,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -9860,11 +9511,6 @@ "isPreferredRoot": false, "label": "enabled by", "linkedEntities": { - "RO:0002333": { - "curie": "RO:0002333", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002333" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -9899,7 +9545,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9912,7 +9558,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -9973,11 +9619,6 @@ "isPreferredRoot": false, "label": "regulated by", "linkedEntities": { - "RO:0002334": { - "curie": "RO:0002334", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002334" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -10033,7 +9674,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -10046,7 +9687,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10059,7 +9700,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -10072,7 +9713,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -10129,11 +9770,6 @@ "isPreferredRoot": false, "label": "negatively regulated by", "linkedEntities": { - "RO:0002335": { - "curie": "RO:0002335", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002335" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -10190,7 +9826,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10203,7 +9839,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -10260,11 +9896,6 @@ "isPreferredRoot": false, "label": "positively regulated by", "linkedEntities": { - "RO:0002336": { - "curie": "RO:0002336", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002336" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -10321,7 +9952,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10334,7 +9965,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -10387,11 +10018,6 @@ "isPreferredRoot": false, "label": "input of", "linkedEntities": { - "RO:0002352": { - "curie": "RO:0002352", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002352" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -10426,7 +10052,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10439,7 +10065,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -10490,11 +10116,6 @@ "isPreferredRoot": false, "label": "has developmental potential involving", "linkedEntities": { - "RO:0002384": { - "curie": "RO:0002384", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002384" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -10517,7 +10138,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -10530,7 +10151,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10543,7 +10164,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -10596,11 +10217,6 @@ "isPreferredRoot": false, "label": "has potential to developmentally contribute to", "linkedEntities": { - "RO:0002385": { - "curie": "RO:0002385", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002385" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -10624,7 +10240,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10637,7 +10253,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -10690,11 +10306,6 @@ "isPreferredRoot": false, "label": "has potential to develop into", "linkedEntities": { - "RO:0002387": { - "curie": "RO:0002387", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002387" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -10718,7 +10329,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10731,7 +10342,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -10787,11 +10398,6 @@ "isPreferredRoot": false, "label": "has potential to directly develop into", "linkedEntities": { - "RO:0002388": { - "curie": "RO:0002388", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002388" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -10826,7 +10432,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10839,7 +10445,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -10905,11 +10511,6 @@ "isPreferredRoot": false, "label": "causally downstream of", "linkedEntities": { - "RO:0002404": { - "curie": "RO:0002404", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002404" - }, "http://purl.obolibrary.org/obo/BFO_0000062": { "curie": "BFO:0000062", "hasLocalDefinition": true, @@ -10988,7 +10589,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -11001,7 +10602,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -11065,11 +10666,6 @@ "isPreferredRoot": false, "label": "immediately causally downstream of", "linkedEntities": { - "RO:0002405": { - "curie": "RO:0002405", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002405" - }, "http://purl.obolibrary.org/obo/BFO_0000062": { "curie": "BFO:0000062", "hasLocalDefinition": true, @@ -11159,7 +10755,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -11172,7 +10768,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -11261,11 +10857,6 @@ "isPreferredRoot": false, "label": "indirectly positively regulates", "linkedEntities": { - "RO:0002407": { - "curie": "RO:0002407", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002407" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -11421,7 +11012,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -11434,7 +11025,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -11521,11 +11112,6 @@ "isPreferredRoot": false, "label": "indirectly negatively regulates", "linkedEntities": { - "RO:0002409": { - "curie": "RO:0002409", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002409" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -11670,7 +11256,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -11683,7 +11269,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -11750,11 +11336,6 @@ "isPreferredRoot": false, "label": "causally upstream of", "linkedEntities": { - "RO:0002411": { - "curie": "RO:0002411", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002411" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -11822,7 +11403,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -11835,7 +11416,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -11901,11 +11482,6 @@ "isPreferredRoot": false, "label": "immediately causally upstream of", "linkedEntities": { - "RO:0002412": { - "curie": "RO:0002412", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002412" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -11995,7 +11571,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12008,7 +11584,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -12065,11 +11641,6 @@ "isPreferredRoot": false, "label": "causally upstream of or within", "linkedEntities": { - "RO:0002418": { - "curie": "RO:0002418", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002418" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -12115,7 +11686,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12128,7 +11699,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -12184,11 +11755,6 @@ "isPreferredRoot": false, "label": "causally downstream of or within", "linkedEntities": { - "RO:0002427": { - "curie": "RO:0002427", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002427" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -12223,7 +11789,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12236,7 +11802,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -12310,11 +11876,6 @@ "isPreferredRoot": false, "label": "involved in regulation of", "linkedEntities": { - "RO:0002428": { - "curie": "RO:0002428", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002428" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -12415,7 +11976,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12428,7 +11989,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -12497,11 +12058,6 @@ "isPreferredRoot": false, "label": "involved in positive regulation of", "linkedEntities": { - "RO:0002429": { - "curie": "RO:0002429", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002429" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -12613,7 +12169,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12626,7 +12182,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -12695,11 +12251,6 @@ "isPreferredRoot": false, "label": "involved in negative regulation of", "linkedEntities": { - "RO:0002430": { - "curie": "RO:0002430", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002430" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -12811,7 +12362,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12824,7 +12375,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -12887,11 +12438,6 @@ "isPreferredRoot": false, "label": "involved in or involved in regulation of", "linkedEntities": { - "RO:0002431": { - "curie": "RO:0002431", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002431" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -12948,7 +12494,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -12961,7 +12507,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -13019,11 +12565,6 @@ "isPreferredRoot": false, "label": "interacts with", "linkedEntities": { - "RO:0002434": { - "curie": "RO:0002434", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002434" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -13057,7 +12598,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -13070,7 +12611,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13083,7 +12624,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -13138,11 +12679,6 @@ "isPreferredRoot": false, "label": "molecularly interacts with", "linkedEntities": { - "RO:0002436": { - "curie": "RO:0002436", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002436" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -13166,7 +12702,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13179,7 +12715,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -13232,11 +12768,6 @@ "isPreferredRoot": false, "label": "phosphorylates", "linkedEntities": { - "RO:0002447": { - "curie": "RO:0002447", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002447" - }, "http://purl.obolibrary.org/obo/IAO_0000116": { "curie": "IAO:0000116", "hasLocalDefinition": true, @@ -13271,7 +12802,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13284,7 +12815,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -13355,11 +12886,6 @@ "isPreferredRoot": false, "label": "directly regulates activity of", "linkedEntities": { - "RO:0002448": { - "curie": "RO:0002448", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002448" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -13470,7 +12996,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -13483,7 +13009,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13496,7 +13022,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -13509,7 +13035,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -13575,11 +13101,6 @@ "isPreferredRoot": false, "label": "directly negatively regulates activity of", "linkedEntities": { - "RO:0002449": { - "curie": "RO:0002449", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002449" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -13701,7 +13222,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -13714,7 +13235,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13727,7 +13248,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -13740,7 +13261,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -13806,11 +13327,6 @@ "isPreferredRoot": false, "label": "directly positively regulates activity of", "linkedEntities": { - "RO:0002450": { - "curie": "RO:0002450", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002450" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -13932,7 +13448,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -13945,7 +13461,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -13958,7 +13474,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -13971,7 +13487,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -14028,11 +13544,6 @@ "isPreferredRoot": false, "label": "composed primarily of", "linkedEntities": { - "RO:0002473": { - "curie": "RO:0002473", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002473" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -14077,7 +13588,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -14090,7 +13601,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14103,7 +13614,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -14116,7 +13627,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -14167,11 +13678,6 @@ "isPreferredRoot": false, "label": "has part that occurs in", "linkedEntities": { - "RO:0002479": { - "curie": "RO:0002479", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002479" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -14204,7 +13710,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -14217,7 +13723,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14230,7 +13736,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -14278,11 +13784,6 @@ "isPreferredRoot": false, "label": "relation between physical entity and a process or stage", "linkedEntities": { - "RO:0002487": { - "curie": "RO:0002487", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002487" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -14304,7 +13805,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -14317,7 +13818,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14330,7 +13831,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -14394,11 +13895,6 @@ "isPreferredRoot": false, "label": "existence starts during", "linkedEntities": { - "RO:0002488": { - "curie": "RO:0002488", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002488" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -14455,7 +13951,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14468,7 +13964,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -14525,11 +14021,6 @@ "isPreferredRoot": false, "label": "existence starts with", "linkedEntities": { - "RO:0002489": { - "curie": "RO:0002489", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002489" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -14586,7 +14077,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14599,7 +14090,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -14651,11 +14142,6 @@ "isPreferredRoot": false, "label": "existence overlaps", "linkedEntities": { - "RO:0002490": { - "curie": "RO:0002490", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002490" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -14679,7 +14165,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14692,7 +14178,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -14758,11 +14244,6 @@ "isPreferredRoot": false, "label": "existence ends during", "linkedEntities": { - "RO:0002492": { - "curie": "RO:0002492", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002492" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -14819,7 +14300,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14832,7 +14313,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -14889,11 +14370,6 @@ "isPreferredRoot": false, "label": "existence ends with", "linkedEntities": { - "RO:0002493": { - "curie": "RO:0002493", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002493" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -14950,7 +14426,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -14963,7 +14439,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -15021,11 +14497,6 @@ "isPreferredRoot": false, "label": "transformation of", "linkedEntities": { - "RO:0002494": { - "curie": "RO:0002494", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002494" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -15060,7 +14531,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15073,7 +14544,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -15136,11 +14607,6 @@ "isPreferredRoot": false, "label": "immediate transformation of", "linkedEntities": { - "RO:0002495": { - "curie": "RO:0002495", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002495" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -15197,7 +14663,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15210,7 +14676,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -15284,11 +14750,6 @@ "isPreferredRoot": false, "label": "existence starts during or after", "linkedEntities": { - "RO:0002496": { - "curie": "RO:0002496", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002496" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -15356,7 +14817,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15369,7 +14830,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -15443,11 +14904,6 @@ "isPreferredRoot": false, "label": "existence ends during or before", "linkedEntities": { - "RO:0002497": { - "curie": "RO:0002497", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002497" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -15515,7 +14971,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15528,7 +14984,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -15581,11 +15037,6 @@ "isPreferredRoot": false, "label": "causal agent in process", "linkedEntities": { - "RO:0002500": { - "curie": "RO:0002500", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002500" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -15620,7 +15071,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15633,7 +15084,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -15684,11 +15135,6 @@ "isPreferredRoot": false, "label": "causal relation between processes", "linkedEntities": { - "RO:0002501": { - "curie": "RO:0002501", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002501" - }, "http://purl.obolibrary.org/obo/BFO_0000003": { "curie": "BFO:0000003", "hasLocalDefinition": true, @@ -15711,7 +15157,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -15724,7 +15170,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15737,7 +15183,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -15786,11 +15232,6 @@ "isPreferredRoot": false, "label": "causal relation between entities", "linkedEntities": { - "RO:0002506": { - "curie": "RO:0002506", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002506" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -15813,7 +15254,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -15826,7 +15267,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15839,7 +15280,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -15889,11 +15330,6 @@ "isPreferredRoot": false, "label": "causally influenced by", "linkedEntities": { - "RO:0002559": { - "curie": "RO:0002559", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002559" - }, "http://purl.obolibrary.org/obo/RO_0002506": { "curie": "RO:0002506", "hasLocalDefinition": true, @@ -15917,7 +15353,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -15930,7 +15366,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -15995,11 +15431,6 @@ "isPreferredRoot": false, "label": "causally influences", "linkedEntities": { - "RO:0002566": { - "curie": "RO:0002566", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002566" - }, "http://purl.obolibrary.org/obo/BFO_0000002": { "curie": "BFO:0000002", "hasLocalDefinition": true, @@ -16088,7 +15519,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -16101,7 +15532,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -16114,7 +15545,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -16127,7 +15558,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -16195,11 +15626,6 @@ "isPreferredRoot": false, "label": "directly regulates", "linkedEntities": { - "RO:0002578": { - "curie": "RO:0002578", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002578" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -16311,7 +15737,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -16324,7 +15750,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -16380,11 +15806,6 @@ "isPreferredRoot": false, "label": "has part structure that is capable of", "linkedEntities": { - "RO:0002584": { - "curie": "RO:0002584", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002584" - }, "http://purl.obolibrary.org/obo/BFO_0000051": { "curie": "BFO:0000051", "hasLocalDefinition": true, @@ -16430,7 +15851,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -16443,7 +15864,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -16495,11 +15916,6 @@ "isPreferredRoot": false, "label": "causal relation between material entity and a process", "linkedEntities": { - "RO:0002595": { - "curie": "RO:0002595", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002595" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -16543,7 +15959,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -16556,7 +15972,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -16569,7 +15985,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -16628,11 +16044,6 @@ "isPreferredRoot": false, "label": "capable of regulating", "linkedEntities": { - "RO:0002596": { - "curie": "RO:0002596", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002596" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -16689,7 +16100,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -16702,7 +16113,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -16762,11 +16173,6 @@ "isPreferredRoot": false, "label": "capable of negatively regulating", "linkedEntities": { - "RO:0002597": { - "curie": "RO:0002597", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002597" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -16834,7 +16240,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -16847,7 +16253,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -16907,11 +16313,6 @@ "isPreferredRoot": false, "label": "capable of positively regulating", "linkedEntities": { - "RO:0002598": { - "curie": "RO:0002598", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002598" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -16979,7 +16380,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -16992,7 +16393,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -17042,11 +16443,6 @@ "isPreferredRoot": false, "label": "process has causal agent", "linkedEntities": { - "RO:0002608": { - "curie": "RO:0002608", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002608" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -17070,7 +16466,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17142,11 +16538,6 @@ "isPreferredRoot": false, "label": "directly positively regulates", "linkedEntities": { - "RO:0002629": { - "curie": "RO:0002629", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002629" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -17302,7 +16693,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17315,7 +16706,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -17387,11 +16778,6 @@ "isPreferredRoot": false, "label": "directly negatively regulates", "linkedEntities": { - "RO:0002630": { - "curie": "RO:0002630", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0002630" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -17547,7 +16933,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17560,7 +16946,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -17612,11 +16998,6 @@ "isPreferredRoot": false, "label": "produces", "linkedEntities": { - "RO:0003000": { - "curie": "RO:0003000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0003000" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -17650,7 +17031,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -17663,7 +17044,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17676,7 +17057,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -17728,11 +17109,6 @@ "isPreferredRoot": false, "label": "produced by", "linkedEntities": { - "RO:0003001": { - "curie": "RO:0003001", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0003001" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -17766,7 +17142,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -17779,7 +17155,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17792,7 +17168,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -17842,11 +17218,6 @@ "isPreferredRoot": false, "label": "disease has basis in", "linkedEntities": { - "RO:0004019": { - "curie": "RO:0004019", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0004019" - }, "http://purl.obolibrary.org/obo/OGMS_0000031": { "curie": "OGMS:0000031", "hasLocalDefinition": true, @@ -17869,7 +17240,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -17882,7 +17253,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -17895,7 +17266,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -18050,10 +17421,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -18083,7 +17457,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -18096,7 +17470,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18109,7 +17483,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -18122,7 +17496,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -18169,11 +17543,6 @@ "isPreferredRoot": false, "label": "causal relationship with disease as subject", "linkedEntities": { - "RO:0004023": { - "curie": "RO:0004023", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0004023" - }, "http://purl.obolibrary.org/obo/OGMS_0000031": { "curie": "OGMS:0000031", "hasLocalDefinition": true, @@ -18185,7 +17554,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -18198,7 +17567,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18322,10 +17691,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -18355,7 +17727,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -18368,7 +17740,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18381,7 +17753,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -18394,7 +17766,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -18541,10 +17913,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -18574,7 +17949,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -18587,7 +17962,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18600,7 +17975,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -18695,10 +18070,13 @@ ] }, "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { - "curie": "hasDbXref", + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], "hasLocalDefinition": true, - "label": "hasDbXref", - "numAppearsIn": 1.0, + "label": "has_dbxref", + "numAppearsIn": 2.0, "type": [ "annotationProperty", "entity", @@ -18728,7 +18106,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -18741,7 +18119,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18798,11 +18176,6 @@ "isPreferredRoot": false, "label": "acts upstream of or within, positive effect", "linkedEntities": { - "RO:0004032": { - "curie": "RO:0004032", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0004032" - }, "http://purl.obolibrary.org/obo/RO_0002264": { "curie": "RO:0002264", "hasLocalDefinition": true, @@ -18859,7 +18232,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -18872,7 +18245,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -18927,11 +18300,6 @@ "isPreferredRoot": false, "label": "acts upstream of or within, negative effect", "linkedEntities": { - "RO:0004033": { - "curie": "RO:0004033", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0004033" - }, "http://purl.obolibrary.org/obo/RO_0002264": { "curie": "RO:0002264", "hasLocalDefinition": true, @@ -18988,7 +18356,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19001,7 +18369,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -19067,11 +18435,6 @@ "isPreferredRoot": false, "label": "acts upstream of, positive effect", "linkedEntities": { - "RO:0004034": { - "curie": "RO:0004034", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0004034" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -19161,7 +18524,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19174,7 +18537,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -19242,11 +18605,6 @@ "isPreferredRoot": false, "label": "acts upstream of, negative effect", "linkedEntities": { - "RO:0004035": { - "curie": "RO:0004035", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0004035" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -19336,7 +18694,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19349,7 +18707,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -19401,11 +18759,6 @@ "isPreferredRoot": false, "label": "causally upstream of or within, negative effect", "linkedEntities": { - "RO:0004046": { - "curie": "RO:0004046", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0004046" - }, "http://purl.obolibrary.org/obo/RO_0002418": { "curie": "RO:0002418", "hasLocalDefinition": true, @@ -19429,7 +18782,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19442,7 +18795,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -19492,11 +18845,6 @@ "isPreferredRoot": false, "label": "causally upstream of or within, positive effect", "linkedEntities": { - "RO:0004047": { - "curie": "RO:0004047", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0004047" - }, "http://purl.obolibrary.org/obo/RO_0002418": { "curie": "RO:0002418", "hasLocalDefinition": true, @@ -19520,7 +18868,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19533,7 +18881,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -19588,11 +18936,6 @@ "isPreferredRoot": false, "label": "regulates activity of", "linkedEntities": { - "RO:0011002": { - "curie": "RO:0011002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0011002" - }, "http://purl.obolibrary.org/obo/BFO_0000040": { "curie": "BFO:0000040", "hasLocalDefinition": true, @@ -19637,7 +18980,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -19650,7 +18993,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19663,7 +19006,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -19676,7 +19019,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -19734,11 +19077,6 @@ "isPreferredRoot": false, "label": "indirectly causally upstream of", "linkedEntities": { - "RO:0012011": { - "curie": "RO:0012011", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0012011" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -19806,7 +19144,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19819,7 +19157,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -19885,11 +19223,6 @@ "isPreferredRoot": false, "label": "indirectly regulates", "linkedEntities": { - "RO:0012012": { - "curie": "RO:0012012", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0012012" - }, "http://purl.obolibrary.org/obo/BFO_0000063": { "curie": "BFO:0000063", "hasLocalDefinition": true, @@ -19979,7 +19312,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -19992,7 +19325,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -20047,11 +19380,6 @@ "isPreferredRoot": false, "label": "regulates characteristic", "linkedEntities": { - "RO:0019000": { - "curie": "RO:0019000", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0019000" - }, "http://purl.obolibrary.org/obo/BFO_0000015": { "curie": "BFO:0000015", "hasLocalDefinition": true, @@ -20095,7 +19423,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -20108,7 +19436,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -20121,7 +19449,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -20177,11 +19505,6 @@ "isPreferredRoot": false, "label": "positively regulates characteristic", "linkedEntities": { - "RO:0019001": { - "curie": "RO:0019001", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0019001" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -20216,7 +19539,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -20229,7 +19552,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -20291,11 +19614,6 @@ "isPreferredRoot": false, "label": "negatively regulates characteristic", "linkedEntities": { - "RO:0019002": { - "curie": "RO:0019002", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/RO_0019002" - }, "http://purl.obolibrary.org/obo/IAO_0000115": { "curie": "IAO:0000115", "hasLocalDefinition": true, @@ -20352,7 +19670,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -20365,7 +19683,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -20517,18 +19835,18 @@ "appearsIn": [ "gitissue502" ], - "curie": "hasBroadSynonym", + "curie": "id", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym", + "iri": "http://www.geneontology.org/formats/oboInOwl#id", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "hasBroadSynonym", + "label": "id", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -20536,7 +19854,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "hasBroadSynonym", + "shortForm": "id", "type": [ "annotationProperty", "entity", @@ -20547,18 +19865,18 @@ "appearsIn": [ "gitissue502" ], - "curie": "hasDbXref", + "curie": "shorthand", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#hasDbXref", + "iri": "http://www.geneontology.org/formats/oboInOwl#shorthand", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "hasDbXref", + "label": "shorthand", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -20566,7 +19884,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "hasDbXref", + "shortForm": "shorthand", "type": [ "annotationProperty", "entity", @@ -20577,18 +19895,18 @@ "appearsIn": [ "gitissue502" ], - "curie": "hasExactSynonym", + "curie": "should:conform_to", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym", + "iri": "http://purl.obolibrary.org/obo/mondo#should_conform_to", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "hasExactSynonym", + "label": "should_conform_to", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -20596,7 +19914,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "hasExactSynonym", + "shortForm": "should_conform_to", "type": [ "annotationProperty", "entity", @@ -20607,18 +19925,18 @@ "appearsIn": [ "gitissue502" ], - "curie": "hasNarrowSynonym", + "curie": "source", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym", + "iri": "http://www.geneontology.org/formats/oboInOwl#source", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "hasNarrowSynonym", + "label": "source", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -20626,7 +19944,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "hasNarrowSynonym", + "shortForm": "source", "type": [ "annotationProperty", "entity", @@ -20635,20 +19953,24 @@ }, { "appearsIn": [ - "gitissue502" + "gitissue502", + "oio" + ], + "curie": "OIO:hasBroadSynonym", + "definedBy": [ + "oio" ], - "curie": "hasRelatedSynonym", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym", + "iri": "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "hasRelatedSynonym", + "label": "hasBroadSynonym", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -20656,7 +19978,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "hasRelatedSynonym", + "shortForm": "OIO_hasBroadSynonym", "type": [ "annotationProperty", "entity", @@ -20665,20 +19987,24 @@ }, { "appearsIn": [ - "gitissue502" + "gitissue502", + "oio" + ], + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" ], - "curie": "hasSynonymType", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#hasSynonymType", + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDbXref", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "hasSynonymType", + "label": "hasDbXref", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -20686,7 +20012,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "hasSynonymType", + "shortForm": "OIO_hasDbXref", "type": [ "annotationProperty", "entity", @@ -20695,20 +20021,24 @@ }, { "appearsIn": [ - "gitissue502" + "gitissue502", + "oio" + ], + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" ], - "curie": "id", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#id", + "iri": "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "id", + "label": "hasExactSynonym", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -20716,7 +20046,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "id", + "shortForm": "OIO_hasExactSynonym", "type": [ "annotationProperty", "entity", @@ -20725,20 +20055,24 @@ }, { "appearsIn": [ - "gitissue502" + "gitissue502", + "oio" + ], + "curie": "OIO:hasNarrowSynonym", + "definedBy": [ + "oio" ], - "curie": "inSubset", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#inSubset", + "iri": "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "inSubset", + "label": "hasNarrowSynonym", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -20746,7 +20080,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "inSubset", + "shortForm": "OIO_hasNarrowSynonym", "type": [ "annotationProperty", "entity", @@ -20755,20 +20089,24 @@ }, { "appearsIn": [ - "gitissue502" + "gitissue502", + "oio" + ], + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" ], - "curie": "shorthand", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#shorthand", + "iri": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "shorthand", + "label": "hasRelatedSynonym", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -20776,7 +20114,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "shorthand", + "shortForm": "OIO_hasRelatedSynonym", "type": [ "annotationProperty", "entity", @@ -20785,20 +20123,24 @@ }, { "appearsIn": [ - "gitissue502" + "gitissue502", + "oio" + ], + "curie": "OIO:hasSynonymType", + "definedBy": [ + "oio" ], - "curie": "should:conform_to", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://purl.obolibrary.org/obo/mondo#should_conform_to", + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSynonymType", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "should_conform_to", + "label": "hasSynonymType", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -20806,7 +20148,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "should_conform_to", + "shortForm": "OIO_hasSynonymType", "type": [ "annotationProperty", "entity", @@ -20815,20 +20157,24 @@ }, { "appearsIn": [ - "gitissue502" + "gitissue502", + "oio" + ], + "curie": "OIO:inSubset", + "definedBy": [ + "oio" ], - "curie": "source", "hasDirectChildren": false, "hasDirectParents": false, "hasHierarchicalChildren": false, "hasHierarchicalParents": false, "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", "imported": false, - "iri": "http://www.geneontology.org/formats/oboInOwl#source", + "iri": "http://www.geneontology.org/formats/oboInOwl#inSubset", "isDefiningOntology": false, "isObsolete": false, "isPreferredRoot": false, - "label": "source", + "label": "inSubset", "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, @@ -20836,7 +20182,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "source", + "shortForm": "OIO_inSubset", "type": [ "annotationProperty", "entity", @@ -20849,7 +20195,7 @@ "owl", "rdfs" ], - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -20871,7 +20217,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "label", + "shortForm": "RDFS_label", "type": [ "annotationProperty", "entity", @@ -20883,7 +20229,7 @@ "gitissue502", "skos" ], - "curie": "closeMatch", + "curie": "SKOS:closeMatch", "definedBy": [ "skos" ], @@ -20905,7 +20251,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "closeMatch", + "shortForm": "SKOS_closeMatch", "type": [ "annotationProperty", "entity", @@ -20917,7 +20263,7 @@ "gitissue502", "skos" ], - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -20939,7 +20285,7 @@ "ontologyIri": "http://purl.obolibrary.org/obo/mondo.owl", "ontologyPreferredPrefix": "gitIssue502", "searchableAnnotationValues": false, - "shortForm": "exactMatch", + "shortForm": "SKOS_exactMatch", "type": [ "annotationProperty", "entity", diff --git a/testcases_expected_output_api/v2/ontologies/oio/classes.json b/testcases_expected_output_api/v2/ontologies/oio/classes.json new file mode 100644 index 000000000..18fe45bd6 --- /dev/null +++ b/testcases_expected_output_api/v2/ontologies/oio/classes.json @@ -0,0 +1,741 @@ +[ + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#label": "database_cross_reference", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "database_cross_reference", + "linkedEntities": { + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_DbXref", + "type": [ + "class", + "entity" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "definition": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string", + "definitionProperty": "http://www.w3.org/2000/01/rdf-schema#comment", + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://www.obofoundry.org/wiki/index.php/Definitions", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "URL:http://www.obofoundry.org/wiki/index.php/Definitions", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "The textual definition of the current term. There must be zero or one instances of this tag per term description", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#comment": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string", + "http://www.w3.org/2000/01/rdf-schema#label": "definition", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#Definition", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "definition", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#comment": { + "curie": "RDFS:comment", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "comment", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_Definition", + "type": [ + "class", + "entity" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:ObsoleteClass", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "pseudo-class. in the oboInOwl translation, all obsolete classes are subclasses of this class. Note that this is not a metaclass", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#label": "obsolete_class", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#ObsoleteClass", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "obsolete_class", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_ObsoleteClass", + "type": [ + "class", + "entity" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:Subset", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_subsetdef", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:subsetdef", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "A grouping of terms from an ontology or ontologies. Note that this is not a metaclass - classes are linked to subsets via oboInOwl:inSubset", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": "GO-slim", + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": "slim", + "isObsolete": false + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": "partition", + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": "view", + "isObsolete": false + } + ], + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#label": "subset", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#Subset", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "subset", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Synonym": { + "curie": "OIO:Synonym", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "synonym", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": { + "curie": "OIO:hasNarrowSynonym", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_narrow_synonym", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_related_synonym", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:subsetdef": { + "curie": "oboFormat:subsetdef", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#subsetdef" + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_Subset", + "synonym": [ + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": "GO-slim", + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": "partition", + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": "slim", + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": "view", + "isObsolete": false + } + ], + "synonymProperty": [ + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym", + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym" + ], + "type": [ + "class", + "entity" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:Synonym", + "definedBy": [ + "oio" + ], + "definition": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string", + "definitionProperty": "http://www.w3.org/2000/01/rdf-schema#comment", + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "An instance of synonym usage. synonym instances are linked to classes via oboInOwl:has*Synonym properties", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#comment": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string", + "http://www.w3.org/2000/01/rdf-schema#label": "synonym", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "synonym", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#comment": { + "curie": "RDFS:comment", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "comment", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_Synonym", + "type": [ + "class", + "entity" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:SynonymType", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#label": "synonym_type", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#SynonymType", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "synonym_type", + "linkedEntities": { + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_SynonymType", + "type": [ + "class", + "entity" + ] + } +] \ No newline at end of file diff --git a/testcases_expected_output_api/v2/ontologies/oio/entities.json b/testcases_expected_output_api/v2/ontologies/oio/entities.json new file mode 100644 index 000000000..3902836b6 --- /dev/null +++ b/testcases_expected_output_api/v2/ontologies/oio/entities.json @@ -0,0 +1,3736 @@ +[ + { + "appearsIn": [ + "gitissue502", + "oio" + ], + "curie": "OIO:hasBroadSynonym", + "definedBy": [ + "oio" + ], + "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "hasDirectChildren": false, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_broad_synonym", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:broad_synonym", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:GOC", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "An alias in which the alias is broader than the primary class name. Example: cell division is a broad synonym of cytokinesis", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_broad_synonym", + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_broad_synonym", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { + "curie": "OIO:hasSynonym", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_synonym", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "curie": "RDFS:subPropertyOf", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "subPropertyOf", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:broad_synonym": { + "curie": "oboFormat:broad_synonym", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#broad_synonym" + }, + "oboInOwl:GOC": { + "curie": "oboInOwl:GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#GOC" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasBroadSynonym", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "gitissue502", + "oio" + ], + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_xref", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:xref", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_dbxref", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDbXref", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_dbxref", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:xref": { + "curie": "oboFormat:xref", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#xref" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasDbXref", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "gitissue502", + "oio" + ], + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], + "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "hasDirectChildren": false, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_exact_synonym", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:exact_synonym", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:GOC", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "An alias in which the alias exhibits true synonymy. Example: ornithine cycle is an exact synonym of urea cycle", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_exact_synonym", + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_exact_synonym", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { + "curie": "OIO:hasSynonym", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_synonym", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "curie": "RDFS:subPropertyOf", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "subPropertyOf", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:exact_synonym": { + "curie": "oboFormat:exact_synonym", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#exact_synonym" + }, + "oboInOwl:GOC": { + "curie": "oboInOwl:GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#GOC" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasExactSynonym", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "gitissue502", + "oio" + ], + "curie": "OIO:hasNarrowSynonym", + "definedBy": [ + "oio" + ], + "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "hasDirectChildren": false, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_narrow_synonym", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:narrow_synonym", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:GOC", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "An alias in which the alias is narrower than the primary class name. Example: pyrimidine-dimer repair by photolyase is a narrow synonym of photoreactive repair", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_narrow_synonym", + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_narrow_synonym", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { + "curie": "OIO:hasSynonym", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_synonym", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "curie": "RDFS:subPropertyOf", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "subPropertyOf", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:narrow_synonym": { + "curie": "oboFormat:narrow_synonym", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#narrow_synonym" + }, + "oboInOwl:GOC": { + "curie": "oboInOwl:GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#GOC" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasNarrowSynonym", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "gitissue502", + "oio" + ], + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], + "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "hasDirectChildren": false, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_related_synonym", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:related_synonym", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:GOC", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "An alias in which the alias is related the primary class name, but not necessarily broader or narrower. Example: cytochrome bc1 complex is a related synonym of ubiquinol-cytochrome-c reductase activity; virulence is a related synonym of pathogenesis", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_related_synonym", + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_related_synonym", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { + "curie": "OIO:hasSynonym", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_synonym", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "curie": "RDFS:subPropertyOf", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "subPropertyOf", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:related_synonym": { + "curie": "oboFormat:related_synonym", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#related_synonym" + }, + "oboInOwl:GOC": { + "curie": "oboInOwl:GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#GOC" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasRelatedSynonym", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "gitissue502", + "oio" + ], + "curie": "OIO:hasSynonymType", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://www.geneontology.org/GO.usage.shtml#type", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "URL:http://www.geneontology.org/GO.usage.shtml#type", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_synonym_type", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSynonymType", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_synonym_type", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasSynonymType", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "gitissue502", + "oio" + ], + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_subset", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:subset", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "relation between a class and a oboInOwl:Subset, indicating the class belongs (is a member of) the subset", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "in_subset", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#inSubset", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "in_subset", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:subset": { + "curie": "oboFormat:subset", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#subset" + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_inSubset", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#label": "database_cross_reference", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "database_cross_reference", + "linkedEntities": { + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_DbXref", + "type": [ + "class", + "entity" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "definition": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string", + "definitionProperty": "http://www.w3.org/2000/01/rdf-schema#comment", + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://www.obofoundry.org/wiki/index.php/Definitions", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "URL:http://www.obofoundry.org/wiki/index.php/Definitions", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "The textual definition of the current term. There must be zero or one instances of this tag per term description", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#comment": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string", + "http://www.w3.org/2000/01/rdf-schema#label": "definition", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#Definition", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "definition", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#comment": { + "curie": "RDFS:comment", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "comment", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_Definition", + "type": [ + "class", + "entity" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:ObsoleteClass", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "pseudo-class. in the oboInOwl translation, all obsolete classes are subclasses of this class. Note that this is not a metaclass", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#label": "obsolete_class", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#ObsoleteClass", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "obsolete_class", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_ObsoleteClass", + "type": [ + "class", + "entity" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:ObsoleteProperty", + "definedBy": [ + "oio" + ], + "definition": "Note that this is not a metaclass", + "definitionProperty": "http://www.w3.org/2000/01/rdf-schema#comment", + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "pseudo-property. in the oboInOwl translation, all obsolete relations are subProperties of this class", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#ObjectProperty", + "http://www.w3.org/2000/01/rdf-schema#comment": "Note that this is not a metaclass", + "http://www.w3.org/2000/01/rdf-schema#label": "obsolete_property", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "obsolete_property", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#comment": { + "curie": "RDFS:comment", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "comment", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_ObsoleteProperty", + "type": [ + "entity", + "objectProperty", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:Subset", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_subsetdef", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:subsetdef", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "A grouping of terms from an ontology or ontologies. Note that this is not a metaclass - classes are linked to subsets via oboInOwl:inSubset", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": [ + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": "GO-slim", + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": "slim", + "isObsolete": false + } + ], + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": [ + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": "partition", + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": "view", + "isObsolete": false + } + ], + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#label": "subset", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#Subset", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "subset", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Synonym": { + "curie": "OIO:Synonym", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "synonym", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym": { + "curie": "OIO:hasNarrowSynonym", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_narrow_synonym", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym": { + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_related_synonym", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:subsetdef": { + "curie": "oboFormat:subsetdef", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#subsetdef" + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_Subset", + "synonym": [ + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": "GO-slim", + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": "partition", + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": "slim", + "isObsolete": false + }, + { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "http://www.w3.org/2000/01/rdf-schema#label": "view", + "isObsolete": false + } + ], + "synonymProperty": [ + "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym", + "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym" + ], + "type": [ + "class", + "entity" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:SubsetProperty", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:GOC", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "This annotation property groups all subsets declared in the ontology", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "subset_property", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#SubsetProperty", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "subset_property", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboInOwl:GOC": { + "curie": "oboInOwl:GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#GOC" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_SubsetProperty", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:Synonym", + "definedBy": [ + "oio" + ], + "definition": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string", + "definitionProperty": "http://www.w3.org/2000/01/rdf-schema#comment", + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "An instance of synonym usage. synonym instances are linked to classes via oboInOwl:has*Synonym properties", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#comment": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string", + "http://www.w3.org/2000/01/rdf-schema#label": "synonym", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#Synonym", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "synonym", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#comment": { + "curie": "RDFS:comment", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "comment", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_Synonym", + "type": [ + "class", + "entity" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:SynonymType", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#Class", + "http://www.w3.org/2000/01/rdf-schema#label": "synonym_type", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#SynonymType", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "synonym_type", + "linkedEntities": { + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_SynonymType", + "type": [ + "class", + "entity" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:SynonymTypeProperty", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:GOC", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "This annotation property groups all synonym types declared in the ontology", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "synonym_type_property", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "synonym_type_property", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboInOwl:GOC": { + "curie": "oboInOwl:GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#GOC" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_SynonymTypeProperty", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:consider", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_consider", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:consider", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "Gives a term which may be an appropriate substitute for an obsolete term, but needs to be looked at carefully by a human expert before the replacement is done", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "consider", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#consider", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "consider", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:consider": { + "curie": "oboFormat:consider", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#consider" + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_consider", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasAlternativeId", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_alt_id", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:alt_id", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "An alternative identifier for this class; should follow ID syntax. These can result from class merges", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_alternative_id", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_alternative_id", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:alt_id": { + "curie": "oboFormat:alt_id", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#alt_id" + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasAlternativeId", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasDate", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_date", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:date", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_date", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDate", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_date", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:date": { + "curie": "oboFormat:date", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#date" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasDate", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasDefaultNamespace", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_default-namespace", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:default-namespace", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_default_namespace", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDefaultNamespace", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_default_namespace", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasDefaultNamespace", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "definition": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string", + "definitionProperty": "http://www.w3.org/2000/01/rdf-schema#comment", + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_def", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:def", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "a relation between a class and an instance of a oboInOwl:Definition", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#comment": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string", + "http://www.w3.org/2000/01/rdf-schema#label": "has_definition", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDefinition", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_definition", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#comment": { + "curie": "RDFS:comment", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "comment", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:def": { + "curie": "oboFormat:def", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#def" + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasDefinition", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasOBONamespace", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_namespace", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:namespace", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:GOC", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "A relation between a class and an OBO namespace string. OBO namespaces are to be distinguished from IDspaces; for example, biological_process is a namespace, GO is an idspace.", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_obo_namespace", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_obo_namespace", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:namespace": { + "curie": "oboFormat:namespace", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#namespace" + }, + "oboInOwl:GOC": { + "curie": "oboInOwl:GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#GOC" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasOBONamespace", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasSubset", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "relation between an ontology and a oboInOwl:Subset, indicating classes in the ontology belong to the subset", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_subset", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSubset", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_subset", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasSubset", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasSynonym", + "definedBy": [ + "oio" + ], + "definition": "Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL", + "definitionProperty": "http://www.w3.org/2000/01/rdf-schema#comment", + "hasDirectChildren": true, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_synonym", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:synonym", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:GOC", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "A relation between a class and an alias term.", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#comment": "Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL", + "http://www.w3.org/2000/01/rdf-schema#label": "has_synonym", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_synonym", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#comment": { + "curie": "RDFS:comment", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "comment", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:synonym": { + "curie": "oboFormat:synonym", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#synonym" + }, + "oboInOwl:GOC": { + "curie": "oboInOwl:GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#GOC" + } + }, + "numDescendants": 4.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasSynonym", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_URI", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasURI", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_URI", + "linkedEntities": { + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasURI", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasVersion", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_version", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:version", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_version", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasVersion", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_version", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:version": { + "curie": "oboFormat:version", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#version" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasVersion", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:isCyclic", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_is_cyclic", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:is_cyclic", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "is_cyclic", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#isCyclic", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "is_cyclic", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:is_cyclic": { + "curie": "oboFormat:is_cyclic", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#is_cyclic" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_isCyclic", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:replacedBy", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_replaced_by", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:replaced_by", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "Gives a term which replaces an obsolete term. The value is the id of the replacement term. The value of this tag can safely be used to automatically reassign links to an obsolete term. The replaced_by tag may only be specified for obsolete terms. A single obsolete term may have more than one replaced_by tag. This tag can be used in conjunction with the consider tag.", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "replaced_by", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#replacedBy", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "replaced_by", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:replaced_by": { + "curie": "oboFormat:replaced_by", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#replaced_by" + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_replacedBy", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:savedBy", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_saved_by", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:saved_by", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "saved_by", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#savedBy", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "saved_by", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:saved_by": { + "curie": "oboFormat:saved_by", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#saved_by" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_savedBy", + "type": [ + "annotationProperty", + "entity", + "property" + ] + } +] \ No newline at end of file diff --git a/testcases_expected_output_api/v2/ontologies/oio/individuals.json b/testcases_expected_output_api/v2/ontologies/oio/individuals.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/testcases_expected_output_api/v2/ontologies/oio/individuals.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/testcases_expected_output_api/v2/ontologies/oio/properties.json b/testcases_expected_output_api/v2/ontologies/oio/properties.json new file mode 100644 index 000000000..96ce9bd54 --- /dev/null +++ b/testcases_expected_output_api/v2/ontologies/oio/properties.json @@ -0,0 +1,2997 @@ +[ + { + "appearsIn": [ + "gitissue502", + "oio" + ], + "curie": "OIO:hasBroadSynonym", + "definedBy": [ + "oio" + ], + "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "hasDirectChildren": false, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_broad_synonym", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:broad_synonym", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:GOC", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "An alias in which the alias is broader than the primary class name. Example: cell division is a broad synonym of cytokinesis", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_broad_synonym", + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasBroadSynonym", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_broad_synonym", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { + "curie": "OIO:hasSynonym", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_synonym", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "curie": "RDFS:subPropertyOf", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "subPropertyOf", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:broad_synonym": { + "curie": "oboFormat:broad_synonym", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#broad_synonym" + }, + "oboInOwl:GOC": { + "curie": "oboInOwl:GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#GOC" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasBroadSynonym", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "gitissue502", + "oio" + ], + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_xref", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:xref", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_dbxref", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDbXref", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_dbxref", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:xref": { + "curie": "oboFormat:xref", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#xref" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasDbXref", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "gitissue502", + "oio" + ], + "curie": "OIO:hasExactSynonym", + "definedBy": [ + "oio" + ], + "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "hasDirectChildren": false, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_exact_synonym", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:exact_synonym", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:GOC", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "An alias in which the alias exhibits true synonymy. Example: ornithine cycle is an exact synonym of urea cycle", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_exact_synonym", + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasExactSynonym", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_exact_synonym", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { + "curie": "OIO:hasSynonym", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_synonym", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "curie": "RDFS:subPropertyOf", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "subPropertyOf", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:exact_synonym": { + "curie": "oboFormat:exact_synonym", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#exact_synonym" + }, + "oboInOwl:GOC": { + "curie": "oboInOwl:GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#GOC" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasExactSynonym", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "gitissue502", + "oio" + ], + "curie": "OIO:hasNarrowSynonym", + "definedBy": [ + "oio" + ], + "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "hasDirectChildren": false, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_narrow_synonym", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:narrow_synonym", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:GOC", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "An alias in which the alias is narrower than the primary class name. Example: pyrimidine-dimer repair by photolyase is a narrow synonym of photoreactive repair", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_narrow_synonym", + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasNarrowSynonym", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_narrow_synonym", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { + "curie": "OIO:hasSynonym", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_synonym", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "curie": "RDFS:subPropertyOf", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "subPropertyOf", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:narrow_synonym": { + "curie": "oboFormat:narrow_synonym", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#narrow_synonym" + }, + "oboInOwl:GOC": { + "curie": "oboInOwl:GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#GOC" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasNarrowSynonym", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "gitissue502", + "oio" + ], + "curie": "OIO:hasRelatedSynonym", + "definedBy": [ + "oio" + ], + "directAncestor": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "directParent": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "hasDirectChildren": false, + "hasDirectParents": true, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_related_synonym", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:related_synonym", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:GOC", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "An alias in which the alias is related the primary class name, but not necessarily broader or narrower. Example: cytochrome bc1 complex is a related synonym of ubiquinol-cytochrome-c reductase activity; virulence is a related synonym of pathogenesis", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_related_synonym", + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasRelatedSynonym", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_related_synonym", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasSynonym": { + "curie": "OIO:hasSynonym", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_synonym", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { + "curie": "RDFS:subPropertyOf", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "subPropertyOf", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:related_synonym": { + "curie": "oboFormat:related_synonym", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#related_synonym" + }, + "oboInOwl:GOC": { + "curie": "oboInOwl:GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#GOC" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasRelatedSynonym", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "gitissue502", + "oio" + ], + "curie": "OIO:hasSynonymType", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://www.geneontology.org/GO.usage.shtml#type", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "URL:http://www.geneontology.org/GO.usage.shtml#type", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_synonym_type", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSynonymType", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_synonym_type", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasSynonymType", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "gitissue502", + "oio" + ], + "curie": "OIO:inSubset", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_subset", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:subset", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "relation between a class and a oboInOwl:Subset, indicating the class belongs (is a member of) the subset", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "in_subset", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#inSubset", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "in_subset", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:subset": { + "curie": "oboFormat:subset", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#subset" + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_inSubset", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:ObsoleteProperty", + "definedBy": [ + "oio" + ], + "definition": "Note that this is not a metaclass", + "definitionProperty": "http://www.w3.org/2000/01/rdf-schema#comment", + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "pseudo-property. in the oboInOwl translation, all obsolete relations are subProperties of this class", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#ObjectProperty", + "http://www.w3.org/2000/01/rdf-schema#comment": "Note that this is not a metaclass", + "http://www.w3.org/2000/01/rdf-schema#label": "obsolete_property", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#ObsoleteProperty", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "obsolete_property", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#comment": { + "curie": "RDFS:comment", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "comment", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_ObsoleteProperty", + "type": [ + "entity", + "objectProperty", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:SubsetProperty", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:GOC", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "This annotation property groups all subsets declared in the ontology", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "subset_property", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#SubsetProperty", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "subset_property", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboInOwl:GOC": { + "curie": "oboInOwl:GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#GOC" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_SubsetProperty", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:SynonymTypeProperty", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:GOC", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "This annotation property groups all synonym types declared in the ontology", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "synonym_type_property", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#SynonymTypeProperty", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "synonym_type_property", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboInOwl:GOC": { + "curie": "oboInOwl:GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#GOC" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_SynonymTypeProperty", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:consider", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_consider", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:consider", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "Gives a term which may be an appropriate substitute for an obsolete term, but needs to be looked at carefully by a human expert before the replacement is done", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "consider", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#consider", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "consider", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:consider": { + "curie": "oboFormat:consider", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#consider" + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_consider", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasAlternativeId", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_alt_id", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:alt_id", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "An alternative identifier for this class; should follow ID syntax. These can result from class merges", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_alternative_id", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasAlternativeId", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_alternative_id", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:alt_id": { + "curie": "oboFormat:alt_id", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#alt_id" + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasAlternativeId", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasDate", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_date", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:date", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_date", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDate", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_date", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:date": { + "curie": "oboFormat:date", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#date" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasDate", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasDefaultNamespace", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_default-namespace", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:default-namespace", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_default_namespace", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDefaultNamespace", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_default_namespace", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasDefaultNamespace", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "definition": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string", + "definitionProperty": "http://www.w3.org/2000/01/rdf-schema#comment", + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_def", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:def", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "a relation between a class and an instance of a oboInOwl:Definition", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#comment": "we are forced to use the n-ary relation pattern in OWL1.0. For OWL2 we may make this a direct axiom between a class and the string", + "http://www.w3.org/2000/01/rdf-schema#label": "has_definition", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasDefinition", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_definition", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#comment": { + "curie": "RDFS:comment", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "comment", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:def": { + "curie": "oboFormat:def", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#def" + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasDefinition", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasOBONamespace", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_namespace", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:namespace", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:GOC", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "A relation between a class and an OBO namespace string. OBO namespaces are to be distinguished from IDspaces; for example, biological_process is a namespace, GO is an idspace.", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_obo_namespace", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasOBONamespace", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_obo_namespace", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:namespace": { + "curie": "oboFormat:namespace", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#namespace" + }, + "oboInOwl:GOC": { + "curie": "oboInOwl:GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#GOC" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasOBONamespace", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasSubset", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "relation between an ontology and a oboInOwl:Subset, indicating classes in the ontology belong to the subset", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_subset", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSubset", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_subset", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasSubset", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasSynonym", + "definedBy": [ + "oio" + ], + "definition": "Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL", + "definitionProperty": "http://www.w3.org/2000/01/rdf-schema#comment", + "hasDirectChildren": true, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_synonym", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:synonym", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_GOC", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:GOC", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "A relation between a class and an alias term.", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#comment": "Note that this should be a super-property of hasRelatedSynonym, hasExactSynonym etc; however, we cannot state this and remain in OWL-DL", + "http://www.w3.org/2000/01/rdf-schema#label": "has_synonym", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasSynonym", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_synonym", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#comment": { + "curie": "RDFS:comment", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "comment", + "numAppearsIn": 2.0, + "type": [ + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:synonym": { + "curie": "oboFormat:synonym", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#synonym" + }, + "oboInOwl:GOC": { + "curie": "oboInOwl:GOC", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#GOC" + } + }, + "numDescendants": 4.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasSynonym", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_URI", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasURI", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_URI", + "linkedEntities": { + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasURI", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:hasVersion", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_version", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:version", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "has_version", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#hasVersion", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "has_version", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:version": { + "curie": "oboFormat:version", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#version" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_hasVersion", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:isCyclic", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_is_cyclic", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:is_cyclic", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "is_cyclic", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#isCyclic", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "is_cyclic", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:is_cyclic": { + "curie": "oboFormat:is_cyclic", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#is_cyclic" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_isCyclic", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:replacedBy", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_replaced_by", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:replaced_by", + "isObsolete": false + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboInOwl#oboInOwl_cjm", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboInOwl:cjm", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#Definition", + "http://www.w3.org/2000/01/rdf-schema#label": "Gives a term which replaces an obsolete term. The value is the id of the replacement term. The value of this tag can safely be used to automatically reassign links to an obsolete term. The replaced_by tag may only be specified for obsolete terms. A single obsolete term may have more than one replaced_by tag. This tag can be used in conjunction with the consider tag.", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "replaced_by", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#replacedBy", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "replaced_by", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#Definition": { + "curie": "OIO:Definition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "definition", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDefinition": { + "curie": "OIO:hasDefinition", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_definition", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:replaced_by": { + "curie": "oboFormat:replaced_by", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#replaced_by" + }, + "oboInOwl:cjm": { + "curie": "oboInOwl:cjm", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#cjm" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_replacedBy", + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + { + "appearsIn": [ + "oio" + ], + "curie": "OIO:savedBy", + "definedBy": [ + "oio" + ], + "hasDirectChildren": false, + "hasDirectParents": false, + "hasHierarchicalChildren": false, + "hasHierarchicalParents": false, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "http://www.geneontology.org/formats/oboInOwl#hasURI": "http://purl.org/obo/owl/oboFormat#oboFormat_saved_by", + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.geneontology.org/formats/oboInOwl#DbXref", + "http://www.w3.org/2000/01/rdf-schema#label": "oboFormat:saved_by", + "isObsolete": false + }, + "http://www.w3.org/1999/02/22-rdf-syntax-ns#type": "http://www.w3.org/2002/07/owl#AnnotationProperty", + "http://www.w3.org/2000/01/rdf-schema#label": "saved_by", + "imported": false, + "iri": "http://www.geneontology.org/formats/oboInOwl#savedBy", + "isDefiningOntology": true, + "isObsolete": false, + "isPreferredRoot": false, + "label": "saved_by", + "linkedEntities": { + "http://www.geneontology.org/formats/oboInOwl#DbXref": { + "curie": "OIO:DbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "database_cross_reference", + "numAppearsIn": 1.0, + "type": [ + "class", + "entity" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasDbXref": { + "curie": "OIO:hasDbXref", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_dbxref", + "numAppearsIn": 2.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.geneontology.org/formats/oboInOwl#hasURI": { + "curie": "OIO:hasURI", + "definedBy": [ + "oio" + ], + "hasLocalDefinition": true, + "label": "has_URI", + "numAppearsIn": 1.0, + "type": [ + "annotationProperty", + "entity", + "property" + ] + }, + "http://www.w3.org/2000/01/rdf-schema#label": { + "curie": "RDFS:label", + "definedBy": [ + "rdfs" + ], + "hasLocalDefinition": false, + "label": "label", + "numAppearsIn": 3.0, + "type": [ + "entity", + "property" + ] + }, + "oboFormat:saved_by": { + "curie": "oboFormat:saved_by", + "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", + "url": "http://www.geneontology.org/formats/oboInOwl#saved_by" + } + }, + "numDescendants": 0.0, + "numHierarchicalDescendants": 0.0, + "ontologyId": "oio", + "ontologyIri": "http://www.geneontology.org/formats/oboInOwl", + "searchableAnnotationValues": false, + "shortForm": "OIO_savedBy", + "type": [ + "annotationProperty", + "entity", + "property" + ] + } +] \ No newline at end of file diff --git a/testcases_expected_output_api/v2/ontologies/owl/classes.json b/testcases_expected_output_api/v2/ontologies/owl/classes.json index 0935f37d3..9e6f2e65d 100644 --- a/testcases_expected_output_api/v2/ontologies/owl/classes.json +++ b/testcases_expected_output_api/v2/ontologies/owl/classes.json @@ -3,7 +3,7 @@ "appearsIn": [ "owl" ], - "curie": "AllDifferent", + "curie": "OWL:AllDifferent", "definedBy": [ "owl" ], @@ -31,7 +31,7 @@ "label": "AllDifferent", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -44,7 +44,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -57,7 +57,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -70,7 +70,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -83,7 +83,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -96,7 +96,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -114,7 +114,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "AllDifferent", + "shortForm": "OWL_AllDifferent", "type": [ "class", "entity" @@ -124,7 +124,7 @@ "appearsIn": [ "owl" ], - "curie": "AllDisjointClasses", + "curie": "OWL:AllDisjointClasses", "definedBy": [ "owl" ], @@ -152,7 +152,7 @@ "label": "AllDisjointClasses", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -165,7 +165,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -178,7 +178,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -191,7 +191,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -204,7 +204,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -217,7 +217,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -235,7 +235,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "AllDisjointClasses", + "shortForm": "OWL_AllDisjointClasses", "type": [ "class", "entity" @@ -245,7 +245,7 @@ "appearsIn": [ "owl" ], - "curie": "AllDisjointProperties", + "curie": "OWL:AllDisjointProperties", "definedBy": [ "owl" ], @@ -273,7 +273,7 @@ "label": "AllDisjointProperties", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -286,7 +286,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -299,7 +299,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -312,7 +312,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -325,7 +325,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -338,7 +338,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -356,7 +356,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "AllDisjointProperties", + "shortForm": "OWL_AllDisjointProperties", "type": [ "class", "entity" @@ -366,7 +366,7 @@ "appearsIn": [ "owl" ], - "curie": "Annotation", + "curie": "OWL:Annotation", "definedBy": [ "owl" ], @@ -394,7 +394,7 @@ "label": "Annotation", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -407,7 +407,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -420,7 +420,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -433,7 +433,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -446,7 +446,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -459,7 +459,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -477,7 +477,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "Annotation", + "shortForm": "OWL_Annotation", "type": [ "class", "entity" @@ -487,7 +487,7 @@ "appearsIn": [ "owl" ], - "curie": "AnnotationProperty", + "curie": "OWL:AnnotationProperty", "definedBy": [ "owl" ], @@ -511,7 +511,7 @@ "label": "AnnotationProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -524,7 +524,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -537,7 +537,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -550,7 +550,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -563,7 +563,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -581,7 +581,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "AnnotationProperty", + "shortForm": "OWL_AnnotationProperty", "type": [ "class", "entity" @@ -591,7 +591,7 @@ "appearsIn": [ "owl" ], - "curie": "AsymmetricProperty", + "curie": "OWL:AsymmetricProperty", "definedBy": [ "owl" ], @@ -619,7 +619,7 @@ "label": "AsymmetricProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -632,7 +632,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -645,7 +645,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -658,7 +658,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -671,7 +671,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -689,7 +689,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "AsymmetricProperty", + "shortForm": "OWL_AsymmetricProperty", "type": [ "class", "entity" @@ -699,7 +699,7 @@ "appearsIn": [ "owl" ], - "curie": "Axiom", + "curie": "OWL:Axiom", "definedBy": [ "owl" ], @@ -727,7 +727,7 @@ "label": "Axiom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -740,7 +740,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -753,7 +753,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -766,7 +766,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -779,7 +779,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -792,7 +792,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -810,7 +810,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "Axiom", + "shortForm": "OWL_Axiom", "type": [ "class", "entity" @@ -820,7 +820,7 @@ "appearsIn": [ "owl" ], - "curie": "Class", + "curie": "OWL:Class", "definedBy": [ "owl" ], @@ -854,7 +854,7 @@ "label": "Class", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -867,7 +867,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -880,7 +880,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -893,7 +893,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -906,7 +906,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -919,7 +919,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -937,7 +937,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "Class", + "shortForm": "OWL_Class", "type": [ "class", "entity" @@ -947,7 +947,7 @@ "appearsIn": [ "owl" ], - "curie": "DataRange", + "curie": "OWL:DataRange", "definedBy": [ "owl" ], @@ -983,7 +983,7 @@ "label": "DataRange", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -996,7 +996,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "Datatype", + "curie": "RDFS:Datatype", "definedBy": [ "rdfs" ], @@ -1009,7 +1009,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -1022,7 +1022,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1035,7 +1035,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1048,7 +1048,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1061,7 +1061,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1079,7 +1079,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "DataRange", + "shortForm": "OWL_DataRange", "type": [ "class", "entity" @@ -1089,7 +1089,7 @@ "appearsIn": [ "owl" ], - "curie": "DatatypeProperty", + "curie": "OWL:DatatypeProperty", "definedBy": [ "owl" ], @@ -1113,7 +1113,7 @@ "label": "DatatypeProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1126,7 +1126,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1139,7 +1139,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1152,7 +1152,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1165,7 +1165,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1183,7 +1183,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "DatatypeProperty", + "shortForm": "OWL_DatatypeProperty", "type": [ "class", "entity" @@ -1193,7 +1193,7 @@ "appearsIn": [ "owl" ], - "curie": "DeprecatedClass", + "curie": "OWL:DeprecatedClass", "definedBy": [ "owl" ], @@ -1227,7 +1227,7 @@ "label": "DeprecatedClass", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1240,7 +1240,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -1253,7 +1253,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1266,7 +1266,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1279,7 +1279,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1292,7 +1292,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1310,7 +1310,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "DeprecatedClass", + "shortForm": "OWL_DeprecatedClass", "type": [ "class", "entity" @@ -1320,7 +1320,7 @@ "appearsIn": [ "owl" ], - "curie": "DeprecatedProperty", + "curie": "OWL:DeprecatedProperty", "definedBy": [ "owl" ], @@ -1344,7 +1344,7 @@ "label": "DeprecatedProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1357,7 +1357,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1370,7 +1370,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1383,7 +1383,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1396,7 +1396,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1414,7 +1414,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "DeprecatedProperty", + "shortForm": "OWL_DeprecatedProperty", "type": [ "class", "entity" @@ -1424,7 +1424,7 @@ "appearsIn": [ "owl" ], - "curie": "FunctionalProperty", + "curie": "OWL:FunctionalProperty", "definedBy": [ "owl" ], @@ -1448,7 +1448,7 @@ "label": "FunctionalProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1461,7 +1461,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1474,7 +1474,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1487,7 +1487,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1500,7 +1500,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1518,7 +1518,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "FunctionalProperty", + "shortForm": "OWL_FunctionalProperty", "type": [ "class", "entity" @@ -1528,7 +1528,7 @@ "appearsIn": [ "owl" ], - "curie": "InverseFunctionalProperty", + "curie": "OWL:InverseFunctionalProperty", "definedBy": [ "owl" ], @@ -1556,7 +1556,7 @@ "label": "InverseFunctionalProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1569,7 +1569,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1582,7 +1582,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1595,7 +1595,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1608,7 +1608,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1626,7 +1626,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "InverseFunctionalProperty", + "shortForm": "OWL_InverseFunctionalProperty", "type": [ "class", "entity" @@ -1636,7 +1636,7 @@ "appearsIn": [ "owl" ], - "curie": "IrreflexiveProperty", + "curie": "OWL:IrreflexiveProperty", "definedBy": [ "owl" ], @@ -1664,7 +1664,7 @@ "label": "IrreflexiveProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1677,7 +1677,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1690,7 +1690,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1703,7 +1703,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1716,7 +1716,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1734,7 +1734,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "IrreflexiveProperty", + "shortForm": "OWL_IrreflexiveProperty", "type": [ "class", "entity" @@ -1744,7 +1744,7 @@ "appearsIn": [ "owl" ], - "curie": "NamedIndividual", + "curie": "OWL:NamedIndividual", "definedBy": [ "owl" ], @@ -1772,7 +1772,7 @@ "label": "NamedIndividual", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1785,7 +1785,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1798,7 +1798,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1811,7 +1811,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1824,7 +1824,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1842,7 +1842,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "NamedIndividual", + "shortForm": "OWL_NamedIndividual", "type": [ "class", "entity" @@ -1852,7 +1852,7 @@ "appearsIn": [ "owl" ], - "curie": "NegativePropertyAssertion", + "curie": "OWL:NegativePropertyAssertion", "definedBy": [ "owl" ], @@ -1880,7 +1880,7 @@ "label": "NegativePropertyAssertion", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1893,7 +1893,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -1906,7 +1906,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1919,7 +1919,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1932,7 +1932,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1945,7 +1945,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1963,7 +1963,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "NegativePropertyAssertion", + "shortForm": "OWL_NegativePropertyAssertion", "type": [ "class", "entity" @@ -1973,7 +1973,7 @@ "appearsIn": [ "owl" ], - "curie": "Nothing", + "curie": "OWL:Nothing", "definedBy": [ "owl" ], @@ -2001,7 +2001,7 @@ "label": "Nothing", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2014,7 +2014,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2027,7 +2027,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2040,7 +2040,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2058,7 +2058,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "Nothing", + "shortForm": "OWL_Nothing", "type": [ "class", "entity" @@ -2068,7 +2068,7 @@ "appearsIn": [ "owl" ], - "curie": "ObjectProperty", + "curie": "OWL:ObjectProperty", "definedBy": [ "owl" ], @@ -2092,7 +2092,7 @@ "label": "ObjectProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -2105,7 +2105,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2118,7 +2118,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2131,7 +2131,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2144,7 +2144,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2162,7 +2162,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "ObjectProperty", + "shortForm": "OWL_ObjectProperty", "type": [ "class", "entity" @@ -2172,7 +2172,7 @@ "appearsIn": [ "owl" ], - "curie": "Ontology", + "curie": "OWL:Ontology", "definedBy": [ "owl" ], @@ -2200,7 +2200,7 @@ "label": "Ontology", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -2213,7 +2213,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -2226,7 +2226,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2239,7 +2239,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2252,7 +2252,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2265,7 +2265,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2283,7 +2283,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "Ontology", + "shortForm": "OWL_Ontology", "type": [ "class", "entity" @@ -2293,7 +2293,7 @@ "appearsIn": [ "owl" ], - "curie": "OntologyProperty", + "curie": "OWL:OntologyProperty", "definedBy": [ "owl" ], @@ -2317,7 +2317,7 @@ "label": "OntologyProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -2330,7 +2330,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2343,7 +2343,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2356,7 +2356,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2369,7 +2369,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2387,7 +2387,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "OntologyProperty", + "shortForm": "OWL_OntologyProperty", "type": [ "class", "entity" @@ -2397,7 +2397,7 @@ "appearsIn": [ "owl" ], - "curie": "ReflexiveProperty", + "curie": "OWL:ReflexiveProperty", "definedBy": [ "owl" ], @@ -2425,7 +2425,7 @@ "label": "ReflexiveProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -2438,7 +2438,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2451,7 +2451,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2464,7 +2464,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2477,7 +2477,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2495,7 +2495,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "ReflexiveProperty", + "shortForm": "OWL_ReflexiveProperty", "type": [ "class", "entity" @@ -2505,7 +2505,7 @@ "appearsIn": [ "owl" ], - "curie": "Restriction", + "curie": "OWL:Restriction", "definedBy": [ "owl" ], @@ -2541,7 +2541,7 @@ "label": "Restriction", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -2554,7 +2554,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -2567,7 +2567,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2580,7 +2580,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2593,7 +2593,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2606,7 +2606,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2624,7 +2624,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "Restriction", + "shortForm": "OWL_Restriction", "type": [ "class", "entity" @@ -2634,7 +2634,7 @@ "appearsIn": [ "owl" ], - "curie": "SymmetricProperty", + "curie": "OWL:SymmetricProperty", "definedBy": [ "owl" ], @@ -2662,7 +2662,7 @@ "label": "SymmetricProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -2675,7 +2675,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2688,7 +2688,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2701,7 +2701,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2714,7 +2714,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2732,7 +2732,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "SymmetricProperty", + "shortForm": "OWL_SymmetricProperty", "type": [ "class", "entity" @@ -2742,7 +2742,7 @@ "appearsIn": [ "owl" ], - "curie": "Thing", + "curie": "OWL:Thing", "definedBy": [ "owl" ], @@ -2764,7 +2764,7 @@ "label": "Thing", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2777,7 +2777,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2790,7 +2790,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2808,7 +2808,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "Thing", + "shortForm": "OWL_Thing", "type": [ "class", "entity" @@ -2818,7 +2818,7 @@ "appearsIn": [ "owl" ], - "curie": "TransitiveProperty", + "curie": "OWL:TransitiveProperty", "definedBy": [ "owl" ], @@ -2846,7 +2846,7 @@ "label": "TransitiveProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -2859,7 +2859,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2872,7 +2872,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2885,7 +2885,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2898,7 +2898,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2916,7 +2916,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "TransitiveProperty", + "shortForm": "OWL_TransitiveProperty", "type": [ "class", "entity" @@ -2927,7 +2927,7 @@ "owl", "rdfs" ], - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -2955,7 +2955,7 @@ "label": "Class", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -2968,7 +2968,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2981,7 +2981,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2994,7 +2994,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3007,7 +3007,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -3025,7 +3025,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "Class", + "shortForm": "RDFS_Class", "type": [ "class", "entity" @@ -3036,7 +3036,7 @@ "owl", "rdfs" ], - "curie": "Container", + "curie": "RDFS:Container", "definedBy": [ "rdfs" ], @@ -3064,7 +3064,7 @@ "label": "Container", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -3077,7 +3077,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -3090,7 +3090,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3103,7 +3103,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3116,7 +3116,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3129,7 +3129,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -3147,7 +3147,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "Container", + "shortForm": "RDFS_Container", "type": [ "class", "entity" @@ -3158,7 +3158,7 @@ "owl", "rdfs" ], - "curie": "ContainerMembershipProperty", + "curie": "RDFS:ContainerMembershipProperty", "definedBy": [ "rdfs" ], @@ -3182,7 +3182,7 @@ "label": "ContainerMembershipProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -3195,7 +3195,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3208,7 +3208,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3221,7 +3221,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3234,7 +3234,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -3252,7 +3252,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "ContainerMembershipProperty", + "shortForm": "RDFS_ContainerMembershipProperty", "type": [ "class", "entity" @@ -3263,7 +3263,7 @@ "owl", "rdfs" ], - "curie": "Datatype", + "curie": "RDFS:Datatype", "definedBy": [ "rdfs" ], @@ -3297,7 +3297,7 @@ "label": "Datatype", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -3310,7 +3310,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -3323,7 +3323,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3336,7 +3336,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3349,7 +3349,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3362,7 +3362,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -3380,7 +3380,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "Datatype", + "shortForm": "RDFS_Datatype", "type": [ "class", "entity" @@ -3391,7 +3391,7 @@ "owl", "rdfs" ], - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -3419,7 +3419,7 @@ "label": "Literal", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -3432,7 +3432,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -3445,7 +3445,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3458,7 +3458,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3471,7 +3471,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3484,7 +3484,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -3502,7 +3502,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "Literal", + "shortForm": "RDFS_Literal", "type": [ "class", "entity" @@ -3513,7 +3513,7 @@ "owl", "rdfs" ], - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -3535,7 +3535,7 @@ "label": "Resource", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -3548,7 +3548,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3561,7 +3561,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3574,7 +3574,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3592,7 +3592,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "Resource", + "shortForm": "RDFS_Resource", "type": [ "class", "entity" diff --git a/testcases_expected_output_api/v2/ontologies/owl/entities.json b/testcases_expected_output_api/v2/ontologies/owl/entities.json index 8a73612b4..bdf314640 100644 --- a/testcases_expected_output_api/v2/ontologies/owl/entities.json +++ b/testcases_expected_output_api/v2/ontologies/owl/entities.json @@ -5,7 +5,7 @@ "owl", "rdfs" ], - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -29,7 +29,7 @@ "label": "label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -42,7 +42,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -55,7 +55,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -68,7 +68,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -81,7 +81,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -94,7 +94,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -112,7 +112,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "label", + "shortForm": "RDFS_label", "type": [ "entity", "property" @@ -122,7 +122,7 @@ "appearsIn": [ "owl" ], - "curie": "AllDifferent", + "curie": "OWL:AllDifferent", "definedBy": [ "owl" ], @@ -150,7 +150,7 @@ "label": "AllDifferent", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -163,7 +163,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -176,7 +176,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -189,7 +189,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -202,7 +202,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -215,7 +215,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -233,7 +233,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "AllDifferent", + "shortForm": "OWL_AllDifferent", "type": [ "class", "entity" @@ -243,7 +243,7 @@ "appearsIn": [ "owl" ], - "curie": "AllDisjointClasses", + "curie": "OWL:AllDisjointClasses", "definedBy": [ "owl" ], @@ -271,7 +271,7 @@ "label": "AllDisjointClasses", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -284,7 +284,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -297,7 +297,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -310,7 +310,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -323,7 +323,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -336,7 +336,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -354,7 +354,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "AllDisjointClasses", + "shortForm": "OWL_AllDisjointClasses", "type": [ "class", "entity" @@ -364,7 +364,7 @@ "appearsIn": [ "owl" ], - "curie": "AllDisjointProperties", + "curie": "OWL:AllDisjointProperties", "definedBy": [ "owl" ], @@ -392,7 +392,7 @@ "label": "AllDisjointProperties", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -405,7 +405,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -418,7 +418,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -431,7 +431,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -444,7 +444,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -457,7 +457,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -475,7 +475,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "AllDisjointProperties", + "shortForm": "OWL_AllDisjointProperties", "type": [ "class", "entity" @@ -485,7 +485,7 @@ "appearsIn": [ "owl" ], - "curie": "Annotation", + "curie": "OWL:Annotation", "definedBy": [ "owl" ], @@ -513,7 +513,7 @@ "label": "Annotation", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -526,7 +526,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -539,7 +539,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -552,7 +552,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -565,7 +565,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -578,7 +578,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -596,7 +596,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "Annotation", + "shortForm": "OWL_Annotation", "type": [ "class", "entity" @@ -606,7 +606,7 @@ "appearsIn": [ "owl" ], - "curie": "AnnotationProperty", + "curie": "OWL:AnnotationProperty", "definedBy": [ "owl" ], @@ -630,7 +630,7 @@ "label": "AnnotationProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -643,7 +643,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -656,7 +656,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -669,7 +669,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -682,7 +682,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -700,7 +700,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "AnnotationProperty", + "shortForm": "OWL_AnnotationProperty", "type": [ "class", "entity" @@ -710,7 +710,7 @@ "appearsIn": [ "owl" ], - "curie": "AsymmetricProperty", + "curie": "OWL:AsymmetricProperty", "definedBy": [ "owl" ], @@ -738,7 +738,7 @@ "label": "AsymmetricProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -751,7 +751,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -764,7 +764,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -777,7 +777,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -790,7 +790,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -808,7 +808,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "AsymmetricProperty", + "shortForm": "OWL_AsymmetricProperty", "type": [ "class", "entity" @@ -818,7 +818,7 @@ "appearsIn": [ "owl" ], - "curie": "Axiom", + "curie": "OWL:Axiom", "definedBy": [ "owl" ], @@ -846,7 +846,7 @@ "label": "Axiom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -859,7 +859,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -872,7 +872,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -885,7 +885,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -898,7 +898,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -911,7 +911,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -929,7 +929,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "Axiom", + "shortForm": "OWL_Axiom", "type": [ "class", "entity" @@ -939,7 +939,7 @@ "appearsIn": [ "owl" ], - "curie": "Class", + "curie": "OWL:Class", "definedBy": [ "owl" ], @@ -973,7 +973,7 @@ "label": "Class", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -986,7 +986,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -999,7 +999,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1012,7 +1012,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1025,7 +1025,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1038,7 +1038,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1056,7 +1056,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "Class", + "shortForm": "OWL_Class", "type": [ "class", "entity" @@ -1066,7 +1066,7 @@ "appearsIn": [ "owl" ], - "curie": "DataRange", + "curie": "OWL:DataRange", "definedBy": [ "owl" ], @@ -1102,7 +1102,7 @@ "label": "DataRange", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1115,7 +1115,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "Datatype", + "curie": "RDFS:Datatype", "definedBy": [ "rdfs" ], @@ -1128,7 +1128,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -1141,7 +1141,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1154,7 +1154,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1167,7 +1167,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1180,7 +1180,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1198,7 +1198,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "DataRange", + "shortForm": "OWL_DataRange", "type": [ "class", "entity" @@ -1208,7 +1208,7 @@ "appearsIn": [ "owl" ], - "curie": "DatatypeProperty", + "curie": "OWL:DatatypeProperty", "definedBy": [ "owl" ], @@ -1232,7 +1232,7 @@ "label": "DatatypeProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1245,7 +1245,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1258,7 +1258,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1271,7 +1271,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1284,7 +1284,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1302,7 +1302,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "DatatypeProperty", + "shortForm": "OWL_DatatypeProperty", "type": [ "class", "entity" @@ -1312,7 +1312,7 @@ "appearsIn": [ "owl" ], - "curie": "DeprecatedClass", + "curie": "OWL:DeprecatedClass", "definedBy": [ "owl" ], @@ -1346,7 +1346,7 @@ "label": "DeprecatedClass", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1359,7 +1359,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -1372,7 +1372,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1385,7 +1385,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1398,7 +1398,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1411,7 +1411,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1429,7 +1429,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "DeprecatedClass", + "shortForm": "OWL_DeprecatedClass", "type": [ "class", "entity" @@ -1439,7 +1439,7 @@ "appearsIn": [ "owl" ], - "curie": "DeprecatedProperty", + "curie": "OWL:DeprecatedProperty", "definedBy": [ "owl" ], @@ -1463,7 +1463,7 @@ "label": "DeprecatedProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1476,7 +1476,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1489,7 +1489,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1502,7 +1502,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1515,7 +1515,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1533,7 +1533,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "DeprecatedProperty", + "shortForm": "OWL_DeprecatedProperty", "type": [ "class", "entity" @@ -1543,7 +1543,7 @@ "appearsIn": [ "owl" ], - "curie": "FunctionalProperty", + "curie": "OWL:FunctionalProperty", "definedBy": [ "owl" ], @@ -1567,7 +1567,7 @@ "label": "FunctionalProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1580,7 +1580,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1593,7 +1593,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1606,7 +1606,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1619,7 +1619,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1637,7 +1637,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "FunctionalProperty", + "shortForm": "OWL_FunctionalProperty", "type": [ "class", "entity" @@ -1647,7 +1647,7 @@ "appearsIn": [ "owl" ], - "curie": "InverseFunctionalProperty", + "curie": "OWL:InverseFunctionalProperty", "definedBy": [ "owl" ], @@ -1675,7 +1675,7 @@ "label": "InverseFunctionalProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1688,7 +1688,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1701,7 +1701,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1714,7 +1714,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1727,7 +1727,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1745,7 +1745,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "InverseFunctionalProperty", + "shortForm": "OWL_InverseFunctionalProperty", "type": [ "class", "entity" @@ -1755,7 +1755,7 @@ "appearsIn": [ "owl" ], - "curie": "IrreflexiveProperty", + "curie": "OWL:IrreflexiveProperty", "definedBy": [ "owl" ], @@ -1783,7 +1783,7 @@ "label": "IrreflexiveProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1796,7 +1796,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1809,7 +1809,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1822,7 +1822,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1835,7 +1835,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1853,7 +1853,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "IrreflexiveProperty", + "shortForm": "OWL_IrreflexiveProperty", "type": [ "class", "entity" @@ -1863,7 +1863,7 @@ "appearsIn": [ "owl" ], - "curie": "NamedIndividual", + "curie": "OWL:NamedIndividual", "definedBy": [ "owl" ], @@ -1891,7 +1891,7 @@ "label": "NamedIndividual", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1904,7 +1904,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1917,7 +1917,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1930,7 +1930,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1943,7 +1943,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1961,7 +1961,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "NamedIndividual", + "shortForm": "OWL_NamedIndividual", "type": [ "class", "entity" @@ -1971,7 +1971,7 @@ "appearsIn": [ "owl" ], - "curie": "NegativePropertyAssertion", + "curie": "OWL:NegativePropertyAssertion", "definedBy": [ "owl" ], @@ -1999,7 +1999,7 @@ "label": "NegativePropertyAssertion", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -2012,7 +2012,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -2025,7 +2025,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2038,7 +2038,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2051,7 +2051,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2064,7 +2064,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2082,7 +2082,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "NegativePropertyAssertion", + "shortForm": "OWL_NegativePropertyAssertion", "type": [ "class", "entity" @@ -2092,7 +2092,7 @@ "appearsIn": [ "owl" ], - "curie": "Nothing", + "curie": "OWL:Nothing", "definedBy": [ "owl" ], @@ -2120,7 +2120,7 @@ "label": "Nothing", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2133,7 +2133,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2146,7 +2146,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2159,7 +2159,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2177,7 +2177,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "Nothing", + "shortForm": "OWL_Nothing", "type": [ "class", "entity" @@ -2187,7 +2187,7 @@ "appearsIn": [ "owl" ], - "curie": "ObjectProperty", + "curie": "OWL:ObjectProperty", "definedBy": [ "owl" ], @@ -2211,7 +2211,7 @@ "label": "ObjectProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -2224,7 +2224,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2237,7 +2237,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2250,7 +2250,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2263,7 +2263,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2281,7 +2281,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "ObjectProperty", + "shortForm": "OWL_ObjectProperty", "type": [ "class", "entity" @@ -2291,7 +2291,7 @@ "appearsIn": [ "owl" ], - "curie": "Ontology", + "curie": "OWL:Ontology", "definedBy": [ "owl" ], @@ -2319,7 +2319,7 @@ "label": "Ontology", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -2332,7 +2332,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -2345,7 +2345,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2358,7 +2358,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2371,7 +2371,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2384,7 +2384,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2402,7 +2402,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "Ontology", + "shortForm": "OWL_Ontology", "type": [ "class", "entity" @@ -2412,7 +2412,7 @@ "appearsIn": [ "owl" ], - "curie": "OntologyProperty", + "curie": "OWL:OntologyProperty", "definedBy": [ "owl" ], @@ -2436,7 +2436,7 @@ "label": "OntologyProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -2449,7 +2449,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2462,7 +2462,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2475,7 +2475,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2488,7 +2488,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2506,7 +2506,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "OntologyProperty", + "shortForm": "OWL_OntologyProperty", "type": [ "class", "entity" @@ -2516,7 +2516,7 @@ "appearsIn": [ "owl" ], - "curie": "ReflexiveProperty", + "curie": "OWL:ReflexiveProperty", "definedBy": [ "owl" ], @@ -2544,7 +2544,7 @@ "label": "ReflexiveProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -2557,7 +2557,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2570,7 +2570,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2583,7 +2583,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2596,7 +2596,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2614,7 +2614,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "ReflexiveProperty", + "shortForm": "OWL_ReflexiveProperty", "type": [ "class", "entity" @@ -2624,7 +2624,7 @@ "appearsIn": [ "owl" ], - "curie": "Restriction", + "curie": "OWL:Restriction", "definedBy": [ "owl" ], @@ -2660,7 +2660,7 @@ "label": "Restriction", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -2673,7 +2673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -2686,7 +2686,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2699,7 +2699,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2712,7 +2712,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2725,7 +2725,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2743,7 +2743,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "Restriction", + "shortForm": "OWL_Restriction", "type": [ "class", "entity" @@ -2753,7 +2753,7 @@ "appearsIn": [ "owl" ], - "curie": "SymmetricProperty", + "curie": "OWL:SymmetricProperty", "definedBy": [ "owl" ], @@ -2781,7 +2781,7 @@ "label": "SymmetricProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -2794,7 +2794,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2807,7 +2807,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2820,7 +2820,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2833,7 +2833,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -2851,7 +2851,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "SymmetricProperty", + "shortForm": "OWL_SymmetricProperty", "type": [ "class", "entity" @@ -2861,7 +2861,7 @@ "appearsIn": [ "owl" ], - "curie": "Thing", + "curie": "OWL:Thing", "definedBy": [ "owl" ], @@ -2883,7 +2883,7 @@ "label": "Thing", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2896,7 +2896,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2909,7 +2909,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2927,7 +2927,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "Thing", + "shortForm": "OWL_Thing", "type": [ "class", "entity" @@ -2937,7 +2937,7 @@ "appearsIn": [ "owl" ], - "curie": "TransitiveProperty", + "curie": "OWL:TransitiveProperty", "definedBy": [ "owl" ], @@ -2965,7 +2965,7 @@ "label": "TransitiveProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -2978,7 +2978,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2991,7 +2991,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3004,7 +3004,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3017,7 +3017,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -3035,7 +3035,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "TransitiveProperty", + "shortForm": "OWL_TransitiveProperty", "type": [ "class", "entity" @@ -3045,7 +3045,7 @@ "appearsIn": [ "owl" ], - "curie": "allValuesFrom", + "curie": "OWL:allValuesFrom", "definedBy": [ "owl" ], @@ -3069,7 +3069,7 @@ "label": "allValuesFrom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -3082,7 +3082,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3095,7 +3095,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3108,7 +3108,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3121,7 +3121,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3134,7 +3134,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3152,7 +3152,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "allValuesFrom", + "shortForm": "OWL_allValuesFrom", "type": [ "entity", "property" @@ -3162,7 +3162,7 @@ "appearsIn": [ "owl" ], - "curie": "annotatedProperty", + "curie": "OWL:annotatedProperty", "definedBy": [ "owl" ], @@ -3186,7 +3186,7 @@ "label": "annotatedProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -3199,7 +3199,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3212,7 +3212,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3225,7 +3225,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3238,7 +3238,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3251,7 +3251,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3269,7 +3269,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "annotatedProperty", + "shortForm": "OWL_annotatedProperty", "type": [ "entity", "property" @@ -3279,7 +3279,7 @@ "appearsIn": [ "owl" ], - "curie": "annotatedSource", + "curie": "OWL:annotatedSource", "definedBy": [ "owl" ], @@ -3303,7 +3303,7 @@ "label": "annotatedSource", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -3316,7 +3316,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3329,7 +3329,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3342,7 +3342,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3355,7 +3355,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3368,7 +3368,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3386,7 +3386,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "annotatedSource", + "shortForm": "OWL_annotatedSource", "type": [ "entity", "property" @@ -3396,7 +3396,7 @@ "appearsIn": [ "owl" ], - "curie": "annotatedTarget", + "curie": "OWL:annotatedTarget", "definedBy": [ "owl" ], @@ -3420,7 +3420,7 @@ "label": "annotatedTarget", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -3433,7 +3433,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3446,7 +3446,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3459,7 +3459,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3472,7 +3472,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3485,7 +3485,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3503,7 +3503,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "annotatedTarget", + "shortForm": "OWL_annotatedTarget", "type": [ "entity", "property" @@ -3513,7 +3513,7 @@ "appearsIn": [ "owl" ], - "curie": "assertionProperty", + "curie": "OWL:assertionProperty", "definedBy": [ "owl" ], @@ -3537,7 +3537,7 @@ "label": "assertionProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3550,7 +3550,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3563,7 +3563,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3576,7 +3576,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3589,7 +3589,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3607,7 +3607,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "assertionProperty", + "shortForm": "OWL_assertionProperty", "type": [ "entity", "property" @@ -3617,7 +3617,7 @@ "appearsIn": [ "owl" ], - "curie": "backwardCompatibleWith", + "curie": "OWL:backwardCompatibleWith", "definedBy": [ "owl" ], @@ -3644,7 +3644,7 @@ "label": "backwardCompatibleWith", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3657,7 +3657,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3670,7 +3670,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3683,7 +3683,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3696,7 +3696,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3714,7 +3714,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "backwardCompatibleWith", + "shortForm": "OWL_backwardCompatibleWith", "type": [ "annotationProperty", "entity", @@ -3725,7 +3725,7 @@ "appearsIn": [ "owl" ], - "curie": "bottomDataProperty", + "curie": "OWL:bottomDataProperty", "definedBy": [ "owl" ], @@ -3749,7 +3749,7 @@ "label": "bottomDataProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -3762,7 +3762,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3775,7 +3775,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3788,7 +3788,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3801,7 +3801,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3814,7 +3814,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3832,7 +3832,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "bottomDataProperty", + "shortForm": "OWL_bottomDataProperty", "type": [ "dataProperty", "entity", @@ -3843,7 +3843,7 @@ "appearsIn": [ "owl" ], - "curie": "bottomObjectProperty", + "curie": "OWL:bottomObjectProperty", "definedBy": [ "owl" ], @@ -3867,7 +3867,7 @@ "label": "bottomObjectProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3880,7 +3880,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3893,7 +3893,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3906,7 +3906,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3919,7 +3919,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3937,7 +3937,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "bottomObjectProperty", + "shortForm": "OWL_bottomObjectProperty", "type": [ "entity", "objectProperty", @@ -3948,7 +3948,7 @@ "appearsIn": [ "owl" ], - "curie": "cardinality", + "curie": "OWL:cardinality", "definedBy": [ "owl" ], @@ -3972,7 +3972,7 @@ "label": "cardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3985,7 +3985,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3998,7 +3998,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4011,7 +4011,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4024,7 +4024,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4042,7 +4042,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "cardinality", + "shortForm": "OWL_cardinality", "type": [ "entity", "property" @@ -4052,7 +4052,7 @@ "appearsIn": [ "owl" ], - "curie": "complementOf", + "curie": "OWL:complementOf", "definedBy": [ "owl" ], @@ -4076,7 +4076,7 @@ "label": "complementOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4089,7 +4089,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4102,7 +4102,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4115,7 +4115,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4128,7 +4128,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4146,7 +4146,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "complementOf", + "shortForm": "OWL_complementOf", "type": [ "entity", "property" @@ -4156,7 +4156,7 @@ "appearsIn": [ "owl" ], - "curie": "datatypeComplementOf", + "curie": "OWL:datatypeComplementOf", "definedBy": [ "owl" ], @@ -4180,7 +4180,7 @@ "label": "datatypeComplementOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "Datatype", + "curie": "RDFS:Datatype", "definedBy": [ "rdfs" ], @@ -4193,7 +4193,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4206,7 +4206,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4219,7 +4219,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4232,7 +4232,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4245,7 +4245,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4263,7 +4263,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "datatypeComplementOf", + "shortForm": "OWL_datatypeComplementOf", "type": [ "entity", "property" @@ -4273,7 +4273,7 @@ "appearsIn": [ "owl" ], - "curie": "deprecated", + "curie": "OWL:deprecated", "definedBy": [ "owl" ], @@ -4297,7 +4297,7 @@ "label": "deprecated", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -4310,7 +4310,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4323,7 +4323,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4336,7 +4336,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4349,7 +4349,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4362,7 +4362,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4380,7 +4380,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "deprecated", + "shortForm": "OWL_deprecated", "type": [ "annotationProperty", "entity", @@ -4391,7 +4391,7 @@ "appearsIn": [ "owl" ], - "curie": "differentFrom", + "curie": "OWL:differentFrom", "definedBy": [ "owl" ], @@ -4415,7 +4415,7 @@ "label": "differentFrom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4428,7 +4428,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4441,7 +4441,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4454,7 +4454,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4467,7 +4467,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4485,7 +4485,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "differentFrom", + "shortForm": "OWL_differentFrom", "type": [ "entity", "property" @@ -4495,7 +4495,7 @@ "appearsIn": [ "owl" ], - "curie": "disjointUnionOf", + "curie": "OWL:disjointUnionOf", "definedBy": [ "owl" ], @@ -4519,7 +4519,7 @@ "label": "disjointUnionOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4532,7 +4532,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4545,7 +4545,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4558,7 +4558,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4571,7 +4571,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4589,7 +4589,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "disjointUnionOf", + "shortForm": "OWL_disjointUnionOf", "type": [ "entity", "property" @@ -4599,7 +4599,7 @@ "appearsIn": [ "owl" ], - "curie": "disjointWith", + "curie": "OWL:disjointWith", "definedBy": [ "owl" ], @@ -4623,7 +4623,7 @@ "label": "disjointWith", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4636,7 +4636,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4649,7 +4649,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4662,7 +4662,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4675,7 +4675,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4693,7 +4693,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "disjointWith", + "shortForm": "OWL_disjointWith", "type": [ "entity", "property" @@ -4703,7 +4703,7 @@ "appearsIn": [ "owl" ], - "curie": "distinctMembers", + "curie": "OWL:distinctMembers", "definedBy": [ "owl" ], @@ -4727,7 +4727,7 @@ "label": "distinctMembers", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4740,7 +4740,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4753,7 +4753,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4766,7 +4766,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4779,7 +4779,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4797,7 +4797,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "distinctMembers", + "shortForm": "OWL_distinctMembers", "type": [ "entity", "property" @@ -4807,7 +4807,7 @@ "appearsIn": [ "owl" ], - "curie": "equivalentClass", + "curie": "OWL:equivalentClass", "definedBy": [ "owl" ], @@ -4831,7 +4831,7 @@ "label": "equivalentClass", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -4844,7 +4844,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4857,7 +4857,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4870,7 +4870,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4883,7 +4883,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4896,7 +4896,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4914,7 +4914,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "equivalentClass", + "shortForm": "OWL_equivalentClass", "type": [ "entity", "property" @@ -4924,7 +4924,7 @@ "appearsIn": [ "owl" ], - "curie": "equivalentProperty", + "curie": "OWL:equivalentProperty", "definedBy": [ "owl" ], @@ -4948,7 +4948,7 @@ "label": "equivalentProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4961,7 +4961,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4974,7 +4974,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4987,7 +4987,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5000,7 +5000,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5018,7 +5018,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "equivalentProperty", + "shortForm": "OWL_equivalentProperty", "type": [ "entity", "property" @@ -5028,7 +5028,7 @@ "appearsIn": [ "owl" ], - "curie": "hasKey", + "curie": "OWL:hasKey", "definedBy": [ "owl" ], @@ -5052,7 +5052,7 @@ "label": "hasKey", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -5065,7 +5065,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5078,7 +5078,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5091,7 +5091,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5104,7 +5104,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5122,7 +5122,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "hasKey", + "shortForm": "OWL_hasKey", "type": [ "entity", "property" @@ -5132,7 +5132,7 @@ "appearsIn": [ "owl" ], - "curie": "hasSelf", + "curie": "OWL:hasSelf", "definedBy": [ "owl" ], @@ -5156,7 +5156,7 @@ "label": "hasSelf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -5169,7 +5169,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -5182,7 +5182,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5195,7 +5195,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5208,7 +5208,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5221,7 +5221,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5239,7 +5239,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "hasSelf", + "shortForm": "OWL_hasSelf", "type": [ "entity", "property" @@ -5249,7 +5249,7 @@ "appearsIn": [ "owl" ], - "curie": "hasValue", + "curie": "OWL:hasValue", "definedBy": [ "owl" ], @@ -5273,7 +5273,7 @@ "label": "hasValue", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -5286,7 +5286,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -5299,7 +5299,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5312,7 +5312,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5325,7 +5325,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5338,7 +5338,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5356,7 +5356,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "hasValue", + "shortForm": "OWL_hasValue", "type": [ "entity", "property" @@ -5366,7 +5366,7 @@ "appearsIn": [ "owl" ], - "curie": "incompatibleWith", + "curie": "OWL:incompatibleWith", "definedBy": [ "owl" ], @@ -5393,7 +5393,7 @@ "label": "incompatibleWith", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -5406,7 +5406,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5419,7 +5419,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5432,7 +5432,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5445,7 +5445,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5463,7 +5463,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "incompatibleWith", + "shortForm": "OWL_incompatibleWith", "type": [ "annotationProperty", "entity", @@ -5474,7 +5474,7 @@ "appearsIn": [ "owl" ], - "curie": "intersectionOf", + "curie": "OWL:intersectionOf", "definedBy": [ "owl" ], @@ -5498,7 +5498,7 @@ "label": "intersectionOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -5511,7 +5511,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -5524,7 +5524,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5537,7 +5537,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5550,7 +5550,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5563,7 +5563,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5581,7 +5581,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "intersectionOf", + "shortForm": "OWL_intersectionOf", "type": [ "entity", "property" @@ -5591,7 +5591,7 @@ "appearsIn": [ "owl" ], - "curie": "inverseOf", + "curie": "OWL:inverseOf", "definedBy": [ "owl" ], @@ -5615,7 +5615,7 @@ "label": "inverseOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -5628,7 +5628,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5641,7 +5641,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5654,7 +5654,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5667,7 +5667,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5685,7 +5685,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "inverseOf", + "shortForm": "OWL_inverseOf", "type": [ "entity", "property" @@ -5695,7 +5695,7 @@ "appearsIn": [ "owl" ], - "curie": "maxCardinality", + "curie": "OWL:maxCardinality", "definedBy": [ "owl" ], @@ -5719,7 +5719,7 @@ "label": "maxCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -5732,7 +5732,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5745,7 +5745,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5758,7 +5758,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5771,7 +5771,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5789,7 +5789,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "maxCardinality", + "shortForm": "OWL_maxCardinality", "type": [ "entity", "property" @@ -5799,7 +5799,7 @@ "appearsIn": [ "owl" ], - "curie": "maxQualifiedCardinality", + "curie": "OWL:maxQualifiedCardinality", "definedBy": [ "owl" ], @@ -5823,7 +5823,7 @@ "label": "maxQualifiedCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -5836,7 +5836,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5849,7 +5849,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5862,7 +5862,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5875,7 +5875,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5893,7 +5893,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "maxQualifiedCardinality", + "shortForm": "OWL_maxQualifiedCardinality", "type": [ "entity", "property" @@ -5903,7 +5903,7 @@ "appearsIn": [ "owl" ], - "curie": "members", + "curie": "OWL:members", "definedBy": [ "owl" ], @@ -5927,7 +5927,7 @@ "label": "members", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -5940,7 +5940,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -5953,7 +5953,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5966,7 +5966,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5979,7 +5979,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5992,7 +5992,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -6010,7 +6010,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "members", + "shortForm": "OWL_members", "type": [ "entity", "property" @@ -6020,7 +6020,7 @@ "appearsIn": [ "owl" ], - "curie": "minCardinality", + "curie": "OWL:minCardinality", "definedBy": [ "owl" ], @@ -6044,7 +6044,7 @@ "label": "minCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -6057,7 +6057,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -6070,7 +6070,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -6083,7 +6083,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6096,7 +6096,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -6114,7 +6114,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "minCardinality", + "shortForm": "OWL_minCardinality", "type": [ "entity", "property" @@ -6124,7 +6124,7 @@ "appearsIn": [ "owl" ], - "curie": "minQualifiedCardinality", + "curie": "OWL:minQualifiedCardinality", "definedBy": [ "owl" ], @@ -6148,7 +6148,7 @@ "label": "minQualifiedCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -6161,7 +6161,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -6174,7 +6174,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -6187,7 +6187,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6200,7 +6200,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -6218,7 +6218,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "minQualifiedCardinality", + "shortForm": "OWL_minQualifiedCardinality", "type": [ "entity", "property" @@ -6228,7 +6228,7 @@ "appearsIn": [ "owl" ], - "curie": "onClass", + "curie": "OWL:onClass", "definedBy": [ "owl" ], @@ -6252,7 +6252,7 @@ "label": "onClass", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -6265,7 +6265,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -6278,7 +6278,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -6291,7 +6291,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6304,7 +6304,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -6322,7 +6322,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "onClass", + "shortForm": "OWL_onClass", "type": [ "entity", "property" @@ -6332,7 +6332,7 @@ "appearsIn": [ "owl" ], - "curie": "onDataRange", + "curie": "OWL:onDataRange", "definedBy": [ "owl" ], @@ -6356,7 +6356,7 @@ "label": "onDataRange", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "Datatype", + "curie": "RDFS:Datatype", "definedBy": [ "rdfs" ], @@ -6369,7 +6369,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -6382,7 +6382,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -6395,7 +6395,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -6408,7 +6408,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6421,7 +6421,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -6439,7 +6439,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "onDataRange", + "shortForm": "OWL_onDataRange", "type": [ "entity", "property" @@ -6449,7 +6449,7 @@ "appearsIn": [ "owl" ], - "curie": "onDatatype", + "curie": "OWL:onDatatype", "definedBy": [ "owl" ], @@ -6473,7 +6473,7 @@ "label": "onDatatype", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "Datatype", + "curie": "RDFS:Datatype", "definedBy": [ "rdfs" ], @@ -6486,7 +6486,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -6499,7 +6499,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -6512,7 +6512,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -6525,7 +6525,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6538,7 +6538,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -6556,7 +6556,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "onDatatype", + "shortForm": "OWL_onDatatype", "type": [ "entity", "property" @@ -6566,7 +6566,7 @@ "appearsIn": [ "owl" ], - "curie": "onProperties", + "curie": "OWL:onProperties", "definedBy": [ "owl" ], @@ -6590,7 +6590,7 @@ "label": "onProperties", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -6603,7 +6603,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -6616,7 +6616,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -6629,7 +6629,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6642,7 +6642,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -6660,7 +6660,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "onProperties", + "shortForm": "OWL_onProperties", "type": [ "entity", "property" @@ -6670,7 +6670,7 @@ "appearsIn": [ "owl" ], - "curie": "onProperty", + "curie": "OWL:onProperty", "definedBy": [ "owl" ], @@ -6694,7 +6694,7 @@ "label": "onProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -6707,7 +6707,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -6720,7 +6720,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -6733,7 +6733,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6746,7 +6746,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -6764,7 +6764,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "onProperty", + "shortForm": "OWL_onProperty", "type": [ "entity", "property" @@ -6774,7 +6774,7 @@ "appearsIn": [ "owl" ], - "curie": "oneOf", + "curie": "OWL:oneOf", "definedBy": [ "owl" ], @@ -6798,7 +6798,7 @@ "label": "oneOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -6811,7 +6811,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -6824,7 +6824,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -6837,7 +6837,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -6850,7 +6850,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6863,7 +6863,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -6881,7 +6881,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "oneOf", + "shortForm": "OWL_oneOf", "type": [ "entity", "property" @@ -6891,7 +6891,7 @@ "appearsIn": [ "owl" ], - "curie": "priorVersion", + "curie": "OWL:priorVersion", "definedBy": [ "owl" ], @@ -6918,7 +6918,7 @@ "label": "priorVersion", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -6931,7 +6931,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -6944,7 +6944,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -6957,7 +6957,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6970,7 +6970,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -6988,7 +6988,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "priorVersion", + "shortForm": "OWL_priorVersion", "type": [ "annotationProperty", "entity", @@ -6999,7 +6999,7 @@ "appearsIn": [ "owl" ], - "curie": "propertyChainAxiom", + "curie": "OWL:propertyChainAxiom", "definedBy": [ "owl" ], @@ -7023,7 +7023,7 @@ "label": "propertyChainAxiom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -7036,7 +7036,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -7049,7 +7049,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -7062,7 +7062,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7075,7 +7075,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -7093,7 +7093,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "propertyChainAxiom", + "shortForm": "OWL_propertyChainAxiom", "type": [ "entity", "property" @@ -7103,7 +7103,7 @@ "appearsIn": [ "owl" ], - "curie": "propertyDisjointWith", + "curie": "OWL:propertyDisjointWith", "definedBy": [ "owl" ], @@ -7127,7 +7127,7 @@ "label": "propertyDisjointWith", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -7140,7 +7140,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -7153,7 +7153,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -7166,7 +7166,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7179,7 +7179,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -7197,7 +7197,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "propertyDisjointWith", + "shortForm": "OWL_propertyDisjointWith", "type": [ "entity", "property" @@ -7207,7 +7207,7 @@ "appearsIn": [ "owl" ], - "curie": "qualifiedCardinality", + "curie": "OWL:qualifiedCardinality", "definedBy": [ "owl" ], @@ -7231,7 +7231,7 @@ "label": "qualifiedCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -7244,7 +7244,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -7257,7 +7257,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -7270,7 +7270,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7283,7 +7283,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -7301,7 +7301,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "qualifiedCardinality", + "shortForm": "OWL_qualifiedCardinality", "type": [ "entity", "property" @@ -7311,7 +7311,7 @@ "appearsIn": [ "owl" ], - "curie": "sameAs", + "curie": "OWL:sameAs", "definedBy": [ "owl" ], @@ -7335,7 +7335,7 @@ "label": "sameAs", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -7348,7 +7348,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -7361,7 +7361,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -7374,7 +7374,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7387,7 +7387,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -7405,7 +7405,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "sameAs", + "shortForm": "OWL_sameAs", "type": [ "entity", "property" @@ -7415,7 +7415,7 @@ "appearsIn": [ "owl" ], - "curie": "someValuesFrom", + "curie": "OWL:someValuesFrom", "definedBy": [ "owl" ], @@ -7439,7 +7439,7 @@ "label": "someValuesFrom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -7452,7 +7452,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -7465,7 +7465,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -7478,7 +7478,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -7491,7 +7491,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7504,7 +7504,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -7522,7 +7522,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "someValuesFrom", + "shortForm": "OWL_someValuesFrom", "type": [ "entity", "property" @@ -7532,7 +7532,7 @@ "appearsIn": [ "owl" ], - "curie": "sourceIndividual", + "curie": "OWL:sourceIndividual", "definedBy": [ "owl" ], @@ -7556,7 +7556,7 @@ "label": "sourceIndividual", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -7569,7 +7569,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -7582,7 +7582,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -7595,7 +7595,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7608,7 +7608,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -7626,7 +7626,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "sourceIndividual", + "shortForm": "OWL_sourceIndividual", "type": [ "entity", "property" @@ -7636,7 +7636,7 @@ "appearsIn": [ "owl" ], - "curie": "targetIndividual", + "curie": "OWL:targetIndividual", "definedBy": [ "owl" ], @@ -7660,7 +7660,7 @@ "label": "targetIndividual", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -7673,7 +7673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -7686,7 +7686,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -7699,7 +7699,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7712,7 +7712,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -7730,7 +7730,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "targetIndividual", + "shortForm": "OWL_targetIndividual", "type": [ "entity", "property" @@ -7740,7 +7740,7 @@ "appearsIn": [ "owl" ], - "curie": "targetValue", + "curie": "OWL:targetValue", "definedBy": [ "owl" ], @@ -7764,7 +7764,7 @@ "label": "targetValue", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -7777,7 +7777,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -7790,7 +7790,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -7803,7 +7803,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -7816,7 +7816,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7829,7 +7829,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -7847,7 +7847,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "targetValue", + "shortForm": "OWL_targetValue", "type": [ "entity", "property" @@ -7857,7 +7857,7 @@ "appearsIn": [ "owl" ], - "curie": "topDataProperty", + "curie": "OWL:topDataProperty", "definedBy": [ "owl" ], @@ -7881,7 +7881,7 @@ "label": "topDataProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -7894,7 +7894,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -7907,7 +7907,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -7920,7 +7920,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -7933,7 +7933,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -7946,7 +7946,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -7964,7 +7964,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "topDataProperty", + "shortForm": "OWL_topDataProperty", "type": [ "dataProperty", "entity", @@ -7975,7 +7975,7 @@ "appearsIn": [ "owl" ], - "curie": "topObjectProperty", + "curie": "OWL:topObjectProperty", "definedBy": [ "owl" ], @@ -7999,7 +7999,7 @@ "label": "topObjectProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -8012,7 +8012,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -8025,7 +8025,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -8038,7 +8038,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8051,7 +8051,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -8069,7 +8069,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "topObjectProperty", + "shortForm": "OWL_topObjectProperty", "type": [ "entity", "objectProperty", @@ -8080,7 +8080,7 @@ "appearsIn": [ "owl" ], - "curie": "unionOf", + "curie": "OWL:unionOf", "definedBy": [ "owl" ], @@ -8104,7 +8104,7 @@ "label": "unionOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -8117,7 +8117,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -8130,7 +8130,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -8143,7 +8143,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -8156,7 +8156,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8169,7 +8169,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -8187,7 +8187,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "unionOf", + "shortForm": "OWL_unionOf", "type": [ "entity", "property" @@ -8197,7 +8197,7 @@ "appearsIn": [ "owl" ], - "curie": "versionInfo", + "curie": "OWL:versionInfo", "definedBy": [ "owl" ], @@ -8221,7 +8221,7 @@ "label": "versionInfo", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -8234,7 +8234,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -8247,7 +8247,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -8260,7 +8260,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -8273,7 +8273,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8286,7 +8286,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -8304,7 +8304,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "versionInfo", + "shortForm": "OWL_versionInfo", "type": [ "annotationProperty", "entity", @@ -8315,7 +8315,7 @@ "appearsIn": [ "owl" ], - "curie": "withRestrictions", + "curie": "OWL:withRestrictions", "definedBy": [ "owl" ], @@ -8339,7 +8339,7 @@ "label": "withRestrictions", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "Datatype", + "curie": "RDFS:Datatype", "definedBy": [ "rdfs" ], @@ -8352,7 +8352,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -8365,7 +8365,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -8378,7 +8378,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -8391,7 +8391,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8404,7 +8404,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -8422,7 +8422,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "withRestrictions", + "shortForm": "OWL_withRestrictions", "type": [ "entity", "property" @@ -8433,7 +8433,7 @@ "owl", "rdfs" ], - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -8461,7 +8461,7 @@ "label": "Class", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -8474,7 +8474,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -8487,7 +8487,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -8500,7 +8500,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8513,7 +8513,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -8531,7 +8531,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "Class", + "shortForm": "RDFS_Class", "type": [ "class", "entity" @@ -8542,7 +8542,7 @@ "owl", "rdfs" ], - "curie": "Container", + "curie": "RDFS:Container", "definedBy": [ "rdfs" ], @@ -8570,7 +8570,7 @@ "label": "Container", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -8583,7 +8583,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -8596,7 +8596,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -8609,7 +8609,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -8622,7 +8622,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8635,7 +8635,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -8653,7 +8653,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "Container", + "shortForm": "RDFS_Container", "type": [ "class", "entity" @@ -8664,7 +8664,7 @@ "owl", "rdfs" ], - "curie": "ContainerMembershipProperty", + "curie": "RDFS:ContainerMembershipProperty", "definedBy": [ "rdfs" ], @@ -8688,7 +8688,7 @@ "label": "ContainerMembershipProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -8701,7 +8701,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -8714,7 +8714,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -8727,7 +8727,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8740,7 +8740,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -8758,7 +8758,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "ContainerMembershipProperty", + "shortForm": "RDFS_ContainerMembershipProperty", "type": [ "class", "entity" @@ -8769,7 +8769,7 @@ "owl", "rdfs" ], - "curie": "Datatype", + "curie": "RDFS:Datatype", "definedBy": [ "rdfs" ], @@ -8803,7 +8803,7 @@ "label": "Datatype", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -8816,7 +8816,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -8829,7 +8829,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -8842,7 +8842,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -8855,7 +8855,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8868,7 +8868,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -8886,7 +8886,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "Datatype", + "shortForm": "RDFS_Datatype", "type": [ "class", "entity" @@ -8897,7 +8897,7 @@ "owl", "rdfs" ], - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -8925,7 +8925,7 @@ "label": "Literal", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -8938,7 +8938,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -8951,7 +8951,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -8964,7 +8964,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -8977,7 +8977,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -8990,7 +8990,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -9008,7 +9008,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "Literal", + "shortForm": "RDFS_Literal", "type": [ "class", "entity" @@ -9019,7 +9019,7 @@ "owl", "rdfs" ], - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -9041,7 +9041,7 @@ "label": "Resource", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -9054,7 +9054,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -9067,7 +9067,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -9080,7 +9080,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9098,7 +9098,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "Resource", + "shortForm": "RDFS_Resource", "type": [ "class", "entity" @@ -9109,7 +9109,7 @@ "owl", "rdfs" ], - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -9133,7 +9133,7 @@ "label": "comment", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -9146,7 +9146,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -9159,7 +9159,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -9172,7 +9172,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -9185,7 +9185,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9198,7 +9198,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -9216,7 +9216,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "comment", + "shortForm": "RDFS_comment", "type": [ "entity", "property" @@ -9227,7 +9227,7 @@ "owl", "rdfs" ], - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -9251,7 +9251,7 @@ "label": "domain", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -9264,7 +9264,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -9277,7 +9277,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -9290,7 +9290,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9303,7 +9303,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -9321,7 +9321,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "domain", + "shortForm": "RDFS_domain", "type": [ "entity", "property" @@ -9332,7 +9332,7 @@ "owl", "rdfs" ], - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -9359,7 +9359,7 @@ "label": "isDefinedBy", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -9372,7 +9372,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -9385,7 +9385,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -9398,7 +9398,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9411,7 +9411,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -9424,7 +9424,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "seeAlso", + "curie": "RDFS:seeAlso", "definedBy": [ "rdfs" ], @@ -9437,7 +9437,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -9455,7 +9455,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "isDefinedBy", + "shortForm": "RDFS_isDefinedBy", "type": [ "entity", "property" @@ -9466,7 +9466,7 @@ "owl", "rdfs" ], - "curie": "member", + "curie": "RDFS:member", "definedBy": [ "rdfs" ], @@ -9490,7 +9490,7 @@ "label": "member", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -9503,7 +9503,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -9516,7 +9516,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -9529,7 +9529,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -9542,7 +9542,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9555,7 +9555,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -9573,7 +9573,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "member", + "shortForm": "RDFS_member", "type": [ "entity", "property" @@ -9584,7 +9584,7 @@ "owl", "rdfs" ], - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -9608,7 +9608,7 @@ "label": "range", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -9621,7 +9621,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -9634,7 +9634,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -9647,7 +9647,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -9660,7 +9660,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9678,7 +9678,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "range", + "shortForm": "RDFS_range", "type": [ "entity", "property" @@ -9689,7 +9689,7 @@ "owl", "rdfs" ], - "curie": "seeAlso", + "curie": "RDFS:seeAlso", "definedBy": [ "rdfs" ], @@ -9713,7 +9713,7 @@ "label": "seeAlso", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -9726,7 +9726,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -9739,7 +9739,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -9752,7 +9752,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -9765,7 +9765,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9778,7 +9778,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -9796,7 +9796,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "seeAlso", + "shortForm": "RDFS_seeAlso", "type": [ "entity", "property" @@ -9807,7 +9807,7 @@ "owl", "rdfs" ], - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -9831,7 +9831,7 @@ "label": "subClassOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -9844,7 +9844,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -9857,7 +9857,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -9870,7 +9870,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -9883,7 +9883,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -9896,7 +9896,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -9914,7 +9914,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "subClassOf", + "shortForm": "RDFS_subClassOf", "type": [ "entity", "property" @@ -9925,7 +9925,7 @@ "owl", "rdfs" ], - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -9949,7 +9949,7 @@ "label": "subPropertyOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -9962,7 +9962,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -9975,7 +9975,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -9988,7 +9988,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -10001,7 +10001,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -10019,7 +10019,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "subPropertyOf", + "shortForm": "RDFS_subPropertyOf", "type": [ "entity", "property" diff --git a/testcases_expected_output_api/v2/ontologies/owl/properties.json b/testcases_expected_output_api/v2/ontologies/owl/properties.json index 08188d3b2..58ff301c0 100644 --- a/testcases_expected_output_api/v2/ontologies/owl/properties.json +++ b/testcases_expected_output_api/v2/ontologies/owl/properties.json @@ -5,7 +5,7 @@ "owl", "rdfs" ], - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -29,7 +29,7 @@ "label": "label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -42,7 +42,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -55,7 +55,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -68,7 +68,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -81,7 +81,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -94,7 +94,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -112,7 +112,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "label", + "shortForm": "RDFS_label", "type": [ "entity", "property" @@ -122,7 +122,7 @@ "appearsIn": [ "owl" ], - "curie": "allValuesFrom", + "curie": "OWL:allValuesFrom", "definedBy": [ "owl" ], @@ -146,7 +146,7 @@ "label": "allValuesFrom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -159,7 +159,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -172,7 +172,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -185,7 +185,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -198,7 +198,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -211,7 +211,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -229,7 +229,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "allValuesFrom", + "shortForm": "OWL_allValuesFrom", "type": [ "entity", "property" @@ -239,7 +239,7 @@ "appearsIn": [ "owl" ], - "curie": "annotatedProperty", + "curie": "OWL:annotatedProperty", "definedBy": [ "owl" ], @@ -263,7 +263,7 @@ "label": "annotatedProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -276,7 +276,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -289,7 +289,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -302,7 +302,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -315,7 +315,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -328,7 +328,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -346,7 +346,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "annotatedProperty", + "shortForm": "OWL_annotatedProperty", "type": [ "entity", "property" @@ -356,7 +356,7 @@ "appearsIn": [ "owl" ], - "curie": "annotatedSource", + "curie": "OWL:annotatedSource", "definedBy": [ "owl" ], @@ -380,7 +380,7 @@ "label": "annotatedSource", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -393,7 +393,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -406,7 +406,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -419,7 +419,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -432,7 +432,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -445,7 +445,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -463,7 +463,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "annotatedSource", + "shortForm": "OWL_annotatedSource", "type": [ "entity", "property" @@ -473,7 +473,7 @@ "appearsIn": [ "owl" ], - "curie": "annotatedTarget", + "curie": "OWL:annotatedTarget", "definedBy": [ "owl" ], @@ -497,7 +497,7 @@ "label": "annotatedTarget", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -510,7 +510,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -523,7 +523,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -536,7 +536,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -549,7 +549,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -562,7 +562,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -580,7 +580,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "annotatedTarget", + "shortForm": "OWL_annotatedTarget", "type": [ "entity", "property" @@ -590,7 +590,7 @@ "appearsIn": [ "owl" ], - "curie": "assertionProperty", + "curie": "OWL:assertionProperty", "definedBy": [ "owl" ], @@ -614,7 +614,7 @@ "label": "assertionProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -627,7 +627,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -640,7 +640,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -653,7 +653,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -666,7 +666,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -684,7 +684,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "assertionProperty", + "shortForm": "OWL_assertionProperty", "type": [ "entity", "property" @@ -694,7 +694,7 @@ "appearsIn": [ "owl" ], - "curie": "backwardCompatibleWith", + "curie": "OWL:backwardCompatibleWith", "definedBy": [ "owl" ], @@ -721,7 +721,7 @@ "label": "backwardCompatibleWith", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -734,7 +734,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -747,7 +747,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -760,7 +760,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -773,7 +773,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -791,7 +791,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "backwardCompatibleWith", + "shortForm": "OWL_backwardCompatibleWith", "type": [ "annotationProperty", "entity", @@ -802,7 +802,7 @@ "appearsIn": [ "owl" ], - "curie": "bottomDataProperty", + "curie": "OWL:bottomDataProperty", "definedBy": [ "owl" ], @@ -826,7 +826,7 @@ "label": "bottomDataProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -839,7 +839,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -852,7 +852,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -865,7 +865,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -878,7 +878,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -891,7 +891,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -909,7 +909,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "bottomDataProperty", + "shortForm": "OWL_bottomDataProperty", "type": [ "dataProperty", "entity", @@ -920,7 +920,7 @@ "appearsIn": [ "owl" ], - "curie": "bottomObjectProperty", + "curie": "OWL:bottomObjectProperty", "definedBy": [ "owl" ], @@ -944,7 +944,7 @@ "label": "bottomObjectProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -957,7 +957,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -970,7 +970,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -983,7 +983,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -996,7 +996,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1014,7 +1014,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "bottomObjectProperty", + "shortForm": "OWL_bottomObjectProperty", "type": [ "entity", "objectProperty", @@ -1025,7 +1025,7 @@ "appearsIn": [ "owl" ], - "curie": "cardinality", + "curie": "OWL:cardinality", "definedBy": [ "owl" ], @@ -1049,7 +1049,7 @@ "label": "cardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1062,7 +1062,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1075,7 +1075,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1088,7 +1088,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1101,7 +1101,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1119,7 +1119,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "cardinality", + "shortForm": "OWL_cardinality", "type": [ "entity", "property" @@ -1129,7 +1129,7 @@ "appearsIn": [ "owl" ], - "curie": "complementOf", + "curie": "OWL:complementOf", "definedBy": [ "owl" ], @@ -1153,7 +1153,7 @@ "label": "complementOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1166,7 +1166,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1179,7 +1179,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1192,7 +1192,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1205,7 +1205,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1223,7 +1223,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "complementOf", + "shortForm": "OWL_complementOf", "type": [ "entity", "property" @@ -1233,7 +1233,7 @@ "appearsIn": [ "owl" ], - "curie": "datatypeComplementOf", + "curie": "OWL:datatypeComplementOf", "definedBy": [ "owl" ], @@ -1257,7 +1257,7 @@ "label": "datatypeComplementOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "Datatype", + "curie": "RDFS:Datatype", "definedBy": [ "rdfs" ], @@ -1270,7 +1270,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1283,7 +1283,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1296,7 +1296,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1309,7 +1309,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1322,7 +1322,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1340,7 +1340,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "datatypeComplementOf", + "shortForm": "OWL_datatypeComplementOf", "type": [ "entity", "property" @@ -1350,7 +1350,7 @@ "appearsIn": [ "owl" ], - "curie": "deprecated", + "curie": "OWL:deprecated", "definedBy": [ "owl" ], @@ -1374,7 +1374,7 @@ "label": "deprecated", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -1387,7 +1387,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1400,7 +1400,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1413,7 +1413,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1426,7 +1426,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1439,7 +1439,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1457,7 +1457,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "deprecated", + "shortForm": "OWL_deprecated", "type": [ "annotationProperty", "entity", @@ -1468,7 +1468,7 @@ "appearsIn": [ "owl" ], - "curie": "differentFrom", + "curie": "OWL:differentFrom", "definedBy": [ "owl" ], @@ -1492,7 +1492,7 @@ "label": "differentFrom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1505,7 +1505,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1518,7 +1518,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1531,7 +1531,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1544,7 +1544,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1562,7 +1562,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "differentFrom", + "shortForm": "OWL_differentFrom", "type": [ "entity", "property" @@ -1572,7 +1572,7 @@ "appearsIn": [ "owl" ], - "curie": "disjointUnionOf", + "curie": "OWL:disjointUnionOf", "definedBy": [ "owl" ], @@ -1596,7 +1596,7 @@ "label": "disjointUnionOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1609,7 +1609,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1622,7 +1622,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1635,7 +1635,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1648,7 +1648,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1666,7 +1666,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "disjointUnionOf", + "shortForm": "OWL_disjointUnionOf", "type": [ "entity", "property" @@ -1676,7 +1676,7 @@ "appearsIn": [ "owl" ], - "curie": "disjointWith", + "curie": "OWL:disjointWith", "definedBy": [ "owl" ], @@ -1700,7 +1700,7 @@ "label": "disjointWith", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1713,7 +1713,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1726,7 +1726,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1739,7 +1739,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1752,7 +1752,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1770,7 +1770,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "disjointWith", + "shortForm": "OWL_disjointWith", "type": [ "entity", "property" @@ -1780,7 +1780,7 @@ "appearsIn": [ "owl" ], - "curie": "distinctMembers", + "curie": "OWL:distinctMembers", "definedBy": [ "owl" ], @@ -1804,7 +1804,7 @@ "label": "distinctMembers", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1817,7 +1817,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1830,7 +1830,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1843,7 +1843,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1856,7 +1856,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1874,7 +1874,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "distinctMembers", + "shortForm": "OWL_distinctMembers", "type": [ "entity", "property" @@ -1884,7 +1884,7 @@ "appearsIn": [ "owl" ], - "curie": "equivalentClass", + "curie": "OWL:equivalentClass", "definedBy": [ "owl" ], @@ -1908,7 +1908,7 @@ "label": "equivalentClass", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1921,7 +1921,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1934,7 +1934,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1947,7 +1947,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1960,7 +1960,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1973,7 +1973,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1991,7 +1991,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "equivalentClass", + "shortForm": "OWL_equivalentClass", "type": [ "entity", "property" @@ -2001,7 +2001,7 @@ "appearsIn": [ "owl" ], - "curie": "equivalentProperty", + "curie": "OWL:equivalentProperty", "definedBy": [ "owl" ], @@ -2025,7 +2025,7 @@ "label": "equivalentProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2038,7 +2038,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -2051,7 +2051,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2064,7 +2064,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2077,7 +2077,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2095,7 +2095,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "equivalentProperty", + "shortForm": "OWL_equivalentProperty", "type": [ "entity", "property" @@ -2105,7 +2105,7 @@ "appearsIn": [ "owl" ], - "curie": "hasKey", + "curie": "OWL:hasKey", "definedBy": [ "owl" ], @@ -2129,7 +2129,7 @@ "label": "hasKey", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2142,7 +2142,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -2155,7 +2155,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2168,7 +2168,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2181,7 +2181,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2199,7 +2199,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "hasKey", + "shortForm": "OWL_hasKey", "type": [ "entity", "property" @@ -2209,7 +2209,7 @@ "appearsIn": [ "owl" ], - "curie": "hasSelf", + "curie": "OWL:hasSelf", "definedBy": [ "owl" ], @@ -2233,7 +2233,7 @@ "label": "hasSelf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -2246,7 +2246,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2259,7 +2259,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -2272,7 +2272,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2285,7 +2285,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2298,7 +2298,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2316,7 +2316,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "hasSelf", + "shortForm": "OWL_hasSelf", "type": [ "entity", "property" @@ -2326,7 +2326,7 @@ "appearsIn": [ "owl" ], - "curie": "hasValue", + "curie": "OWL:hasValue", "definedBy": [ "owl" ], @@ -2350,7 +2350,7 @@ "label": "hasValue", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -2363,7 +2363,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2376,7 +2376,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -2389,7 +2389,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2402,7 +2402,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2415,7 +2415,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2433,7 +2433,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "hasValue", + "shortForm": "OWL_hasValue", "type": [ "entity", "property" @@ -2443,7 +2443,7 @@ "appearsIn": [ "owl" ], - "curie": "incompatibleWith", + "curie": "OWL:incompatibleWith", "definedBy": [ "owl" ], @@ -2470,7 +2470,7 @@ "label": "incompatibleWith", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2483,7 +2483,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -2496,7 +2496,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2509,7 +2509,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2522,7 +2522,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2540,7 +2540,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "incompatibleWith", + "shortForm": "OWL_incompatibleWith", "type": [ "annotationProperty", "entity", @@ -2551,7 +2551,7 @@ "appearsIn": [ "owl" ], - "curie": "intersectionOf", + "curie": "OWL:intersectionOf", "definedBy": [ "owl" ], @@ -2575,7 +2575,7 @@ "label": "intersectionOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -2588,7 +2588,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2601,7 +2601,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -2614,7 +2614,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2627,7 +2627,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2640,7 +2640,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2658,7 +2658,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "intersectionOf", + "shortForm": "OWL_intersectionOf", "type": [ "entity", "property" @@ -2668,7 +2668,7 @@ "appearsIn": [ "owl" ], - "curie": "inverseOf", + "curie": "OWL:inverseOf", "definedBy": [ "owl" ], @@ -2692,7 +2692,7 @@ "label": "inverseOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2705,7 +2705,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -2718,7 +2718,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2731,7 +2731,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2744,7 +2744,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2762,7 +2762,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "inverseOf", + "shortForm": "OWL_inverseOf", "type": [ "entity", "property" @@ -2772,7 +2772,7 @@ "appearsIn": [ "owl" ], - "curie": "maxCardinality", + "curie": "OWL:maxCardinality", "definedBy": [ "owl" ], @@ -2796,7 +2796,7 @@ "label": "maxCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2809,7 +2809,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -2822,7 +2822,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2835,7 +2835,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2848,7 +2848,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2866,7 +2866,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "maxCardinality", + "shortForm": "OWL_maxCardinality", "type": [ "entity", "property" @@ -2876,7 +2876,7 @@ "appearsIn": [ "owl" ], - "curie": "maxQualifiedCardinality", + "curie": "OWL:maxQualifiedCardinality", "definedBy": [ "owl" ], @@ -2900,7 +2900,7 @@ "label": "maxQualifiedCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2913,7 +2913,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -2926,7 +2926,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2939,7 +2939,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2952,7 +2952,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2970,7 +2970,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "maxQualifiedCardinality", + "shortForm": "OWL_maxQualifiedCardinality", "type": [ "entity", "property" @@ -2980,7 +2980,7 @@ "appearsIn": [ "owl" ], - "curie": "members", + "curie": "OWL:members", "definedBy": [ "owl" ], @@ -3004,7 +3004,7 @@ "label": "members", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -3017,7 +3017,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3030,7 +3030,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3043,7 +3043,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3056,7 +3056,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3069,7 +3069,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3087,7 +3087,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "members", + "shortForm": "OWL_members", "type": [ "entity", "property" @@ -3097,7 +3097,7 @@ "appearsIn": [ "owl" ], - "curie": "minCardinality", + "curie": "OWL:minCardinality", "definedBy": [ "owl" ], @@ -3121,7 +3121,7 @@ "label": "minCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3134,7 +3134,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3147,7 +3147,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3160,7 +3160,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3173,7 +3173,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3191,7 +3191,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "minCardinality", + "shortForm": "OWL_minCardinality", "type": [ "entity", "property" @@ -3201,7 +3201,7 @@ "appearsIn": [ "owl" ], - "curie": "minQualifiedCardinality", + "curie": "OWL:minQualifiedCardinality", "definedBy": [ "owl" ], @@ -3225,7 +3225,7 @@ "label": "minQualifiedCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3238,7 +3238,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3251,7 +3251,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3264,7 +3264,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3277,7 +3277,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3295,7 +3295,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "minQualifiedCardinality", + "shortForm": "OWL_minQualifiedCardinality", "type": [ "entity", "property" @@ -3305,7 +3305,7 @@ "appearsIn": [ "owl" ], - "curie": "onClass", + "curie": "OWL:onClass", "definedBy": [ "owl" ], @@ -3329,7 +3329,7 @@ "label": "onClass", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3342,7 +3342,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3355,7 +3355,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3368,7 +3368,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3381,7 +3381,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3399,7 +3399,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "onClass", + "shortForm": "OWL_onClass", "type": [ "entity", "property" @@ -3409,7 +3409,7 @@ "appearsIn": [ "owl" ], - "curie": "onDataRange", + "curie": "OWL:onDataRange", "definedBy": [ "owl" ], @@ -3433,7 +3433,7 @@ "label": "onDataRange", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "Datatype", + "curie": "RDFS:Datatype", "definedBy": [ "rdfs" ], @@ -3446,7 +3446,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3459,7 +3459,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3472,7 +3472,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3485,7 +3485,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3498,7 +3498,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3516,7 +3516,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "onDataRange", + "shortForm": "OWL_onDataRange", "type": [ "entity", "property" @@ -3526,7 +3526,7 @@ "appearsIn": [ "owl" ], - "curie": "onDatatype", + "curie": "OWL:onDatatype", "definedBy": [ "owl" ], @@ -3550,7 +3550,7 @@ "label": "onDatatype", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "Datatype", + "curie": "RDFS:Datatype", "definedBy": [ "rdfs" ], @@ -3563,7 +3563,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3576,7 +3576,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3589,7 +3589,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3602,7 +3602,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3615,7 +3615,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3633,7 +3633,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "onDatatype", + "shortForm": "OWL_onDatatype", "type": [ "entity", "property" @@ -3643,7 +3643,7 @@ "appearsIn": [ "owl" ], - "curie": "onProperties", + "curie": "OWL:onProperties", "definedBy": [ "owl" ], @@ -3667,7 +3667,7 @@ "label": "onProperties", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3680,7 +3680,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3693,7 +3693,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3706,7 +3706,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3719,7 +3719,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3737,7 +3737,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "onProperties", + "shortForm": "OWL_onProperties", "type": [ "entity", "property" @@ -3747,7 +3747,7 @@ "appearsIn": [ "owl" ], - "curie": "onProperty", + "curie": "OWL:onProperty", "definedBy": [ "owl" ], @@ -3771,7 +3771,7 @@ "label": "onProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3784,7 +3784,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3797,7 +3797,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3810,7 +3810,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3823,7 +3823,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3841,7 +3841,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "onProperty", + "shortForm": "OWL_onProperty", "type": [ "entity", "property" @@ -3851,7 +3851,7 @@ "appearsIn": [ "owl" ], - "curie": "oneOf", + "curie": "OWL:oneOf", "definedBy": [ "owl" ], @@ -3875,7 +3875,7 @@ "label": "oneOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -3888,7 +3888,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3901,7 +3901,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3914,7 +3914,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3927,7 +3927,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3940,7 +3940,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3958,7 +3958,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "oneOf", + "shortForm": "OWL_oneOf", "type": [ "entity", "property" @@ -3968,7 +3968,7 @@ "appearsIn": [ "owl" ], - "curie": "priorVersion", + "curie": "OWL:priorVersion", "definedBy": [ "owl" ], @@ -3995,7 +3995,7 @@ "label": "priorVersion", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4008,7 +4008,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4021,7 +4021,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4034,7 +4034,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4047,7 +4047,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4065,7 +4065,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "priorVersion", + "shortForm": "OWL_priorVersion", "type": [ "annotationProperty", "entity", @@ -4076,7 +4076,7 @@ "appearsIn": [ "owl" ], - "curie": "propertyChainAxiom", + "curie": "OWL:propertyChainAxiom", "definedBy": [ "owl" ], @@ -4100,7 +4100,7 @@ "label": "propertyChainAxiom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4113,7 +4113,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4126,7 +4126,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4139,7 +4139,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4152,7 +4152,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4170,7 +4170,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "propertyChainAxiom", + "shortForm": "OWL_propertyChainAxiom", "type": [ "entity", "property" @@ -4180,7 +4180,7 @@ "appearsIn": [ "owl" ], - "curie": "propertyDisjointWith", + "curie": "OWL:propertyDisjointWith", "definedBy": [ "owl" ], @@ -4204,7 +4204,7 @@ "label": "propertyDisjointWith", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4217,7 +4217,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4230,7 +4230,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4243,7 +4243,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4256,7 +4256,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4274,7 +4274,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "propertyDisjointWith", + "shortForm": "OWL_propertyDisjointWith", "type": [ "entity", "property" @@ -4284,7 +4284,7 @@ "appearsIn": [ "owl" ], - "curie": "qualifiedCardinality", + "curie": "OWL:qualifiedCardinality", "definedBy": [ "owl" ], @@ -4308,7 +4308,7 @@ "label": "qualifiedCardinality", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4321,7 +4321,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4334,7 +4334,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4347,7 +4347,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4360,7 +4360,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4378,7 +4378,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "qualifiedCardinality", + "shortForm": "OWL_qualifiedCardinality", "type": [ "entity", "property" @@ -4388,7 +4388,7 @@ "appearsIn": [ "owl" ], - "curie": "sameAs", + "curie": "OWL:sameAs", "definedBy": [ "owl" ], @@ -4412,7 +4412,7 @@ "label": "sameAs", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4425,7 +4425,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4438,7 +4438,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4451,7 +4451,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4464,7 +4464,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4482,7 +4482,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "sameAs", + "shortForm": "OWL_sameAs", "type": [ "entity", "property" @@ -4492,7 +4492,7 @@ "appearsIn": [ "owl" ], - "curie": "someValuesFrom", + "curie": "OWL:someValuesFrom", "definedBy": [ "owl" ], @@ -4516,7 +4516,7 @@ "label": "someValuesFrom", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -4529,7 +4529,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4542,7 +4542,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4555,7 +4555,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4568,7 +4568,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4581,7 +4581,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4599,7 +4599,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "someValuesFrom", + "shortForm": "OWL_someValuesFrom", "type": [ "entity", "property" @@ -4609,7 +4609,7 @@ "appearsIn": [ "owl" ], - "curie": "sourceIndividual", + "curie": "OWL:sourceIndividual", "definedBy": [ "owl" ], @@ -4633,7 +4633,7 @@ "label": "sourceIndividual", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4646,7 +4646,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4659,7 +4659,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4672,7 +4672,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4685,7 +4685,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4703,7 +4703,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "sourceIndividual", + "shortForm": "OWL_sourceIndividual", "type": [ "entity", "property" @@ -4713,7 +4713,7 @@ "appearsIn": [ "owl" ], - "curie": "targetIndividual", + "curie": "OWL:targetIndividual", "definedBy": [ "owl" ], @@ -4737,7 +4737,7 @@ "label": "targetIndividual", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4750,7 +4750,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4763,7 +4763,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4776,7 +4776,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4789,7 +4789,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4807,7 +4807,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "targetIndividual", + "shortForm": "OWL_targetIndividual", "type": [ "entity", "property" @@ -4817,7 +4817,7 @@ "appearsIn": [ "owl" ], - "curie": "targetValue", + "curie": "OWL:targetValue", "definedBy": [ "owl" ], @@ -4841,7 +4841,7 @@ "label": "targetValue", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -4854,7 +4854,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4867,7 +4867,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4880,7 +4880,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4893,7 +4893,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4906,7 +4906,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4924,7 +4924,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "targetValue", + "shortForm": "OWL_targetValue", "type": [ "entity", "property" @@ -4934,7 +4934,7 @@ "appearsIn": [ "owl" ], - "curie": "topDataProperty", + "curie": "OWL:topDataProperty", "definedBy": [ "owl" ], @@ -4958,7 +4958,7 @@ "label": "topDataProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -4971,7 +4971,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -4984,7 +4984,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4997,7 +4997,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5010,7 +5010,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5023,7 +5023,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5041,7 +5041,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "topDataProperty", + "shortForm": "OWL_topDataProperty", "type": [ "dataProperty", "entity", @@ -5052,7 +5052,7 @@ "appearsIn": [ "owl" ], - "curie": "topObjectProperty", + "curie": "OWL:topObjectProperty", "definedBy": [ "owl" ], @@ -5076,7 +5076,7 @@ "label": "topObjectProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -5089,7 +5089,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5102,7 +5102,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5115,7 +5115,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5128,7 +5128,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5146,7 +5146,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "topObjectProperty", + "shortForm": "OWL_topObjectProperty", "type": [ "entity", "objectProperty", @@ -5157,7 +5157,7 @@ "appearsIn": [ "owl" ], - "curie": "unionOf", + "curie": "OWL:unionOf", "definedBy": [ "owl" ], @@ -5181,7 +5181,7 @@ "label": "unionOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -5194,7 +5194,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -5207,7 +5207,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5220,7 +5220,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5233,7 +5233,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5246,7 +5246,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5264,7 +5264,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "unionOf", + "shortForm": "OWL_unionOf", "type": [ "entity", "property" @@ -5274,7 +5274,7 @@ "appearsIn": [ "owl" ], - "curie": "versionInfo", + "curie": "OWL:versionInfo", "definedBy": [ "owl" ], @@ -5298,7 +5298,7 @@ "label": "versionInfo", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -5311,7 +5311,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -5324,7 +5324,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5337,7 +5337,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5350,7 +5350,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5363,7 +5363,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5381,7 +5381,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "versionInfo", + "shortForm": "OWL_versionInfo", "type": [ "annotationProperty", "entity", @@ -5392,7 +5392,7 @@ "appearsIn": [ "owl" ], - "curie": "withRestrictions", + "curie": "OWL:withRestrictions", "definedBy": [ "owl" ], @@ -5416,7 +5416,7 @@ "label": "withRestrictions", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Datatype": { - "curie": "Datatype", + "curie": "RDFS:Datatype", "definedBy": [ "rdfs" ], @@ -5429,7 +5429,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -5442,7 +5442,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5455,7 +5455,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5468,7 +5468,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5481,7 +5481,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5499,7 +5499,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": false, - "shortForm": "withRestrictions", + "shortForm": "OWL_withRestrictions", "type": [ "entity", "property" @@ -5510,7 +5510,7 @@ "owl", "rdfs" ], - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -5534,7 +5534,7 @@ "label": "comment", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -5547,7 +5547,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -5560,7 +5560,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5573,7 +5573,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5586,7 +5586,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5599,7 +5599,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5617,7 +5617,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "comment", + "shortForm": "RDFS_comment", "type": [ "entity", "property" @@ -5628,7 +5628,7 @@ "owl", "rdfs" ], - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5652,7 +5652,7 @@ "label": "domain", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -5665,7 +5665,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -5678,7 +5678,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5691,7 +5691,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5704,7 +5704,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5722,7 +5722,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "domain", + "shortForm": "RDFS_domain", "type": [ "entity", "property" @@ -5733,7 +5733,7 @@ "owl", "rdfs" ], - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5760,7 +5760,7 @@ "label": "isDefinedBy", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -5773,7 +5773,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -5786,7 +5786,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5799,7 +5799,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5812,7 +5812,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5825,7 +5825,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "seeAlso", + "curie": "RDFS:seeAlso", "definedBy": [ "rdfs" ], @@ -5838,7 +5838,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -5856,7 +5856,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "isDefinedBy", + "shortForm": "RDFS_isDefinedBy", "type": [ "entity", "property" @@ -5867,7 +5867,7 @@ "owl", "rdfs" ], - "curie": "member", + "curie": "RDFS:member", "definedBy": [ "rdfs" ], @@ -5891,7 +5891,7 @@ "label": "member", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -5904,7 +5904,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -5917,7 +5917,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -5930,7 +5930,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -5943,7 +5943,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -5956,7 +5956,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -5974,7 +5974,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "member", + "shortForm": "RDFS_member", "type": [ "entity", "property" @@ -5985,7 +5985,7 @@ "owl", "rdfs" ], - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -6009,7 +6009,7 @@ "label": "range", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -6022,7 +6022,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -6035,7 +6035,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -6048,7 +6048,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -6061,7 +6061,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6079,7 +6079,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "range", + "shortForm": "RDFS_range", "type": [ "entity", "property" @@ -6090,7 +6090,7 @@ "owl", "rdfs" ], - "curie": "seeAlso", + "curie": "RDFS:seeAlso", "definedBy": [ "rdfs" ], @@ -6114,7 +6114,7 @@ "label": "seeAlso", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -6127,7 +6127,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -6140,7 +6140,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -6153,7 +6153,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -6166,7 +6166,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6179,7 +6179,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -6197,7 +6197,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "seeAlso", + "shortForm": "RDFS_seeAlso", "type": [ "entity", "property" @@ -6208,7 +6208,7 @@ "owl", "rdfs" ], - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -6232,7 +6232,7 @@ "label": "subClassOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -6245,7 +6245,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -6258,7 +6258,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -6271,7 +6271,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -6284,7 +6284,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6297,7 +6297,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -6315,7 +6315,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "subClassOf", + "shortForm": "RDFS_subClassOf", "type": [ "entity", "property" @@ -6326,7 +6326,7 @@ "owl", "rdfs" ], - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -6350,7 +6350,7 @@ "label": "subPropertyOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -6363,7 +6363,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -6376,7 +6376,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -6389,7 +6389,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -6402,7 +6402,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -6420,7 +6420,7 @@ "ontologyId": "owl", "ontologyIri": "http://www.w3.org/2002/07/owl", "searchableAnnotationValues": true, - "shortForm": "subPropertyOf", + "shortForm": "RDFS_subPropertyOf", "type": [ "entity", "property" diff --git a/testcases_expected_output_api/v2/ontologies/partof/classes.json b/testcases_expected_output_api/v2/ontologies/partof/classes.json index 3bb94fd12..03a5db5bc 100644 --- a/testcases_expected_output_api/v2/ontologies/partof/classes.json +++ b/testcases_expected_output_api/v2/ontologies/partof/classes.json @@ -17,11 +17,6 @@ "isPreferredRoot": false, "label": "adduct ion", "linkedEntities": { - "MS:1000353": { - "curie": "MS:1000353", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/MS_1000353" - }, "http://purl.obolibrary.org/obo/MS_1003056": { "curie": "MS:1003056", "hasLocalDefinition": true, @@ -104,11 +99,6 @@ "isPreferredRoot": false, "label": "adduct ion property", "linkedEntities": { - "MS:1003056": { - "curie": "MS:1003056", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/MS_1003056" - }, "http://purl.obolibrary.org/obo/MS_1000353": { "curie": "MS:1000353", "hasLocalDefinition": true, @@ -172,11 +162,6 @@ "isPreferredRoot": false, "label": "abdomen", "linkedEntities": { - "UBERON:0000916": { - "curie": "UBERON:0000916", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000916" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -259,11 +244,6 @@ "isPreferredRoot": false, "label": "abdominal cavity", "linkedEntities": { - "UBERON:0003684": { - "curie": "UBERON:0003684", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0003684" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, diff --git a/testcases_expected_output_api/v2/ontologies/partof/entities.json b/testcases_expected_output_api/v2/ontologies/partof/entities.json index fb89ab414..7300bee97 100644 --- a/testcases_expected_output_api/v2/ontologies/partof/entities.json +++ b/testcases_expected_output_api/v2/ontologies/partof/entities.json @@ -19,13 +19,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "part_of", - "linkedEntities": { - "BFO:0000050": { - "curie": "BFO:0000050", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000050" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "partof", @@ -57,11 +51,6 @@ "isPreferredRoot": false, "label": "adduct ion", "linkedEntities": { - "MS:1000353": { - "curie": "MS:1000353", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/MS_1000353" - }, "http://purl.obolibrary.org/obo/MS_1003056": { "curie": "MS:1003056", "hasLocalDefinition": true, @@ -144,11 +133,6 @@ "isPreferredRoot": false, "label": "adduct ion property", "linkedEntities": { - "MS:1003056": { - "curie": "MS:1003056", - "source": "https://raw.githubusercontent.com/biopragmatics/bioregistry/main/exports/registry/registry.json", - "url": "http://purl.obolibrary.org/obo/MS_1003056" - }, "http://purl.obolibrary.org/obo/MS_1000353": { "curie": "MS:1000353", "hasLocalDefinition": true, @@ -212,11 +196,6 @@ "isPreferredRoot": false, "label": "abdomen", "linkedEntities": { - "UBERON:0000916": { - "curie": "UBERON:0000916", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0000916" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, @@ -299,11 +278,6 @@ "isPreferredRoot": false, "label": "abdominal cavity", "linkedEntities": { - "UBERON:0003684": { - "curie": "UBERON:0003684", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/UBERON_0003684" - }, "http://purl.obolibrary.org/obo/BFO_0000050": { "curie": "BFO:0000050", "hasLocalDefinition": true, diff --git a/testcases_expected_output_api/v2/ontologies/partof/properties.json b/testcases_expected_output_api/v2/ontologies/partof/properties.json index 3a8a71b72..21d0f6289 100644 --- a/testcases_expected_output_api/v2/ontologies/partof/properties.json +++ b/testcases_expected_output_api/v2/ontologies/partof/properties.json @@ -19,13 +19,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "part_of", - "linkedEntities": { - "BFO:0000050": { - "curie": "BFO:0000050", - "source": "https://raw.githubusercontent.com/geneontology/go-site/master/metadata/db-xrefs.yaml", - "url": "http://purl.obolibrary.org/obo/BFO_0000050" - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "partof", diff --git a/testcases_expected_output_api/v2/ontologies/rdfs/classes.json b/testcases_expected_output_api/v2/ontologies/rdfs/classes.json index 03812eafa..294cbd1b2 100644 --- a/testcases_expected_output_api/v2/ontologies/rdfs/classes.json +++ b/testcases_expected_output_api/v2/ontologies/rdfs/classes.json @@ -4,7 +4,7 @@ "owl", "rdfs" ], - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -32,7 +32,7 @@ "label": "Class", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -45,7 +45,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -58,7 +58,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -71,7 +71,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -84,7 +84,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -102,7 +102,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "Class", + "shortForm": "RDFS_Class", "type": [ "class", "entity" @@ -113,7 +113,7 @@ "owl", "rdfs" ], - "curie": "Container", + "curie": "RDFS:Container", "definedBy": [ "rdfs" ], @@ -141,7 +141,7 @@ "label": "Container", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -154,7 +154,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -167,7 +167,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -180,7 +180,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -193,7 +193,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -206,7 +206,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -224,7 +224,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "Container", + "shortForm": "RDFS_Container", "type": [ "class", "entity" @@ -235,7 +235,7 @@ "owl", "rdfs" ], - "curie": "ContainerMembershipProperty", + "curie": "RDFS:ContainerMembershipProperty", "definedBy": [ "rdfs" ], @@ -259,7 +259,7 @@ "label": "ContainerMembershipProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -272,7 +272,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -285,7 +285,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -298,7 +298,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -311,7 +311,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -329,7 +329,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "ContainerMembershipProperty", + "shortForm": "RDFS_ContainerMembershipProperty", "type": [ "class", "entity" @@ -340,7 +340,7 @@ "owl", "rdfs" ], - "curie": "Datatype", + "curie": "RDFS:Datatype", "definedBy": [ "rdfs" ], @@ -374,7 +374,7 @@ "label": "Datatype", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -387,7 +387,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -400,7 +400,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -413,7 +413,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -426,7 +426,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -439,7 +439,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -457,7 +457,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "Datatype", + "shortForm": "RDFS_Datatype", "type": [ "class", "entity" @@ -468,7 +468,7 @@ "owl", "rdfs" ], - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -496,7 +496,7 @@ "label": "Literal", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -509,7 +509,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -522,7 +522,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -535,7 +535,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -548,7 +548,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -561,7 +561,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -579,7 +579,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "Literal", + "shortForm": "RDFS_Literal", "type": [ "class", "entity" @@ -590,7 +590,7 @@ "owl", "rdfs" ], - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -612,7 +612,7 @@ "label": "Resource", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -625,7 +625,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -638,7 +638,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -651,7 +651,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -669,7 +669,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "Resource", + "shortForm": "RDFS_Resource", "type": [ "class", "entity" diff --git a/testcases_expected_output_api/v2/ontologies/rdfs/entities.json b/testcases_expected_output_api/v2/ontologies/rdfs/entities.json index 9831ff098..64ae1ca22 100644 --- a/testcases_expected_output_api/v2/ontologies/rdfs/entities.json +++ b/testcases_expected_output_api/v2/ontologies/rdfs/entities.json @@ -5,7 +5,7 @@ "owl", "rdfs" ], - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -29,7 +29,7 @@ "label": "label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -42,7 +42,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -55,7 +55,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -68,7 +68,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -81,7 +81,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -94,7 +94,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -112,7 +112,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "label", + "shortForm": "RDFS_label", "type": [ "entity", "property" @@ -123,7 +123,7 @@ "owl", "rdfs" ], - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -151,7 +151,7 @@ "label": "Class", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -164,7 +164,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -177,7 +177,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -190,7 +190,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -203,7 +203,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -221,7 +221,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "Class", + "shortForm": "RDFS_Class", "type": [ "class", "entity" @@ -232,7 +232,7 @@ "owl", "rdfs" ], - "curie": "Container", + "curie": "RDFS:Container", "definedBy": [ "rdfs" ], @@ -260,7 +260,7 @@ "label": "Container", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -273,7 +273,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -286,7 +286,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -299,7 +299,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -312,7 +312,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -325,7 +325,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -343,7 +343,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "Container", + "shortForm": "RDFS_Container", "type": [ "class", "entity" @@ -354,7 +354,7 @@ "owl", "rdfs" ], - "curie": "ContainerMembershipProperty", + "curie": "RDFS:ContainerMembershipProperty", "definedBy": [ "rdfs" ], @@ -378,7 +378,7 @@ "label": "ContainerMembershipProperty", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -391,7 +391,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -404,7 +404,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -417,7 +417,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -430,7 +430,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -448,7 +448,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "ContainerMembershipProperty", + "shortForm": "RDFS_ContainerMembershipProperty", "type": [ "class", "entity" @@ -459,7 +459,7 @@ "owl", "rdfs" ], - "curie": "Datatype", + "curie": "RDFS:Datatype", "definedBy": [ "rdfs" ], @@ -493,7 +493,7 @@ "label": "Datatype", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -506,7 +506,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -519,7 +519,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -532,7 +532,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -545,7 +545,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -558,7 +558,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -576,7 +576,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "Datatype", + "shortForm": "RDFS_Datatype", "type": [ "class", "entity" @@ -587,7 +587,7 @@ "owl", "rdfs" ], - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -615,7 +615,7 @@ "label": "Literal", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -628,7 +628,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -641,7 +641,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -654,7 +654,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -667,7 +667,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -680,7 +680,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -698,7 +698,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "Literal", + "shortForm": "RDFS_Literal", "type": [ "class", "entity" @@ -709,7 +709,7 @@ "owl", "rdfs" ], - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -731,7 +731,7 @@ "label": "Resource", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -744,7 +744,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -757,7 +757,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -770,7 +770,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -788,7 +788,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "Resource", + "shortForm": "RDFS_Resource", "type": [ "class", "entity" @@ -799,7 +799,7 @@ "owl", "rdfs" ], - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -823,7 +823,7 @@ "label": "comment", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -836,7 +836,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -849,7 +849,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -862,7 +862,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -875,7 +875,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -888,7 +888,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -906,7 +906,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "comment", + "shortForm": "RDFS_comment", "type": [ "entity", "property" @@ -917,7 +917,7 @@ "owl", "rdfs" ], - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -941,7 +941,7 @@ "label": "domain", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -954,7 +954,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -967,7 +967,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -980,7 +980,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -993,7 +993,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1011,7 +1011,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "domain", + "shortForm": "RDFS_domain", "type": [ "entity", "property" @@ -1022,7 +1022,7 @@ "owl", "rdfs" ], - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1049,7 +1049,7 @@ "label": "isDefinedBy", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -1062,7 +1062,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1075,7 +1075,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1088,7 +1088,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1101,7 +1101,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1114,7 +1114,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "seeAlso", + "curie": "RDFS:seeAlso", "definedBy": [ "rdfs" ], @@ -1127,7 +1127,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1145,7 +1145,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "isDefinedBy", + "shortForm": "RDFS_isDefinedBy", "type": [ "entity", "property" @@ -1156,7 +1156,7 @@ "owl", "rdfs" ], - "curie": "member", + "curie": "RDFS:member", "definedBy": [ "rdfs" ], @@ -1180,7 +1180,7 @@ "label": "member", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -1193,7 +1193,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1206,7 +1206,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1219,7 +1219,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1232,7 +1232,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1245,7 +1245,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1263,7 +1263,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "member", + "shortForm": "RDFS_member", "type": [ "entity", "property" @@ -1274,7 +1274,7 @@ "owl", "rdfs" ], - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1298,7 +1298,7 @@ "label": "range", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1311,7 +1311,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1324,7 +1324,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1337,7 +1337,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1350,7 +1350,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1368,7 +1368,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "range", + "shortForm": "RDFS_range", "type": [ "entity", "property" @@ -1379,7 +1379,7 @@ "owl", "rdfs" ], - "curie": "seeAlso", + "curie": "RDFS:seeAlso", "definedBy": [ "rdfs" ], @@ -1403,7 +1403,7 @@ "label": "seeAlso", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -1416,7 +1416,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1429,7 +1429,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1442,7 +1442,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1455,7 +1455,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1468,7 +1468,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1486,7 +1486,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "seeAlso", + "shortForm": "RDFS_seeAlso", "type": [ "entity", "property" @@ -1497,7 +1497,7 @@ "owl", "rdfs" ], - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -1521,7 +1521,7 @@ "label": "subClassOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -1534,7 +1534,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1547,7 +1547,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1560,7 +1560,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1573,7 +1573,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1586,7 +1586,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1604,7 +1604,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "subClassOf", + "shortForm": "RDFS_subClassOf", "type": [ "entity", "property" @@ -1615,7 +1615,7 @@ "owl", "rdfs" ], - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1639,7 +1639,7 @@ "label": "subPropertyOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1652,7 +1652,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1665,7 +1665,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1678,7 +1678,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1691,7 +1691,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1709,7 +1709,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "subPropertyOf", + "shortForm": "RDFS_subPropertyOf", "type": [ "entity", "property" diff --git a/testcases_expected_output_api/v2/ontologies/rdfs/properties.json b/testcases_expected_output_api/v2/ontologies/rdfs/properties.json index 0ec776016..699bc12b5 100644 --- a/testcases_expected_output_api/v2/ontologies/rdfs/properties.json +++ b/testcases_expected_output_api/v2/ontologies/rdfs/properties.json @@ -5,7 +5,7 @@ "owl", "rdfs" ], - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -29,7 +29,7 @@ "label": "label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -42,7 +42,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -55,7 +55,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -68,7 +68,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -81,7 +81,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -94,7 +94,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -112,7 +112,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "label", + "shortForm": "RDFS_label", "type": [ "entity", "property" @@ -123,7 +123,7 @@ "owl", "rdfs" ], - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -147,7 +147,7 @@ "label": "comment", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Literal": { - "curie": "Literal", + "curie": "RDFS:Literal", "definedBy": [ "rdfs" ], @@ -160,7 +160,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -173,7 +173,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -186,7 +186,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -199,7 +199,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -212,7 +212,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -230,7 +230,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "comment", + "shortForm": "RDFS_comment", "type": [ "entity", "property" @@ -241,7 +241,7 @@ "owl", "rdfs" ], - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -265,7 +265,7 @@ "label": "domain", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -278,7 +278,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -291,7 +291,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -304,7 +304,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -317,7 +317,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -335,7 +335,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "domain", + "shortForm": "RDFS_domain", "type": [ "entity", "property" @@ -346,7 +346,7 @@ "owl", "rdfs" ], - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -373,7 +373,7 @@ "label": "isDefinedBy", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -386,7 +386,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -399,7 +399,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -412,7 +412,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -425,7 +425,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -438,7 +438,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#seeAlso": { - "curie": "seeAlso", + "curie": "RDFS:seeAlso", "definedBy": [ "rdfs" ], @@ -451,7 +451,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -469,7 +469,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "isDefinedBy", + "shortForm": "RDFS_isDefinedBy", "type": [ "entity", "property" @@ -480,7 +480,7 @@ "owl", "rdfs" ], - "curie": "member", + "curie": "RDFS:member", "definedBy": [ "rdfs" ], @@ -504,7 +504,7 @@ "label": "member", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -517,7 +517,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -530,7 +530,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -543,7 +543,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -556,7 +556,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -569,7 +569,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -587,7 +587,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "member", + "shortForm": "RDFS_member", "type": [ "entity", "property" @@ -598,7 +598,7 @@ "owl", "rdfs" ], - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -622,7 +622,7 @@ "label": "range", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -635,7 +635,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -648,7 +648,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -661,7 +661,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -674,7 +674,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -692,7 +692,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "range", + "shortForm": "RDFS_range", "type": [ "entity", "property" @@ -703,7 +703,7 @@ "owl", "rdfs" ], - "curie": "seeAlso", + "curie": "RDFS:seeAlso", "definedBy": [ "rdfs" ], @@ -727,7 +727,7 @@ "label": "seeAlso", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Resource": { - "curie": "Resource", + "curie": "RDFS:Resource", "definedBy": [ "rdfs" ], @@ -740,7 +740,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -753,7 +753,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -766,7 +766,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -779,7 +779,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -792,7 +792,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -810,7 +810,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "seeAlso", + "shortForm": "RDFS_seeAlso", "type": [ "entity", "property" @@ -821,7 +821,7 @@ "owl", "rdfs" ], - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -845,7 +845,7 @@ "label": "subClassOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#Class": { - "curie": "Class", + "curie": "RDFS:Class", "definedBy": [ "rdfs" ], @@ -858,7 +858,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -871,7 +871,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -884,7 +884,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -897,7 +897,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -910,7 +910,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -928,7 +928,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "subClassOf", + "shortForm": "RDFS_subClassOf", "type": [ "entity", "property" @@ -939,7 +939,7 @@ "owl", "rdfs" ], - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -963,7 +963,7 @@ "label": "subPropertyOf", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -976,7 +976,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -989,7 +989,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1002,7 +1002,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1015,7 +1015,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1033,7 +1033,7 @@ "ontologyId": "rdfs", "ontologyIri": "http://www.w3.org/2000/01/rdf-schema#", "searchableAnnotationValues": false, - "shortForm": "subPropertyOf", + "shortForm": "RDFS_subPropertyOf", "type": [ "entity", "property" diff --git a/testcases_expected_output_api/v2/ontologies/skos/classes.json b/testcases_expected_output_api/v2/ontologies/skos/classes.json index 5696c2484..1e7b0c2ce 100644 --- a/testcases_expected_output_api/v2/ontologies/skos/classes.json +++ b/testcases_expected_output_api/v2/ontologies/skos/classes.json @@ -3,7 +3,7 @@ "appearsIn": [ "skos" ], - "curie": "Collection", + "curie": "SKOS:Collection", "definedBy": [ "skos" ], @@ -28,7 +28,7 @@ "label": "Collection", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -41,7 +41,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -54,7 +54,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "Concept", + "curie": "SKOS:Concept", "definedBy": [ "skos" ], @@ -67,7 +67,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#ConceptScheme": { - "curie": "ConceptScheme", + "curie": "SKOS:ConceptScheme", "definedBy": [ "skos" ], @@ -80,7 +80,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -94,7 +94,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -117,7 +117,7 @@ "Labelled collections can be used where you would like a set of concepts to be displayed under a 'node label' in the hierarchy.", false ], - "shortForm": "Collection", + "shortForm": "SKOS_Collection", "type": [ "class", "entity" @@ -127,7 +127,7 @@ "appearsIn": [ "skos" ], - "curie": "Concept", + "curie": "SKOS:Concept", "definedBy": [ "skos" ], @@ -147,7 +147,7 @@ "label": "Concept", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -160,7 +160,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -173,7 +173,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -195,7 +195,7 @@ "An idea or notion; a unit of thought.", false ], - "shortForm": "Concept", + "shortForm": "SKOS_Concept", "type": [ "class", "entity" @@ -205,7 +205,7 @@ "appearsIn": [ "skos" ], - "curie": "ConceptScheme", + "curie": "SKOS:ConceptScheme", "definedBy": [ "skos" ], @@ -228,7 +228,7 @@ "label": "Concept Scheme", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -241,7 +241,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -254,7 +254,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "Concept", + "curie": "SKOS:Concept", "definedBy": [ "skos" ], @@ -267,7 +267,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -281,7 +281,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#example": { - "curie": "example", + "curie": "SKOS:example", "definedBy": [ "skos" ], @@ -295,7 +295,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -319,7 +319,7 @@ "Thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies.", false ], - "shortForm": "ConceptScheme", + "shortForm": "SKOS_ConceptScheme", "type": [ "class", "entity" @@ -329,7 +329,7 @@ "appearsIn": [ "skos" ], - "curie": "OrderedCollection", + "curie": "SKOS:OrderedCollection", "definedBy": [ "skos" ], @@ -356,7 +356,7 @@ "label": "Ordered Collection", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -369,7 +369,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -382,7 +382,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -395,7 +395,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Collection": { - "curie": "Collection", + "curie": "SKOS:Collection", "definedBy": [ "skos" ], @@ -408,7 +408,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -422,7 +422,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -445,7 +445,7 @@ "Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a 'node label'.", false ], - "shortForm": "OrderedCollection", + "shortForm": "SKOS_OrderedCollection", "type": [ "class", "entity" diff --git a/testcases_expected_output_api/v2/ontologies/skos/entities.json b/testcases_expected_output_api/v2/ontologies/skos/entities.json index 949e3e46c..8c40de19a 100644 --- a/testcases_expected_output_api/v2/ontologies/skos/entities.json +++ b/testcases_expected_output_api/v2/ontologies/skos/entities.json @@ -4,7 +4,7 @@ "gitissue502", "skos" ], - "curie": "closeMatch", + "curie": "SKOS:closeMatch", "definedBy": [ "skos" ], @@ -34,7 +34,7 @@ "label": "has close match", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -47,7 +47,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -60,7 +60,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -73,7 +73,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -87,7 +87,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "mappingRelation", + "curie": "SKOS:mappingRelation", "definedBy": [ "skos" ], @@ -101,7 +101,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -123,7 +123,7 @@ "skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of \"compound errors\" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property.", false ], - "shortForm": "closeMatch", + "shortForm": "SKOS_closeMatch", "type": [ "entity", "objectProperty", @@ -135,7 +135,7 @@ "gitissue502", "skos" ], - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -170,7 +170,7 @@ "label": "has exact match", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -183,7 +183,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -196,7 +196,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -209,7 +209,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -222,7 +222,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#closeMatch": { - "curie": "closeMatch", + "curie": "SKOS:closeMatch", "definedBy": [ "skos" ], @@ -236,7 +236,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -250,7 +250,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "mappingRelation", + "curie": "SKOS:mappingRelation", "definedBy": [ "skos" ], @@ -264,7 +264,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -286,7 +286,7 @@ "skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch.", false ], - "shortForm": "exactMatch", + "shortForm": "SKOS_exactMatch", "type": [ "entity", "objectProperty", @@ -297,7 +297,7 @@ "appearsIn": [ "skos" ], - "curie": "Collection", + "curie": "SKOS:Collection", "definedBy": [ "skos" ], @@ -322,7 +322,7 @@ "label": "Collection", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -335,7 +335,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -348,7 +348,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "Concept", + "curie": "SKOS:Concept", "definedBy": [ "skos" ], @@ -361,7 +361,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#ConceptScheme": { - "curie": "ConceptScheme", + "curie": "SKOS:ConceptScheme", "definedBy": [ "skos" ], @@ -374,7 +374,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -388,7 +388,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -411,7 +411,7 @@ "Labelled collections can be used where you would like a set of concepts to be displayed under a 'node label' in the hierarchy.", false ], - "shortForm": "Collection", + "shortForm": "SKOS_Collection", "type": [ "class", "entity" @@ -421,7 +421,7 @@ "appearsIn": [ "skos" ], - "curie": "Concept", + "curie": "SKOS:Concept", "definedBy": [ "skos" ], @@ -441,7 +441,7 @@ "label": "Concept", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -454,7 +454,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -467,7 +467,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -489,7 +489,7 @@ "An idea or notion; a unit of thought.", false ], - "shortForm": "Concept", + "shortForm": "SKOS_Concept", "type": [ "class", "entity" @@ -499,7 +499,7 @@ "appearsIn": [ "skos" ], - "curie": "ConceptScheme", + "curie": "SKOS:ConceptScheme", "definedBy": [ "skos" ], @@ -522,7 +522,7 @@ "label": "Concept Scheme", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -535,7 +535,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -548,7 +548,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "Concept", + "curie": "SKOS:Concept", "definedBy": [ "skos" ], @@ -561,7 +561,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -575,7 +575,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#example": { - "curie": "example", + "curie": "SKOS:example", "definedBy": [ "skos" ], @@ -589,7 +589,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -613,7 +613,7 @@ "Thesauri, classification schemes, subject heading lists, taxonomies, 'folksonomies', and other types of controlled vocabulary are all examples of concept schemes. Concept schemes are also embedded in glossaries and terminologies.", false ], - "shortForm": "ConceptScheme", + "shortForm": "SKOS_ConceptScheme", "type": [ "class", "entity" @@ -623,7 +623,7 @@ "appearsIn": [ "skos" ], - "curie": "OrderedCollection", + "curie": "SKOS:OrderedCollection", "definedBy": [ "skos" ], @@ -650,7 +650,7 @@ "label": "Ordered Collection", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -663,7 +663,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -676,7 +676,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subClassOf": { - "curie": "subClassOf", + "curie": "RDFS:subClassOf", "definedBy": [ "rdfs" ], @@ -689,7 +689,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Collection": { - "curie": "Collection", + "curie": "SKOS:Collection", "definedBy": [ "skos" ], @@ -702,7 +702,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -716,7 +716,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -739,7 +739,7 @@ "Ordered collections can be used where you would like a set of concepts to be displayed in a specific order, and optionally under a 'node label'.", false ], - "shortForm": "OrderedCollection", + "shortForm": "SKOS_OrderedCollection", "type": [ "class", "entity" @@ -749,7 +749,7 @@ "appearsIn": [ "skos" ], - "curie": "altLabel", + "curie": "SKOS:altLabel", "definedBy": [ "skos" ], @@ -783,7 +783,7 @@ "label": "alternative label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -796,7 +796,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -809,7 +809,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -822,7 +822,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -835,7 +835,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -849,7 +849,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#example": { - "curie": "example", + "curie": "SKOS:example", "definedBy": [ "skos" ], @@ -872,7 +872,7 @@ "An alternative lexical label for a resource.", false ], - "shortForm": "altLabel", + "shortForm": "SKOS_altLabel", "type": [ "annotationProperty", "entity", @@ -883,7 +883,7 @@ "appearsIn": [ "skos" ], - "curie": "broadMatch", + "curie": "SKOS:broadMatch", "definedBy": [ "skos" ], @@ -921,7 +921,7 @@ "label": "has broader match", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -934,7 +934,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -947,7 +947,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -960,7 +960,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broader": { - "curie": "broader", + "curie": "SKOS:broader", "definedBy": [ "skos" ], @@ -974,7 +974,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broaderTransitive": { - "curie": "broaderTransitive", + "curie": "SKOS:broaderTransitive", "definedBy": [ "skos" ], @@ -988,7 +988,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -1002,7 +1002,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "mappingRelation", + "curie": "SKOS:mappingRelation", "definedBy": [ "skos" ], @@ -1016,7 +1016,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrowMatch": { - "curie": "narrowMatch", + "curie": "SKOS:narrowMatch", "definedBy": [ "skos" ], @@ -1030,7 +1030,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -1052,7 +1052,7 @@ "skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.", false ], - "shortForm": "broadMatch", + "shortForm": "SKOS_broadMatch", "type": [ "entity", "objectProperty", @@ -1063,7 +1063,7 @@ "appearsIn": [ "skos" ], - "curie": "broader", + "curie": "SKOS:broader", "definedBy": [ "skos" ], @@ -1097,7 +1097,7 @@ "label": "has broader", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1110,7 +1110,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1123,7 +1123,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1136,7 +1136,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1149,7 +1149,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broaderTransitive": { - "curie": "broaderTransitive", + "curie": "SKOS:broaderTransitive", "definedBy": [ "skos" ], @@ -1163,7 +1163,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -1177,7 +1177,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrower": { - "curie": "narrower", + "curie": "SKOS:narrower", "definedBy": [ "skos" ], @@ -1191,7 +1191,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -1205,7 +1205,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -1228,7 +1228,7 @@ "Relates a concept to a concept that is more general in meaning.", false ], - "shortForm": "broader", + "shortForm": "SKOS_broader", "type": [ "entity", "objectProperty", @@ -1239,7 +1239,7 @@ "appearsIn": [ "skos" ], - "curie": "broaderTransitive", + "curie": "SKOS:broaderTransitive", "definedBy": [ "skos" ], @@ -1268,7 +1268,7 @@ "label": "has broader transitive", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1281,7 +1281,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1294,7 +1294,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1307,7 +1307,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -1321,7 +1321,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrowerTransitive": { - "curie": "narrowerTransitive", + "curie": "SKOS:narrowerTransitive", "definedBy": [ "skos" ], @@ -1335,7 +1335,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -1349,7 +1349,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -1371,7 +1371,7 @@ "By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.", false ], - "shortForm": "broaderTransitive", + "shortForm": "SKOS_broaderTransitive", "type": [ "entity", "objectProperty", @@ -1382,7 +1382,7 @@ "appearsIn": [ "skos" ], - "curie": "changeNote", + "curie": "SKOS:changeNote", "definedBy": [ "skos" ], @@ -1408,7 +1408,7 @@ "label": "change note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1421,7 +1421,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1434,7 +1434,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1447,7 +1447,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -1461,7 +1461,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "note", + "curie": "SKOS:note", "definedBy": [ "skos" ], @@ -1483,7 +1483,7 @@ "A note about a modification to a concept.", false ], - "shortForm": "changeNote", + "shortForm": "SKOS_changeNote", "type": [ "annotationProperty", "entity", @@ -1494,7 +1494,7 @@ "appearsIn": [ "skos" ], - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -1520,7 +1520,7 @@ "label": "definition", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1533,7 +1533,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1546,7 +1546,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1559,7 +1559,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "note", + "curie": "SKOS:note", "definedBy": [ "skos" ], @@ -1581,7 +1581,7 @@ "A statement or formal explanation of the meaning of a concept.", false ], - "shortForm": "definition", + "shortForm": "SKOS_definition", "type": [ "annotationProperty", "entity", @@ -1592,7 +1592,7 @@ "appearsIn": [ "skos" ], - "curie": "editorialNote", + "curie": "SKOS:editorialNote", "definedBy": [ "skos" ], @@ -1618,7 +1618,7 @@ "label": "editorial note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1631,7 +1631,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1644,7 +1644,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1657,7 +1657,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -1671,7 +1671,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "note", + "curie": "SKOS:note", "definedBy": [ "skos" ], @@ -1693,7 +1693,7 @@ "A note for an editor, translator or maintainer of the vocabulary.", false ], - "shortForm": "editorialNote", + "shortForm": "SKOS_editorialNote", "type": [ "annotationProperty", "entity", @@ -1704,7 +1704,7 @@ "appearsIn": [ "skos" ], - "curie": "example", + "curie": "SKOS:example", "definedBy": [ "skos" ], @@ -1730,7 +1730,7 @@ "label": "example", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1743,7 +1743,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1756,7 +1756,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1769,7 +1769,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -1783,7 +1783,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "note", + "curie": "SKOS:note", "definedBy": [ "skos" ], @@ -1805,7 +1805,7 @@ "An example of the use of a concept.", false ], - "shortForm": "example", + "shortForm": "SKOS_example", "type": [ "annotationProperty", "entity", @@ -1816,7 +1816,7 @@ "appearsIn": [ "skos" ], - "curie": "hasTopConcept", + "curie": "SKOS:hasTopConcept", "definedBy": [ "skos" ], @@ -1842,7 +1842,7 @@ "label": "has top concept", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1855,7 +1855,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1868,7 +1868,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1881,7 +1881,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1894,7 +1894,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "Concept", + "curie": "SKOS:Concept", "definedBy": [ "skos" ], @@ -1907,7 +1907,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#ConceptScheme": { - "curie": "ConceptScheme", + "curie": "SKOS:ConceptScheme", "definedBy": [ "skos" ], @@ -1920,7 +1920,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -1934,7 +1934,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#topConceptOf": { - "curie": "topConceptOf", + "curie": "SKOS:topConceptOf", "definedBy": [ "skos" ], @@ -1956,7 +1956,7 @@ "Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies.", false ], - "shortForm": "hasTopConcept", + "shortForm": "SKOS_hasTopConcept", "type": [ "entity", "objectProperty", @@ -1967,7 +1967,7 @@ "appearsIn": [ "skos" ], - "curie": "hiddenLabel", + "curie": "SKOS:hiddenLabel", "definedBy": [ "skos" ], @@ -2000,7 +2000,7 @@ "label": "hidden label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2013,7 +2013,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2026,7 +2026,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2039,7 +2039,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -2052,7 +2052,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -2074,7 +2074,7 @@ "A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations.", false ], - "shortForm": "hiddenLabel", + "shortForm": "SKOS_hiddenLabel", "type": [ "annotationProperty", "entity", @@ -2085,7 +2085,7 @@ "appearsIn": [ "skos" ], - "curie": "historyNote", + "curie": "SKOS:historyNote", "definedBy": [ "skos" ], @@ -2111,7 +2111,7 @@ "label": "history note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2124,7 +2124,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2137,7 +2137,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -2150,7 +2150,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -2164,7 +2164,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "note", + "curie": "SKOS:note", "definedBy": [ "skos" ], @@ -2186,7 +2186,7 @@ "A note about the past state/use/meaning of a concept.", false ], - "shortForm": "historyNote", + "shortForm": "SKOS_historyNote", "type": [ "annotationProperty", "entity", @@ -2197,7 +2197,7 @@ "appearsIn": [ "skos" ], - "curie": "inScheme", + "curie": "SKOS:inScheme", "definedBy": [ "skos" ], @@ -2222,7 +2222,7 @@ "label": "is in scheme", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2235,7 +2235,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2248,7 +2248,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2261,7 +2261,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#ConceptScheme": { - "curie": "ConceptScheme", + "curie": "SKOS:ConceptScheme", "definedBy": [ "skos" ], @@ -2274,7 +2274,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -2288,7 +2288,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -2311,7 +2311,7 @@ "Relates a resource (for example a concept) to a concept scheme in which it is included.", false ], - "shortForm": "inScheme", + "shortForm": "SKOS_inScheme", "type": [ "entity", "objectProperty", @@ -2322,7 +2322,7 @@ "appearsIn": [ "skos" ], - "curie": "mappingRelation", + "curie": "SKOS:mappingRelation", "definedBy": [ "skos" ], @@ -2351,7 +2351,7 @@ "label": "is in mapping relation with", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2364,7 +2364,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2377,7 +2377,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2390,7 +2390,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -2403,7 +2403,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -2417,7 +2417,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -2439,7 +2439,7 @@ "Relates two concepts coming, by convention, from different schemes, and that have comparable meanings", false ], - "shortForm": "mappingRelation", + "shortForm": "SKOS_mappingRelation", "type": [ "entity", "objectProperty", @@ -2450,7 +2450,7 @@ "appearsIn": [ "skos" ], - "curie": "member", + "curie": "SKOS:member", "definedBy": [ "skos" ], @@ -2481,7 +2481,7 @@ "label": "has member", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -2494,7 +2494,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2507,7 +2507,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2520,7 +2520,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2533,7 +2533,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Collection": { - "curie": "Collection", + "curie": "SKOS:Collection", "definedBy": [ "skos" ], @@ -2546,7 +2546,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "Concept", + "curie": "SKOS:Concept", "definedBy": [ "skos" ], @@ -2559,7 +2559,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -2581,7 +2581,7 @@ "Relates a collection to one of its members.", false ], - "shortForm": "member", + "shortForm": "SKOS_member", "type": [ "entity", "objectProperty", @@ -2592,7 +2592,7 @@ "appearsIn": [ "skos" ], - "curie": "memberList", + "curie": "SKOS:memberList", "definedBy": [ "skos" ], @@ -2621,7 +2621,7 @@ "label": "has member list", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2634,7 +2634,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -2647,7 +2647,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2660,7 +2660,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2673,7 +2673,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2686,7 +2686,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#OrderedCollection": { - "curie": "OrderedCollection", + "curie": "SKOS:OrderedCollection", "definedBy": [ "skos" ], @@ -2699,7 +2699,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -2721,7 +2721,7 @@ "Relates an ordered collection to the RDF list containing its members.", false ], - "shortForm": "memberList", + "shortForm": "SKOS_memberList", "type": [ "entity", "objectProperty", @@ -2732,7 +2732,7 @@ "appearsIn": [ "skos" ], - "curie": "narrowMatch", + "curie": "SKOS:narrowMatch", "definedBy": [ "skos" ], @@ -2770,7 +2770,7 @@ "label": "has narrower match", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2783,7 +2783,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2796,7 +2796,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -2809,7 +2809,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broadMatch": { - "curie": "broadMatch", + "curie": "SKOS:broadMatch", "definedBy": [ "skos" ], @@ -2823,7 +2823,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -2837,7 +2837,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "mappingRelation", + "curie": "SKOS:mappingRelation", "definedBy": [ "skos" ], @@ -2851,7 +2851,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrower": { - "curie": "narrower", + "curie": "SKOS:narrower", "definedBy": [ "skos" ], @@ -2865,7 +2865,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrowerTransitive": { - "curie": "narrowerTransitive", + "curie": "SKOS:narrowerTransitive", "definedBy": [ "skos" ], @@ -2879,7 +2879,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -2901,7 +2901,7 @@ "skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.", false ], - "shortForm": "narrowMatch", + "shortForm": "SKOS_narrowMatch", "type": [ "entity", "objectProperty", @@ -2912,7 +2912,7 @@ "appearsIn": [ "skos" ], - "curie": "narrower", + "curie": "SKOS:narrower", "definedBy": [ "skos" ], @@ -2946,7 +2946,7 @@ "label": "has narrower", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2959,7 +2959,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2972,7 +2972,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2985,7 +2985,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -2998,7 +2998,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broader": { - "curie": "broader", + "curie": "SKOS:broader", "definedBy": [ "skos" ], @@ -3012,7 +3012,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -3026,7 +3026,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrowerTransitive": { - "curie": "narrowerTransitive", + "curie": "SKOS:narrowerTransitive", "definedBy": [ "skos" ], @@ -3040,7 +3040,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -3054,7 +3054,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -3077,7 +3077,7 @@ "Relates a concept to a concept that is more specific in meaning.", false ], - "shortForm": "narrower", + "shortForm": "SKOS_narrower", "type": [ "entity", "objectProperty", @@ -3088,7 +3088,7 @@ "appearsIn": [ "skos" ], - "curie": "narrowerTransitive", + "curie": "SKOS:narrowerTransitive", "definedBy": [ "skos" ], @@ -3117,7 +3117,7 @@ "label": "has narrower transitive", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3130,7 +3130,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3143,7 +3143,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -3156,7 +3156,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broaderTransitive": { - "curie": "broaderTransitive", + "curie": "SKOS:broaderTransitive", "definedBy": [ "skos" ], @@ -3170,7 +3170,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -3184,7 +3184,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -3198,7 +3198,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -3220,7 +3220,7 @@ "By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.", false ], - "shortForm": "narrowerTransitive", + "shortForm": "SKOS_narrowerTransitive", "type": [ "entity", "objectProperty", @@ -3231,7 +3231,7 @@ "appearsIn": [ "skos" ], - "curie": "notation", + "curie": "SKOS:notation", "definedBy": [ "skos" ], @@ -3255,7 +3255,7 @@ "label": "notation", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3268,7 +3268,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3281,7 +3281,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -3295,7 +3295,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -3318,7 +3318,7 @@ "By convention, skos:notation is used with a typed literal in the object position of the triple.", false ], - "shortForm": "notation", + "shortForm": "SKOS_notation", "type": [ "dataProperty", "entity", @@ -3329,7 +3329,7 @@ "appearsIn": [ "skos" ], - "curie": "note", + "curie": "SKOS:note", "definedBy": [ "skos" ], @@ -3353,7 +3353,7 @@ "label": "note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3366,7 +3366,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3379,7 +3379,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -3393,7 +3393,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -3416,7 +3416,7 @@ "This property may be used directly, or as a super-property for more specific note types.", false ], - "shortForm": "note", + "shortForm": "SKOS_note", "type": [ "annotationProperty", "entity", @@ -3427,7 +3427,7 @@ "appearsIn": [ "skos" ], - "curie": "prefLabel", + "curie": "SKOS:prefLabel", "definedBy": [ "skos" ], @@ -3462,7 +3462,7 @@ "label": "preferred label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3475,7 +3475,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3488,7 +3488,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3501,7 +3501,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -3514,7 +3514,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -3536,7 +3536,7 @@ "The preferred lexical label for a resource, in a given language.", false ], - "shortForm": "prefLabel", + "shortForm": "SKOS_prefLabel", "type": [ "annotationProperty", "entity", @@ -3547,7 +3547,7 @@ "appearsIn": [ "skos" ], - "curie": "related", + "curie": "SKOS:related", "definedBy": [ "skos" ], @@ -3577,7 +3577,7 @@ "label": "has related", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3590,7 +3590,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3603,7 +3603,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3616,7 +3616,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -3629,7 +3629,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -3643,7 +3643,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -3665,7 +3665,7 @@ "Relates a concept to a concept with which there is an associative semantic relationship.", false ], - "shortForm": "related", + "shortForm": "SKOS_related", "type": [ "entity", "objectProperty", @@ -3676,7 +3676,7 @@ "appearsIn": [ "skos" ], - "curie": "relatedMatch", + "curie": "SKOS:relatedMatch", "definedBy": [ "skos" ], @@ -3713,7 +3713,7 @@ "label": "has related match", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3726,7 +3726,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3739,7 +3739,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -3752,7 +3752,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -3766,7 +3766,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "mappingRelation", + "curie": "SKOS:mappingRelation", "definedBy": [ "skos" ], @@ -3780,7 +3780,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#related": { - "curie": "related", + "curie": "SKOS:related", "definedBy": [ "skos" ], @@ -3794,7 +3794,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -3816,7 +3816,7 @@ "skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes.", false ], - "shortForm": "relatedMatch", + "shortForm": "SKOS_relatedMatch", "type": [ "entity", "objectProperty", @@ -3827,7 +3827,7 @@ "appearsIn": [ "skos" ], - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -3853,7 +3853,7 @@ "label": "scope note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3866,7 +3866,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3879,7 +3879,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -3892,7 +3892,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -3906,7 +3906,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "note", + "curie": "SKOS:note", "definedBy": [ "skos" ], @@ -3928,7 +3928,7 @@ "A note that helps to clarify the meaning and/or the use of a concept.", false ], - "shortForm": "scopeNote", + "shortForm": "SKOS_scopeNote", "type": [ "annotationProperty", "entity", @@ -3939,7 +3939,7 @@ "appearsIn": [ "skos" ], - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -3965,7 +3965,7 @@ "label": "is in semantic relation with", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3978,7 +3978,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3991,7 +3991,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4004,7 +4004,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4017,7 +4017,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "Concept", + "curie": "SKOS:Concept", "definedBy": [ "skos" ], @@ -4030,7 +4030,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -4044,7 +4044,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -4067,7 +4067,7 @@ "This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts.", false ], - "shortForm": "semanticRelation", + "shortForm": "SKOS_semanticRelation", "type": [ "entity", "objectProperty", @@ -4078,7 +4078,7 @@ "appearsIn": [ "skos" ], - "curie": "topConceptOf", + "curie": "SKOS:topConceptOf", "definedBy": [ "skos" ], @@ -4107,7 +4107,7 @@ "label": "is top concept in scheme", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -4120,7 +4120,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -4133,7 +4133,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -4146,7 +4146,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -4159,7 +4159,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -4172,7 +4172,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "Concept", + "curie": "SKOS:Concept", "definedBy": [ "skos" ], @@ -4185,7 +4185,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#ConceptScheme": { - "curie": "ConceptScheme", + "curie": "SKOS:ConceptScheme", "definedBy": [ "skos" ], @@ -4198,7 +4198,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -4212,7 +4212,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#hasTopConcept": { - "curie": "hasTopConcept", + "curie": "SKOS:hasTopConcept", "definedBy": [ "skos" ], @@ -4226,7 +4226,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#inScheme": { - "curie": "inScheme", + "curie": "SKOS:inScheme", "definedBy": [ "skos" ], @@ -4248,7 +4248,7 @@ "Relates a concept to the concept scheme that it is a top level concept of.", false ], - "shortForm": "topConceptOf", + "shortForm": "SKOS_topConceptOf", "type": [ "entity", "objectProperty", diff --git a/testcases_expected_output_api/v2/ontologies/skos/properties.json b/testcases_expected_output_api/v2/ontologies/skos/properties.json index d9627ec8c..cb7959d0b 100644 --- a/testcases_expected_output_api/v2/ontologies/skos/properties.json +++ b/testcases_expected_output_api/v2/ontologies/skos/properties.json @@ -4,7 +4,7 @@ "gitissue502", "skos" ], - "curie": "closeMatch", + "curie": "SKOS:closeMatch", "definedBy": [ "skos" ], @@ -34,7 +34,7 @@ "label": "has close match", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -47,7 +47,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -60,7 +60,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -73,7 +73,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -87,7 +87,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "mappingRelation", + "curie": "SKOS:mappingRelation", "definedBy": [ "skos" ], @@ -101,7 +101,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -123,7 +123,7 @@ "skos:closeMatch is used to link two concepts that are sufficiently similar that they can be used interchangeably in some information retrieval applications. In order to avoid the possibility of \"compound errors\" when combining mappings across more than two concept schemes, skos:closeMatch is not declared to be a transitive property.", false ], - "shortForm": "closeMatch", + "shortForm": "SKOS_closeMatch", "type": [ "entity", "objectProperty", @@ -135,7 +135,7 @@ "gitissue502", "skos" ], - "curie": "exactMatch", + "curie": "SKOS:exactMatch", "definedBy": [ "skos" ], @@ -170,7 +170,7 @@ "label": "has exact match", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -183,7 +183,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -196,7 +196,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -209,7 +209,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -222,7 +222,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#closeMatch": { - "curie": "closeMatch", + "curie": "SKOS:closeMatch", "definedBy": [ "skos" ], @@ -236,7 +236,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -250,7 +250,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "mappingRelation", + "curie": "SKOS:mappingRelation", "definedBy": [ "skos" ], @@ -264,7 +264,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -286,7 +286,7 @@ "skos:exactMatch is used to link two concepts, indicating a high degree of confidence that the concepts can be used interchangeably across a wide range of information retrieval applications. skos:exactMatch is a transitive property, and is a sub-property of skos:closeMatch.", false ], - "shortForm": "exactMatch", + "shortForm": "SKOS_exactMatch", "type": [ "entity", "objectProperty", @@ -297,7 +297,7 @@ "appearsIn": [ "skos" ], - "curie": "altLabel", + "curie": "SKOS:altLabel", "definedBy": [ "skos" ], @@ -331,7 +331,7 @@ "label": "alternative label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -344,7 +344,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -357,7 +357,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -370,7 +370,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -383,7 +383,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -397,7 +397,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#example": { - "curie": "example", + "curie": "SKOS:example", "definedBy": [ "skos" ], @@ -420,7 +420,7 @@ "An alternative lexical label for a resource.", false ], - "shortForm": "altLabel", + "shortForm": "SKOS_altLabel", "type": [ "annotationProperty", "entity", @@ -431,7 +431,7 @@ "appearsIn": [ "skos" ], - "curie": "broadMatch", + "curie": "SKOS:broadMatch", "definedBy": [ "skos" ], @@ -469,7 +469,7 @@ "label": "has broader match", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -482,7 +482,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -495,7 +495,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -508,7 +508,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broader": { - "curie": "broader", + "curie": "SKOS:broader", "definedBy": [ "skos" ], @@ -522,7 +522,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broaderTransitive": { - "curie": "broaderTransitive", + "curie": "SKOS:broaderTransitive", "definedBy": [ "skos" ], @@ -536,7 +536,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -550,7 +550,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "mappingRelation", + "curie": "SKOS:mappingRelation", "definedBy": [ "skos" ], @@ -564,7 +564,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrowMatch": { - "curie": "narrowMatch", + "curie": "SKOS:narrowMatch", "definedBy": [ "skos" ], @@ -578,7 +578,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -600,7 +600,7 @@ "skos:broadMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.", false ], - "shortForm": "broadMatch", + "shortForm": "SKOS_broadMatch", "type": [ "entity", "objectProperty", @@ -611,7 +611,7 @@ "appearsIn": [ "skos" ], - "curie": "broader", + "curie": "SKOS:broader", "definedBy": [ "skos" ], @@ -645,7 +645,7 @@ "label": "has broader", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -658,7 +658,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -671,7 +671,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -684,7 +684,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -697,7 +697,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broaderTransitive": { - "curie": "broaderTransitive", + "curie": "SKOS:broaderTransitive", "definedBy": [ "skos" ], @@ -711,7 +711,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -725,7 +725,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrower": { - "curie": "narrower", + "curie": "SKOS:narrower", "definedBy": [ "skos" ], @@ -739,7 +739,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -753,7 +753,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -776,7 +776,7 @@ "Relates a concept to a concept that is more general in meaning.", false ], - "shortForm": "broader", + "shortForm": "SKOS_broader", "type": [ "entity", "objectProperty", @@ -787,7 +787,7 @@ "appearsIn": [ "skos" ], - "curie": "broaderTransitive", + "curie": "SKOS:broaderTransitive", "definedBy": [ "skos" ], @@ -816,7 +816,7 @@ "label": "has broader transitive", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -829,7 +829,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -842,7 +842,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -855,7 +855,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -869,7 +869,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrowerTransitive": { - "curie": "narrowerTransitive", + "curie": "SKOS:narrowerTransitive", "definedBy": [ "skos" ], @@ -883,7 +883,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -897,7 +897,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -919,7 +919,7 @@ "By convention, skos:broaderTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.", false ], - "shortForm": "broaderTransitive", + "shortForm": "SKOS_broaderTransitive", "type": [ "entity", "objectProperty", @@ -930,7 +930,7 @@ "appearsIn": [ "skos" ], - "curie": "changeNote", + "curie": "SKOS:changeNote", "definedBy": [ "skos" ], @@ -956,7 +956,7 @@ "label": "change note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -969,7 +969,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -982,7 +982,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -995,7 +995,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -1009,7 +1009,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "note", + "curie": "SKOS:note", "definedBy": [ "skos" ], @@ -1031,7 +1031,7 @@ "A note about a modification to a concept.", false ], - "shortForm": "changeNote", + "shortForm": "SKOS_changeNote", "type": [ "annotationProperty", "entity", @@ -1042,7 +1042,7 @@ "appearsIn": [ "skos" ], - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -1068,7 +1068,7 @@ "label": "definition", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1081,7 +1081,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1094,7 +1094,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1107,7 +1107,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "note", + "curie": "SKOS:note", "definedBy": [ "skos" ], @@ -1129,7 +1129,7 @@ "A statement or formal explanation of the meaning of a concept.", false ], - "shortForm": "definition", + "shortForm": "SKOS_definition", "type": [ "annotationProperty", "entity", @@ -1140,7 +1140,7 @@ "appearsIn": [ "skos" ], - "curie": "editorialNote", + "curie": "SKOS:editorialNote", "definedBy": [ "skos" ], @@ -1166,7 +1166,7 @@ "label": "editorial note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1179,7 +1179,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1192,7 +1192,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1205,7 +1205,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -1219,7 +1219,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "note", + "curie": "SKOS:note", "definedBy": [ "skos" ], @@ -1241,7 +1241,7 @@ "A note for an editor, translator or maintainer of the vocabulary.", false ], - "shortForm": "editorialNote", + "shortForm": "SKOS_editorialNote", "type": [ "annotationProperty", "entity", @@ -1252,7 +1252,7 @@ "appearsIn": [ "skos" ], - "curie": "example", + "curie": "SKOS:example", "definedBy": [ "skos" ], @@ -1278,7 +1278,7 @@ "label": "example", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1291,7 +1291,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1304,7 +1304,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1317,7 +1317,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -1331,7 +1331,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "note", + "curie": "SKOS:note", "definedBy": [ "skos" ], @@ -1353,7 +1353,7 @@ "An example of the use of a concept.", false ], - "shortForm": "example", + "shortForm": "SKOS_example", "type": [ "annotationProperty", "entity", @@ -1364,7 +1364,7 @@ "appearsIn": [ "skos" ], - "curie": "hasTopConcept", + "curie": "SKOS:hasTopConcept", "definedBy": [ "skos" ], @@ -1390,7 +1390,7 @@ "label": "has top concept", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -1403,7 +1403,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1416,7 +1416,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1429,7 +1429,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1442,7 +1442,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "Concept", + "curie": "SKOS:Concept", "definedBy": [ "skos" ], @@ -1455,7 +1455,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#ConceptScheme": { - "curie": "ConceptScheme", + "curie": "SKOS:ConceptScheme", "definedBy": [ "skos" ], @@ -1468,7 +1468,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -1482,7 +1482,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#topConceptOf": { - "curie": "topConceptOf", + "curie": "SKOS:topConceptOf", "definedBy": [ "skos" ], @@ -1504,7 +1504,7 @@ "Relates, by convention, a concept scheme to a concept which is topmost in the broader/narrower concept hierarchies for that scheme, providing an entry point to these hierarchies.", false ], - "shortForm": "hasTopConcept", + "shortForm": "SKOS_hasTopConcept", "type": [ "entity", "objectProperty", @@ -1515,7 +1515,7 @@ "appearsIn": [ "skos" ], - "curie": "hiddenLabel", + "curie": "SKOS:hiddenLabel", "definedBy": [ "skos" ], @@ -1548,7 +1548,7 @@ "label": "hidden label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1561,7 +1561,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1574,7 +1574,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1587,7 +1587,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1600,7 +1600,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -1622,7 +1622,7 @@ "A lexical label for a resource that should be hidden when generating visual displays of the resource, but should still be accessible to free text search operations.", false ], - "shortForm": "hiddenLabel", + "shortForm": "SKOS_hiddenLabel", "type": [ "annotationProperty", "entity", @@ -1633,7 +1633,7 @@ "appearsIn": [ "skos" ], - "curie": "historyNote", + "curie": "SKOS:historyNote", "definedBy": [ "skos" ], @@ -1659,7 +1659,7 @@ "label": "history note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1672,7 +1672,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1685,7 +1685,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1698,7 +1698,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -1712,7 +1712,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "note", + "curie": "SKOS:note", "definedBy": [ "skos" ], @@ -1734,7 +1734,7 @@ "A note about the past state/use/meaning of a concept.", false ], - "shortForm": "historyNote", + "shortForm": "SKOS_historyNote", "type": [ "annotationProperty", "entity", @@ -1745,7 +1745,7 @@ "appearsIn": [ "skos" ], - "curie": "inScheme", + "curie": "SKOS:inScheme", "definedBy": [ "skos" ], @@ -1770,7 +1770,7 @@ "label": "is in scheme", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1783,7 +1783,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1796,7 +1796,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -1809,7 +1809,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#ConceptScheme": { - "curie": "ConceptScheme", + "curie": "SKOS:ConceptScheme", "definedBy": [ "skos" ], @@ -1822,7 +1822,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -1836,7 +1836,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -1859,7 +1859,7 @@ "Relates a resource (for example a concept) to a concept scheme in which it is included.", false ], - "shortForm": "inScheme", + "shortForm": "SKOS_inScheme", "type": [ "entity", "objectProperty", @@ -1870,7 +1870,7 @@ "appearsIn": [ "skos" ], - "curie": "mappingRelation", + "curie": "SKOS:mappingRelation", "definedBy": [ "skos" ], @@ -1899,7 +1899,7 @@ "label": "is in mapping relation with", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -1912,7 +1912,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -1925,7 +1925,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -1938,7 +1938,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -1951,7 +1951,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -1965,7 +1965,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -1987,7 +1987,7 @@ "Relates two concepts coming, by convention, from different schemes, and that have comparable meanings", false ], - "shortForm": "mappingRelation", + "shortForm": "SKOS_mappingRelation", "type": [ "entity", "objectProperty", @@ -1998,7 +1998,7 @@ "appearsIn": [ "skos" ], - "curie": "member", + "curie": "SKOS:member", "definedBy": [ "skos" ], @@ -2029,7 +2029,7 @@ "label": "has member", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -2042,7 +2042,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2055,7 +2055,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2068,7 +2068,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2081,7 +2081,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Collection": { - "curie": "Collection", + "curie": "SKOS:Collection", "definedBy": [ "skos" ], @@ -2094,7 +2094,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "Concept", + "curie": "SKOS:Concept", "definedBy": [ "skos" ], @@ -2107,7 +2107,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -2129,7 +2129,7 @@ "Relates a collection to one of its members.", false ], - "shortForm": "member", + "shortForm": "SKOS_member", "type": [ "entity", "objectProperty", @@ -2140,7 +2140,7 @@ "appearsIn": [ "skos" ], - "curie": "memberList", + "curie": "SKOS:memberList", "definedBy": [ "skos" ], @@ -2169,7 +2169,7 @@ "label": "has member list", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2182,7 +2182,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -2195,7 +2195,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2208,7 +2208,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2221,7 +2221,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -2234,7 +2234,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#OrderedCollection": { - "curie": "OrderedCollection", + "curie": "SKOS:OrderedCollection", "definedBy": [ "skos" ], @@ -2247,7 +2247,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -2269,7 +2269,7 @@ "Relates an ordered collection to the RDF list containing its members.", false ], - "shortForm": "memberList", + "shortForm": "SKOS_memberList", "type": [ "entity", "objectProperty", @@ -2280,7 +2280,7 @@ "appearsIn": [ "skos" ], - "curie": "narrowMatch", + "curie": "SKOS:narrowMatch", "definedBy": [ "skos" ], @@ -2318,7 +2318,7 @@ "label": "has narrower match", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2331,7 +2331,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2344,7 +2344,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -2357,7 +2357,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broadMatch": { - "curie": "broadMatch", + "curie": "SKOS:broadMatch", "definedBy": [ "skos" ], @@ -2371,7 +2371,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -2385,7 +2385,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "mappingRelation", + "curie": "SKOS:mappingRelation", "definedBy": [ "skos" ], @@ -2399,7 +2399,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrower": { - "curie": "narrower", + "curie": "SKOS:narrower", "definedBy": [ "skos" ], @@ -2413,7 +2413,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrowerTransitive": { - "curie": "narrowerTransitive", + "curie": "SKOS:narrowerTransitive", "definedBy": [ "skos" ], @@ -2427,7 +2427,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -2449,7 +2449,7 @@ "skos:narrowMatch is used to state a hierarchical mapping link between two conceptual resources in different concept schemes.", false ], - "shortForm": "narrowMatch", + "shortForm": "SKOS_narrowMatch", "type": [ "entity", "objectProperty", @@ -2460,7 +2460,7 @@ "appearsIn": [ "skos" ], - "curie": "narrower", + "curie": "SKOS:narrower", "definedBy": [ "skos" ], @@ -2494,7 +2494,7 @@ "label": "has narrower", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -2507,7 +2507,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2520,7 +2520,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2533,7 +2533,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -2546,7 +2546,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broader": { - "curie": "broader", + "curie": "SKOS:broader", "definedBy": [ "skos" ], @@ -2560,7 +2560,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -2574,7 +2574,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#narrowerTransitive": { - "curie": "narrowerTransitive", + "curie": "SKOS:narrowerTransitive", "definedBy": [ "skos" ], @@ -2588,7 +2588,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -2602,7 +2602,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -2625,7 +2625,7 @@ "Relates a concept to a concept that is more specific in meaning.", false ], - "shortForm": "narrower", + "shortForm": "SKOS_narrower", "type": [ "entity", "objectProperty", @@ -2636,7 +2636,7 @@ "appearsIn": [ "skos" ], - "curie": "narrowerTransitive", + "curie": "SKOS:narrowerTransitive", "definedBy": [ "skos" ], @@ -2665,7 +2665,7 @@ "label": "has narrower transitive", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2678,7 +2678,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2691,7 +2691,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -2704,7 +2704,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#broaderTransitive": { - "curie": "broaderTransitive", + "curie": "SKOS:broaderTransitive", "definedBy": [ "skos" ], @@ -2718,7 +2718,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -2732,7 +2732,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -2746,7 +2746,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -2768,7 +2768,7 @@ "By convention, skos:narrowerTransitive is not used to make assertions. Rather, the properties can be used to draw inferences about the transitive closure of the hierarchical relation, which is useful e.g. when implementing a simple query expansion algorithm in a search application.", false ], - "shortForm": "narrowerTransitive", + "shortForm": "SKOS_narrowerTransitive", "type": [ "entity", "objectProperty", @@ -2779,7 +2779,7 @@ "appearsIn": [ "skos" ], - "curie": "notation", + "curie": "SKOS:notation", "definedBy": [ "skos" ], @@ -2803,7 +2803,7 @@ "label": "notation", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2816,7 +2816,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2829,7 +2829,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -2843,7 +2843,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -2866,7 +2866,7 @@ "By convention, skos:notation is used with a typed literal in the object position of the triple.", false ], - "shortForm": "notation", + "shortForm": "SKOS_notation", "type": [ "dataProperty", "entity", @@ -2877,7 +2877,7 @@ "appearsIn": [ "skos" ], - "curie": "note", + "curie": "SKOS:note", "definedBy": [ "skos" ], @@ -2901,7 +2901,7 @@ "label": "note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -2914,7 +2914,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -2927,7 +2927,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -2941,7 +2941,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -2964,7 +2964,7 @@ "This property may be used directly, or as a super-property for more specific note types.", false ], - "shortForm": "note", + "shortForm": "SKOS_note", "type": [ "annotationProperty", "entity", @@ -2975,7 +2975,7 @@ "appearsIn": [ "skos" ], - "curie": "prefLabel", + "curie": "SKOS:prefLabel", "definedBy": [ "skos" ], @@ -3010,7 +3010,7 @@ "label": "preferred label", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3023,7 +3023,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3036,7 +3036,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3049,7 +3049,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -3062,7 +3062,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -3084,7 +3084,7 @@ "The preferred lexical label for a resource, in a given language.", false ], - "shortForm": "prefLabel", + "shortForm": "SKOS_prefLabel", "type": [ "annotationProperty", "entity", @@ -3095,7 +3095,7 @@ "appearsIn": [ "skos" ], - "curie": "related", + "curie": "SKOS:related", "definedBy": [ "skos" ], @@ -3125,7 +3125,7 @@ "label": "has related", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#comment": { - "curie": "comment", + "curie": "RDFS:comment", "definedBy": [ "rdfs" ], @@ -3138,7 +3138,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3151,7 +3151,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3164,7 +3164,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -3177,7 +3177,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -3191,7 +3191,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -3213,7 +3213,7 @@ "Relates a concept to a concept with which there is an associative semantic relationship.", false ], - "shortForm": "related", + "shortForm": "SKOS_related", "type": [ "entity", "objectProperty", @@ -3224,7 +3224,7 @@ "appearsIn": [ "skos" ], - "curie": "relatedMatch", + "curie": "SKOS:relatedMatch", "definedBy": [ "skos" ], @@ -3261,7 +3261,7 @@ "label": "has related match", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3274,7 +3274,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3287,7 +3287,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -3300,7 +3300,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -3314,7 +3314,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#mappingRelation": { - "curie": "mappingRelation", + "curie": "SKOS:mappingRelation", "definedBy": [ "skos" ], @@ -3328,7 +3328,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#related": { - "curie": "related", + "curie": "SKOS:related", "definedBy": [ "skos" ], @@ -3342,7 +3342,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#semanticRelation": { - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -3364,7 +3364,7 @@ "skos:relatedMatch is used to state an associative mapping link between two conceptual resources in different concept schemes.", false ], - "shortForm": "relatedMatch", + "shortForm": "SKOS_relatedMatch", "type": [ "entity", "objectProperty", @@ -3375,7 +3375,7 @@ "appearsIn": [ "skos" ], - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -3401,7 +3401,7 @@ "label": "scope note", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3414,7 +3414,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3427,7 +3427,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -3440,7 +3440,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -3454,7 +3454,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#note": { - "curie": "note", + "curie": "SKOS:note", "definedBy": [ "skos" ], @@ -3476,7 +3476,7 @@ "A note that helps to clarify the meaning and/or the use of a concept.", false ], - "shortForm": "scopeNote", + "shortForm": "SKOS_scopeNote", "type": [ "annotationProperty", "entity", @@ -3487,7 +3487,7 @@ "appearsIn": [ "skos" ], - "curie": "semanticRelation", + "curie": "SKOS:semanticRelation", "definedBy": [ "skos" ], @@ -3513,7 +3513,7 @@ "label": "is in semantic relation with", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3526,7 +3526,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3539,7 +3539,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3552,7 +3552,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3565,7 +3565,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "Concept", + "curie": "SKOS:Concept", "definedBy": [ "skos" ], @@ -3578,7 +3578,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -3592,7 +3592,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#scopeNote": { - "curie": "scopeNote", + "curie": "SKOS:scopeNote", "definedBy": [ "skos" ], @@ -3615,7 +3615,7 @@ "This property should not be used directly, but as a super-property for all properties denoting a relationship of meaning between concepts.", false ], - "shortForm": "semanticRelation", + "shortForm": "SKOS_semanticRelation", "type": [ "entity", "objectProperty", @@ -3626,7 +3626,7 @@ "appearsIn": [ "skos" ], - "curie": "topConceptOf", + "curie": "SKOS:topConceptOf", "definedBy": [ "skos" ], @@ -3655,7 +3655,7 @@ "label": "is top concept in scheme", "linkedEntities": { "http://www.w3.org/2000/01/rdf-schema#domain": { - "curie": "domain", + "curie": "RDFS:domain", "definedBy": [ "rdfs" ], @@ -3668,7 +3668,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#isDefinedBy": { - "curie": "isDefinedBy", + "curie": "RDFS:isDefinedBy", "definedBy": [ "rdfs" ], @@ -3681,7 +3681,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#label": { - "curie": "label", + "curie": "RDFS:label", "definedBy": [ "rdfs" ], @@ -3694,7 +3694,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#range": { - "curie": "range", + "curie": "RDFS:range", "definedBy": [ "rdfs" ], @@ -3707,7 +3707,7 @@ ] }, "http://www.w3.org/2000/01/rdf-schema#subPropertyOf": { - "curie": "subPropertyOf", + "curie": "RDFS:subPropertyOf", "definedBy": [ "rdfs" ], @@ -3720,7 +3720,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#Concept": { - "curie": "Concept", + "curie": "SKOS:Concept", "definedBy": [ "skos" ], @@ -3733,7 +3733,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#ConceptScheme": { - "curie": "ConceptScheme", + "curie": "SKOS:ConceptScheme", "definedBy": [ "skos" ], @@ -3746,7 +3746,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#definition": { - "curie": "definition", + "curie": "SKOS:definition", "definedBy": [ "skos" ], @@ -3760,7 +3760,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#hasTopConcept": { - "curie": "hasTopConcept", + "curie": "SKOS:hasTopConcept", "definedBy": [ "skos" ], @@ -3774,7 +3774,7 @@ ] }, "http://www.w3.org/2004/02/skos/core#inScheme": { - "curie": "inScheme", + "curie": "SKOS:inScheme", "definedBy": [ "skos" ], @@ -3796,7 +3796,7 @@ "Relates a concept to the concept scheme that it is a top level concept of.", false ], - "shortForm": "topConceptOf", + "shortForm": "SKOS_topConceptOf", "type": [ "entity", "objectProperty", diff --git a/testcases_expected_output_api/v2/ontologies/xmpl/classes.json b/testcases_expected_output_api/v2/ontologies/xmpl/classes.json index ea169d186..a6471eafb 100644 --- a/testcases_expected_output_api/v2/ontologies/xmpl/classes.json +++ b/testcases_expected_output_api/v2/ontologies/xmpl/classes.json @@ -25,23 +25,6 @@ "parent class pref label" ], "linkedEntities": { - "XMPL:XMPL000001": { - "curie": "XMPL:XMPL000001", - "definedBy": [ - "xmpl" - ], - "hasLocalDefinition": true, - "iri": "http://exmpl.org/xmpl/XMPL000001", - "label": [ - "XMPL000001", - "parent class pref label" - ], - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, "http://exmpl.org/xmpl/Preferred_name": { "curie": "XMPL:Preferred_name", "definedBy": [ @@ -121,23 +104,6 @@ "XMPL000002" ], "linkedEntities": { - "XMPL:XMPL000002": { - "curie": "XMPL:XMPL000002", - "definedBy": [ - "xmpl" - ], - "hasLocalDefinition": true, - "iri": "http://exmpl.org/xmpl/XMPL000002", - "label": [ - "1st children class pref label", - "XMPL000002" - ], - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, "http://exmpl.org/xmpl/Preferred_name": { "curie": "XMPL:Preferred_name", "definedBy": [ @@ -233,23 +199,6 @@ "XMPL000003" ], "linkedEntities": { - "XMPL:XMPL000003": { - "curie": "XMPL:XMPL000003", - "definedBy": [ - "xmpl" - ], - "hasLocalDefinition": true, - "iri": "http://exmpl.org/xmpl/XMPL000003", - "label": [ - "2nd children class pref label", - "XMPL000003" - ], - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, "http://exmpl.org/xmpl/Synonym": { "curie": "XMPL:Synonym", "definedBy": [ diff --git a/testcases_expected_output_api/v2/ontologies/xmpl/entities.json b/testcases_expected_output_api/v2/ontologies/xmpl/entities.json index 94799cb02..cf4432b98 100644 --- a/testcases_expected_output_api/v2/ontologies/xmpl/entities.json +++ b/testcases_expected_output_api/v2/ontologies/xmpl/entities.json @@ -19,23 +19,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "XMPL_Preferred_name", - "linkedEntities": { - "XMPL:Preferred_name": { - "curie": "XMPL:Preferred_name", - "definedBy": [ - "xmpl" - ], - "hasLocalDefinition": true, - "iri": "http://exmpl.org/xmpl/Preferred_name", - "label": "XMPL_Preferred_name", - "numAppearsIn": 1.0, - "type": [ - "annotationProperty", - "entity", - "property" - ] - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "xmpl", @@ -69,23 +53,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "XMPL_Synonym", - "linkedEntities": { - "XMPL:Synonym": { - "curie": "XMPL:Synonym", - "definedBy": [ - "xmpl" - ], - "hasLocalDefinition": true, - "iri": "http://exmpl.org/xmpl/Synonym", - "label": "XMPL_Synonym", - "numAppearsIn": 1.0, - "type": [ - "annotationProperty", - "entity", - "property" - ] - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "xmpl", @@ -125,23 +93,6 @@ "parent class pref label" ], "linkedEntities": { - "XMPL:XMPL000001": { - "curie": "XMPL:XMPL000001", - "definedBy": [ - "xmpl" - ], - "hasLocalDefinition": true, - "iri": "http://exmpl.org/xmpl/XMPL000001", - "label": [ - "XMPL000001", - "parent class pref label" - ], - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, "http://exmpl.org/xmpl/Preferred_name": { "curie": "XMPL:Preferred_name", "definedBy": [ @@ -221,23 +172,6 @@ "XMPL000002" ], "linkedEntities": { - "XMPL:XMPL000002": { - "curie": "XMPL:XMPL000002", - "definedBy": [ - "xmpl" - ], - "hasLocalDefinition": true, - "iri": "http://exmpl.org/xmpl/XMPL000002", - "label": [ - "1st children class pref label", - "XMPL000002" - ], - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, "http://exmpl.org/xmpl/Preferred_name": { "curie": "XMPL:Preferred_name", "definedBy": [ @@ -333,23 +267,6 @@ "XMPL000003" ], "linkedEntities": { - "XMPL:XMPL000003": { - "curie": "XMPL:XMPL000003", - "definedBy": [ - "xmpl" - ], - "hasLocalDefinition": true, - "iri": "http://exmpl.org/xmpl/XMPL000003", - "label": [ - "2nd children class pref label", - "XMPL000003" - ], - "numAppearsIn": 1.0, - "type": [ - "class", - "entity" - ] - }, "http://exmpl.org/xmpl/Synonym": { "curie": "XMPL:Synonym", "definedBy": [ diff --git a/testcases_expected_output_api/v2/ontologies/xmpl/properties.json b/testcases_expected_output_api/v2/ontologies/xmpl/properties.json index f74fab63d..0f92d9bcd 100644 --- a/testcases_expected_output_api/v2/ontologies/xmpl/properties.json +++ b/testcases_expected_output_api/v2/ontologies/xmpl/properties.json @@ -19,23 +19,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "XMPL_Preferred_name", - "linkedEntities": { - "XMPL:Preferred_name": { - "curie": "XMPL:Preferred_name", - "definedBy": [ - "xmpl" - ], - "hasLocalDefinition": true, - "iri": "http://exmpl.org/xmpl/Preferred_name", - "label": "XMPL_Preferred_name", - "numAppearsIn": 1.0, - "type": [ - "annotationProperty", - "entity", - "property" - ] - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "xmpl", @@ -69,23 +53,7 @@ "isObsolete": false, "isPreferredRoot": false, "label": "XMPL_Synonym", - "linkedEntities": { - "XMPL:Synonym": { - "curie": "XMPL:Synonym", - "definedBy": [ - "xmpl" - ], - "hasLocalDefinition": true, - "iri": "http://exmpl.org/xmpl/Synonym", - "label": "XMPL_Synonym", - "numAppearsIn": 1.0, - "type": [ - "annotationProperty", - "entity", - "property" - ] - } - }, + "linkedEntities": {}, "numDescendants": 0.0, "numHierarchicalDescendants": 0.0, "ontologyId": "xmpl", From e7a56b7eb6fe3109dd4e3592704734f043d33f51 Mon Sep 17 00:00:00 2001 From: Haider Iqbal Date: Thu, 5 Sep 2024 12:16:35 +0100 Subject: [PATCH 4/5] Fix curie issue oio branch tests (#723) * - Add logic for curies format in linker * - Add preferredPrefix in rdf2json - Change curie logic linker pass 1 * - Add preferredPrefix in rdf2json - Change curie logic linker pass 1 * - Fix isDefinedBy curie object * - Fix isDefinedBy curie object array * - Fix isDefinedBy value object * - Fix defining entity * - Update testcases * - Update testcases From bead62eb35f7cad49550951203493af56f5f844f Mon Sep 17 00:00:00 2001 From: Haider Iqbal Date: Thu, 5 Sep 2024 12:16:54 +0100 Subject: [PATCH 5/5] Add logic for correct CURIE format in Linker (#722) * - Add logic for curies format in linker * - Add preferredPrefix in rdf2json - Change curie logic linker pass 1 * - Fix isDefinedBy curie object * - Fix isDefinedBy curie object array * - Fix isDefinedBy value object * - Fix defining entity